SEOPress - Version 5.8

Version Description

Read the blog post update =

Make sure to update both Free and PRO version to 5.8

  • NEW Quickly edit your primary category for post and products with the Block Editor
  • NEW Image SEO: cleaning image file when upload a media (e.g. "ExMple 1 cpy!.jpg" => "example-1-copy.jpg")
  • NEW Prevent 500 errors when editing / saving .htaccess file
  • NEW Automatically use the Product title when sending images to set the image Title, Alt, Caption and Description (Product post type only)
  • NEW Add link on term archives for html sitemap
  • NEW Try to automatically override Storefronts default breadcrumbs with SEOPress one (PRO)
  • NEW Add noindex on add-to-cart links in robots.txt file (go to SEO, PRO, robots.txt tab to add this new rule)
  • NEW XML sub-sitemaps URL to better follow the official guidelines of Google (https://www.seopress.org/docs/xml-sitemap)
  • NEW 'seopress_sitemaps_cpt' hook to filter list of custom post types of XML sitemaps settings (https://www.seopress.org/support/hooks/filter-list-of-post-types-from-xml-sitemap-options/)
  • NEW 'seopress_sitemaps_tax' hook to filter list of taxonomies of XML sitemaps settings (https://www.seopress.org/support/hooks/filter-list-of-taxonomies-from-xml-sitemap-options/)
  • INFO Improve SEO Dashboard
  • INFO Optimize video xml sitemap regeneration performance
  • INFO Improve Alt text missing UI in Content Analysis
  • INFO Improve word counter for Content Analysis
  • INFO Add CPT key and Post ID to "seopress_auto_image_title" hook (https://www.seopress.org/support/hooks/filter-automatic-image-title/)
  • INFO Automatic handling of the site url to avoid errors with Google Inspect URL
  • INFO Stop pinging Bing for XML sitemaps since it's officially deprecated
  • INFO Use the Site icon if no image available for Open Graph Image tag
  • INFO Improve block FAQ schema logic
  • INFO Update updater
  • FIX Bricks (1.4) compatibility issue with our content analysis feature
  • FIX Archives indexing for our Wizard if no post type archives available
  • FIX SEOPress blocks icons alignment in Gutenberg blocks panel
  • FIX Duplicated meta robots on search archive page
  • FIX Knowledge graph option (Person or Organization) option with French translation
  • FIX GA4 tracking script URL
  • FIX Import / Export Indexing options
  • FIX Zion Builder compatibility for Content Analysis
  • FIX Social Icons Widget & Block by WPZOOM compatibility issue with Block Editor and SEOPress PRO
  • FIX Video xml sitemap missing video caused by a transient issue
  • FIX Missing alt text for images analysis with Universal SEO metabox
  • FIX UI: Remove GA tab from SEO dashboard if disabled
  • FIX Primary post / product categories in XML sitemaps
  • FIX Missing sameAs properties for Article automatic schema
  • FIX i18n

View our complete changelog

Download this release

Release Info

Developer rainbowgeek
Plugin Icon 128x128 SEOPress
Version 5.8
Comparing to
See all releases

Code changes from version 5.7.3 to 5.8

Files changed (47) hide show
  1. assets/css/seopress.css +89 -79
  2. assets/css/seopress.min.css +1 -1
  3. assets/js/build/primary-category-select.asset.php +1 -0
  4. assets/js/build/primary-category-select.js +1 -0
  5. assets/js/seopress-dashboard.js +2 -2
  6. assets/js/seopress-dashboard.min.js +1 -1
  7. assets/js/seopress-sitemap-video.js +94 -45
  8. assets/js/seopress-sitemap-video.min.js +1 -1
  9. assets/js/src/primary-category-select.js +95 -0
  10. inc/admin/admin-bar/admin-header.php +1 -1
  11. inc/admin/admin-features-list.php +22 -15
  12. inc/admin/admin.php +1 -1
  13. inc/admin/ajax.php +29 -7
  14. inc/admin/blocks/insights.php +54 -50
  15. inc/admin/blocks/notifications-center.php +1 -1
  16. inc/admin/callbacks/Advanced.php +9 -1
  17. inc/admin/callbacks/Analytics.php +6 -0
  18. inc/admin/callbacks/ImageSEO.php +28 -0
  19. inc/admin/callbacks/Sitemaps.php +2 -2
  20. inc/admin/callbacks/Social.php +4 -2
  21. inc/admin/callbacks/Titles.php +2 -1
  22. inc/admin/cron.php +2 -2
  23. inc/admin/docs/DocsLinks.php +9 -7
  24. inc/admin/export/csv.php +1 -1
  25. inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php +12 -8
  26. inc/admin/metaboxes/admin-metaboxes.php +13 -15
  27. inc/admin/metaboxes/admin-term-metaboxes.php +25 -27
  28. inc/admin/page-builders/gutenberg/inc/blocks/faq-block/build/index.asset.php +1 -1
  29. inc/admin/page-builders/gutenberg/inc/blocks/faq-block/build/index.css +1 -2
  30. inc/admin/page-builders/gutenberg/inc/blocks/faq-block/build/index.js +1 -1
  31. inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js +18 -14
  32. inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/register-block.php +7 -5
  33. inc/admin/sections/Sitemaps.php +7 -8
  34. inc/admin/sections/Social.php +3 -0
  35. inc/admin/settings/Advanced.php +8 -0
  36. inc/admin/settings/ImageSEO.php +3 -3
  37. inc/admin/wizard/admin-wizard.php +11 -3
  38. inc/functions/options-advanced-admin.php +43 -11
  39. inc/functions/options-advanced.php +16 -92
  40. inc/functions/options-google-analytics.php +24 -190
  41. inc/functions/options-import-export.php +4 -0
  42. inc/functions/options-instant-indexing.php +2 -2
  43. inc/functions/options-sitemap.php +3 -1
  44. inc/functions/options-social.php +6 -0
  45. inc/functions/sitemap/template-xml-sitemaps.php +5 -5
  46. languages/wp-seopress.pot +781 -677
  47. public/metaboxe.js +0 -1
assets/css/seopress.css CHANGED
@@ -303,6 +303,7 @@ body .seopress-option select:active {
303
  }
304
 
305
  @media only screen and (max-width: 1024px) {
 
306
  body .seopress-option input[type="text"],
307
  body .seopress-option input[type="password"],
308
  body .seopress-option input[type="number"],
@@ -430,11 +431,12 @@ table.fixed thead .column-seopress_noindex {
430
  }
431
 
432
  @media only screen and (max-width: 1200px) {
433
- table.fixed .column-seopress_title > div,
434
- table.fixed .column-seopress_desc > div,
435
- table.fixed .column-seopress_redirect_enable > div,
436
- table.fixed .column-seopress_redirect_url > div,
437
- table.fixed .column-seopress_canonical > div {
 
438
  white-space: nowrap;
439
  overflow: hidden;
440
  text-overflow: ellipsis;
@@ -459,9 +461,7 @@ table.fixed thead .column-seopress_noindex {
459
  width: 35%;
460
  }
461
 
462
- .post-type-seopress_backlinks
463
- .wp-list-table
464
- .column-seopress_backlinks_anchor_text {
465
  width: 20%;
466
  }
467
 
@@ -715,8 +715,7 @@ table.fixed thead .column-seopress_noindex {
715
  }
716
 
717
  .seopress-get-started {
718
- background: #fff url(../img/bg-hero-started.svg) no-repeat 100% 50% /
719
- contain;
720
  position: relative;
721
  }
722
 
@@ -1060,53 +1059,66 @@ table.fixed thead .column-seopress_noindex {
1060
  display: flex;
1061
  align-content: center;
1062
  }
 
1063
  #seopress_content_analysis .analysis-score p,
1064
  .column-seopress_score .analysis-score p {
1065
  font-weight: bold;
1066
  font-size: 1.2em;
1067
  }
 
1068
  #seopress-ca-tabs .seopress-gsc-render {
1069
  margin: 1rem 0;
1070
  }
 
1071
  #seopress-ca-tabs .dashicons {
1072
  vertical-align: middle;
1073
  margin-right: 1rem;
1074
  }
 
1075
  #seopress-ca-tabs .seopress-gsc-verdict .dashicons {
1076
  font-size: 30px;
1077
  width: 30px;
1078
  height: 30px;
1079
  }
 
1080
  #seopress-ca-tabs .dashicons-yes-alt {
1081
  color: var(--colorSuccess);
1082
  }
 
1083
  #seopress-ca-tabs .dashicons-info {
1084
  color: var(--colorWarning);
1085
  }
 
1086
  #seopress-ca-tabs .dashicons-dismiss {
1087
  color: var(--colorAlert);
1088
  }
 
1089
  #seopress-ca-tabs .seopress-gsc-analysis {
1090
  margin-top: 1rem;
1091
  margin-bottom: 1rem;
1092
  display: inline-block;
1093
  width: 100%;
1094
  }
 
1095
  #seopress-ca-tabs .seopress-gsc-cat {
1096
  border-bottom: 1px solid var(--borderColorCard);
1097
  margin-bottom: 0.5rem;
1098
  font-weight: bold;
1099
  padding-bottom: 0.5rem;
1100
  }
 
1101
  #seopress-ca-tabs .seopress-gsc-analysis .seopress-gsc-item {
1102
  display: flex;
1103
  }
 
1104
  #seopress-ca-tabs .seopress-gsc-analysis .seopress-gsc-item-name {
1105
  width: 240px;
1106
  }
 
1107
  #seopress-ca-tabs .seopress-gsc-analysis .seopress-gsc-item div {
1108
  margin: 0.5rem 0;
1109
  }
 
1110
  #seopress-ca-tabs .seopress-gsc-summary {
1111
  display: block;
1112
  padding: 20px;
@@ -1114,10 +1126,12 @@ table.fixed thead .column-seopress_noindex {
1114
  top: 0;
1115
  left: 0;
1116
  }
 
1117
  #seopress-ca-tabs .seopress-gsc-verdict {
1118
  font-weight: bold;
1119
  font-size: 1.2em;
1120
  }
 
1121
  #seopress_content_analysis .analysis-score svg,
1122
  .column-seopress_score .analysis-score svg {
1123
  display: inline-block;
@@ -1348,6 +1362,7 @@ table.fixed thead .column-seopress_noindex {
1348
  }
1349
 
1350
  @media only screen and (max-width: 782px) {
 
1351
  #seopress_cpt .description,
1352
  #seopress_pro_cpt .description,
1353
  #seopress_content_analysis .description,
@@ -1356,12 +1371,12 @@ table.fixed thead .column-seopress_noindex {
1356
  }
1357
  }
1358
 
1359
- #seopress_cpt input ~ span.description,
1360
- #seopress_cpt span.description ~ input,
1361
- #seopress_content_analysis input ~ span.description,
1362
- #seopress_content_analysis span.description ~ input,
1363
- #seopress_pro_cpt input ~ span.description,
1364
- #seopress_pro_cpt span.description ~ input {
1365
  margin-top: 5px;
1366
  }
1367
 
@@ -1399,10 +1414,7 @@ table.fixed thead .column-seopress_noindex {
1399
  top: calc(50% - 7px);
1400
  }
1401
 
1402
- #seopress_content_analysis
1403
- .gr-analysis-title
1404
- button.open
1405
- .seopress-arrow::after {
1406
  content: "\f347";
1407
  }
1408
 
@@ -1439,6 +1451,7 @@ table.fixed thead .column-seopress_noindex {
1439
  padding: 0;
1440
  text-align: left;
1441
  cursor: default;
 
1442
  }
1443
 
1444
  #seopress_content_analysis .wrap-analysis-img h4 {
@@ -1481,7 +1494,8 @@ table.fixed thead .column-seopress_noindex {
1481
 
1482
  /* SEO metabox */
1483
  #seopress_cpt .description-alt,
1484
- #seopress_content_analysis .description-alt {
 
1485
  padding: 1em 0;
1486
  border-top: 1px solid var(--borderColorLight);
1487
  border-bottom: 1px solid var(--borderColorLight);
@@ -1494,7 +1508,8 @@ table.fixed thead .column-seopress_noindex {
1494
  }
1495
 
1496
  #seopress_cpt .description-alt svg,
1497
- #seopress_content_analysis .description-alt svg {
 
1498
  vertical-align: middle;
1499
  align-self: center;
1500
  fill: #f0b849;
@@ -1581,7 +1596,7 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
1581
  }
1582
 
1583
  #seopress_cpt #tabs-6 #wrap-videos .video .accordion-section-content,
1584
- #seopress_cpt #tabs-6 > p {
1585
  padding: 0 1.4em;
1586
  }
1587
 
@@ -1631,6 +1646,7 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
1631
  }
1632
 
1633
  @media only screen and (max-width: 1200px) {
 
1634
  #seopress_cpt .box-left,
1635
  #seopress_cpt .box-right {
1636
  float: none;
@@ -1640,6 +1656,7 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
1640
  }
1641
 
1642
  @media only screen and (max-width: 1500px) {
 
1643
  #seopress_cpt #tabs-3 .box-left,
1644
  #seopress_cpt #tabs-3 .box-right {
1645
  float: none;
@@ -1718,8 +1735,7 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
1718
  #seopress_cpt .ui-tabs .ui-tabs-nav li a:focus,
1719
  #seopress_cpt .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a:focus {
1720
  outline: 3px solid transparent;
1721
- box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus)
1722
- var(--backgroundPrimary),
1723
  inset 0 -4px 0 0 var(--backgroundPrimary);
1724
  }
1725
 
@@ -1770,7 +1786,7 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
1770
  padding: 12px 16px;
1771
  }
1772
 
1773
- #seopress_cpt .google-snippet-preview > p {
1774
  word-break: normal;
1775
  }
1776
 
@@ -1830,6 +1846,7 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
1830
  max-width: inherit;
1831
  height: 104px;
1832
  border-radius: 8px;
 
1833
  }
1834
 
1835
  #seopress_cpt .google-snippet-preview.mobile-preview .wrap-m-icon-permalink {
@@ -1840,10 +1857,7 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
1840
  display: flex;
1841
  }
1842
 
1843
- #seopress_cpt
1844
- .google-snippet-preview.mobile-preview
1845
- .wrap-m-icon-permalink
1846
- .snippet-permalink {
1847
  display: block;
1848
  color: #3c4043;
1849
  font-size: 12px;
@@ -1860,10 +1874,7 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
1860
  max-width: inherit;
1861
  }
1862
 
1863
- #seopress_cpt
1864
- .google-snippet-preview.mobile-preview
1865
- .wrap-snippet
1866
- .snippet-permalink:first-child {
1867
  color: #3c4043;
1868
  white-space: nowrap;
1869
  font-size: 12px;
@@ -1883,12 +1894,8 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
1883
  }
1884
 
1885
  #seopress_cpt .google-snippet-preview.mobile-preview .snippet-description,
1886
- #seopress_cpt
1887
- .google-snippet-preview.mobile-preview
1888
- .snippet-description-custom,
1889
- #seopress_cpt
1890
- .google-snippet-preview.mobile-preview
1891
- .snippet-description-default {
1892
  color: #3c4043;
1893
  font-size: 14px;
1894
  line-height: 20px;
@@ -2443,6 +2450,7 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
2443
  }
2444
 
2445
  @media only screen and (max-width: 782px) {
 
2446
  #seopress-content .feature-state,
2447
  .seopress-option .feature-state {
2448
  display: none;
@@ -2549,7 +2557,7 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
2549
  font-size: 1.5em;
2550
  }
2551
 
2552
- .seopress-option .sp-section-header > .dashicons {
2553
  color: var(--primaryColor);
2554
  padding: 10px;
2555
  border-radius: 6px;
@@ -2572,6 +2580,7 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
2572
  width: calc(100% - 108px);
2573
  z-index: 10;
2574
  }
 
2575
  #seopress-ca-tabs .seopress-notice,
2576
  .seopress-setup .seopress-notice,
2577
  #seopress-tabs .seopress-notice,
@@ -2873,7 +2882,7 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
2873
  position: relative;
2874
  }
2875
 
2876
- .seopress-option .seopress-card-actions a + button {
2877
  margin-left: 0.5em;
2878
  }
2879
 
@@ -2885,9 +2894,7 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
2885
  align-items: center;
2886
  }
2887
 
2888
- .seopress-dashboard-columns
2889
- .seopress-dashboard-column:last-child
2890
- .seopress-card-title:hover {
2891
  cursor: move;
2892
  }
2893
 
@@ -2993,6 +3000,7 @@ body .seopress-cart-list h3 {
2993
  }
2994
 
2995
  @media only screen and (max-width: 782px) {
 
2996
  #seopress_cpt .wrap-tags,
2997
  .seopress-option .wrap-tags,
2998
  #seopress_pro_cpt .wrap-tags {
@@ -3159,6 +3167,7 @@ body .seopress-cart-list h3 {
3159
  }
3160
 
3161
  @media only screen and (max-width: 782px) {
 
3162
  #seopress_cpt .tag-title,
3163
  .seopress-option .tag-title,
3164
  #seopress_pro_cpt .tag-title,
@@ -3233,9 +3242,9 @@ body .seopress-cart-list h3 {
3233
  min-width: 0;
3234
  }
3235
 
3236
- #seopress-content input.toggle + label,
3237
- .seopress-option input.toggle + label,
3238
- #seopress_cpt #tabs-1 input.toggle + label {
3239
  display: inline-block;
3240
  position: relative;
3241
  box-shadow: inset 0 0 0 1px #d5d5d5;
@@ -3246,23 +3255,23 @@ body .seopress-cart-list h3 {
3246
  margin: 0 10px 0 0;
3247
  }
3248
 
3249
- #seopress-content input.toggle + label {
3250
  margin: 0 0px 0 0;
3251
  left: -20px;
3252
  }
3253
 
3254
- #seopress_cpt #tabs-1 input.toggle + label {
3255
  margin: 0;
3256
  }
3257
 
3258
- .wrap-toggle-checkboxes input.toggle + label {
3259
  float: left;
3260
  margin-right: 10px;
3261
  }
3262
 
3263
- #seopress-content input.toggle + label:before,
3264
- .seopress-option input.toggle + label:before,
3265
- #seopress_cpt input.toggle + label:before {
3266
  content: "";
3267
  position: absolute;
3268
  display: block;
@@ -3275,9 +3284,9 @@ body .seopress-cart-list h3 {
3275
  transition: 0.25s ease-in-out;
3276
  }
3277
 
3278
- #seopress-content input.toggle + label:after,
3279
- .seopress-option input.toggle + label:after,
3280
- #seopress_cpt input.toggle + label:after {
3281
  content: "";
3282
  position: absolute;
3283
  display: block;
@@ -3291,45 +3300,45 @@ body .seopress-cart-list h3 {
3291
  transition: 0.25s ease-in-out;
3292
  }
3293
 
3294
- .seopress_wrap_single_cpt input.toggle + label,
3295
- .seopress_wrap_single_cpt input.toggle + label:before,
3296
- .seopress_wrap_tax input.toggle + label,
3297
- .seopress_wrap_tax input.toggle + label:before,
3298
- #seopress_cpt input.toggle + label,
3299
- #seopress_cpt input.toggle + label:before {
3300
  width: 40px;
3301
  height: 20px;
3302
  }
3303
 
3304
- .seopress_wrap_single_cpt input.toggle + label:after,
3305
- .seopress_wrap_tax input.toggle + label:after,
3306
- #seopress_cpt input.toggle + label:after {
3307
  width: 20px;
3308
  height: 20px;
3309
  }
3310
 
3311
- #seopress-content input.toggle[data-toggle="1"] + label:before,
3312
- .seopress-option input.toggle[data-toggle="1"] + label:before,
3313
- #seopress_cpt input.toggle[data-toggle="1"] + label:before,
3314
- .seopress_wrap_single_cpt input.toggle[data-toggle="1"] + label:before,
3315
- #seopress_cpt input.toggle[data-toggle="1"] + label:before,
3316
- .seopress_wrap_tax input.toggle[data-toggle="1"] + label:before,
3317
- #seopress_cpt input.toggle[data-toggle="1"] + label:before {
3318
  width: 40px;
3319
  background: var(--backgroundPrimary);
3320
  }
3321
 
3322
- #seopress-content input.toggle[data-toggle="1"] + label:after,
3323
- .seopress-option input.toggle[data-toggle="1"] + label:after,
3324
- #seopress_cpt input.toggle[data-toggle="1"] + label:after {
3325
  left: 20px;
3326
  box-shadow: inset 0 0 0 1px var(--backgroundPrimary),
3327
  0 2px 4px rgba(0, 0, 0, 0.2);
3328
  }
3329
 
3330
- .seopress_wrap_single_cpt input.toggle[data-toggle="1"] + label:after,
3331
- .seopress_wrap_tax input.toggle[data-toggle="1"] + label:after,
3332
- #seopress_cpt input.toggle[data-toggle="1"] + label:after {
3333
  box-shadow: inset 0 0 0 1px var(--backgroundPrimary),
3334
  0 2px 4px rgba(0, 0, 0, 0.2);
3335
  }
@@ -3360,6 +3369,7 @@ body .seopress-cart-list h3 {
3360
  }
3361
 
3362
  @media only screen and (max-width: 782px) {
 
3363
  .seopress-setup .wrap,
3364
  .seopress-styles .wrap {
3365
  display: inherit;
303
  }
304
 
305
  @media only screen and (max-width: 1024px) {
306
+
307
  body .seopress-option input[type="text"],
308
  body .seopress-option input[type="password"],
309
  body .seopress-option input[type="number"],
431
  }
432
 
433
  @media only screen and (max-width: 1200px) {
434
+
435
+ table.fixed .column-seopress_title>div,
436
+ table.fixed .column-seopress_desc>div,
437
+ table.fixed .column-seopress_redirect_enable>div,
438
+ table.fixed .column-seopress_redirect_url>div,
439
+ table.fixed .column-seopress_canonical>div {
440
  white-space: nowrap;
441
  overflow: hidden;
442
  text-overflow: ellipsis;
461
  width: 35%;
462
  }
463
 
464
+ .post-type-seopress_backlinks .wp-list-table .column-seopress_backlinks_anchor_text {
 
 
465
  width: 20%;
466
  }
467
 
715
  }
716
 
717
  .seopress-get-started {
718
+ background: #fff url(../img/bg-hero-started.svg) no-repeat 100% 50% / contain;
 
719
  position: relative;
720
  }
721
 
1059
  display: flex;
1060
  align-content: center;
1061
  }
1062
+
1063
  #seopress_content_analysis .analysis-score p,
1064
  .column-seopress_score .analysis-score p {
1065
  font-weight: bold;
1066
  font-size: 1.2em;
1067
  }
1068
+
1069
  #seopress-ca-tabs .seopress-gsc-render {
1070
  margin: 1rem 0;
1071
  }
1072
+
1073
  #seopress-ca-tabs .dashicons {
1074
  vertical-align: middle;
1075
  margin-right: 1rem;
1076
  }
1077
+
1078
  #seopress-ca-tabs .seopress-gsc-verdict .dashicons {
1079
  font-size: 30px;
1080
  width: 30px;
1081
  height: 30px;
1082
  }
1083
+
1084
  #seopress-ca-tabs .dashicons-yes-alt {
1085
  color: var(--colorSuccess);
1086
  }
1087
+
1088
  #seopress-ca-tabs .dashicons-info {
1089
  color: var(--colorWarning);
1090
  }
1091
+
1092
  #seopress-ca-tabs .dashicons-dismiss {
1093
  color: var(--colorAlert);
1094
  }
1095
+
1096
  #seopress-ca-tabs .seopress-gsc-analysis {
1097
  margin-top: 1rem;
1098
  margin-bottom: 1rem;
1099
  display: inline-block;
1100
  width: 100%;
1101
  }
1102
+
1103
  #seopress-ca-tabs .seopress-gsc-cat {
1104
  border-bottom: 1px solid var(--borderColorCard);
1105
  margin-bottom: 0.5rem;
1106
  font-weight: bold;
1107
  padding-bottom: 0.5rem;
1108
  }
1109
+
1110
  #seopress-ca-tabs .seopress-gsc-analysis .seopress-gsc-item {
1111
  display: flex;
1112
  }
1113
+
1114
  #seopress-ca-tabs .seopress-gsc-analysis .seopress-gsc-item-name {
1115
  width: 240px;
1116
  }
1117
+
1118
  #seopress-ca-tabs .seopress-gsc-analysis .seopress-gsc-item div {
1119
  margin: 0.5rem 0;
1120
  }
1121
+
1122
  #seopress-ca-tabs .seopress-gsc-summary {
1123
  display: block;
1124
  padding: 20px;
1126
  top: 0;
1127
  left: 0;
1128
  }
1129
+
1130
  #seopress-ca-tabs .seopress-gsc-verdict {
1131
  font-weight: bold;
1132
  font-size: 1.2em;
1133
  }
1134
+
1135
  #seopress_content_analysis .analysis-score svg,
1136
  .column-seopress_score .analysis-score svg {
1137
  display: inline-block;
1362
  }
1363
 
1364
  @media only screen and (max-width: 782px) {
1365
+
1366
  #seopress_cpt .description,
1367
  #seopress_pro_cpt .description,
1368
  #seopress_content_analysis .description,
1371
  }
1372
  }
1373
 
1374
+ #seopress_cpt input~span.description,
1375
+ #seopress_cpt span.description~input,
1376
+ #seopress_content_analysis input~span.description,
1377
+ #seopress_content_analysis span.description~input,
1378
+ #seopress_pro_cpt input~span.description,
1379
+ #seopress_pro_cpt span.description~input {
1380
  margin-top: 5px;
1381
  }
1382
 
1414
  top: calc(50% - 7px);
1415
  }
1416
 
1417
+ #seopress_content_analysis .gr-analysis-title button.open .seopress-arrow::after {
 
 
 
1418
  content: "\f347";
1419
  }
1420
 
1451
  padding: 0;
1452
  text-align: left;
1453
  cursor: default;
1454
+ user-select: auto;
1455
  }
1456
 
1457
  #seopress_content_analysis .wrap-analysis-img h4 {
1494
 
1495
  /* SEO metabox */
1496
  #seopress_cpt .description-alt,
1497
+ #seopress_content_analysis .description-alt,
1498
+ #seopress-schemas-tabs .description-alt {
1499
  padding: 1em 0;
1500
  border-top: 1px solid var(--borderColorLight);
1501
  border-bottom: 1px solid var(--borderColorLight);
1508
  }
1509
 
1510
  #seopress_cpt .description-alt svg,
1511
+ #seopress_content_analysis .description-alt svg,
1512
+ #seopress-schemas-tabs .description-alt svg {
1513
  vertical-align: middle;
1514
  align-self: center;
1515
  fill: #f0b849;
1596
  }
1597
 
1598
  #seopress_cpt #tabs-6 #wrap-videos .video .accordion-section-content,
1599
+ #seopress_cpt #tabs-6>p {
1600
  padding: 0 1.4em;
1601
  }
1602
 
1646
  }
1647
 
1648
  @media only screen and (max-width: 1200px) {
1649
+
1650
  #seopress_cpt .box-left,
1651
  #seopress_cpt .box-right {
1652
  float: none;
1656
  }
1657
 
1658
  @media only screen and (max-width: 1500px) {
1659
+
1660
  #seopress_cpt #tabs-3 .box-left,
1661
  #seopress_cpt #tabs-3 .box-right {
1662
  float: none;
1735
  #seopress_cpt .ui-tabs .ui-tabs-nav li a:focus,
1736
  #seopress_cpt .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a:focus {
1737
  outline: 3px solid transparent;
1738
+ box-shadow: inset 0 0 0 var(--wp-admin-border-width-focus) var(--backgroundPrimary),
 
1739
  inset 0 -4px 0 0 var(--backgroundPrimary);
1740
  }
1741
 
1786
  padding: 12px 16px;
1787
  }
1788
 
1789
+ #seopress_cpt .google-snippet-preview>p {
1790
  word-break: normal;
1791
  }
1792
 
1846
  max-width: inherit;
1847
  height: 104px;
1848
  border-radius: 8px;
1849
+ object-fit: cover;
1850
  }
1851
 
1852
  #seopress_cpt .google-snippet-preview.mobile-preview .wrap-m-icon-permalink {
1857
  display: flex;
1858
  }
1859
 
1860
+ #seopress_cpt .google-snippet-preview.mobile-preview .wrap-m-icon-permalink .snippet-permalink {
 
 
 
1861
  display: block;
1862
  color: #3c4043;
1863
  font-size: 12px;
1874
  max-width: inherit;
1875
  }
1876
 
1877
+ #seopress_cpt .google-snippet-preview.mobile-preview .wrap-snippet .snippet-permalink:first-child {
 
 
 
1878
  color: #3c4043;
1879
  white-space: nowrap;
1880
  font-size: 12px;
1894
  }
1895
 
1896
  #seopress_cpt .google-snippet-preview.mobile-preview .snippet-description,
1897
+ #seopress_cpt .google-snippet-preview.mobile-preview .snippet-description-custom,
1898
+ #seopress_cpt .google-snippet-preview.mobile-preview .snippet-description-default {
 
 
 
 
1899
  color: #3c4043;
1900
  font-size: 14px;
1901
  line-height: 20px;
2450
  }
2451
 
2452
  @media only screen and (max-width: 782px) {
2453
+
2454
  #seopress-content .feature-state,
2455
  .seopress-option .feature-state {
2456
  display: none;
2557
  font-size: 1.5em;
2558
  }
2559
 
2560
+ .seopress-option .sp-section-header>.dashicons {
2561
  color: var(--primaryColor);
2562
  padding: 10px;
2563
  border-radius: 6px;
2580
  width: calc(100% - 108px);
2581
  z-index: 10;
2582
  }
2583
+
2584
  #seopress-ca-tabs .seopress-notice,
2585
  .seopress-setup .seopress-notice,
2586
  #seopress-tabs .seopress-notice,
2882
  position: relative;
2883
  }
2884
 
2885
+ .seopress-option .seopress-card-actions a+button {
2886
  margin-left: 0.5em;
2887
  }
2888
 
2894
  align-items: center;
2895
  }
2896
 
2897
+ .seopress-dashboard-columns .seopress-dashboard-column:last-child .seopress-card-title:hover {
 
 
2898
  cursor: move;
2899
  }
2900
 
3000
  }
3001
 
3002
  @media only screen and (max-width: 782px) {
3003
+
3004
  #seopress_cpt .wrap-tags,
3005
  .seopress-option .wrap-tags,
3006
  #seopress_pro_cpt .wrap-tags {
3167
  }
3168
 
3169
  @media only screen and (max-width: 782px) {
3170
+
3171
  #seopress_cpt .tag-title,
3172
  .seopress-option .tag-title,
3173
  #seopress_pro_cpt .tag-title,
3242
  min-width: 0;
3243
  }
3244
 
3245
+ #seopress-content input.toggle+label,
3246
+ .seopress-option input.toggle+label,
3247
+ #seopress_cpt #tabs-1 input.toggle+label {
3248
  display: inline-block;
3249
  position: relative;
3250
  box-shadow: inset 0 0 0 1px #d5d5d5;
3255
  margin: 0 10px 0 0;
3256
  }
3257
 
3258
+ #seopress-content input.toggle+label {
3259
  margin: 0 0px 0 0;
3260
  left: -20px;
3261
  }
3262
 
3263
+ #seopress_cpt #tabs-1 input.toggle+label {
3264
  margin: 0;
3265
  }
3266
 
3267
+ .wrap-toggle-checkboxes input.toggle+label {
3268
  float: left;
3269
  margin-right: 10px;
3270
  }
3271
 
3272
+ #seopress-content input.toggle+label:before,
3273
+ .seopress-option input.toggle+label:before,
3274
+ #seopress_cpt input.toggle+label:before {
3275
  content: "";
3276
  position: absolute;
3277
  display: block;
3284
  transition: 0.25s ease-in-out;
3285
  }
3286
 
3287
+ #seopress-content input.toggle+label:after,
3288
+ .seopress-option input.toggle+label:after,
3289
+ #seopress_cpt input.toggle+label:after {
3290
  content: "";
3291
  position: absolute;
3292
  display: block;
3300
  transition: 0.25s ease-in-out;
3301
  }
3302
 
3303
+ .seopress_wrap_single_cpt input.toggle+label,
3304
+ .seopress_wrap_single_cpt input.toggle+label:before,
3305
+ .seopress_wrap_tax input.toggle+label,
3306
+ .seopress_wrap_tax input.toggle+label:before,
3307
+ #seopress_cpt input.toggle+label,
3308
+ #seopress_cpt input.toggle+label:before {
3309
  width: 40px;
3310
  height: 20px;
3311
  }
3312
 
3313
+ .seopress_wrap_single_cpt input.toggle+label:after,
3314
+ .seopress_wrap_tax input.toggle+label:after,
3315
+ #seopress_cpt input.toggle+label:after {
3316
  width: 20px;
3317
  height: 20px;
3318
  }
3319
 
3320
+ #seopress-content input.toggle[data-toggle="1"]+label:before,
3321
+ .seopress-option input.toggle[data-toggle="1"]+label:before,
3322
+ #seopress_cpt input.toggle[data-toggle="1"]+label:before,
3323
+ .seopress_wrap_single_cpt input.toggle[data-toggle="1"]+label:before,
3324
+ #seopress_cpt input.toggle[data-toggle="1"]+label:before,
3325
+ .seopress_wrap_tax input.toggle[data-toggle="1"]+label:before,
3326
+ #seopress_cpt input.toggle[data-toggle="1"]+label:before {
3327
  width: 40px;
3328
  background: var(--backgroundPrimary);
3329
  }
3330
 
3331
+ #seopress-content input.toggle[data-toggle="1"]+label:after,
3332
+ .seopress-option input.toggle[data-toggle="1"]+label:after,
3333
+ #seopress_cpt input.toggle[data-toggle="1"]+label:after {
3334
  left: 20px;
3335
  box-shadow: inset 0 0 0 1px var(--backgroundPrimary),
3336
  0 2px 4px rgba(0, 0, 0, 0.2);
3337
  }
3338
 
3339
+ .seopress_wrap_single_cpt input.toggle[data-toggle="1"]+label:after,
3340
+ .seopress_wrap_tax input.toggle[data-toggle="1"]+label:after,
3341
+ #seopress_cpt input.toggle[data-toggle="1"]+label:after {
3342
  box-shadow: inset 0 0 0 1px var(--backgroundPrimary),
3343
  0 2px 4px rgba(0, 0, 0, 0.2);
3344
  }
3369
  }
3370
 
3371
  @media only screen and (max-width: 782px) {
3372
+
3373
  .seopress-setup .wrap,
3374
  .seopress-styles .wrap {
3375
  display: inherit;
assets/css/seopress.min.css CHANGED
@@ -1 +1 @@
1
- #seopress_content_analysis *,#seopress_cpt *,#seopress_pro_cpt *,.seopress-option *,.seopress-styles *{box-sizing:border-box}@font-face{font-family:seopress;src:url(../fonts/seopress.eot?81521271);src:url(../fonts/seopress.eot?81521271#iefix) format("embedded-opentype"),url(../fonts/seopress.woff?81521271) format("woff2"),url(../fonts/seopress.woff?81521271) format("woff"),url(../fonts/seopress.ttf?81521271) format("truetype"),url(../fonts/seopress.svg?81521271#seopress) format("svg");font-weight:400;font-style:normal}[class*=" icon-seopress"],[class^=icon-seopress-]{font-family:seopress!important;font-size:14px!important;line-height:24px!important}#adminmenu div.wp-menu-image.dashicons-admin-seopress::before{content:"\e800";font-family:seopress;font-weight:700;font-size:12px;line-height:20px}#seopress_content_analysis,#seopress_cpt,#seopress_pro_cpt,#wpadminbar,.column-seopress_score,.post-type-seopress_404 #wpcontent,.post-type-seopress_schemas #wpcontent,.seopress-option #wpcontent,.seopress-styles #wpcontent,.seopress-ui-datepicker{--primaryColor:#007cba;--paragraphColor:#757575;--fontSize:13px;--fontFamily:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;--color:#757575;--colorDark:#1e1e1e;--colorAlert:#eb0f00;--colorWarning:#ffba00;--colorSuccess:#4ab866;--colorLowAlert:#e39f48;--colorPre:#37864b;--colorIcon:#d7dade;--lineHeight:24px;--titleColor:#3c434a;--titleFontSize:20px;--titleFontWeight:normal;--titleMargin:10px 0;--backgroundPrimary:#007cba;--backgroundPrimaryHover:#006ba1;--backgroundSecondaryHover:#f0f0f0;--borderColor:#a7aaad;--borderColorLight:#dcdcde;--borderColorLight40:rgba(220, 220, 222, 0.4);--borderColorCard:#e2e4e7;--borderColorTab:#c3c4c7}.seopress-option .text-center,.seopress-styles .text-center{text-align:center}.post-type-seopress_404 .btn,.post-type-seopress_schemas .btn,.seopress-option .btn,.seopress-styles .btn{display:inline-flex;text-decoration:none;font-size:var(--fontSize);margin:0;border:0;cursor:pointer;-webkit-appearance:none;background:0 0;transition:box-shadow .1s linear;height:36px;align-items:center;padding:6px 12px;border-radius:2px;vertical-align:middle;color:var(--colorDark);white-space:nowrap;outline:1px solid transparent}.post-type-seopress_404 .btnPrimary,.post-type-seopress_schemas .btnPrimary,.seopress-option .btnPrimary,.seopress-styles .btnPrimary{background:var(--primaryColor);color:#fff;text-decoration:none}.post-type-seopress_404 .btnPrimary:hover,.post-type-seopress_schemas .btnPrimary:hover,.seopress-option .btnPrimary:hover,.seopress-styles .btnPrimary:hover{background:var(--backgroundPrimaryHover);color:#fff}.post-type-seopress_404 .btnSecondary,.post-type-seopress_schemas .btnSecondary,.seopress-option .btnSecondary,.seopress-styles .btnSecondary{box-shadow:inset 0 0 0 1px var(--primaryColor);color:var(--primaryColor);background:0 0}.seopress-option .btnSecondary.is-deletable,.seopress-styles .btnSecondary.is-deletable{border-color:#cc1818;color:#cc1818;box-shadow:rgb(204 24 24) 0 0 0 1px inset}.post-type-seopress_404 .btnTertiary,.post-type-seopress_schemas .btnTertiary,.seopress-option .btnTertiary,.seopress-styles .btnTertiary{color:var(--primaryColor);background:0 0}.post-type-seopress_404 .btnTertiary:hover,.post-type-seopress_schemas .btnTertiary:hover,.seopress-option .btnTertiary:hover,.seopress-styles .btnTertiary:hover{box-shadow:inset 0 0 0 1px var(--primaryColor)}.seopress-option hr,.seopress-setup hr,.seopress-styles hr{align-self:center;flex-grow:1;height:1px;margin:0 10px;border:0;border-top:1px solid #dcdcde;border-bottom:1px solid #f6f7f7}.seopress-setup hr{margin-left:10px}#seopress-tabs.wrap .list-none{list-style:none;padding-left:0}.seopress-option .dashicons,.seopress-page-list .dashicons{vertical-align:middle;margin-right:5px;text-decoration:none}#seopress-news-panel .seopress-item-inner .dashicons{vertical-align:top}.seopress-button{text-transform:uppercase;background:#fff;border-color:#c8d7e1;border-style:solid;border-width:1px 1px 2px;color:#2e4453;display:inline-block;margin:0;outline:0;overflow:hidden;text-overflow:ellipsis;text-decoration:none;vertical-align:top;font-size:14px;line-height:20px;padding:6px 8px 6px;-webkit-appearance:none;-moz-appearance:none;appearance:none}.seopress-button:hover{border-color:#a8bece;color:#00a0d2}.seopress-button .dashicons{vertical-align:middle}body .seopress-option h2{color:var(--titleColor);font-size:20px;line-height:24px;font-weight:400}body .seopress-option h3{color:var(--titleColor);font-size:16px;line-height:20px}#seopress_content_analysis input[type=text],#seopress_content_analysis textarea,#seopress_cpt input[type=text],#seopress_cpt textarea,#seopress_pro_cpt input[type=text],#seopress_pro_cpt textarea{width:100%;display:inline-block}#seopress_cpt #tabs-6 input[type=number]{min-width:200px}#seopress_cpt #tabs-6 #wrap-videos .video:first-child .remove-video{display:none}#seopress_content_analysis label,#seopress_cpt label,#seopress_pro_cpt label{margin-bottom:8px;display:inline-block;width:100%}#seopress_cpt #tabs-6{padding:0}body .seopress-option input[type=password],body .seopress-option input[type=text],body .seopress-option select,body .seopress-option textarea{max-width:35rem;border:1px solid var(--borderColor);box-shadow:0 2px 6px rgb(0 0 0 / 5%);width:100%}body .seopress-option select{min-height:50px}.wrap-opening-hours select{width:inherit}body .seopress-option input[type=number],body .seopress-option input[type=password],body .seopress-option input[type=text]{line-height:46px}body .seopress-option input[type=number]:hover,body .seopress-option input[type=password]:hover,body .seopress-option input[type=text]:hover,body .seopress-option select:hover,body .seopress-option textarea:hover{border-color:#787c82}body .seopress-option input[type=number]:active,body .seopress-option input[type=number]:focus,body .seopress-option input[type=password]:active,body .seopress-option input[type=password]:focus,body .seopress-option input[type=text]:active,body .seopress-option input[type=text]:focus,body .seopress-option select:active,body .seopress-option select:focus,body .seopress-option textarea:active,body .seopress-option textarea:focus{box-shadow:0 0 0 2px var(--primaryColor);border-color:transparent}@media only screen and (max-width:1024px){body .seopress-option input[type=number],body .seopress-option input[type=password],body .seopress-option input[type=text],body .seopress-option textarea{min-width:inherit;width:100%}}#seopress_content_analysis input[type=checkbox],#seopress_cpt input[type=checkbox],#seopress_pro_cpt input[type=checkbox],body .seopress-option input[type=checkbox]{font-family:var(--fontFamily);padding:6px 8px;box-shadow:0 0 0 transparent;transition:box-shadow .1s linear;border-radius:2px;border:1px solid var(--color);font-size:16px;line-height:normal;border:1px solid var(--colorDark);margin-right:12px;transition:none;border-radius:2px;background:#fff;color:var(--colorDark);clear:none;cursor:pointer;display:inline-block;line-height:0;margin:-1px 4px 0 0!important;outline:0;padding:0!important;text-align:center;vertical-align:top;width:20px;height:20px;-webkit-appearance:none;appearance:none;transition:.1s border-color ease-in-out}#seopress_content_analysis input[type=checkbox]:checked::before,#seopress_cpt input[type=checkbox]:checked::before,#seopress_pro_cpt input[type=checkbox]:checked::before,body .seopress-option input[type=checkbox]:checked::before{content:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");background:var(--primaryColor);margin:-1px;width:20px;height:20px}#seopress_content_analysis input[type=checkbox]:active,#seopress_content_analysis input[type=checkbox]:focus,#seopress_cpt input[type=checkbox]:active,#seopress_cpt input[type=checkbox]:focus,#seopress_pro_cpt input[type=checkbox]:active,#seopress_pro_cpt input[type=checkbox]:focus,body .seopress-option input[type=checkbox]:active,body .seopress-option input[type=checkbox]:focus{box-shadow:0 0 0 2px var(--primaryColor);border-color:transparent}.field-recommended,.field-required{font-weight:700}.field-required{color:var(--colorAlert)}.field-recommended{color:var(--colorWarning)}.form-table td{padding:15px 0}.form-table td p{margin:4px 0}.form-table td p.seopress_wrap_archive_cpt{margin-bottom:15px}table.wp-list-table .manage_column.column-seopress_canonical,table.wp-list-table .manage_column.column-seopress_desc,table.wp-list-table .manage_column.column-seopress_insights,table.wp-list-table .manage_column.column-seopress_noindex,table.wp-list-table .manage_column.column-seopress_redirect_enable,table.wp-list-table .manage_column.column-seopress_redirect_url,table.wp-list-table .manage_column.column-seopress_title,table.wp-list-table .manage_column.column-seopress_tkw{width:7%!important}.post-type-product table.fixed thead .column-seopress_desc,.post-type-product table.fixed thead .column-seopress_title{width:8%}.post-type-product .fixed .column-seopress_ps,.post-type-product .fixed .column-seopress_words,.post-type-product table.fixed thead .column-seopress_canonical,.post-type-product table.fixed thead .column-seopress_redirect_enable,.post-type-product table.fixed thead .column-seopress_redirect_url,.post-type-product table.fixed thead .column-seopress_tkw{width:6%}.post-type-product .fixed .column-seopress_score{width:50px}table.fixed thead .column-seopress_nofollow,table.fixed thead .column-seopress_noindex{width:100px}@media only screen and (max-width:1200px){table.fixed .column-seopress_canonical>div,table.fixed .column-seopress_desc>div,table.fixed .column-seopress_redirect_enable>div,table.fixed .column-seopress_redirect_url>div,table.fixed .column-seopress_title>div{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}table.fixed thead .column-seopress_canonical,table.fixed thead .column-seopress_nofollow,table.fixed thead .column-seopress_noindex,table.fixed thead .column-seopress_ps,table.fixed thead .column-seopress_redirect_enable,table.fixed thead .column-seopress_redirect_url,table.fixed thead .column-seopress_score,table.fixed thead .column-seopress_tkw,table.fixed thead .column-seopress_words{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}}.post-type-seopress_backlinks .wp-list-table .column-seopress_backlinks_url{width:35%}.post-type-seopress_backlinks .wp-list-table .column-seopress_backlinks_anchor_text{width:20%}.seopress-styles #seopress-header{padding:22px 120px 22px 40px;height:60px;margin:0 auto;width:calc(100% - 160px);background:#fff;position:fixed;top:32px;z-index:110;display:flex;justify-content:space-between;align-items:center}.folded.seopress-styles #seopress-header{width:calc(100% - 35px)}@media only screen and (max-width:782px){.seopress-styles #seopress-header{width:100%;padding:22px;top:46px;position:absolute}}#seopress-header #seopress-navbar ul{margin:0;padding:0}#seopress-header #seopress-navbar ul li{margin:0;display:inline-block;position:relative;padding:0 20px 0 0;font-weight:700}#seopress-header #seopress-navbar ul li::after{content:"/";color:var(--paragraphColor);position:absolute;display:block;top:0;left:calc(100% - 10px)}#seopress-header #seopress-navbar ul li:last-child:after{content:none}.sp-dashboard-card-highlight{border:1px dashed #c3c4c7;margin:20px 0}.seopress-summary-items{display:flex;flex-wrap:wrap}.seopress-summary-item{display:flex;flex-direction:column;padding:20px;border-bottom:1px solid var(--borderColorLight40);border-right:1px solid var(--borderColorLight40);line-height:1.4em;text-decoration:none;width:50%;color:var(--colorDark);justify-content:center}@media only screen and (max-width:782px){.seopress-summary-item{width:100%}}.seopress-summary-item-label{display:block;margin-bottom:16px;color:var(--color);font-size:14px;line-height:20px}.seopress-summary-item-data{margin-bottom:4px;font-weight:500;color:var(--colorDark);font-size:20px;line-height:28px}.seopress-summary-item-data small{font-weight:400;font-size:11px;text-transform:uppercase}.seopress-summary-items .inside,.seopress-tab.inside{padding:20px}#seopress-admin-tabs.ui-tabs{position:relative;padding:.2em;border:none;font-family:inherit;font-size:inherit}#seopress-admin-tabs.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:-1px .2em 0 0;padding:0;white-space:nowrap;border:none;background:0 0}#seopress-admin-tabs.ui-tabs .ui-tabs-nav li a{float:left;padding:.38em 1em .75rem;outline:0;border-bottom:2px solid #fff}#seopress-admin-tabs.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px}#seopress-admin-tabs.ui-tabs .ui-tabs-nav li.ui-state-disabled a,#seopress-admin-tabs.ui-tabs .ui-tabs-nav li.ui-tabs-active a,#seopress-admin-tabs.ui-tabs .ui-tabs-nav li.ui-tabs-loading a{cursor:text;border-bottom:2px solid #23282d;color:#23282d}#seopress-admin-tabs.ui-tabs .ui-tabs-nav li a,#seopress-admin-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a{cursor:pointer;color:#0073aa;text-decoration:none}#seopress-admin-tabs.ui-tabs-vertical{width:55em}#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-nav{padding:.2em .1em .2em .2em;float:left;width:12em}#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-nav li{clear:left;width:100%;border-bottom-width:1px!important;border-right-width:0!important;margin:0 -1px .2em 0}#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-nav li.ui-tabs-active{padding-bottom:0;padding-right:.1em;border-right-width:1px}#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-panel{padding:1em;float:right;width:40em}#seopress-admin-tabs.wrap{background:#fff;display:block;width:64rem;max-width:100%;margin:0 auto}@media only screen and (max-width:1024px){#seopress-admin-tabs.wrap{width:100%}}#seopress-admin-tabs .seopress-tab{width:100%;display:none}#seopress-admin-tabs .seopress-tab.active{visibility:visible;overflow:inherit;opacity:1;transform:translateX(0);display:inherit;position:relative}.seopress-dashboard-columns{display:flex;max-width:64rem;margin:0 auto;justify-content:space-between;flex-direction:row}.seopress-dashboard-column{align-self:flex-start;width:calc(50% - 12px);margin:0}@media only screen and (max-width:782px){.seopress-dashboard-columns{max-width:100%;flex-direction:column}.seopress-dashboard-column{width:100%}}#seopress-admin-tabs .ui-tabs-nav,.seopress-get-started{margin:0 auto 20px;max-width:64rem;padding:2rem;width:100%;border-radius:0 0 4px 4px}.seopress-get-started{background:#fff url(../img/bg-hero-started.svg) no-repeat 100% 50%/contain;position:relative}.seopress-get-started .inside{padding:2rem}.seopress-get-started .preheader{text-transform:uppercase;font-size:11px;font-weight:600;color:var(--paragraphColor)}.seopress-activity-panel-tabs{height:60px;display:flex;align-items:center}.seopress-activity-panel-tabs .btn{display:flex;flex-direction:column;justify-content:center;color:var(--color);height:60px;padding:10px 26px;border-bottom:3px solid transparent}.seopress-activity-panel-tabs .btn:hover{background:var(--backgroundSecondaryHover)}.seopress-activity-panel-tabs .btn.is-active{border-bottom:3px solid var(--backgroundPrimary);color:var(--colorDark)}.seopress-activity-panel-wrapper{height:calc(100vh - 92px);top:92px;background:var(--backgroundSecondaryHover);width:510px;transform:translateX(100%);transition-duration:.3s;transition-timing-function:ease-in-out;position:fixed;right:0;z-index:1000;overflow-x:hidden;overflow-y:auto}@media only screen and (max-width:782px){.seopress-activity-panel-wrapper{top:106px}}.seopress-activity-panel-wrapper.is-open{transform:none;box-shadow:0 12px 12px 0 rgb(85 93 102 / 30%)}.seopress-activity-panel-header{background:#e0e0e0;padding:16px 24px}.seopress-activity-panel-content{background:#fff;padding:16px 24px}.seopress-list-items,.seopress-list-items .seopress-item{margin:0}.seopress-list-items .seopress-item{border-bottom:1px solid var(--borderColorLight40)}.seopress-list-items .seopress-item:last-child{border-bottom:none}.seopress-list-items .seopress-item .seopress-item-inner{color:var(--primaryColor);text-decoration:none;padding:15px 20px;background:#fff;font-size:var(--fontSize);font-weight:700;width:100%}.seopress-option .has-action{display:flex;align-items:center}.seopress-list-items .seopress-item .seopress-item-inner:hover{background:var(--backgroundSecondaryHover)}.seopress-list-items .seopress-item-after,.seopress-list-items .seopress-item-before{margin:0 20px 0 10px;position:relative}.seopress-list-items .seopress-item-after::after,.seopress-list-items .seopress-item-before::before{content:"\f330";font-family:Dashicons;vertical-align:middle;font-size:20px;font-weight:400}.seopress-list-items .seopress-item-after{margin-left:auto;padding-left:20px;margin-right:0}.seopress-list-items .seopress-item-after::after{content:"\f345"}.seopress-list-items .seopress-item .seopress-item-title{margin:5px 0;color:var(--primaryColor)}.seopress-list-items .seopress-item .seopress-item-date{color:var(--paragraphColor);font-weight:400;margin:0}.seopress-list-items .seopress-item .seopress-item-content{color:var(--colorDark);font-weight:400;margin:0}.indexing-log,.seopress-list-items .seopress-item .seopress-item-inner.check{position:relative}.indexing-log::before,.seopress-list-items .seopress-item .seopress-item-inner.check::before{content:"";width:32px;height:32px;font-size:24px;vertical-align:middle;border-radius:50px;color:#fff;margin-right:10px;display:inline-block;border:1px solid var(--borderColorLight);line-height:32px;text-align:center}.indexing-log.indexing-done::before,.indexing-log.indexing-failed::before,.seopress-list-items .seopress-item .seopress-item-inner.done::before{background:var(--backgroundPrimary);border:none;content:"\f15e";font-family:Dashicons}.indexing-log.indexing-done::before{background:var(--colorSuccess)}.indexing-log.indexing-failed::before{background:var(--colorAlert);content:"\f335"}.sp-tooltip{position:relative;margin-left:5px;display:inline-block;cursor:help;vertical-align:bottom;text-align:left;background:0 0;border:none;padding:0}.sp-tooltip .dashicons{color:var(--colorDark)}.sp-tooltip .sp-tooltiptext{visibility:hidden;position:absolute;z-index:999999999;width:350px;right:-310px;padding:20px;top:25px;font-weight:400;box-shadow:0 3px 30px rgb(25 30 35 / 10%);border:1px solid var(--borderColorLight40);background:#fff;word-break:break-word;text-transform:none}.sp-tooltip .sp-tooltiptext::before{border:8px solid var(--borderColorLight40);top:-8px}.sp-tooltip .sp-tooltiptext::after{border:8px solid #fff;top:-6px}.sp-tooltip .sp-tooltiptext::after,.sp-tooltip .sp-tooltiptext::before{border-bottom-style:solid;border-left-color:transparent;border-right-color:transparent;border-top:none;margin-left:-10px;content:"";position:absolute;height:0;width:0;line-height:0;left:30px}.sp-tooltip:active .sp-tooltiptext,.sp-tooltip:focus .sp-tooltiptext,.sp-tooltip:hover .sp-tooltiptext{visibility:visible}.sp-tooltip .sp-tooltip-headings{font-size:18px;font-weight:600;margin-bottom:20px;display:block}.sp-tooltip .sp-tooltip-desc{margin-bottom:20px;display:block;border-bottom:1px solid var(--borderColorLight40);padding-bottom:20px;font-size:var(--fontSize);line-height:1.5}.sp-tooltip .sp-tooltip-code{font-family:Menlo,Monaco,Andale Mono,Courier New,monospace;display:block;word-break:break-all;color:var(--colorPre);font-size:11px}.analysis-score .sp-tooltip{vertical-align:middle;font-size:.75em}#seopress_content_analysis .wrap-insights-post .sp-tooltip *{font-weight:400}#seopress_content_analysis .wrap-insights-post .sp-tooltip-headings{font-weight:700}#seopress_content_analysis a{color:var(--backgroundPrimary)}#seopress_content_analysis a.nounderline,#seopress_content_analysis a.nounderline:hover{text-decoration:none}#seopress_content_analysis .wrap-seopress-analysis{display:inline-block;width:100%}#seopress_content_analysis .col-left{width:calc(50% - 30px);float:left;margin-right:30px}#seopress_content_analysis .col-right{float:right;width:50%}#seopress_content_analysis #seopress_suggestions{display:inline-block;width:100%;margin:0;height:auto;padding:20px 0;position:relative;left:-5px}#seopress_content_analysis #seopress_suggestions li{list-style:none;margin:5px;display:inline-block}#seopress_content_analysis .analysis-score{clear:both;border-top:1px solid var(--borderColorCard);display:flex;justify-content:space-between;align-items:center}.column-seopress_score .analysis-score{display:flex;align-content:center}#seopress_content_analysis .analysis-score p,.column-seopress_score .analysis-score p{font-weight:700;font-size:1.2em}#seopress-ca-tabs .seopress-gsc-render{margin:1rem 0}#seopress-ca-tabs .dashicons{vertical-align:middle;margin-right:1rem}#seopress-ca-tabs .seopress-gsc-verdict .dashicons{font-size:30px;width:30px;height:30px}#seopress-ca-tabs .dashicons-yes-alt{color:var(--colorSuccess)}#seopress-ca-tabs .dashicons-info{color:var(--colorWarning)}#seopress-ca-tabs .dashicons-dismiss{color:var(--colorAlert)}#seopress-ca-tabs .seopress-gsc-analysis{margin-top:1rem;margin-bottom:1rem;display:inline-block;width:100%}#seopress-ca-tabs .seopress-gsc-cat{border-bottom:1px solid var(--borderColorCard);margin-bottom:.5rem;font-weight:700;padding-bottom:.5rem}#seopress-ca-tabs .seopress-gsc-analysis .seopress-gsc-item{display:flex}#seopress-ca-tabs .seopress-gsc-analysis .seopress-gsc-item-name{width:240px}#seopress-ca-tabs .seopress-gsc-analysis .seopress-gsc-item div{margin:.5rem 0}#seopress-ca-tabs .seopress-gsc-summary{display:block;padding:20px;margin:20px 0;top:0;left:0}#seopress-ca-tabs .seopress-gsc-verdict{font-weight:700;font-size:1.2em}#seopress_content_analysis .analysis-score svg,.column-seopress_score .analysis-score svg{display:inline-block;height:30px;width:30px;margin:0;border-radius:100%;position:relative;font-weight:600;shape-rendering:geometricprecision;font-size:.5rem;vertical-align:middle;margin-right:15px}.column-seopress_score .analysis-score p,.column-seopress_score .analysis-score svg{margin:0}@keyframes loadingPulse{0%{stroke:#adc5d2}50%{stroke:#00a0d2}100%{stroke:#adc5d2}}#seopress_content_analysis .analysis-score .loading #bar{stroke-dashoffset:0!important;stroke:#adc5d2!important;animation:loadingPulse 3s infinite ease-in-out}#seopress_content_analysis .analysis-score .good #bar,.column-seopress_score .analysis-score #bar.good{stroke:var(--colorSuccess)}#seopress_content_analysis .analysis-score .notgood #bar,.column-seopress_score .analysis-score #bar.notgood{stroke-dashoffset:101px;stroke:var(--colorWarning)}#seopress_content_analysis .analysis-score svg circle,.column-seopress_score .analysis-score svg circle{stroke-dashoffset:0;transition:stroke-dashoffset 1s linear;stroke:#ccc;stroke-width:2em}#tab_seopress_page_speed .ps-score svg path,#tab_seopress_ps .ps-score svg path{stroke-linecap:round;stroke-width:2.8;fill:none}#tab_seopress_page_speed .ps-score,#tab_seopress_ps .ps-score{position:relative;display:inline-block}#tab_seopress_page_speed .ps-score svg,#tab_seopress_ps .ps-score svg{width:80px;height:80px}#tab_seopress_page_speed .ps-score span,#tab_seopress_ps .ps-score span{font-weight:700;left:0;position:absolute;top:0;width:80px;height:80px;align-items:center;display:flex;justify-content:center;margin:0}#tab_seopress_page_speed .ps-score.green #bar,#tab_seopress_ps .ps-score.green #bar{stroke:var(--colorSuccess)}#tab_seopress_page_speed .ps-score.yellow #bar,#tab_seopress_ps .ps-score.yellow #bar{stroke:var(--colorWarning)}#tab_seopress_page_speed .ps-score.red #bar,#tab_seopress_ps .ps-score.red #bar{stroke:var(--colorAlert)}#tab_seopress_ps .score,.wrap-seopress-score .score{width:12px;height:12px;display:inline-block;margin-right:10px;vertical-align:middle}#tab_seopress_ps .score.red,.wrap-seopress-score .score.red{border-bottom-color:var(--colorAlert);border-bottom-style:solid;border-bottom-width:12px;border-left-color:transparent;border-left-style:solid;border-left-width:6px;border-right-color:transparent;border-right-style:solid;border-right-width:6px}.wrap-seopress-score small{font-size:12px}.wrap-seopress-score small.red,.wrap-seopress-score small.yellow{color:var(--colorAlert)}#tab_seopress_ps .score.yellow,.wrap-seopress-score .score.yellow{background-color:var(--colorWarning);display:inline-block}#tab_seopress_ps .score.green,.wrap-seopress-score .score.green{border-radius:100%;background-color:var(--colorSuccess)}.wrap-seopress-score small.green{color:var(--colorSuccess)}.wrap-seopress-score .score.null{background:#ccc;border-radius:100%}#seopress_content_analysis .gr-analysis{clear:both}#seopress_content_analysis .gr-analysis-title{border-top:1px solid var(--borderColorCard);position:relative}#seopress_content_analysis .gr-analysis-title .impact,#seopress_cpt .impact{position:absolute;left:10px;top:calc(50% - 5px);width:10px;height:10px;border-radius:50px;padding:0;margin:0;border:1px solid #fff}#seopress_content_analysis .gr-analysis .impact.good{background:var(--colorSuccess);box-shadow:0 0 5px var(--colorSuccess)}#seopress_content_analysis .gr-analysis .impact.low{background:var(--colorWarning);box-shadow:0 0 5px var(--colorWarning)}#seopress_content_analysis .gr-analysis .impact.medium{background:var(--colorLowAlert);box-shadow:0 0 5px var(--colorLowAlert)}#seopress_content_analysis .gr-analysis .impact.high,#seopress_cpt .impact.high{background:var(--colorAlert);box-shadow:0 0 5px var(--colorAlert)}#seopress_content_analysis .gr-analysis-content .impact.high{background:var(--colorAlert);box-shadow:none;color:#fff;padding:2px 4px;margin-left:5px;border-radius:4px;font-weight:700}#seopress_cpt .impact.high{position:relative;top:calc(50% - 18px);display:inline-block;left:inherit;right:-10px}#seopress_content_analysis .description,#seopress_cpt .description,#seopress_pro_cpt .description,.seopress-option .description{display:block;font-size:12px;color:var(--color)}@media only screen and (max-width:782px){#seopress_content_analysis .description,#seopress_cpt .description,#seopress_pro_cpt .description,.seopress-option .description{word-break:break-word}}#seopress_content_analysis input~span.description,#seopress_content_analysis span.description~input,#seopress_cpt input~span.description,#seopress_cpt span.description~input,#seopress_pro_cpt input~span.description,#seopress_pro_cpt span.description~input{margin-top:5px}#seopress_content_analysis .gr-analysis-title button{background:#fff;border:0;cursor:pointer;display:block;margin:0;position:relative;text-align:left;width:100%;padding:15px 30px;align-items:center;transition:all .3s linear}#seopress_content_analysis .gr-analysis-title button:hover{background:#f3f4f5}#seopress_content_analysis .gr-analysis-title button:focus{color:#191e23;border:none;box-shadow:none;outline-offset:-2px;outline:1px dotted #555d66}#seopress_content_analysis .gr-analysis-title button .seopress-arrow::after{content:"\f343";font-family:Dashicons;position:absolute;right:10px;top:calc(50% - 7px)}#seopress_content_analysis .gr-analysis-title button.open .seopress-arrow::after{content:"\f347"}#seopress_content_analysis .gr-analysis-content{padding:0 1rem .5rem 1rem;display:none;width:100%;border-top:1px solid var(--borderColorCard)}#seopress_content_analysis h3{margin:0;font-size:1em}#seopress_content_analysis h4{border-bottom:1px solid var(--borderColorCard);padding-bottom:.5rem;text-transform:uppercase;font-size:.85em;position:-webkit-sticky;position:sticky;top:0;background:#fff}#seopress_content_analysis .wrap-analysis-img ul{display:flex;flex-wrap:wrap}#seopress_content_analysis .wrap-analysis-img ul li{padding:0;text-align:left;cursor:default}#seopress_content_analysis .wrap-analysis-img h4{border-bottom:1px solid var(--borderColorLight);padding-bottom:10px}#seopress_content_analysis .wrap-analysis-img ul li img{max-width:150px;max-height:150px;object-fit:cover;border:1px solid var(--borderColorLight);cursor:default;padding:1px}#seopress-analysis-tabs .dashicons,#seopress_cpt .dashicons{vertical-align:middle}#seopress-analysis-tabs{clear:both}#seopress_content_analysis .dashicons-no-alt,#seopress_content_analysis .dashicons-yes,#seopress_pro_cpt .dashicons-no-alt,#seopress_pro_cpt .dashicons-yes{color:#fff;background:var(--colorSuccess);border-radius:50px;margin-right:10px}#seopress_content_analysis .dashicons-no-alt,#seopress_pro_cpt .dashicons-no-alt{background:var(--colorAlert)}#seopress_content_analysis .description-alt,#seopress_cpt .description-alt{padding:1em 0;border-top:1px solid var(--borderColorLight);border-bottom:1px solid var(--borderColorLight);display:flex}#seopress_cpt .desc-fb{margin-top:0;border-top:none}#seopress_content_analysis .description-alt svg,#seopress_cpt .description-alt svg{vertical-align:middle;align-self:center;fill:#f0b849;flex-shrink:0;margin-right:16px}#seopress_cpt .notice{padding:10px 14px;margin:0}#seopress_cpt .inside{margin:0;padding:0}#seopress_cpt .ui-tabs .ui-tabs-nav{display:flex;position:relative;width:100%;z-index:10;margin:0;border-radius:0;padding:0;align-items:center;padding:0;height:48px;border-bottom:1px solid #ddd;background:inherit;line-height:inherit;color:inherit;border-top:none;border-left:none;border-right:none}#seopress_cpt .ui-tabs .sp-section{font-weight:700;font-size:var(--fontSize)}#seopress_cpt .ui-helper-clearfix:after{content:none}.seopress_page_seopress-titles #seopress-tabs .form-table td,.seopress_page_seopress-titles #seopress_content_analysis .form-table td{padding:0}#seopress_cpt .ui-tabs .ui-tabs-panel{background:#fff;border-radius:0;display:inline-block;padding:1em 1.4em;width:100%}#seopress_content_analysis .dashicons-info,#seopress_cpt .ui-tabs .ui-tabs-panel .dashicons-info,#seopress_pro_cpt .dashicons-info{font-size:16px;vertical-align:middle;height:16px;width:16px}#seopress_cpt .ui-tabs .ui-tabs-nav li,#seopress_cpt .ui-tabs-anchor{cursor:pointer!important}body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active{position:relative;z-index:60;cursor:pointer;border-radius:0;border-bottom:4px solid var(--backgroundPrimary)!important}#seopress_cpt .wp-color-result{margin:0}#seopress_cpt #tabs-6 #wrap-videos .video .accordion-section-content,#seopress_cpt #tabs-6>p{padding:0 1.4em}#seopress_cpt #tabs-6 #wrap-videos .video .accordion-section-content{padding:0 1.4em 1em}#seopress_cpt #tabs-6 #wrap-videos .video{border-top:1px solid var(--borderColorLight)}#seopress_cpt #tabs-6 #wrap-videos .video .accordion-section-title{border-left:none;border-right:none;font-size:1em;padding:1em 1.4em}#seopress_cpt #tabs-6 #wrap-videos .video:last-child .accordion-section-content,#seopress_cpt #tabs-6 #wrap-videos .video:last-child .accordion-section-title{border-bottom:1px solid var(--borderColorLight)}#seopress_content_analysis .mandatory,#seopress_cpt .mandatory{color:var(--colorAlert)}#seopress_cpt .box-left{float:left;width:49%;margin-right:1%}#seopress_cpt .box-right{float:left;width:49%;margin-left:1%}#seopress_cpt #tabs-3 .box-left{width:44%}#seopress_cpt #tabs-3 .box-right{width:54%}@media only screen and (max-width:1200px){#seopress_cpt .box-left,#seopress_cpt .box-right{float:none;width:100%;margin:0}}@media only screen and (max-width:1500px){#seopress_cpt #tabs-3 .box-left,#seopress_cpt #tabs-3 .box-right{float:none;width:100%;margin:0}}#edittag #seopress_cpt #tabs-3 .box-left,#edittag #seopress_cpt #tabs-3 .box-right{float:none;width:100%;margin:0}#seopress-tabs .seopress_media_upload,#seopress_pro_cpt .seopress_media_upload{margin-top:.5rem}#term-seopress #seopress_cpt{width:95%}#seopress_cpt .ui-tabs{position:relative;padding:0;border:none;font-family:inherit;font-size:inherit;display:inline-block;width:100%}#seopress_cpt .ui-tabs .ui-tabs-nav li{list-style:none;position:relative;padding:0;white-space:nowrap;margin:0;border:none;height:48px;background:0 0}#seopress_cpt .ui-tabs .ui-tabs-nav li a{display:flex;padding:3px 15px;align-items:center}#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-nav li a,#seopress_cpt .ui-tabs-vertical .ui-tabs-nav li a{display:block}#seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:0;padding-bottom:0}#seopress_cpt .ui-tabs .ui-tabs-nav li.ui-state-disabled a,#seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active a,#seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-loading a{font-weight:500}#seopress_cpt .ui-tabs .ui-tabs-nav li a,#seopress_cpt .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a{cursor:pointer;color:#191e23;text-decoration:none;height:48px}#seopress_cpt .ui-tabs .ui-tabs-nav li a:focus,#seopress_cpt .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a:focus{outline:3px solid transparent;box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--backgroundPrimary),inset 0 -4px 0 0 var(--backgroundPrimary)}#seopress_cpt .ui-tabs-vertical{width:55em}#seopress_cpt .ui-tabs-vertical .ui-tabs-nav{padding:.2em .1em .2em .2em;float:left;width:12em}#seopress_cpt .ui-tabs-vertical .ui-tabs-nav li{clear:left;width:100%;border-bottom-width:1px!important;border-right-width:0!important;margin:0 -1px .2em 0}#seopress_cpt .ui-tabs-vertical .ui-tabs-nav li.ui-tabs-active{padding-bottom:0;padding-right:.1em;border-right-width:1px}#seopress_cpt .ui-tabs-vertical .ui-tabs-panel{padding:1em;float:right;width:40em}#seopress_cpt .ui-tabs .ui-tabs-nav li a .dashicons{margin-right:2px}#seopress_cpt .google-snippet-preview{font-family:arial,sans-serif;word-break:break-all}#seopress_cpt .google-snippet-preview.mobile-preview .wrap-snippet{margin:0 0 10px 0;box-shadow:0 1px 6px rgba(32,33,36,.28);border-radius:8px;padding:12px 16px}#seopress_cpt .google-snippet-preview>p{word-break:normal}#seopress_cpt .google-snippet-preview .snippet-title,#seopress_cpt .google-snippet-preview .snippet-title-custom,#seopress_cpt .google-snippet-preview .snippet-title-default{color:#1a0dab;font-size:18px;font-weight:400;line-height:21.6px}#seopress_cpt .google-snippet-preview.mobile-preview .snippet-title,#seopress_cpt .google-snippet-preview.mobile-preview .snippet-title-custom,#seopress_cpt .google-snippet-preview.mobile-preview .snippet-title-default{font-size:16px;line-height:20px;margin-bottom:12px}#seopress_cpt .google-snippet-preview .snippet-permalink{color:#006621;font-size:14px;font-style:normal;font-weight:400;line-height:16px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}#seopress_cpt .google-snippet-preview .wrap-snippet .wrap-m-icon-permalink,#seopress_cpt .google-snippet-preview.mobile-preview .snippet-permalink{display:none}#seopress_cpt .google-snippet-preview.mobile-preview .wrap-snippet-mobile{display:flex;justify-content:space-between}#seopress_cpt .google-snippet-preview.mobile-preview .wrap-meta-desc{margin-right:8px}#seopress_cpt .google-snippet-preview .wrap-post-thumb{display:none}#seopress_cpt .google-snippet-preview.mobile-preview .wrap-post-thumb{margin-left:8px;display:block}#seopress_cpt .google-snippet-preview.mobile-preview .snippet-post-thumb{width:104px;max-width:inherit;height:104px;border-radius:8px}#seopress_cpt .google-snippet-preview.mobile-preview .wrap-m-icon-permalink{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin-bottom:12px;display:flex}#seopress_cpt .google-snippet-preview.mobile-preview .wrap-m-icon-permalink .snippet-permalink{display:block;color:#3c4043;font-size:12px}#seopress_cpt .google-snippet-preview.mobile-preview .snippet-favicon{margin-right:12px;vertical-align:middle}#seopress_cpt .google-snippet-preview.mobile-preview .snippet-favicon img{width:16px;height:16px;max-width:inherit}#seopress_cpt .google-snippet-preview.mobile-preview .wrap-snippet .snippet-permalink:first-child{color:#3c4043;white-space:nowrap;font-size:12px;display:block}#seopress_cpt .google-snippet-preview .snippet-description,#seopress_cpt .google-snippet-preview .snippet-description-custom,#seopress_cpt .google-snippet-preview .snippet-description-default{color:#545454;font-size:14px;font-weight:400;line-height:18.2px;display:inline;hyphens:none;word-break:normal}#seopress_cpt .google-snippet-preview.mobile-preview .snippet-description,#seopress_cpt .google-snippet-preview.mobile-preview .snippet-description-custom,#seopress_cpt .google-snippet-preview.mobile-preview .snippet-description-default{color:#3c4043;font-size:14px;line-height:20px}#seopress_cpt .google-snippet-preview .snippet-date{color:grey;display:inline}#seopress_cpt .facebook-snippet-box{color:#4b4f56;font-size:14px;width:524px;max-width:100%}#seopress_cpt .facebook-snippet-box .notice,#seopress_cpt .twitter-snippet-box .notice{padding:10px 14px;margin:0 0 10px 0;width:100%}#seopress_cpt .facebook-snippet-box .notice span,#seopress_cpt .twitter-snippet-box .notice span{font-weight:700}#seopress_cpt .snippet-meta{display:flex;overflow:hidden;max-height:12px}#seopress_cpt .fb-by,#seopress_cpt .snippet-fb-site-name,#seopress_cpt .snippet-fb-url{color:#606770;font-size:12px;white-space:normal;line-height:11px;text-transform:uppercase;-webkit-box-orient:vertical;display:-webkit-box;text-overflow:ellipsis}#seopress_cpt .fb-sep{padding-left:5px;padding-right:5px;color:#606770;line-height:11px;font-size:12px}#seopress_cpt .facebook-snippet-box .facebook-snippet-text{border:1px solid #dadde1;background-color:#f2f3f5;padding:10px 12px}#seopress_cpt .facebook-snippet-box .title-desc{max-height:46px;overflow:hidden}#seopress_cpt .facebook-snippet-box .snippet-fb-title,#seopress_cpt .facebook-snippet-box .snippet-fb-title-custom,#seopress_cpt .facebook-snippet-box .snippet-fb-title-default{font-size:16px;line-height:20px;margin:3px 0 0;padding-top:2px;color:#1d2129;font-weight:700;overflow:hidden;-webkit-box-orient:vertical;display:-webkit-box;text-overflow:ellipsis;white-space:normal;word-break:break-word;max-height:22px}#seopress_cpt .facebook-snippet-box .snippet-fb-description,#seopress_cpt .facebook-snippet-box .snippet-fb-description-custom,#seopress_cpt .facebook-snippet-box .snippet-fb-description-default{color:#606770;font-size:14px;line-height:20px;word-break:break-word;font-family:Helvetica,Arial,sans-serif;max-height:80px;overflow:hidden;-webkit-box-orient:vertical;display:-webkit-box;text-overflow:ellipsis;white-space:normal;width:100%}#seopress_cpt .facebook-snippet-box img{display:block;height:274px;width:524px;object-fit:cover;background-color:#f0f0f0;text-align:center;border-bottom:none}.term-php #seopress_cpt .facebook-snippet-box img,.term-php #seopress_cpt .twitter-snippet-box img{width:100%;height:auto}.seopress_social_fb_img_upload,.seopress_social_twitter_img_upload{position:absolute;width:100%;cursor:pointer;height:100%;left:0;top:0}.seopress_social_fb_img_upload:hover::after,.seopress_social_twitter_img_upload:hover::after{content:"\f464";position:absolute;font-family:dashicons;width:100%;height:100%;top:0;left:0;font-size:40px;background:rgb(255 255 255 / 70%);display:flex;justify-content:center;align-items:center;color:#1e1e1e}.snippet-fb-img,.snippet-fb-img-custom,.snippet-fb-img-default,.snippet-twitter-img,.snippet-twitter-img-custom,.snippet-twitter-img-default{position:relative}#seopress_cpt .twitter-snippet-box{color:#4b4f56;font-size:14px;width:504px;max-width:100%}#seopress_cpt .snippet-twitter-url{color:#8899a6;font-size:14px;white-space:normal;line-height:11px;text-transform:uppercase;-webkit-box-orient:vertical;display:-webkit-box;text-overflow:ellipsis}#seopress_cpt .twitter-snippet-box .twitter-snippet-text{border:1px solid #dadde1;background-color:#fff;padding:10px 12px;border-radius:0 0 10px 10px}#seopress_cpt .twitter-snippet-box .title-desc{max-height:46px;overflow:hidden}#seopress_cpt .twitter-snippet-box .snippet-twitter-img,#seopress_cpt .twitter-snippet-box .snippet-twitter-img-custom,#seopress_cpt .twitter-snippet-box .snippet-twitter-img-default{border-radius:10px 10px 0 0;overflow:hidden}#seopress_cpt .twitter-snippet-box .snippet-twitter-title,#seopress_cpt .twitter-snippet-box .snippet-twitter-title-custom,#seopress_cpt .twitter-snippet-box .snippet-twitter-title-default{font-size:1em;line-height:20px;margin-bottom:5px;max-height:1.3em;color:#000;font-weight:700;overflow:hidden;-webkit-box-orient:vertical;display:-webkit-box;text-overflow:ellipsis;white-space:normal;word-break:break-word}#seopress_cpt .twitter-snippet-box .snippet-twitter-description,#seopress_cpt .twitter-snippet-box .snippet-twitter-description-custom,#seopress_cpt .twitter-snippet-box .snippet-twitter-description-default{color:#000;font-size:14px;line-height:20px;word-break:break-word;font-family:Helvetica,Arial,sans-serif;max-height:80px;overflow:hidden;-webkit-box-orient:vertical;display:-webkit-box;text-overflow:ellipsis;white-space:normal;width:100%}#seopress_cpt .twitter-snippet-box img{display:block;height:263px;width:504px;object-fit:cover;background-color:#f0f0f0;text-align:center;border-bottom:none}.wrap-toggle-preview{position:relative}.wrap-toggle-preview p{font-weight:700;margin:0 0 1rem 0}#seopress_add_to_insights{margin-left:1rem}#seopress_add_to_insights_status{display:inline-block;font-weight:700;margin:0 0 0 1rem;vertical-align:middle;padding:.3rem;font-style:italic}.seo_page_seopress-instant-indexing .wrap-sp-progress{max-width:35rem}#seopress_cpt .wrap-seopress-counters,#seopress_pro_cpt .wrap-seopress-counters,.seopress-setup .wrap-seopress-counters,.seopress-styles .wrap-seopress-counters{text-align:right;background:#e9ecef;padding:2px 5px;display:flex;font-size:12px;justify-content:flex-end;border-radius:0 0 .25rem .25rem}#seopress_cpt .sp-progress,#seopress_pro_cpt .sp-progress,.seopress-setup .sp-progress,.seopress-styles .sp-progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem .25rem 0 0;margin:-15px 0 0 0}#seopress_cpt .sp-progress-bar,#seopress_pro_cpt .sp-progress-bar,.seopress-setup .sp-progress-bar,.seopress-styles .sp-progress-bar{display:flex;flex-direction:column;justify-content:center;color:#fff;text-align:center;white-space:nowrap;background-color:#0085ba;transition:width .6s ease}#seopress_cpt #seopress_titles_desc_counters,#seopress_cpt #seopress_titles_title_counters,#seopress_pro_cpt #seopress_rich_snippets_articles_counters,#seopress_pro_cpt #seopress_rich_snippets_courses_counters{display:inline;margin-right:5px}#seopress_cpt #seopress_titles_desc_counters_val,#seopress_cpt #seopress_titles_title_counters_val,#seopress_pro_cpt #seopress_rich_snippets_articles_counters_val,#seopress_pro_cpt #seopress_rich_snippets_courses_counters_val{display:inline;font-weight:700}#tab-panel-seopress_titles_help_tab li span{font-weight:700;margin-right:10px}.seopress-styles .seopress-option{margin:85px 40px 40px}@media only screen and (max-width:782px){.seopress-styles .seopress-option{margin:85px 22px 22px}}.seopress-setup .seopress-option h1,.seopress-styles .seopress-option h1{font-size:var(--titleFontSize);color:var(--titleColor);font-weight:var(--titleFontWeight);margin:var(--titleMargin);display:flex;justify-content:space-between}.seopress-setup .seopress-option h1{margin-bottom:30px}.seopress_wrap_archive_cpt,.seopress_wrap_single_cpt,.seopress_wrap_single_tax,.seopress_wrap_tax{margin:0 0 20px 0}#tab_seopress_titles_archives .form-table th:empty,#tab_seopress_titles_single .form-table th:empty,#tab_seopress_titles_tax .form-table th:empty{display:none}.seopress-styles .seopress-option .link-archive{font-size:var(--fontSize)}.seopress-styles .seopress-option .link-archive .dashicons{font-size:18px;width:20px;height:20px;margin:inherit}.seopress-option h1 .feature-state .dashicons{font-size:16px;width:16px;height:16px;vertical-align:middle;margin:0 10px 0 0}.seopress-styles .seopress-option .submit{padding:20px 0 20px 0;left:0;margin:0;position:sticky;bottom:0;z-index:100;display:inline-block}@media only screen and (max-width:782px){.seopress-styles .seopress-option .submit{position:relative}}.seopress-styles .seopress-option .seopress-tab .submit{display:block;position:relative}.seopress-styles #wpcontent{padding-left:0}.seopress-styles pre{font-family:Menlo,Monaco,Andale Mono,Courier New,monospace;padding:10px;display:inline-block;background-color:var(--backgroundSecondaryHover);border-radius:3px;color:var(--colorDark);font-size:var(--fontSize)}.seopress-option .seopress-settings{float:left;max-width:750px;width:100%}.seopress-option .seopress-settings label{margin:0 0 0 10px}.wrap-seopress-tab-content{position:relative;display:block;width:100%;max-width:64rem;margin:0 auto}#seopress-tabs .seopress-tab{padding:10px 1.5rem;width:100%;display:none}#seopress-tabs.full-width .seopress-tab{width:100%}@media only screen and (max-width:1024px){#seopress-tabs .seopress-tab{width:100%}}#seopress-tabs .seopress-tab.active{display:inline-block;background:#fff}@media only screen and (max-width:782px){#seopress-tabs .seopress-tab.active{width:100%;border-left:none;border-top:1px solid RGB(238,238,238)}}#seopress_htaccess_file{width:100%}.seopress-option textarea{min-height:100px}.seopress-option .wp-picker-container button{box-shadow:none;border:1px solid #0071a1;border-radius:3px;background:#f3f5f6;text-transform:none}.seopress-option .wp-picker-container input[type=text].wp-color-picker{min-width:inherit}.seopress-option .wp-picker-container .wp-picker-default{margin:0}.seopress-option .wp-picker-container .wp-picker-clear{box-shadow:none;text-transform:none;border-radius:0;background:0 0;margin:0}.seopress-option .wp-picker-container .wp-picker-clear:hover{background:0 0;text-decoration:currentColor;color:inherit}.seopress-inbox-title p{font-size:20px;color:var(--titleColor);margin:0}#seopress-admin-tabs .ui-tabs-nav{display:flex;padding-top:1rem;padding-bottom:0}#seopress-admin-tabs .nav-tab-wrapper a.nav-tab-active:focus{color:inherit}.seopress-intro{padding:20px}.seopress-option .seopress-table{background:#fff;border:1px solid var(--borderColorLight)}.seopress-option .seopress-table th{padding:15px 10px;vertical-align:middle}.wp-admin-ui_page_seopress-roles .seopress-option .seopress-table th{min-width:200px}.seopress-option .seopress-table .seopress-settings-section{background:#f1f1f1}.seopress-option .seopress-table .seopress-table-head .seopress-feature{border-bottom:1px solid var(--borderColorLight);font-weight:700;background:#f1f1f1}#seopress-content .feature-state,.seopress-option .feature-state{font-style:italic;font-size:11px;font-weight:400}@media only screen and (max-width:782px){#seopress-content .feature-state,.seopress-option .feature-state{display:none}}.seopress-option #tab_seopress_titles_archives h3,.seopress-option #tab_seopress_titles_single h3,.seopress-option #tab_seopress_titles_tax h3{margin:2em 0 1em 0;border-top:1px solid var(--borderColorLight);padding:1em 0 0 0}.seopress-option #tab_seopress_titles_archives h3:first-child,.seopress-option #tab_seopress_titles_single h3:first-child,.seopress-option #tab_seopress_titles_tax h3:first-child{margin:0 0 1em 0}.seopress-option #tab_seopress_titles_archives h3 div,.seopress-option #tab_seopress_titles_single h3 div,.seopress-option #tab_seopress_titles_tax h3 div{display:inline}#seopress-content .feature-state-on,#seopress-content .feature-state.feature-state-on,.seopress-option .feature-state-on,.seopress-option .feature-state.feature-state-on{display:inline-block}#seopress-content .feature-state-off,.seopress-option .feature-state-off{display:none}.seopress-option .postbox .inside li{list-style:square inside;padding-left:5px}#tab_seopress_page_speed .inside li{list-style:none;padding-left:0;word-break:break-word}.seopress-option .log{display:none;font-weight:700}.seopress-option input[type=text].seopress-admin-menu-input{min-width:inherit;width:100%}.seopress_page_seopress-import-export .postbox{width:calc(100% - 20px)}#seopress_cpt #seopress_titles_title_meta{margin-bottom:.2rem}.seopress-option .section-tool{border:none;box-shadow:none;background:0 0;position:relative}.seopress-option .section-tool::after{content:"";background:#dedede;height:1px;width:100%;display:block}.seopress-option .section-tool:last-child{margin-bottom:0}.seopress-option .section-tool:last-child::after{content:none}.seopress-option .section-tool .inside{padding-left:0;padding-right:0}.seopress-option .sp-section-header{width:100%;display:flex;position:relative;align-items:center}.seopress-option .sp-section-header h2{font-size:1.5em}.seopress-option .sp-section-header>.dashicons{color:var(--primaryColor);padding:10px;border-radius:6px;margin-right:10px;background:#c4f0ff}.seopress-option .sp-section-header .wrap-toggle-checkboxes{display:flex}.seopress-notice{margin:5px 0 35px 15px;position:relative;top:75px;left:25px;background:rgb(0 124 186 / 10%);border-left:4px solid var(--primaryColor);padding:8px 12px;width:calc(100% - 108px);z-index:10}#seopress-ca-tabs .seopress-notice,#seopress-tabs .seopress-notice,#seopress_insights_dashboard_rankings_widget .seopress-notice,#seopress_pro_cpt .seopress-notice,.seopress-setup .seopress-notice{top:inherit;left:inherit;margin:15px 0 30px 0;width:auto}.seopress-hidden{display:none}.seopress-notice pre{background:#fff}.seopress-notice.is-success{border-left-color:var(--colorSuccess);background:#eff9f1}.seopress-notice.is-warning{border-left-color:#f0b849;background:#fef8ee}.seopress-notice.is-error{border-left-color:#cc1818;background:rgb(244 162 162 / 30%)}#seopress-tabs.wrap{margin:30px 0 0 0}#seopress-notifications-center .seopress-alert ul,#seopress-tabs.wrap ul{list-style:square inside;padding-left:5px;display:inline-block;max-width:35rem;width:100%}.post-type-seopress_404 .seopress-BlankState-message::before,.post-type-seopress_schemas .seopress-BlankState-message::before{font-family:Dashicons;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\f103"}.post-type-seopress_schemas .seopress-BlankState-message::before{content:"\f495"}.seopress-BlankState{text-align:center;padding:5em 0 0}.seopress-BlankState .seopress-BlankState-message{color:#aaa;margin:0 auto 1.5em;line-height:1.5em;font-size:1.2em;max-width:500px}.seopress-BlankState .seopress-BlankState-message::before{color:#ddd;text-shadow:0 -1px 1px rgba(0,0,0,.2),0 1px 0 rgba(255,255,255,.8);font-size:8em;display:block;position:relative!important;top:auto;left:auto;line-height:1em;margin:0 0 .1875em}.seopress-BlankState .seopress-BlankState-cta{font-size:1.2em;padding:.75em 1.5em;margin:0 .25em}.seopress-BlankState{max-width:764px;text-align:center;margin:auto}.seopress-BlankState .seopress-BlankState-message{color:var(--titleColor);font-size:1.5em;margin:0 auto 1em}.seopress-BlankState .seopress-BlankState-message::before{font-size:120px}.seopress-BlankState .seopress-BlankState-buttons{margin-bottom:4em}#seopress_content_analysis .up,#seopress_content_analysis .up .dashicons{color:var(--colorSuccess)}#seopress_content_analysis .down,#seopress_content_analysis .down .dashicons{color:var(--colorAlert)}#seopress_content_analysis .up .dashicons{transform:rotateZ(45deg)}#seopress_content_analysis .stable .dashicons{transform:rotateZ(90deg)}#seopress_content_analysis .down .dashicons{transform:rotateZ(135deg)}#seopress_content_analysis .wrap-insights-post{clear:both;border-top:1px solid var(--borderColorCard);display:flex;align-items:center}#seopress_content_analysis .wrap-insights-post .widget-insights-title{margin:0 1rem}#seopress_content_analysis .wrap-insights-post span{font-weight:700;margin:0 .2rem 0 0}.wrap-user-roles{display:grid;grid-template-columns:repeat(4,1fr)}@media only screen and (max-width:782px){.wrap-user-roles{display:block}}#notice-insights-alert.is-active,#seopress-news-panel.is-active,#seopress-notifications-center.is-active{display:block!important}#seopress-notifications-center .seopress-alert{padding:16px 25px;position:relative;transition:all 150ms ease;justify-content:space-between;margin-bottom:20px}#seopress-notifications-center .seopress-alert:last-child{margin-bottom:0;border-bottom:none}#seopress-notifications-center .dashicons{display:flex;align-self:normal;width:30px;height:30px;color:var(--colorIcon);font-size:30px;margin:0 0 10px 0}#seopress-admin-tabs #tab_seopress_notifications.seopress-tab{background:0 0;padding:0;border-radius:0;width:100%}.seopress-notice #message{margin:5px 10px 2px 0}#seopress-notice a{position:relative;text-decoration:none;margin:0 0 0 .3rem}#seopress-notice a .tooltip{white-space:pre;z-index:200;padding:2px 5px;font-weight:500;font-size:12px;color:#aab7c4;background:#fff;box-shadow:0 1px 2px 0 rgba(49,49,93,.1),0 0 1px 0 rgba(0,0,0,.1);border-radius:2px;position:absolute;opacity:0;top:30px;transition:opacity .2s ease;visibility:hidden;line-height:20px;left:-100%;overflow:hidden}#seopress-notice a:hover .tooltip{opacity:1;visibility:visible}.seopress-page-list{margin:1.5rem auto}.post-type-seopress_404 .seopress-notice,.post-type-seopress_bot .seopress-notice,.post-type-seopress_schemas .seopress-notice{left:0;top:40px;margin:0 0 50px;width:calc(100% - 48px)}.seopress-search{position:relative;padding:20px}.seopress-search::before{content:"\f179";font-family:Dashicons;position:absolute;top:35px;left:30px;font-size:20px}.seopress-search input{padding-left:40px}.seopress-item-toggle-options{position:relative;cursor:pointer;padding:5px 10px;border:1px solid var(--borderColor);border-radius:3px;transform:rotate(90deg);display:inline-block}.seopress-item-toggle-options::before{content:"\f11c";font-family:Dashicons;font-size:18px;vertical-align:middle}.seopress-card{background:#fff;border:1px solid var(--borderColorCard);border-radius:3px;position:relative}.seopress-option .seopress-card-actions a+button{margin-left:.5em}.seopress-card-title{border-bottom:1px solid var(--borderColorCard);padding:18px 24px;display:flex;justify-content:space-between;align-items:center}.seopress-dashboard-columns .seopress-dashboard-column:last-child .seopress-card-title:hover{cursor:move}.seopress-card-title h2{margin:0}.seopress-cart-list{border-bottom:1px solid var(--borderColorCard);padding:0 0 0 24px;display:flex;align-items:center;text-decoration:none;color:var(--primaryColor);font-weight:700;line-height:20px}.seopress-cart-list *{text-decoration:none}.seopress-cart-list a{display:block;width:100%;padding:18px 24px 18px 0}.seopress-cart-list:last-child{border-bottom:none}.seopress-cart-list:active,.seopress-cart-list:focus,.seopress-cart-list:hover{background:var(--backgroundSecondaryHover)}body .seopress-cart-list h3{font-size:var(--fontSize);color:var(--primaryColor);font-weight:700;margin:0}.seopress-cart-list p{color:var(--titleColor);font-weight:400;margin:0;font-size:12px;line-height:20px}.seopress-card-footer{padding:10px 20px;border-top:1px solid var(--borderColorLight40)}.seopress-card-popover{display:none;background:#fff;border:1px solid var(--borderColor);padding:20px;position:absolute;top:55px;overflow-y:auto;right:28px;z-index:20}.seopress-card-popover.is-open{display:block}#seopress-tabs .seopress-tag-dropdown,#seopress_cpt .seopress-tag-dropdown,#seopress_cpt .tag-title,#seopress_pro_cpt .tag-title,.seopress-button,.seopress-option .tag-title{cursor:pointer;font-weight:500;border-radius:4px;transition:all .3s linear}#seopress_cpt .wrap-tags,#seopress_pro_cpt .wrap-tags,.seopress-option .wrap-tags{position:relative;display:inline-flex;width:100%;margin:10px 0}.seopress-option .wrap-tags{flex-wrap:wrap}.seopress-option .wrap-tags button{margin-bottom:10px}@media only screen and (max-width:782px){#seopress_cpt .wrap-tags,#seopress_pro_cpt .wrap-tags,.seopress-option .wrap-tags{flex-wrap:wrap}}#seopress-tabs .sp-wrap-tag-variables-list,#seopress_cpt .sp-wrap-tag-variables-list,#seopress_pro_cpt .sp-wrap-tag-variables-list{position:relative;float:left;display:none}#seopress-tabs.wrap .sp-tag-variables-list,#seopress_cpt .sp-tag-variables-list,#seopress_pro_cpt .sp-tag-variables-list{position:absolute;left:-48px;width:300px;z-index:100;top:20px;color:var(--titleColor);height:300px;z-index:100;overflow:auto;background:#fff;border:1px solid var(--borderColorLight);box-shadow:0 2px 6px rgb(0 0 0 / 5%);border-radius:2px;list-style:none;padding:0}#seopress-tabs .sp-wrap-tag-variables-list.open,#seopress_cpt .sp-wrap-tag-variables-list.open,#seopress_pro_cpt .sp-wrap-tag-variables-list.open{display:block}#seopress-tabs .seopress-tag-single-all.tag-description .dashicons,#seopress-tabs .seopress-tag-single-all.tag-title .dashicons,#seopress_cpt .seopress-tag-single-all.seopress-tag-dropdown .dashicons,#seopress_cpt .seopress-tag-single-all.tag-title .dashicons,#seopress_pro_cpt .seopress-tag-single-all.tag-title .dashicons{margin:0;transition:all 150ms linear}#seopress-tabs .seopress-tag-single-all.open .dashicons,#seopress_cpt .seopress-tag-single-all.open .dashicons,#seopress_pro_cpt .seopress-tag-single-all.open .dashicons{transform:rotateX(180deg)}#seopress-tabs.wrap .sp-tag-variables-list li,#seopress_cpt .sp-tag-variables-list li,#seopress_pro_cpt .sp-tag-variables-list li{padding:8px 12px;cursor:pointer;margin:0;border-bottom:1px solid var(--borderColorLight40)}#seopress-tabs .sp-tag-variables-list li span,#seopress_cpt .sp-tag-variables-list li span,#seopress_pro_cpt .sp-tag-variables-list li span{display:block;font-weight:700;font-size:12px;margin-bottom:2px}#seopress-tabs.wrap .sp-tag-variables-list li:hover,#seopress_cpt .sp-tag-variables-list li:hover,#seopress_pro_cpt .sp-tag-variables-list li:hover{background:var(--backgroundPrimaryHover);color:#fff;border-bottom-color:#fff}#seopress-tabs.wrap .sp-tag-variables-list li::after,#seopress_cpt .sp-tag-variables-list li::after,#seopress_pro_cpt .sp-tag-variables-list li::after{content:attr(data-value);display:inline-block;background:#e9ecef;padding:1px 5px;color:#333;font-family:Menlo,Monaco,Andale Mono,Courier New,monospace;border-radius:3px;font-size:11px}#seopress-tabs.wrap .seopress-tag-dropdown .dashicons,#seopress_cpt .seopress-tag-dropdown .dashicons,#seopress_cpt .tag-title .dashicons,#seopress_pro_cpt .tag-title .dashicons,.seopress-option .tag-title .dashicons{padding:0;height:16px;width:16px;font-size:16px;margin-right:5px;color:var(--primaryColor);vertical-align:middle}#seopress-tabs.wrap .seopress-tag-dropdown:hover .dashicons,#seopress_cpt .seopress-tag-dropdown:hover .dashicons,#seopress_cpt .tag-title:hover .dashicons,#seopress_pro_cpt .tag-title:hover .dashicons,.seopress-option .tag-title:hover .dashicons{color:#fff}#seopress-tabs.wrap .seopress-tag-dropdown .dashicons{margin:0}.seopress-overlay-tag-dropdown{position:absolute;display:none;top:0;left:0;width:100%;height:100%;z-index:50}.seopress-overlay-tag-dropdown.active{display:block}#seopress-tabs .seopress-tag-dropdown,#seopress_cpt .seopress-tag-dropdown,#seopress_cpt .tag-title,#seopress_pro_cpt .tag-title,.seopress-option .tag-title{padding:5px 12px;font-size:10px;user-select:none;margin:0 5px 0 0;display:inline-flex;text-transform:uppercase;align-items:center;color:var(--primaryColor)}#seopress-tabs .seopress-tag-dropdown:focus,#seopress-tabs .seopress-tag-dropdown:hover,#seopress_cpt .seopress-tag-dropdown:focus,#seopress_cpt .seopress-tag-dropdown:hover,#seopress_cpt .tag-title:focus,#seopress_cpt .tag-title:hover,#seopress_pro_cpt .tag-title:focus,#seopress_pro_cpt .tag-title:hover,.seopress-option .tag-title:focus,.seopress-option .tag-title:hover{box-shadow:0 0 var(--wp-admin-border-width-focus) var(--backgroundPrimary);background:var(--backgroundPrimaryHover);color:#fff}@media only screen and (max-width:782px){#seopress-tabs .seopress-tag-dropdown,#seopress_cpt .seopress-tag-dropdown,#seopress_cpt .tag-title,#seopress_pro_cpt .tag-title,.seopress-option .tag-title{margin-bottom:10px}}#seopress-content .seopress-useful-tools .widget-reverse li{padding:10px;margin:0;border-bottom:1px solid var(--borderColorLight)}#seopress-content .seopress-reverse label,#seopress-content .seopress-useful-tools .widget-whois ul li span{font-weight:700}#seopress-content #seopress-reverse-url{width:100%;margin:10px 0}#seopress-content .widget-reverse p{margin:0}.seopress-styles #screen-meta{position:relative;top:60px}.seopress-styles #screen-meta-links .show-settings{box-shadow:none}.seopress-styles #screen-meta-links .screen-meta-toggle{position:fixed;top:32px;z-index:2000;right:40px}@media only screen and (max-width:782px){.seopress-styles #screen-meta-links .screen-meta-toggle{position:relative;top:60px}}#seopress-content input.toggle,#seopress_cpt input.toggle,.seopress-option input.toggle{max-height:0;max-width:0;opacity:0;position:relative}.seopress-feature input.toggle{display:block}#seopress_cpt input.toggle,.seopress_wrap_single_cpt input.toggle,.seopress_wrap_tax input.toggle{margin:0;border:none;min-width:0}#seopress-content input.toggle+label,#seopress_cpt #tabs-1 input.toggle+label,.seopress-option input.toggle+label{display:inline-block;position:relative;box-shadow:inset 0 0 0 1px #d5d5d5;text-indent:-5000px;height:20px;width:40px;border-radius:15px;margin:0 10px 0 0}#seopress-content input.toggle+label{margin:0;left:-20px}#seopress_cpt #tabs-1 input.toggle+label{margin:0}.wrap-toggle-checkboxes input.toggle+label{float:left;margin-right:10px}#seopress-content input.toggle+label:before,#seopress_cpt input.toggle+label:before,.seopress-option input.toggle+label:before{content:"";position:absolute;display:block;height:20px;width:30px;top:0;left:0;border-radius:15px;background:rgba(19,191,17,0);transition:.25s ease-in-out}#seopress-content input.toggle+label:after,#seopress_cpt input.toggle+label:after,.seopress-option input.toggle+label:after{content:"";position:absolute;display:block;height:20px;width:20px;top:0;left:0;border-radius:15px;background:#fff;box-shadow:inset 0 0 0 1px rgba(0,0,0,.2),0 2px 4px rgba(0,0,0,.2);transition:.25s ease-in-out}#seopress_cpt input.toggle+label,#seopress_cpt input.toggle+label:before,.seopress_wrap_single_cpt input.toggle+label,.seopress_wrap_single_cpt input.toggle+label:before,.seopress_wrap_tax input.toggle+label,.seopress_wrap_tax input.toggle+label:before{width:40px;height:20px}#seopress_cpt input.toggle+label:after,.seopress_wrap_single_cpt input.toggle+label:after,.seopress_wrap_tax input.toggle+label:after{width:20px;height:20px}#seopress-content input.toggle[data-toggle="1"]+label:before,#seopress_cpt input.toggle[data-toggle="1"]+label:before,.seopress-option input.toggle[data-toggle="1"]+label:before,.seopress_wrap_single_cpt input.toggle[data-toggle="1"]+label:before,.seopress_wrap_tax input.toggle[data-toggle="1"]+label:before{width:40px;background:var(--backgroundPrimary)}#seopress-content input.toggle[data-toggle="1"]+label:after,#seopress_cpt input.toggle[data-toggle="1"]+label:after,.seopress-option input.toggle[data-toggle="1"]+label:after{left:20px;box-shadow:inset 0 0 0 1px var(--backgroundPrimary),0 2px 4px rgba(0,0,0,.2)}#seopress_cpt input.toggle[data-toggle="1"]+label:after,.seopress_wrap_single_cpt input.toggle[data-toggle="1"]+label:after,.seopress_wrap_tax input.toggle[data-toggle="1"]+label:after{box-shadow:inset 0 0 0 1px var(--backgroundPrimary),0 2px 4px rgba(0,0,0,.2)}#seopress-content .seopress-page-list{position:relative;display:block;max-width:64rem}@media only screen and (max-width:782px){#seopress-content .seopress-page-list{grid-template-columns:repeat(1,1fr)}}.seopress-setup .wrap,.seopress-styles .wrap{margin:0;display:flex;position:relative}.toplevel_page_seopress-option.seopress-styles .wrap{display:inherit;position:inherit;margin:inherit}@media only screen and (max-width:782px){.seopress-setup .wrap,.seopress-styles .wrap{display:inherit;position:inherit;margin:inherit}}.seopress-option .wrap div.nav-tab-wrapper{margin:0;padding:0;line-height:inherit;width:15%;z-index:10;font-weight:400;display:block;border-bottom:none}@media only screen and (max-width:782px){.seopress-option .wrap div.nav-tab-wrapper{width:100%;margin:0 0 20px 0;padding:0}}#seopress-admin-tabs.wrap div.nav-tab-wrapper{background:#fff;margin:0 auto;max-width:64rem;width:100%;border-bottom:1px solid var(--borderColorCard);padding:0;line-height:inherit;position:sticky;z-index:10;top:92px;border-radius:4px 4px 0 0;font-weight:400;overflow:hidden;display:flex;align-items:center;justify-content:space-between}@media only screen and (max-width:600px){#seopress-admin-tabs.wrap div.nav-tab-wrapper{top:0;display:block}}@media only screen and (max-width:1024px){#seopress-admin-tabs.wrap div.nav-tab-wrapper{display:block}}.seopress-option .nav-tab{border:0;background:0 0;opacity:.5;padding:6px 30px 6px 10px;transition:opacity .3s linear;color:var(--titleColor);margin:0;float:none;display:inline-block;width:100%;text-align:left;font-weight:400;white-space:normal;line-height:1.71428571;font-size:14px;text-decoration:none}#seopress-admin-tabs .nav-tab{background:0 0;opacity:.5;padding:14px 20px;transition:opacity .3s linear;margin:0;float:none;display:inline-block;font-weight:400}#seopress-admin-tabs .nav-tab{width:100%}#seopress-admin-tabs .nav-tab-active,#seopress-admin-tabs .nav-tab-active:focus,#seopress-admin-tabs .nav-tab-active:focus:active,#seopress-admin-tabs .nav-tab-active:hover,#seopress-admin-tabs .nav-tab:focus,.nav-tab-active:focus,.seopress-option .nav-tab-active,.seopress-option .nav-tab-active:focus:active,.seopress-option .nav-tab-active:hover,.seopress-option .nav-tab:focus{opacity:1;outline:0;font-weight:600;position:relative;border-left:3px solid var(--backgroundPrimary)}#seopress-admin-tabs .nav-tab-active,#seopress-admin-tabs .nav-tab-active:focus,#seopress-admin-tabs .nav-tab-active:focus:active,#seopress-admin-tabs .nav-tab-active:hover,#seopress-admin-tabs .nav-tab:focus{border-bottom:4px solid var(--backgroundPrimary);border-left:none}#seopress-admin-tabs .nav-tab:hover,.seopress-option .nav-tab:hover{opacity:1}#seopress-admin-tabs .nav-tab:focus,.seopress-option .nav-tab:focus{outline:0;box-shadow:none}@keyframes sp-fade-in-out{0%{opacity:0;bottom:0;visibility:hidden}25%{opacity:1;bottom:40px;visibility:visible}75%{opacity:1;visibility:visible}100%{opacity:0;visibility:hidden}}.sp-components-snackbar-list{position:fixed;right:0;bottom:40px;padding-left:16px;padding-right:16px;animation-name:sp-fade-in-out;animation-duration:5s;animation-iteration-count:1;animation-fill-mode:forwards;visibility:hidden;z-index:1}.sp-components-snackbar__content{display:flex;align-items:center;justify-content:space-between;line-height:1.4}.sp-components-snackbar{font-family:var(--fontFamily);font-size:var(--fontSize);background-color:#32373c;border-radius:4px;box-shadow:0 2px 4px rgba(0,0,0,.3);color:#fff;padding:16px 24px;cursor:pointer}.sp-components-snackbar .dashicons{color:#fff}
1
+ #seopress_content_analysis *,#seopress_cpt *,#seopress_pro_cpt *,.seopress-option *,.seopress-styles *{box-sizing:border-box}@font-face{font-family:seopress;src:url(../fonts/seopress.eot?81521271);src:url(../fonts/seopress.eot?81521271#iefix) format("embedded-opentype"),url(../fonts/seopress.woff?81521271) format("woff2"),url(../fonts/seopress.woff?81521271) format("woff"),url(../fonts/seopress.ttf?81521271) format("truetype"),url(../fonts/seopress.svg?81521271#seopress) format("svg");font-weight:400;font-style:normal}[class*=" icon-seopress"],[class^=icon-seopress-]{font-family:seopress!important;font-size:14px!important;line-height:24px!important}#adminmenu div.wp-menu-image.dashicons-admin-seopress::before{content:"\e800";font-family:seopress;font-weight:700;font-size:12px;line-height:20px}#seopress_content_analysis,#seopress_cpt,#seopress_pro_cpt,#wpadminbar,.column-seopress_score,.post-type-seopress_404 #wpcontent,.post-type-seopress_schemas #wpcontent,.seopress-option #wpcontent,.seopress-styles #wpcontent,.seopress-ui-datepicker{--primaryColor:#007cba;--paragraphColor:#757575;--fontSize:13px;--fontFamily:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;--color:#757575;--colorDark:#1e1e1e;--colorAlert:#eb0f00;--colorWarning:#ffba00;--colorSuccess:#4ab866;--colorLowAlert:#e39f48;--colorPre:#37864b;--colorIcon:#d7dade;--lineHeight:24px;--titleColor:#3c434a;--titleFontSize:20px;--titleFontWeight:normal;--titleMargin:10px 0;--backgroundPrimary:#007cba;--backgroundPrimaryHover:#006ba1;--backgroundSecondaryHover:#f0f0f0;--borderColor:#a7aaad;--borderColorLight:#dcdcde;--borderColorLight40:rgba(220, 220, 222, 0.4);--borderColorCard:#e2e4e7;--borderColorTab:#c3c4c7}.seopress-option .text-center,.seopress-styles .text-center{text-align:center}.post-type-seopress_404 .btn,.post-type-seopress_schemas .btn,.seopress-option .btn,.seopress-styles .btn{display:inline-flex;text-decoration:none;font-size:var(--fontSize);margin:0;border:0;cursor:pointer;-webkit-appearance:none;background:0 0;transition:box-shadow .1s linear;height:36px;align-items:center;padding:6px 12px;border-radius:2px;vertical-align:middle;color:var(--colorDark);white-space:nowrap;outline:1px solid transparent}.post-type-seopress_404 .btnPrimary,.post-type-seopress_schemas .btnPrimary,.seopress-option .btnPrimary,.seopress-styles .btnPrimary{background:var(--primaryColor);color:#fff;text-decoration:none}.post-type-seopress_404 .btnPrimary:hover,.post-type-seopress_schemas .btnPrimary:hover,.seopress-option .btnPrimary:hover,.seopress-styles .btnPrimary:hover{background:var(--backgroundPrimaryHover);color:#fff}.post-type-seopress_404 .btnSecondary,.post-type-seopress_schemas .btnSecondary,.seopress-option .btnSecondary,.seopress-styles .btnSecondary{box-shadow:inset 0 0 0 1px var(--primaryColor);color:var(--primaryColor);background:0 0}.seopress-option .btnSecondary.is-deletable,.seopress-styles .btnSecondary.is-deletable{border-color:#cc1818;color:#cc1818;box-shadow:rgb(204 24 24) 0 0 0 1px inset}.post-type-seopress_404 .btnTertiary,.post-type-seopress_schemas .btnTertiary,.seopress-option .btnTertiary,.seopress-styles .btnTertiary{color:var(--primaryColor);background:0 0}.post-type-seopress_404 .btnTertiary:hover,.post-type-seopress_schemas .btnTertiary:hover,.seopress-option .btnTertiary:hover,.seopress-styles .btnTertiary:hover{box-shadow:inset 0 0 0 1px var(--primaryColor)}.seopress-option hr,.seopress-setup hr,.seopress-styles hr{align-self:center;flex-grow:1;height:1px;margin:0 10px;border:0;border-top:1px solid #dcdcde;border-bottom:1px solid #f6f7f7}.seopress-setup hr{margin-left:10px}#seopress-tabs.wrap .list-none{list-style:none;padding-left:0}.seopress-option .dashicons,.seopress-page-list .dashicons{vertical-align:middle;margin-right:5px;text-decoration:none}#seopress-news-panel .seopress-item-inner .dashicons{vertical-align:top}.seopress-button{text-transform:uppercase;background:#fff;border-color:#c8d7e1;border-style:solid;border-width:1px 1px 2px;color:#2e4453;display:inline-block;margin:0;outline:0;overflow:hidden;text-overflow:ellipsis;text-decoration:none;vertical-align:top;font-size:14px;line-height:20px;padding:6px 8px 6px;-webkit-appearance:none;-moz-appearance:none;appearance:none}.seopress-button:hover{border-color:#a8bece;color:#00a0d2}.seopress-button .dashicons{vertical-align:middle}body .seopress-option h2{color:var(--titleColor);font-size:20px;line-height:24px;font-weight:400}body .seopress-option h3{color:var(--titleColor);font-size:16px;line-height:20px}#seopress_content_analysis input[type=text],#seopress_content_analysis textarea,#seopress_cpt input[type=text],#seopress_cpt textarea,#seopress_pro_cpt input[type=text],#seopress_pro_cpt textarea{width:100%;display:inline-block}#seopress_cpt #tabs-6 input[type=number]{min-width:200px}#seopress_cpt #tabs-6 #wrap-videos .video:first-child .remove-video{display:none}#seopress_content_analysis label,#seopress_cpt label,#seopress_pro_cpt label{margin-bottom:8px;display:inline-block;width:100%}#seopress_cpt #tabs-6{padding:0}body .seopress-option input[type=password],body .seopress-option input[type=text],body .seopress-option select,body .seopress-option textarea{max-width:35rem;border:1px solid var(--borderColor);box-shadow:0 2px 6px rgb(0 0 0 / 5%);width:100%}body .seopress-option select{min-height:50px}.wrap-opening-hours select{width:inherit}body .seopress-option input[type=number],body .seopress-option input[type=password],body .seopress-option input[type=text]{line-height:46px}body .seopress-option input[type=number]:hover,body .seopress-option input[type=password]:hover,body .seopress-option input[type=text]:hover,body .seopress-option select:hover,body .seopress-option textarea:hover{border-color:#787c82}body .seopress-option input[type=number]:active,body .seopress-option input[type=number]:focus,body .seopress-option input[type=password]:active,body .seopress-option input[type=password]:focus,body .seopress-option input[type=text]:active,body .seopress-option input[type=text]:focus,body .seopress-option select:active,body .seopress-option select:focus,body .seopress-option textarea:active,body .seopress-option textarea:focus{box-shadow:0 0 0 2px var(--primaryColor);border-color:transparent}@media only screen and (max-width:1024px){body .seopress-option input[type=number],body .seopress-option input[type=password],body .seopress-option input[type=text],body .seopress-option textarea{min-width:inherit;width:100%}}#seopress_content_analysis input[type=checkbox],#seopress_cpt input[type=checkbox],#seopress_pro_cpt input[type=checkbox],body .seopress-option input[type=checkbox]{font-family:var(--fontFamily);padding:6px 8px;box-shadow:0 0 0 transparent;transition:box-shadow .1s linear;border-radius:2px;border:1px solid var(--color);font-size:16px;line-height:normal;border:1px solid var(--colorDark);margin-right:12px;transition:none;border-radius:2px;background:#fff;color:var(--colorDark);clear:none;cursor:pointer;display:inline-block;line-height:0;margin:-1px 4px 0 0!important;outline:0;padding:0!important;text-align:center;vertical-align:top;width:20px;height:20px;-webkit-appearance:none;appearance:none;transition:.1s border-color ease-in-out}#seopress_content_analysis input[type=checkbox]:checked::before,#seopress_cpt input[type=checkbox]:checked::before,#seopress_pro_cpt input[type=checkbox]:checked::before,body .seopress-option input[type=checkbox]:checked::before{content:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");background:var(--primaryColor);margin:-1px;width:20px;height:20px}#seopress_content_analysis input[type=checkbox]:active,#seopress_content_analysis input[type=checkbox]:focus,#seopress_cpt input[type=checkbox]:active,#seopress_cpt input[type=checkbox]:focus,#seopress_pro_cpt input[type=checkbox]:active,#seopress_pro_cpt input[type=checkbox]:focus,body .seopress-option input[type=checkbox]:active,body .seopress-option input[type=checkbox]:focus{box-shadow:0 0 0 2px var(--primaryColor);border-color:transparent}.field-recommended,.field-required{font-weight:700}.field-required{color:var(--colorAlert)}.field-recommended{color:var(--colorWarning)}.form-table td{padding:15px 0}.form-table td p{margin:4px 0}.form-table td p.seopress_wrap_archive_cpt{margin-bottom:15px}table.wp-list-table .manage_column.column-seopress_canonical,table.wp-list-table .manage_column.column-seopress_desc,table.wp-list-table .manage_column.column-seopress_insights,table.wp-list-table .manage_column.column-seopress_noindex,table.wp-list-table .manage_column.column-seopress_redirect_enable,table.wp-list-table .manage_column.column-seopress_redirect_url,table.wp-list-table .manage_column.column-seopress_title,table.wp-list-table .manage_column.column-seopress_tkw{width:7%!important}.post-type-product table.fixed thead .column-seopress_desc,.post-type-product table.fixed thead .column-seopress_title{width:8%}.post-type-product .fixed .column-seopress_ps,.post-type-product .fixed .column-seopress_words,.post-type-product table.fixed thead .column-seopress_canonical,.post-type-product table.fixed thead .column-seopress_redirect_enable,.post-type-product table.fixed thead .column-seopress_redirect_url,.post-type-product table.fixed thead .column-seopress_tkw{width:6%}.post-type-product .fixed .column-seopress_score{width:50px}table.fixed thead .column-seopress_nofollow,table.fixed thead .column-seopress_noindex{width:100px}@media only screen and (max-width:1200px){table.fixed .column-seopress_canonical>div,table.fixed .column-seopress_desc>div,table.fixed .column-seopress_redirect_enable>div,table.fixed .column-seopress_redirect_url>div,table.fixed .column-seopress_title>div{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}table.fixed thead .column-seopress_canonical,table.fixed thead .column-seopress_nofollow,table.fixed thead .column-seopress_noindex,table.fixed thead .column-seopress_ps,table.fixed thead .column-seopress_redirect_enable,table.fixed thead .column-seopress_redirect_url,table.fixed thead .column-seopress_score,table.fixed thead .column-seopress_tkw,table.fixed thead .column-seopress_words{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}}.post-type-seopress_backlinks .wp-list-table .column-seopress_backlinks_url{width:35%}.post-type-seopress_backlinks .wp-list-table .column-seopress_backlinks_anchor_text{width:20%}.seopress-styles #seopress-header{padding:22px 120px 22px 40px;height:60px;margin:0 auto;width:calc(100% - 160px);background:#fff;position:fixed;top:32px;z-index:110;display:flex;justify-content:space-between;align-items:center}.folded.seopress-styles #seopress-header{width:calc(100% - 35px)}@media only screen and (max-width:782px){.seopress-styles #seopress-header{width:100%;padding:22px;top:46px;position:absolute}}#seopress-header #seopress-navbar ul{margin:0;padding:0}#seopress-header #seopress-navbar ul li{margin:0;display:inline-block;position:relative;padding:0 20px 0 0;font-weight:700}#seopress-header #seopress-navbar ul li::after{content:"/";color:var(--paragraphColor);position:absolute;display:block;top:0;left:calc(100% - 10px)}#seopress-header #seopress-navbar ul li:last-child:after{content:none}.sp-dashboard-card-highlight{border:1px dashed #c3c4c7;margin:20px 0}.seopress-summary-items{display:flex;flex-wrap:wrap}.seopress-summary-item{display:flex;flex-direction:column;padding:20px;border-bottom:1px solid var(--borderColorLight40);border-right:1px solid var(--borderColorLight40);line-height:1.4em;text-decoration:none;width:50%;color:var(--colorDark);justify-content:center}@media only screen and (max-width:782px){.seopress-summary-item{width:100%}}.seopress-summary-item-label{display:block;margin-bottom:16px;color:var(--color);font-size:14px;line-height:20px}.seopress-summary-item-data{margin-bottom:4px;font-weight:500;color:var(--colorDark);font-size:20px;line-height:28px}.seopress-summary-item-data small{font-weight:400;font-size:11px;text-transform:uppercase}.seopress-summary-items .inside,.seopress-tab.inside{padding:20px}#seopress-admin-tabs.ui-tabs{position:relative;padding:.2em;border:none;font-family:inherit;font-size:inherit}#seopress-admin-tabs.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:-1px .2em 0 0;padding:0;white-space:nowrap;border:none;background:0 0}#seopress-admin-tabs.ui-tabs .ui-tabs-nav li a{float:left;padding:.38em 1em .75rem;outline:0;border-bottom:2px solid #fff}#seopress-admin-tabs.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px}#seopress-admin-tabs.ui-tabs .ui-tabs-nav li.ui-state-disabled a,#seopress-admin-tabs.ui-tabs .ui-tabs-nav li.ui-tabs-active a,#seopress-admin-tabs.ui-tabs .ui-tabs-nav li.ui-tabs-loading a{cursor:text;border-bottom:2px solid #23282d;color:#23282d}#seopress-admin-tabs.ui-tabs .ui-tabs-nav li a,#seopress-admin-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a{cursor:pointer;color:#0073aa;text-decoration:none}#seopress-admin-tabs.ui-tabs-vertical{width:55em}#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-nav{padding:.2em .1em .2em .2em;float:left;width:12em}#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-nav li{clear:left;width:100%;border-bottom-width:1px!important;border-right-width:0!important;margin:0 -1px .2em 0}#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-nav li.ui-tabs-active{padding-bottom:0;padding-right:.1em;border-right-width:1px}#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-panel{padding:1em;float:right;width:40em}#seopress-admin-tabs.wrap{background:#fff;display:block;width:64rem;max-width:100%;margin:0 auto}@media only screen and (max-width:1024px){#seopress-admin-tabs.wrap{width:100%}}#seopress-admin-tabs .seopress-tab{width:100%;display:none}#seopress-admin-tabs .seopress-tab.active{visibility:visible;overflow:inherit;opacity:1;transform:translateX(0);display:inherit;position:relative}.seopress-dashboard-columns{display:flex;max-width:64rem;margin:0 auto;justify-content:space-between;flex-direction:row}.seopress-dashboard-column{align-self:flex-start;width:calc(50% - 12px);margin:0}@media only screen and (max-width:782px){.seopress-dashboard-columns{max-width:100%;flex-direction:column}.seopress-dashboard-column{width:100%}}#seopress-admin-tabs .ui-tabs-nav,.seopress-get-started{margin:0 auto 20px;max-width:64rem;padding:2rem;width:100%;border-radius:0 0 4px 4px}.seopress-get-started{background:#fff url(../img/bg-hero-started.svg) no-repeat 100% 50%/contain;position:relative}.seopress-get-started .inside{padding:2rem}.seopress-get-started .preheader{text-transform:uppercase;font-size:11px;font-weight:600;color:var(--paragraphColor)}.seopress-activity-panel-tabs{height:60px;display:flex;align-items:center}.seopress-activity-panel-tabs .btn{display:flex;flex-direction:column;justify-content:center;color:var(--color);height:60px;padding:10px 26px;border-bottom:3px solid transparent}.seopress-activity-panel-tabs .btn:hover{background:var(--backgroundSecondaryHover)}.seopress-activity-panel-tabs .btn.is-active{border-bottom:3px solid var(--backgroundPrimary);color:var(--colorDark)}.seopress-activity-panel-wrapper{height:calc(100vh - 92px);top:92px;background:var(--backgroundSecondaryHover);width:510px;transform:translateX(100%);transition-duration:.3s;transition-timing-function:ease-in-out;position:fixed;right:0;z-index:1000;overflow-x:hidden;overflow-y:auto}@media only screen and (max-width:782px){.seopress-activity-panel-wrapper{top:106px}}.seopress-activity-panel-wrapper.is-open{transform:none;box-shadow:0 12px 12px 0 rgb(85 93 102 / 30%)}.seopress-activity-panel-header{background:#e0e0e0;padding:16px 24px}.seopress-activity-panel-content{background:#fff;padding:16px 24px}.seopress-list-items,.seopress-list-items .seopress-item{margin:0}.seopress-list-items .seopress-item{border-bottom:1px solid var(--borderColorLight40)}.seopress-list-items .seopress-item:last-child{border-bottom:none}.seopress-list-items .seopress-item .seopress-item-inner{color:var(--primaryColor);text-decoration:none;padding:15px 20px;background:#fff;font-size:var(--fontSize);font-weight:700;width:100%}.seopress-option .has-action{display:flex;align-items:center}.seopress-list-items .seopress-item .seopress-item-inner:hover{background:var(--backgroundSecondaryHover)}.seopress-list-items .seopress-item-after,.seopress-list-items .seopress-item-before{margin:0 20px 0 10px;position:relative}.seopress-list-items .seopress-item-after::after,.seopress-list-items .seopress-item-before::before{content:"\f330";font-family:Dashicons;vertical-align:middle;font-size:20px;font-weight:400}.seopress-list-items .seopress-item-after{margin-left:auto;padding-left:20px;margin-right:0}.seopress-list-items .seopress-item-after::after{content:"\f345"}.seopress-list-items .seopress-item .seopress-item-title{margin:5px 0;color:var(--primaryColor)}.seopress-list-items .seopress-item .seopress-item-date{color:var(--paragraphColor);font-weight:400;margin:0}.seopress-list-items .seopress-item .seopress-item-content{color:var(--colorDark);font-weight:400;margin:0}.indexing-log,.seopress-list-items .seopress-item .seopress-item-inner.check{position:relative}.indexing-log::before,.seopress-list-items .seopress-item .seopress-item-inner.check::before{content:"";width:32px;height:32px;font-size:24px;vertical-align:middle;border-radius:50px;color:#fff;margin-right:10px;display:inline-block;border:1px solid var(--borderColorLight);line-height:32px;text-align:center}.indexing-log.indexing-done::before,.indexing-log.indexing-failed::before,.seopress-list-items .seopress-item .seopress-item-inner.done::before{background:var(--backgroundPrimary);border:none;content:"\f15e";font-family:Dashicons}.indexing-log.indexing-done::before{background:var(--colorSuccess)}.indexing-log.indexing-failed::before{background:var(--colorAlert);content:"\f335"}.sp-tooltip{position:relative;margin-left:5px;display:inline-block;cursor:help;vertical-align:bottom;text-align:left;background:0 0;border:none;padding:0}.sp-tooltip .dashicons{color:var(--colorDark)}.sp-tooltip .sp-tooltiptext{visibility:hidden;position:absolute;z-index:999999999;width:350px;right:-310px;padding:20px;top:25px;font-weight:400;box-shadow:0 3px 30px rgb(25 30 35 / 10%);border:1px solid var(--borderColorLight40);background:#fff;word-break:break-word;text-transform:none}.sp-tooltip .sp-tooltiptext::before{border:8px solid var(--borderColorLight40);top:-8px}.sp-tooltip .sp-tooltiptext::after{border:8px solid #fff;top:-6px}.sp-tooltip .sp-tooltiptext::after,.sp-tooltip .sp-tooltiptext::before{border-bottom-style:solid;border-left-color:transparent;border-right-color:transparent;border-top:none;margin-left:-10px;content:"";position:absolute;height:0;width:0;line-height:0;left:30px}.sp-tooltip:active .sp-tooltiptext,.sp-tooltip:focus .sp-tooltiptext,.sp-tooltip:hover .sp-tooltiptext{visibility:visible}.sp-tooltip .sp-tooltip-headings{font-size:18px;font-weight:600;margin-bottom:20px;display:block}.sp-tooltip .sp-tooltip-desc{margin-bottom:20px;display:block;border-bottom:1px solid var(--borderColorLight40);padding-bottom:20px;font-size:var(--fontSize);line-height:1.5}.sp-tooltip .sp-tooltip-code{font-family:Menlo,Monaco,Andale Mono,Courier New,monospace;display:block;word-break:break-all;color:var(--colorPre);font-size:11px}.analysis-score .sp-tooltip{vertical-align:middle;font-size:.75em}#seopress_content_analysis .wrap-insights-post .sp-tooltip *{font-weight:400}#seopress_content_analysis .wrap-insights-post .sp-tooltip-headings{font-weight:700}#seopress_content_analysis a{color:var(--backgroundPrimary)}#seopress_content_analysis a.nounderline,#seopress_content_analysis a.nounderline:hover{text-decoration:none}#seopress_content_analysis .wrap-seopress-analysis{display:inline-block;width:100%}#seopress_content_analysis .col-left{width:calc(50% - 30px);float:left;margin-right:30px}#seopress_content_analysis .col-right{float:right;width:50%}#seopress_content_analysis #seopress_suggestions{display:inline-block;width:100%;margin:0;height:auto;padding:20px 0;position:relative;left:-5px}#seopress_content_analysis #seopress_suggestions li{list-style:none;margin:5px;display:inline-block}#seopress_content_analysis .analysis-score{clear:both;border-top:1px solid var(--borderColorCard);display:flex;justify-content:space-between;align-items:center}.column-seopress_score .analysis-score{display:flex;align-content:center}#seopress_content_analysis .analysis-score p,.column-seopress_score .analysis-score p{font-weight:700;font-size:1.2em}#seopress-ca-tabs .seopress-gsc-render{margin:1rem 0}#seopress-ca-tabs .dashicons{vertical-align:middle;margin-right:1rem}#seopress-ca-tabs .seopress-gsc-verdict .dashicons{font-size:30px;width:30px;height:30px}#seopress-ca-tabs .dashicons-yes-alt{color:var(--colorSuccess)}#seopress-ca-tabs .dashicons-info{color:var(--colorWarning)}#seopress-ca-tabs .dashicons-dismiss{color:var(--colorAlert)}#seopress-ca-tabs .seopress-gsc-analysis{margin-top:1rem;margin-bottom:1rem;display:inline-block;width:100%}#seopress-ca-tabs .seopress-gsc-cat{border-bottom:1px solid var(--borderColorCard);margin-bottom:.5rem;font-weight:700;padding-bottom:.5rem}#seopress-ca-tabs .seopress-gsc-analysis .seopress-gsc-item{display:flex}#seopress-ca-tabs .seopress-gsc-analysis .seopress-gsc-item-name{width:240px}#seopress-ca-tabs .seopress-gsc-analysis .seopress-gsc-item div{margin:.5rem 0}#seopress-ca-tabs .seopress-gsc-summary{display:block;padding:20px;margin:20px 0;top:0;left:0}#seopress-ca-tabs .seopress-gsc-verdict{font-weight:700;font-size:1.2em}#seopress_content_analysis .analysis-score svg,.column-seopress_score .analysis-score svg{display:inline-block;height:30px;width:30px;margin:0;border-radius:100%;position:relative;font-weight:600;shape-rendering:geometricprecision;font-size:.5rem;vertical-align:middle;margin-right:15px}.column-seopress_score .analysis-score p,.column-seopress_score .analysis-score svg{margin:0}@keyframes loadingPulse{0%{stroke:#adc5d2}50%{stroke:#00a0d2}100%{stroke:#adc5d2}}#seopress_content_analysis .analysis-score .loading #bar{stroke-dashoffset:0!important;stroke:#adc5d2!important;animation:loadingPulse 3s infinite ease-in-out}#seopress_content_analysis .analysis-score .good #bar,.column-seopress_score .analysis-score #bar.good{stroke:var(--colorSuccess)}#seopress_content_analysis .analysis-score .notgood #bar,.column-seopress_score .analysis-score #bar.notgood{stroke-dashoffset:101px;stroke:var(--colorWarning)}#seopress_content_analysis .analysis-score svg circle,.column-seopress_score .analysis-score svg circle{stroke-dashoffset:0;transition:stroke-dashoffset 1s linear;stroke:#ccc;stroke-width:2em}#tab_seopress_page_speed .ps-score svg path,#tab_seopress_ps .ps-score svg path{stroke-linecap:round;stroke-width:2.8;fill:none}#tab_seopress_page_speed .ps-score,#tab_seopress_ps .ps-score{position:relative;display:inline-block}#tab_seopress_page_speed .ps-score svg,#tab_seopress_ps .ps-score svg{width:80px;height:80px}#tab_seopress_page_speed .ps-score span,#tab_seopress_ps .ps-score span{font-weight:700;left:0;position:absolute;top:0;width:80px;height:80px;align-items:center;display:flex;justify-content:center;margin:0}#tab_seopress_page_speed .ps-score.green #bar,#tab_seopress_ps .ps-score.green #bar{stroke:var(--colorSuccess)}#tab_seopress_page_speed .ps-score.yellow #bar,#tab_seopress_ps .ps-score.yellow #bar{stroke:var(--colorWarning)}#tab_seopress_page_speed .ps-score.red #bar,#tab_seopress_ps .ps-score.red #bar{stroke:var(--colorAlert)}#tab_seopress_ps .score,.wrap-seopress-score .score{width:12px;height:12px;display:inline-block;margin-right:10px;vertical-align:middle}#tab_seopress_ps .score.red,.wrap-seopress-score .score.red{border-bottom-color:var(--colorAlert);border-bottom-style:solid;border-bottom-width:12px;border-left-color:transparent;border-left-style:solid;border-left-width:6px;border-right-color:transparent;border-right-style:solid;border-right-width:6px}.wrap-seopress-score small{font-size:12px}.wrap-seopress-score small.red,.wrap-seopress-score small.yellow{color:var(--colorAlert)}#tab_seopress_ps .score.yellow,.wrap-seopress-score .score.yellow{background-color:var(--colorWarning);display:inline-block}#tab_seopress_ps .score.green,.wrap-seopress-score .score.green{border-radius:100%;background-color:var(--colorSuccess)}.wrap-seopress-score small.green{color:var(--colorSuccess)}.wrap-seopress-score .score.null{background:#ccc;border-radius:100%}#seopress_content_analysis .gr-analysis{clear:both}#seopress_content_analysis .gr-analysis-title{border-top:1px solid var(--borderColorCard);position:relative}#seopress_content_analysis .gr-analysis-title .impact,#seopress_cpt .impact{position:absolute;left:10px;top:calc(50% - 5px);width:10px;height:10px;border-radius:50px;padding:0;margin:0;border:1px solid #fff}#seopress_content_analysis .gr-analysis .impact.good{background:var(--colorSuccess);box-shadow:0 0 5px var(--colorSuccess)}#seopress_content_analysis .gr-analysis .impact.low{background:var(--colorWarning);box-shadow:0 0 5px var(--colorWarning)}#seopress_content_analysis .gr-analysis .impact.medium{background:var(--colorLowAlert);box-shadow:0 0 5px var(--colorLowAlert)}#seopress_content_analysis .gr-analysis .impact.high,#seopress_cpt .impact.high{background:var(--colorAlert);box-shadow:0 0 5px var(--colorAlert)}#seopress_content_analysis .gr-analysis-content .impact.high{background:var(--colorAlert);box-shadow:none;color:#fff;padding:2px 4px;margin-left:5px;border-radius:4px;font-weight:700}#seopress_cpt .impact.high{position:relative;top:calc(50% - 18px);display:inline-block;left:inherit;right:-10px}#seopress_content_analysis .description,#seopress_cpt .description,#seopress_pro_cpt .description,.seopress-option .description{display:block;font-size:12px;color:var(--color)}@media only screen and (max-width:782px){#seopress_content_analysis .description,#seopress_cpt .description,#seopress_pro_cpt .description,.seopress-option .description{word-break:break-word}}#seopress_content_analysis input~span.description,#seopress_content_analysis span.description~input,#seopress_cpt input~span.description,#seopress_cpt span.description~input,#seopress_pro_cpt input~span.description,#seopress_pro_cpt span.description~input{margin-top:5px}#seopress_content_analysis .gr-analysis-title button{background:#fff;border:0;cursor:pointer;display:block;margin:0;position:relative;text-align:left;width:100%;padding:15px 30px;align-items:center;transition:all .3s linear}#seopress_content_analysis .gr-analysis-title button:hover{background:#f3f4f5}#seopress_content_analysis .gr-analysis-title button:focus{color:#191e23;border:none;box-shadow:none;outline-offset:-2px;outline:1px dotted #555d66}#seopress_content_analysis .gr-analysis-title button .seopress-arrow::after{content:"\f343";font-family:Dashicons;position:absolute;right:10px;top:calc(50% - 7px)}#seopress_content_analysis .gr-analysis-title button.open .seopress-arrow::after{content:"\f347"}#seopress_content_analysis .gr-analysis-content{padding:0 1rem .5rem 1rem;display:none;width:100%;border-top:1px solid var(--borderColorCard)}#seopress_content_analysis h3{margin:0;font-size:1em}#seopress_content_analysis h4{border-bottom:1px solid var(--borderColorCard);padding-bottom:.5rem;text-transform:uppercase;font-size:.85em;position:-webkit-sticky;position:sticky;top:0;background:#fff}#seopress_content_analysis .wrap-analysis-img ul{display:flex;flex-wrap:wrap}#seopress_content_analysis .wrap-analysis-img ul li{padding:0;text-align:left;cursor:default;user-select:auto}#seopress_content_analysis .wrap-analysis-img h4{border-bottom:1px solid var(--borderColorLight);padding-bottom:10px}#seopress_content_analysis .wrap-analysis-img ul li img{max-width:150px;max-height:150px;object-fit:cover;border:1px solid var(--borderColorLight);cursor:default;padding:1px}#seopress-analysis-tabs .dashicons,#seopress_cpt .dashicons{vertical-align:middle}#seopress-analysis-tabs{clear:both}#seopress_content_analysis .dashicons-no-alt,#seopress_content_analysis .dashicons-yes,#seopress_pro_cpt .dashicons-no-alt,#seopress_pro_cpt .dashicons-yes{color:#fff;background:var(--colorSuccess);border-radius:50px;margin-right:10px}#seopress_content_analysis .dashicons-no-alt,#seopress_pro_cpt .dashicons-no-alt{background:var(--colorAlert)}#seopress-schemas-tabs .description-alt,#seopress_content_analysis .description-alt,#seopress_cpt .description-alt{padding:1em 0;border-top:1px solid var(--borderColorLight);border-bottom:1px solid var(--borderColorLight);display:flex}#seopress_cpt .desc-fb{margin-top:0;border-top:none}#seopress-schemas-tabs .description-alt svg,#seopress_content_analysis .description-alt svg,#seopress_cpt .description-alt svg{vertical-align:middle;align-self:center;fill:#f0b849;flex-shrink:0;margin-right:16px}#seopress_cpt .notice{padding:10px 14px;margin:0}#seopress_cpt .inside{margin:0;padding:0}#seopress_cpt .ui-tabs .ui-tabs-nav{display:flex;position:relative;width:100%;z-index:10;margin:0;border-radius:0;padding:0;align-items:center;padding:0;height:48px;border-bottom:1px solid #ddd;background:inherit;line-height:inherit;color:inherit;border-top:none;border-left:none;border-right:none}#seopress_cpt .ui-tabs .sp-section{font-weight:700;font-size:var(--fontSize)}#seopress_cpt .ui-helper-clearfix:after{content:none}.seopress_page_seopress-titles #seopress-tabs .form-table td,.seopress_page_seopress-titles #seopress_content_analysis .form-table td{padding:0}#seopress_cpt .ui-tabs .ui-tabs-panel{background:#fff;border-radius:0;display:inline-block;padding:1em 1.4em;width:100%}#seopress_content_analysis .dashicons-info,#seopress_cpt .ui-tabs .ui-tabs-panel .dashicons-info,#seopress_pro_cpt .dashicons-info{font-size:16px;vertical-align:middle;height:16px;width:16px}#seopress_cpt .ui-tabs .ui-tabs-nav li,#seopress_cpt .ui-tabs-anchor{cursor:pointer!important}body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active{position:relative;z-index:60;cursor:pointer;border-radius:0;border-bottom:4px solid var(--backgroundPrimary)!important}#seopress_cpt .wp-color-result{margin:0}#seopress_cpt #tabs-6 #wrap-videos .video .accordion-section-content,#seopress_cpt #tabs-6>p{padding:0 1.4em}#seopress_cpt #tabs-6 #wrap-videos .video .accordion-section-content{padding:0 1.4em 1em}#seopress_cpt #tabs-6 #wrap-videos .video{border-top:1px solid var(--borderColorLight)}#seopress_cpt #tabs-6 #wrap-videos .video .accordion-section-title{border-left:none;border-right:none;font-size:1em;padding:1em 1.4em}#seopress_cpt #tabs-6 #wrap-videos .video:last-child .accordion-section-content,#seopress_cpt #tabs-6 #wrap-videos .video:last-child .accordion-section-title{border-bottom:1px solid var(--borderColorLight)}#seopress_content_analysis .mandatory,#seopress_cpt .mandatory{color:var(--colorAlert)}#seopress_cpt .box-left{float:left;width:49%;margin-right:1%}#seopress_cpt .box-right{float:left;width:49%;margin-left:1%}#seopress_cpt #tabs-3 .box-left{width:44%}#seopress_cpt #tabs-3 .box-right{width:54%}@media only screen and (max-width:1200px){#seopress_cpt .box-left,#seopress_cpt .box-right{float:none;width:100%;margin:0}}@media only screen and (max-width:1500px){#seopress_cpt #tabs-3 .box-left,#seopress_cpt #tabs-3 .box-right{float:none;width:100%;margin:0}}#edittag #seopress_cpt #tabs-3 .box-left,#edittag #seopress_cpt #tabs-3 .box-right{float:none;width:100%;margin:0}#seopress-tabs .seopress_media_upload,#seopress_pro_cpt .seopress_media_upload{margin-top:.5rem}#term-seopress #seopress_cpt{width:95%}#seopress_cpt .ui-tabs{position:relative;padding:0;border:none;font-family:inherit;font-size:inherit;display:inline-block;width:100%}#seopress_cpt .ui-tabs .ui-tabs-nav li{list-style:none;position:relative;padding:0;white-space:nowrap;margin:0;border:none;height:48px;background:0 0}#seopress_cpt .ui-tabs .ui-tabs-nav li a{display:flex;padding:3px 15px;align-items:center}#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-nav li a,#seopress_cpt .ui-tabs-vertical .ui-tabs-nav li a{display:block}#seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:0;padding-bottom:0}#seopress_cpt .ui-tabs .ui-tabs-nav li.ui-state-disabled a,#seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active a,#seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-loading a{font-weight:500}#seopress_cpt .ui-tabs .ui-tabs-nav li a,#seopress_cpt .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a{cursor:pointer;color:#191e23;text-decoration:none;height:48px}#seopress_cpt .ui-tabs .ui-tabs-nav li a:focus,#seopress_cpt .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a:focus{outline:3px solid transparent;box-shadow:inset 0 0 0 var(--wp-admin-border-width-focus) var(--backgroundPrimary),inset 0 -4px 0 0 var(--backgroundPrimary)}#seopress_cpt .ui-tabs-vertical{width:55em}#seopress_cpt .ui-tabs-vertical .ui-tabs-nav{padding:.2em .1em .2em .2em;float:left;width:12em}#seopress_cpt .ui-tabs-vertical .ui-tabs-nav li{clear:left;width:100%;border-bottom-width:1px!important;border-right-width:0!important;margin:0 -1px .2em 0}#seopress_cpt .ui-tabs-vertical .ui-tabs-nav li.ui-tabs-active{padding-bottom:0;padding-right:.1em;border-right-width:1px}#seopress_cpt .ui-tabs-vertical .ui-tabs-panel{padding:1em;float:right;width:40em}#seopress_cpt .ui-tabs .ui-tabs-nav li a .dashicons{margin-right:2px}#seopress_cpt .google-snippet-preview{font-family:arial,sans-serif;word-break:break-all}#seopress_cpt .google-snippet-preview.mobile-preview .wrap-snippet{margin:0 0 10px 0;box-shadow:0 1px 6px rgba(32,33,36,.28);border-radius:8px;padding:12px 16px}#seopress_cpt .google-snippet-preview>p{word-break:normal}#seopress_cpt .google-snippet-preview .snippet-title,#seopress_cpt .google-snippet-preview .snippet-title-custom,#seopress_cpt .google-snippet-preview .snippet-title-default{color:#1a0dab;font-size:18px;font-weight:400;line-height:21.6px}#seopress_cpt .google-snippet-preview.mobile-preview .snippet-title,#seopress_cpt .google-snippet-preview.mobile-preview .snippet-title-custom,#seopress_cpt .google-snippet-preview.mobile-preview .snippet-title-default{font-size:16px;line-height:20px;margin-bottom:12px}#seopress_cpt .google-snippet-preview .snippet-permalink{color:#006621;font-size:14px;font-style:normal;font-weight:400;line-height:16px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}#seopress_cpt .google-snippet-preview .wrap-snippet .wrap-m-icon-permalink,#seopress_cpt .google-snippet-preview.mobile-preview .snippet-permalink{display:none}#seopress_cpt .google-snippet-preview.mobile-preview .wrap-snippet-mobile{display:flex;justify-content:space-between}#seopress_cpt .google-snippet-preview.mobile-preview .wrap-meta-desc{margin-right:8px}#seopress_cpt .google-snippet-preview .wrap-post-thumb{display:none}#seopress_cpt .google-snippet-preview.mobile-preview .wrap-post-thumb{margin-left:8px;display:block}#seopress_cpt .google-snippet-preview.mobile-preview .snippet-post-thumb{width:104px;max-width:inherit;height:104px;border-radius:8px;object-fit:cover}#seopress_cpt .google-snippet-preview.mobile-preview .wrap-m-icon-permalink{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin-bottom:12px;display:flex}#seopress_cpt .google-snippet-preview.mobile-preview .wrap-m-icon-permalink .snippet-permalink{display:block;color:#3c4043;font-size:12px}#seopress_cpt .google-snippet-preview.mobile-preview .snippet-favicon{margin-right:12px;vertical-align:middle}#seopress_cpt .google-snippet-preview.mobile-preview .snippet-favicon img{width:16px;height:16px;max-width:inherit}#seopress_cpt .google-snippet-preview.mobile-preview .wrap-snippet .snippet-permalink:first-child{color:#3c4043;white-space:nowrap;font-size:12px;display:block}#seopress_cpt .google-snippet-preview .snippet-description,#seopress_cpt .google-snippet-preview .snippet-description-custom,#seopress_cpt .google-snippet-preview .snippet-description-default{color:#545454;font-size:14px;font-weight:400;line-height:18.2px;display:inline;hyphens:none;word-break:normal}#seopress_cpt .google-snippet-preview.mobile-preview .snippet-description,#seopress_cpt .google-snippet-preview.mobile-preview .snippet-description-custom,#seopress_cpt .google-snippet-preview.mobile-preview .snippet-description-default{color:#3c4043;font-size:14px;line-height:20px}#seopress_cpt .google-snippet-preview .snippet-date{color:grey;display:inline}#seopress_cpt .facebook-snippet-box{color:#4b4f56;font-size:14px;width:524px;max-width:100%}#seopress_cpt .facebook-snippet-box .notice,#seopress_cpt .twitter-snippet-box .notice{padding:10px 14px;margin:0 0 10px 0;width:100%}#seopress_cpt .facebook-snippet-box .notice span,#seopress_cpt .twitter-snippet-box .notice span{font-weight:700}#seopress_cpt .snippet-meta{display:flex;overflow:hidden;max-height:12px}#seopress_cpt .fb-by,#seopress_cpt .snippet-fb-site-name,#seopress_cpt .snippet-fb-url{color:#606770;font-size:12px;white-space:normal;line-height:11px;text-transform:uppercase;-webkit-box-orient:vertical;display:-webkit-box;text-overflow:ellipsis}#seopress_cpt .fb-sep{padding-left:5px;padding-right:5px;color:#606770;line-height:11px;font-size:12px}#seopress_cpt .facebook-snippet-box .facebook-snippet-text{border:1px solid #dadde1;background-color:#f2f3f5;padding:10px 12px}#seopress_cpt .facebook-snippet-box .title-desc{max-height:46px;overflow:hidden}#seopress_cpt .facebook-snippet-box .snippet-fb-title,#seopress_cpt .facebook-snippet-box .snippet-fb-title-custom,#seopress_cpt .facebook-snippet-box .snippet-fb-title-default{font-size:16px;line-height:20px;margin:3px 0 0;padding-top:2px;color:#1d2129;font-weight:700;overflow:hidden;-webkit-box-orient:vertical;display:-webkit-box;text-overflow:ellipsis;white-space:normal;word-break:break-word;max-height:22px}#seopress_cpt .facebook-snippet-box .snippet-fb-description,#seopress_cpt .facebook-snippet-box .snippet-fb-description-custom,#seopress_cpt .facebook-snippet-box .snippet-fb-description-default{color:#606770;font-size:14px;line-height:20px;word-break:break-word;font-family:Helvetica,Arial,sans-serif;max-height:80px;overflow:hidden;-webkit-box-orient:vertical;display:-webkit-box;text-overflow:ellipsis;white-space:normal;width:100%}#seopress_cpt .facebook-snippet-box img{display:block;height:274px;width:524px;object-fit:cover;background-color:#f0f0f0;text-align:center;border-bottom:none}.term-php #seopress_cpt .facebook-snippet-box img,.term-php #seopress_cpt .twitter-snippet-box img{width:100%;height:auto}.seopress_social_fb_img_upload,.seopress_social_twitter_img_upload{position:absolute;width:100%;cursor:pointer;height:100%;left:0;top:0}.seopress_social_fb_img_upload:hover::after,.seopress_social_twitter_img_upload:hover::after{content:"\f464";position:absolute;font-family:dashicons;width:100%;height:100%;top:0;left:0;font-size:40px;background:rgb(255 255 255 / 70%);display:flex;justify-content:center;align-items:center;color:#1e1e1e}.snippet-fb-img,.snippet-fb-img-custom,.snippet-fb-img-default,.snippet-twitter-img,.snippet-twitter-img-custom,.snippet-twitter-img-default{position:relative}#seopress_cpt .twitter-snippet-box{color:#4b4f56;font-size:14px;width:504px;max-width:100%}#seopress_cpt .snippet-twitter-url{color:#8899a6;font-size:14px;white-space:normal;line-height:11px;text-transform:uppercase;-webkit-box-orient:vertical;display:-webkit-box;text-overflow:ellipsis}#seopress_cpt .twitter-snippet-box .twitter-snippet-text{border:1px solid #dadde1;background-color:#fff;padding:10px 12px;border-radius:0 0 10px 10px}#seopress_cpt .twitter-snippet-box .title-desc{max-height:46px;overflow:hidden}#seopress_cpt .twitter-snippet-box .snippet-twitter-img,#seopress_cpt .twitter-snippet-box .snippet-twitter-img-custom,#seopress_cpt .twitter-snippet-box .snippet-twitter-img-default{border-radius:10px 10px 0 0;overflow:hidden}#seopress_cpt .twitter-snippet-box .snippet-twitter-title,#seopress_cpt .twitter-snippet-box .snippet-twitter-title-custom,#seopress_cpt .twitter-snippet-box .snippet-twitter-title-default{font-size:1em;line-height:20px;margin-bottom:5px;max-height:1.3em;color:#000;font-weight:700;overflow:hidden;-webkit-box-orient:vertical;display:-webkit-box;text-overflow:ellipsis;white-space:normal;word-break:break-word}#seopress_cpt .twitter-snippet-box .snippet-twitter-description,#seopress_cpt .twitter-snippet-box .snippet-twitter-description-custom,#seopress_cpt .twitter-snippet-box .snippet-twitter-description-default{color:#000;font-size:14px;line-height:20px;word-break:break-word;font-family:Helvetica,Arial,sans-serif;max-height:80px;overflow:hidden;-webkit-box-orient:vertical;display:-webkit-box;text-overflow:ellipsis;white-space:normal;width:100%}#seopress_cpt .twitter-snippet-box img{display:block;height:263px;width:504px;object-fit:cover;background-color:#f0f0f0;text-align:center;border-bottom:none}.wrap-toggle-preview{position:relative}.wrap-toggle-preview p{font-weight:700;margin:0 0 1rem 0}#seopress_add_to_insights{margin-left:1rem}#seopress_add_to_insights_status{display:inline-block;font-weight:700;margin:0 0 0 1rem;vertical-align:middle;padding:.3rem;font-style:italic}.seo_page_seopress-instant-indexing .wrap-sp-progress{max-width:35rem}#seopress_cpt .wrap-seopress-counters,#seopress_pro_cpt .wrap-seopress-counters,.seopress-setup .wrap-seopress-counters,.seopress-styles .wrap-seopress-counters{text-align:right;background:#e9ecef;padding:2px 5px;display:flex;font-size:12px;justify-content:flex-end;border-radius:0 0 .25rem .25rem}#seopress_cpt .sp-progress,#seopress_pro_cpt .sp-progress,.seopress-setup .sp-progress,.seopress-styles .sp-progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem .25rem 0 0;margin:-15px 0 0 0}#seopress_cpt .sp-progress-bar,#seopress_pro_cpt .sp-progress-bar,.seopress-setup .sp-progress-bar,.seopress-styles .sp-progress-bar{display:flex;flex-direction:column;justify-content:center;color:#fff;text-align:center;white-space:nowrap;background-color:#0085ba;transition:width .6s ease}#seopress_cpt #seopress_titles_desc_counters,#seopress_cpt #seopress_titles_title_counters,#seopress_pro_cpt #seopress_rich_snippets_articles_counters,#seopress_pro_cpt #seopress_rich_snippets_courses_counters{display:inline;margin-right:5px}#seopress_cpt #seopress_titles_desc_counters_val,#seopress_cpt #seopress_titles_title_counters_val,#seopress_pro_cpt #seopress_rich_snippets_articles_counters_val,#seopress_pro_cpt #seopress_rich_snippets_courses_counters_val{display:inline;font-weight:700}#tab-panel-seopress_titles_help_tab li span{font-weight:700;margin-right:10px}.seopress-styles .seopress-option{margin:85px 40px 40px}@media only screen and (max-width:782px){.seopress-styles .seopress-option{margin:85px 22px 22px}}.seopress-setup .seopress-option h1,.seopress-styles .seopress-option h1{font-size:var(--titleFontSize);color:var(--titleColor);font-weight:var(--titleFontWeight);margin:var(--titleMargin);display:flex;justify-content:space-between}.seopress-setup .seopress-option h1{margin-bottom:30px}.seopress_wrap_archive_cpt,.seopress_wrap_single_cpt,.seopress_wrap_single_tax,.seopress_wrap_tax{margin:0 0 20px 0}#tab_seopress_titles_archives .form-table th:empty,#tab_seopress_titles_single .form-table th:empty,#tab_seopress_titles_tax .form-table th:empty{display:none}.seopress-styles .seopress-option .link-archive{font-size:var(--fontSize)}.seopress-styles .seopress-option .link-archive .dashicons{font-size:18px;width:20px;height:20px;margin:inherit}.seopress-option h1 .feature-state .dashicons{font-size:16px;width:16px;height:16px;vertical-align:middle;margin:0 10px 0 0}.seopress-styles .seopress-option .submit{padding:20px 0 20px 0;left:0;margin:0;position:sticky;bottom:0;z-index:100;display:inline-block}@media only screen and (max-width:782px){.seopress-styles .seopress-option .submit{position:relative}}.seopress-styles .seopress-option .seopress-tab .submit{display:block;position:relative}.seopress-styles #wpcontent{padding-left:0}.seopress-styles pre{font-family:Menlo,Monaco,Andale Mono,Courier New,monospace;padding:10px;display:inline-block;background-color:var(--backgroundSecondaryHover);border-radius:3px;color:var(--colorDark);font-size:var(--fontSize)}.seopress-option .seopress-settings{float:left;max-width:750px;width:100%}.seopress-option .seopress-settings label{margin:0 0 0 10px}.wrap-seopress-tab-content{position:relative;display:block;width:100%;max-width:64rem;margin:0 auto}#seopress-tabs .seopress-tab{padding:10px 1.5rem;width:100%;display:none}#seopress-tabs.full-width .seopress-tab{width:100%}@media only screen and (max-width:1024px){#seopress-tabs .seopress-tab{width:100%}}#seopress-tabs .seopress-tab.active{display:inline-block;background:#fff}@media only screen and (max-width:782px){#seopress-tabs .seopress-tab.active{width:100%;border-left:none;border-top:1px solid RGB(238,238,238)}}#seopress_htaccess_file{width:100%}.seopress-option textarea{min-height:100px}.seopress-option .wp-picker-container button{box-shadow:none;border:1px solid #0071a1;border-radius:3px;background:#f3f5f6;text-transform:none}.seopress-option .wp-picker-container input[type=text].wp-color-picker{min-width:inherit}.seopress-option .wp-picker-container .wp-picker-default{margin:0}.seopress-option .wp-picker-container .wp-picker-clear{box-shadow:none;text-transform:none;border-radius:0;background:0 0;margin:0}.seopress-option .wp-picker-container .wp-picker-clear:hover{background:0 0;text-decoration:currentColor;color:inherit}.seopress-inbox-title p{font-size:20px;color:var(--titleColor);margin:0}#seopress-admin-tabs .ui-tabs-nav{display:flex;padding-top:1rem;padding-bottom:0}#seopress-admin-tabs .nav-tab-wrapper a.nav-tab-active:focus{color:inherit}.seopress-intro{padding:20px}.seopress-option .seopress-table{background:#fff;border:1px solid var(--borderColorLight)}.seopress-option .seopress-table th{padding:15px 10px;vertical-align:middle}.wp-admin-ui_page_seopress-roles .seopress-option .seopress-table th{min-width:200px}.seopress-option .seopress-table .seopress-settings-section{background:#f1f1f1}.seopress-option .seopress-table .seopress-table-head .seopress-feature{border-bottom:1px solid var(--borderColorLight);font-weight:700;background:#f1f1f1}#seopress-content .feature-state,.seopress-option .feature-state{font-style:italic;font-size:11px;font-weight:400}@media only screen and (max-width:782px){#seopress-content .feature-state,.seopress-option .feature-state{display:none}}.seopress-option #tab_seopress_titles_archives h3,.seopress-option #tab_seopress_titles_single h3,.seopress-option #tab_seopress_titles_tax h3{margin:2em 0 1em 0;border-top:1px solid var(--borderColorLight);padding:1em 0 0 0}.seopress-option #tab_seopress_titles_archives h3:first-child,.seopress-option #tab_seopress_titles_single h3:first-child,.seopress-option #tab_seopress_titles_tax h3:first-child{margin:0 0 1em 0}.seopress-option #tab_seopress_titles_archives h3 div,.seopress-option #tab_seopress_titles_single h3 div,.seopress-option #tab_seopress_titles_tax h3 div{display:inline}#seopress-content .feature-state-on,#seopress-content .feature-state.feature-state-on,.seopress-option .feature-state-on,.seopress-option .feature-state.feature-state-on{display:inline-block}#seopress-content .feature-state-off,.seopress-option .feature-state-off{display:none}.seopress-option .postbox .inside li{list-style:square inside;padding-left:5px}#tab_seopress_page_speed .inside li{list-style:none;padding-left:0;word-break:break-word}.seopress-option .log{display:none;font-weight:700}.seopress-option input[type=text].seopress-admin-menu-input{min-width:inherit;width:100%}.seopress_page_seopress-import-export .postbox{width:calc(100% - 20px)}#seopress_cpt #seopress_titles_title_meta{margin-bottom:.2rem}.seopress-option .section-tool{border:none;box-shadow:none;background:0 0;position:relative}.seopress-option .section-tool::after{content:"";background:#dedede;height:1px;width:100%;display:block}.seopress-option .section-tool:last-child{margin-bottom:0}.seopress-option .section-tool:last-child::after{content:none}.seopress-option .section-tool .inside{padding-left:0;padding-right:0}.seopress-option .sp-section-header{width:100%;display:flex;position:relative;align-items:center}.seopress-option .sp-section-header h2{font-size:1.5em}.seopress-option .sp-section-header>.dashicons{color:var(--primaryColor);padding:10px;border-radius:6px;margin-right:10px;background:#c4f0ff}.seopress-option .sp-section-header .wrap-toggle-checkboxes{display:flex}.seopress-notice{margin:5px 0 35px 15px;position:relative;top:75px;left:25px;background:rgb(0 124 186 / 10%);border-left:4px solid var(--primaryColor);padding:8px 12px;width:calc(100% - 108px);z-index:10}#seopress-ca-tabs .seopress-notice,#seopress-tabs .seopress-notice,#seopress_insights_dashboard_rankings_widget .seopress-notice,#seopress_pro_cpt .seopress-notice,.seopress-setup .seopress-notice{top:inherit;left:inherit;margin:15px 0 30px 0;width:auto}.seopress-hidden{display:none}.seopress-notice pre{background:#fff}.seopress-notice.is-success{border-left-color:var(--colorSuccess);background:#eff9f1}.seopress-notice.is-warning{border-left-color:#f0b849;background:#fef8ee}.seopress-notice.is-error{border-left-color:#cc1818;background:rgb(244 162 162 / 30%)}#seopress-tabs.wrap{margin:30px 0 0 0}#seopress-notifications-center .seopress-alert ul,#seopress-tabs.wrap ul{list-style:square inside;padding-left:5px;display:inline-block;max-width:35rem;width:100%}.post-type-seopress_404 .seopress-BlankState-message::before,.post-type-seopress_schemas .seopress-BlankState-message::before{font-family:Dashicons;speak:none;font-weight:400;font-variant:normal;text-transform:none;line-height:1;margin:0;text-indent:0;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;content:"\f103"}.post-type-seopress_schemas .seopress-BlankState-message::before{content:"\f495"}.seopress-BlankState{text-align:center;padding:5em 0 0}.seopress-BlankState .seopress-BlankState-message{color:#aaa;margin:0 auto 1.5em;line-height:1.5em;font-size:1.2em;max-width:500px}.seopress-BlankState .seopress-BlankState-message::before{color:#ddd;text-shadow:0 -1px 1px rgba(0,0,0,.2),0 1px 0 rgba(255,255,255,.8);font-size:8em;display:block;position:relative!important;top:auto;left:auto;line-height:1em;margin:0 0 .1875em}.seopress-BlankState .seopress-BlankState-cta{font-size:1.2em;padding:.75em 1.5em;margin:0 .25em}.seopress-BlankState{max-width:764px;text-align:center;margin:auto}.seopress-BlankState .seopress-BlankState-message{color:var(--titleColor);font-size:1.5em;margin:0 auto 1em}.seopress-BlankState .seopress-BlankState-message::before{font-size:120px}.seopress-BlankState .seopress-BlankState-buttons{margin-bottom:4em}#seopress_content_analysis .up,#seopress_content_analysis .up .dashicons{color:var(--colorSuccess)}#seopress_content_analysis .down,#seopress_content_analysis .down .dashicons{color:var(--colorAlert)}#seopress_content_analysis .up .dashicons{transform:rotateZ(45deg)}#seopress_content_analysis .stable .dashicons{transform:rotateZ(90deg)}#seopress_content_analysis .down .dashicons{transform:rotateZ(135deg)}#seopress_content_analysis .wrap-insights-post{clear:both;border-top:1px solid var(--borderColorCard);display:flex;align-items:center}#seopress_content_analysis .wrap-insights-post .widget-insights-title{margin:0 1rem}#seopress_content_analysis .wrap-insights-post span{font-weight:700;margin:0 .2rem 0 0}.wrap-user-roles{display:grid;grid-template-columns:repeat(4,1fr)}@media only screen and (max-width:782px){.wrap-user-roles{display:block}}#notice-insights-alert.is-active,#seopress-news-panel.is-active,#seopress-notifications-center.is-active{display:block!important}#seopress-notifications-center .seopress-alert{padding:16px 25px;position:relative;transition:all 150ms ease;justify-content:space-between;margin-bottom:20px}#seopress-notifications-center .seopress-alert:last-child{margin-bottom:0;border-bottom:none}#seopress-notifications-center .dashicons{display:flex;align-self:normal;width:30px;height:30px;color:var(--colorIcon);font-size:30px;margin:0 0 10px 0}#seopress-admin-tabs #tab_seopress_notifications.seopress-tab{background:0 0;padding:0;border-radius:0;width:100%}.seopress-notice #message{margin:5px 10px 2px 0}#seopress-notice a{position:relative;text-decoration:none;margin:0 0 0 .3rem}#seopress-notice a .tooltip{white-space:pre;z-index:200;padding:2px 5px;font-weight:500;font-size:12px;color:#aab7c4;background:#fff;box-shadow:0 1px 2px 0 rgba(49,49,93,.1),0 0 1px 0 rgba(0,0,0,.1);border-radius:2px;position:absolute;opacity:0;top:30px;transition:opacity .2s ease;visibility:hidden;line-height:20px;left:-100%;overflow:hidden}#seopress-notice a:hover .tooltip{opacity:1;visibility:visible}.seopress-page-list{margin:1.5rem auto}.post-type-seopress_404 .seopress-notice,.post-type-seopress_bot .seopress-notice,.post-type-seopress_schemas .seopress-notice{left:0;top:40px;margin:0 0 50px;width:calc(100% - 48px)}.seopress-search{position:relative;padding:20px}.seopress-search::before{content:"\f179";font-family:Dashicons;position:absolute;top:35px;left:30px;font-size:20px}.seopress-search input{padding-left:40px}.seopress-item-toggle-options{position:relative;cursor:pointer;padding:5px 10px;border:1px solid var(--borderColor);border-radius:3px;transform:rotate(90deg);display:inline-block}.seopress-item-toggle-options::before{content:"\f11c";font-family:Dashicons;font-size:18px;vertical-align:middle}.seopress-card{background:#fff;border:1px solid var(--borderColorCard);border-radius:3px;position:relative}.seopress-option .seopress-card-actions a+button{margin-left:.5em}.seopress-card-title{border-bottom:1px solid var(--borderColorCard);padding:18px 24px;display:flex;justify-content:space-between;align-items:center}.seopress-dashboard-columns .seopress-dashboard-column:last-child .seopress-card-title:hover{cursor:move}.seopress-card-title h2{margin:0}.seopress-cart-list{border-bottom:1px solid var(--borderColorCard);padding:0 0 0 24px;display:flex;align-items:center;text-decoration:none;color:var(--primaryColor);font-weight:700;line-height:20px}.seopress-cart-list *{text-decoration:none}.seopress-cart-list a{display:block;width:100%;padding:18px 24px 18px 0}.seopress-cart-list:last-child{border-bottom:none}.seopress-cart-list:active,.seopress-cart-list:focus,.seopress-cart-list:hover{background:var(--backgroundSecondaryHover)}body .seopress-cart-list h3{font-size:var(--fontSize);color:var(--primaryColor);font-weight:700;margin:0}.seopress-cart-list p{color:var(--titleColor);font-weight:400;margin:0;font-size:12px;line-height:20px}.seopress-card-footer{padding:10px 20px;border-top:1px solid var(--borderColorLight40)}.seopress-card-popover{display:none;background:#fff;border:1px solid var(--borderColor);padding:20px;position:absolute;top:55px;overflow-y:auto;right:28px;z-index:20}.seopress-card-popover.is-open{display:block}#seopress-tabs .seopress-tag-dropdown,#seopress_cpt .seopress-tag-dropdown,#seopress_cpt .tag-title,#seopress_pro_cpt .tag-title,.seopress-button,.seopress-option .tag-title{cursor:pointer;font-weight:500;border-radius:4px;transition:all .3s linear}#seopress_cpt .wrap-tags,#seopress_pro_cpt .wrap-tags,.seopress-option .wrap-tags{position:relative;display:inline-flex;width:100%;margin:10px 0}.seopress-option .wrap-tags{flex-wrap:wrap}.seopress-option .wrap-tags button{margin-bottom:10px}@media only screen and (max-width:782px){#seopress_cpt .wrap-tags,#seopress_pro_cpt .wrap-tags,.seopress-option .wrap-tags{flex-wrap:wrap}}#seopress-tabs .sp-wrap-tag-variables-list,#seopress_cpt .sp-wrap-tag-variables-list,#seopress_pro_cpt .sp-wrap-tag-variables-list{position:relative;float:left;display:none}#seopress-tabs.wrap .sp-tag-variables-list,#seopress_cpt .sp-tag-variables-list,#seopress_pro_cpt .sp-tag-variables-list{position:absolute;left:-48px;width:300px;z-index:100;top:20px;color:var(--titleColor);height:300px;z-index:100;overflow:auto;background:#fff;border:1px solid var(--borderColorLight);box-shadow:0 2px 6px rgb(0 0 0 / 5%);border-radius:2px;list-style:none;padding:0}#seopress-tabs .sp-wrap-tag-variables-list.open,#seopress_cpt .sp-wrap-tag-variables-list.open,#seopress_pro_cpt .sp-wrap-tag-variables-list.open{display:block}#seopress-tabs .seopress-tag-single-all.tag-description .dashicons,#seopress-tabs .seopress-tag-single-all.tag-title .dashicons,#seopress_cpt .seopress-tag-single-all.seopress-tag-dropdown .dashicons,#seopress_cpt .seopress-tag-single-all.tag-title .dashicons,#seopress_pro_cpt .seopress-tag-single-all.tag-title .dashicons{margin:0;transition:all 150ms linear}#seopress-tabs .seopress-tag-single-all.open .dashicons,#seopress_cpt .seopress-tag-single-all.open .dashicons,#seopress_pro_cpt .seopress-tag-single-all.open .dashicons{transform:rotateX(180deg)}#seopress-tabs.wrap .sp-tag-variables-list li,#seopress_cpt .sp-tag-variables-list li,#seopress_pro_cpt .sp-tag-variables-list li{padding:8px 12px;cursor:pointer;margin:0;border-bottom:1px solid var(--borderColorLight40)}#seopress-tabs .sp-tag-variables-list li span,#seopress_cpt .sp-tag-variables-list li span,#seopress_pro_cpt .sp-tag-variables-list li span{display:block;font-weight:700;font-size:12px;margin-bottom:2px}#seopress-tabs.wrap .sp-tag-variables-list li:hover,#seopress_cpt .sp-tag-variables-list li:hover,#seopress_pro_cpt .sp-tag-variables-list li:hover{background:var(--backgroundPrimaryHover);color:#fff;border-bottom-color:#fff}#seopress-tabs.wrap .sp-tag-variables-list li::after,#seopress_cpt .sp-tag-variables-list li::after,#seopress_pro_cpt .sp-tag-variables-list li::after{content:attr(data-value);display:inline-block;background:#e9ecef;padding:1px 5px;color:#333;font-family:Menlo,Monaco,Andale Mono,Courier New,monospace;border-radius:3px;font-size:11px}#seopress-tabs.wrap .seopress-tag-dropdown .dashicons,#seopress_cpt .seopress-tag-dropdown .dashicons,#seopress_cpt .tag-title .dashicons,#seopress_pro_cpt .tag-title .dashicons,.seopress-option .tag-title .dashicons{padding:0;height:16px;width:16px;font-size:16px;margin-right:5px;color:var(--primaryColor);vertical-align:middle}#seopress-tabs.wrap .seopress-tag-dropdown:hover .dashicons,#seopress_cpt .seopress-tag-dropdown:hover .dashicons,#seopress_cpt .tag-title:hover .dashicons,#seopress_pro_cpt .tag-title:hover .dashicons,.seopress-option .tag-title:hover .dashicons{color:#fff}#seopress-tabs.wrap .seopress-tag-dropdown .dashicons{margin:0}.seopress-overlay-tag-dropdown{position:absolute;display:none;top:0;left:0;width:100%;height:100%;z-index:50}.seopress-overlay-tag-dropdown.active{display:block}#seopress-tabs .seopress-tag-dropdown,#seopress_cpt .seopress-tag-dropdown,#seopress_cpt .tag-title,#seopress_pro_cpt .tag-title,.seopress-option .tag-title{padding:5px 12px;font-size:10px;user-select:none;margin:0 5px 0 0;display:inline-flex;text-transform:uppercase;align-items:center;color:var(--primaryColor)}#seopress-tabs .seopress-tag-dropdown:focus,#seopress-tabs .seopress-tag-dropdown:hover,#seopress_cpt .seopress-tag-dropdown:focus,#seopress_cpt .seopress-tag-dropdown:hover,#seopress_cpt .tag-title:focus,#seopress_cpt .tag-title:hover,#seopress_pro_cpt .tag-title:focus,#seopress_pro_cpt .tag-title:hover,.seopress-option .tag-title:focus,.seopress-option .tag-title:hover{box-shadow:0 0 var(--wp-admin-border-width-focus) var(--backgroundPrimary);background:var(--backgroundPrimaryHover);color:#fff}@media only screen and (max-width:782px){#seopress-tabs .seopress-tag-dropdown,#seopress_cpt .seopress-tag-dropdown,#seopress_cpt .tag-title,#seopress_pro_cpt .tag-title,.seopress-option .tag-title{margin-bottom:10px}}#seopress-content .seopress-useful-tools .widget-reverse li{padding:10px;margin:0;border-bottom:1px solid var(--borderColorLight)}#seopress-content .seopress-reverse label,#seopress-content .seopress-useful-tools .widget-whois ul li span{font-weight:700}#seopress-content #seopress-reverse-url{width:100%;margin:10px 0}#seopress-content .widget-reverse p{margin:0}.seopress-styles #screen-meta{position:relative;top:60px}.seopress-styles #screen-meta-links .show-settings{box-shadow:none}.seopress-styles #screen-meta-links .screen-meta-toggle{position:fixed;top:32px;z-index:2000;right:40px}@media only screen and (max-width:782px){.seopress-styles #screen-meta-links .screen-meta-toggle{position:relative;top:60px}}#seopress-content input.toggle,#seopress_cpt input.toggle,.seopress-option input.toggle{max-height:0;max-width:0;opacity:0;position:relative}.seopress-feature input.toggle{display:block}#seopress_cpt input.toggle,.seopress_wrap_single_cpt input.toggle,.seopress_wrap_tax input.toggle{margin:0;border:none;min-width:0}#seopress-content input.toggle+label,#seopress_cpt #tabs-1 input.toggle+label,.seopress-option input.toggle+label{display:inline-block;position:relative;box-shadow:inset 0 0 0 1px #d5d5d5;text-indent:-5000px;height:20px;width:40px;border-radius:15px;margin:0 10px 0 0}#seopress-content input.toggle+label{margin:0;left:-20px}#seopress_cpt #tabs-1 input.toggle+label{margin:0}.wrap-toggle-checkboxes input.toggle+label{float:left;margin-right:10px}#seopress-content input.toggle+label:before,#seopress_cpt input.toggle+label:before,.seopress-option input.toggle+label:before{content:"";position:absolute;display:block;height:20px;width:30px;top:0;left:0;border-radius:15px;background:rgba(19,191,17,0);transition:.25s ease-in-out}#seopress-content input.toggle+label:after,#seopress_cpt input.toggle+label:after,.seopress-option input.toggle+label:after{content:"";position:absolute;display:block;height:20px;width:20px;top:0;left:0;border-radius:15px;background:#fff;box-shadow:inset 0 0 0 1px rgba(0,0,0,.2),0 2px 4px rgba(0,0,0,.2);transition:.25s ease-in-out}#seopress_cpt input.toggle+label,#seopress_cpt input.toggle+label:before,.seopress_wrap_single_cpt input.toggle+label,.seopress_wrap_single_cpt input.toggle+label:before,.seopress_wrap_tax input.toggle+label,.seopress_wrap_tax input.toggle+label:before{width:40px;height:20px}#seopress_cpt input.toggle+label:after,.seopress_wrap_single_cpt input.toggle+label:after,.seopress_wrap_tax input.toggle+label:after{width:20px;height:20px}#seopress-content input.toggle[data-toggle="1"]+label:before,#seopress_cpt input.toggle[data-toggle="1"]+label:before,.seopress-option input.toggle[data-toggle="1"]+label:before,.seopress_wrap_single_cpt input.toggle[data-toggle="1"]+label:before,.seopress_wrap_tax input.toggle[data-toggle="1"]+label:before{width:40px;background:var(--backgroundPrimary)}#seopress-content input.toggle[data-toggle="1"]+label:after,#seopress_cpt input.toggle[data-toggle="1"]+label:after,.seopress-option input.toggle[data-toggle="1"]+label:after{left:20px;box-shadow:inset 0 0 0 1px var(--backgroundPrimary),0 2px 4px rgba(0,0,0,.2)}#seopress_cpt input.toggle[data-toggle="1"]+label:after,.seopress_wrap_single_cpt input.toggle[data-toggle="1"]+label:after,.seopress_wrap_tax input.toggle[data-toggle="1"]+label:after{box-shadow:inset 0 0 0 1px var(--backgroundPrimary),0 2px 4px rgba(0,0,0,.2)}#seopress-content .seopress-page-list{position:relative;display:block;max-width:64rem}@media only screen and (max-width:782px){#seopress-content .seopress-page-list{grid-template-columns:repeat(1,1fr)}}.seopress-setup .wrap,.seopress-styles .wrap{margin:0;display:flex;position:relative}.toplevel_page_seopress-option.seopress-styles .wrap{display:inherit;position:inherit;margin:inherit}@media only screen and (max-width:782px){.seopress-setup .wrap,.seopress-styles .wrap{display:inherit;position:inherit;margin:inherit}}.seopress-option .wrap div.nav-tab-wrapper{margin:0;padding:0;line-height:inherit;width:15%;z-index:10;font-weight:400;display:block;border-bottom:none}@media only screen and (max-width:782px){.seopress-option .wrap div.nav-tab-wrapper{width:100%;margin:0 0 20px 0;padding:0}}#seopress-admin-tabs.wrap div.nav-tab-wrapper{background:#fff;margin:0 auto;max-width:64rem;width:100%;border-bottom:1px solid var(--borderColorCard);padding:0;line-height:inherit;position:sticky;z-index:10;top:92px;border-radius:4px 4px 0 0;font-weight:400;overflow:hidden;display:flex;align-items:center;justify-content:space-between}@media only screen and (max-width:600px){#seopress-admin-tabs.wrap div.nav-tab-wrapper{top:0;display:block}}@media only screen and (max-width:1024px){#seopress-admin-tabs.wrap div.nav-tab-wrapper{display:block}}.seopress-option .nav-tab{border:0;background:0 0;opacity:.5;padding:6px 30px 6px 10px;transition:opacity .3s linear;color:var(--titleColor);margin:0;float:none;display:inline-block;width:100%;text-align:left;font-weight:400;white-space:normal;line-height:1.71428571;font-size:14px;text-decoration:none}#seopress-admin-tabs .nav-tab{background:0 0;opacity:.5;padding:14px 20px;transition:opacity .3s linear;margin:0;float:none;display:inline-block;font-weight:400}#seopress-admin-tabs .nav-tab{width:100%}#seopress-admin-tabs .nav-tab-active,#seopress-admin-tabs .nav-tab-active:focus,#seopress-admin-tabs .nav-tab-active:focus:active,#seopress-admin-tabs .nav-tab-active:hover,#seopress-admin-tabs .nav-tab:focus,.nav-tab-active:focus,.seopress-option .nav-tab-active,.seopress-option .nav-tab-active:focus:active,.seopress-option .nav-tab-active:hover,.seopress-option .nav-tab:focus{opacity:1;outline:0;font-weight:600;position:relative;border-left:3px solid var(--backgroundPrimary)}#seopress-admin-tabs .nav-tab-active,#seopress-admin-tabs .nav-tab-active:focus,#seopress-admin-tabs .nav-tab-active:focus:active,#seopress-admin-tabs .nav-tab-active:hover,#seopress-admin-tabs .nav-tab:focus{border-bottom:4px solid var(--backgroundPrimary);border-left:none}#seopress-admin-tabs .nav-tab:hover,.seopress-option .nav-tab:hover{opacity:1}#seopress-admin-tabs .nav-tab:focus,.seopress-option .nav-tab:focus{outline:0;box-shadow:none}@keyframes sp-fade-in-out{0%{opacity:0;bottom:0;visibility:hidden}25%{opacity:1;bottom:40px;visibility:visible}75%{opacity:1;visibility:visible}100%{opacity:0;visibility:hidden}}.sp-components-snackbar-list{position:fixed;right:0;bottom:40px;padding-left:16px;padding-right:16px;animation-name:sp-fade-in-out;animation-duration:5s;animation-iteration-count:1;animation-fill-mode:forwards;visibility:hidden;z-index:1}.sp-components-snackbar__content{display:flex;align-items:center;justify-content:space-between;line-height:1.4}.sp-components-snackbar{font-family:var(--fontFamily);font-size:var(--fontSize);background-color:#32373c;border-radius:4px;box-shadow:0 2px 4px rgba(0,0,0,.3);color:#fff;padding:16px 24px;cursor:pointer}.sp-components-snackbar .dashicons{color:#fff}
assets/js/build/primary-category-select.asset.php ADDED
@@ -0,0 +1 @@
 
1
+ <?php return array('dependencies' => array('wp-components', 'wp-data', 'wp-element', 'wp-i18n'), 'version' => 'cf488bae6c40a7dcac86');
assets/js/build/primary-category-select.js ADDED
@@ -0,0 +1 @@
 
1
+ !function(){"use strict";var e=window.wp.i18n,t=window.wp.element,r=window.wp.data,n=window.wp.components;function o(e){return o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},o(e)}function a(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function s(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function c(e,t){return c=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},c(e,t)}function l(e,t){if(t&&("object"===o(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return u(e)}function u(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function p(e){return p=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},p(e)}var f=function(t){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&c(e,t)}(d,t);var r,o,f,m,y=(f=d,m=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}}(),function(){var e,t=p(f);if(m){var r=p(this).constructor;e=Reflect.construct(t,arguments,r)}else e=t.apply(this,arguments);return l(this,e)});function d(){var e;return i(this,d),(e=y.apply(this,arguments)).onChange=e.onChange.bind(u(e)),e.updateMetabox=e.updateMetabox.bind(u(e)),e.state={primaryTermId:"none",selectableTerms:[]},e.metaboxField=document.querySelector("#seopress_robots_primary_cat"),e}return r=d,(o=[{key:"componentDidMount",value:function(){var e=this,t=this.props.primaryTermId||"none";this.setState({primaryTermId:t}),this.metaboxField.addEventListener("change",(function(t){e.setState({primaryTermId:t.target.value})}))}},{key:"componentDidUpdate",value:function(e,t){var r=this;if(e.allTerms!==this.props.allTerms||e.selectedTermIds!==this.props.selectedTermIds){var n=this.props.allTerms.filter((function(e){return r.props.selectedTermIds.includes(e.id)})),o=this.props.selectedTermIds.length&&this.props.selectedTermIds.includes(parseInt(this.state.primaryTermId))?this.state.primaryTermId:"none";this.setState({selectableTerms:n,primaryTermId:o})}t.primaryTermId===this.state.primaryTermId&&t.selectableTerms===this.state.selectableTerms||this.updateMetabox(this.state.primaryTermId)}},{key:"updateMetabox",value:function(e){var t=this.getOptions().map((function(t){var r=t.value==e?'selected="selected"':"";return'<option value="'.concat(t.value,'" ').concat(r,">").concat(t.label,"</option>")}));this.metaboxField.value=e,this.metaboxField.innerHTML=t.join("")}},{key:"getOptions",value:function(){return[{value:"none",label:(0,e.__)("None (will disable this feature)","wp-seopress")}].concat(function(e){if(Array.isArray(e))return a(e)}(t=this.state.selectableTerms.map((function(e){return{value:e.id,label:e.name}})))||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(t)||function(e,t){if(e){if("string"==typeof e)return a(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?a(e,t):void 0}}(t)||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.")}());var t}},{key:"onChange",value:function(e){this.setState({primaryTermId:e})}},{key:"render",value:function(){return!!this.state.selectableTerms.length&&React.createElement(n.SelectControl,{label:(0,e.__)("Select a primary category","wp-seopress"),value:this.state.primaryTermId,options:this.getOptions(),onChange:this.onChange})}}])&&s(r.prototype,o),Object.defineProperty(r,"prototype",{writable:!1}),d}(t.Component),m=(0,r.withSelect)((function(e,t){var r=t.slug,n=e("core").getTaxonomy(r),o=n?e("core/editor").getEditedPostAttribute(n.rest_base):[];return{taxonomy:n,allTerms:e("core").getEntityRecords("taxonomy",r,{per_page:-1}),primaryTermId:e("core/editor").getEditedPostAttribute("meta")._seopress_robots_primary_cat||"none",selectedTermIds:o}}))(f);wp.hooks.addFilter("editor.PostTaxonomyType","wpseopress",(function(e){return function(t){return React.createElement(React.Fragment,null,React.createElement(e,t),t.slug&&"category"==t.slug&&React.createElement(n.PanelRow,{className:"seopress-primary-term-picker"},React.createElement(m,t)))}}))}();
assets/js/seopress-dashboard.js CHANGED
@@ -190,8 +190,8 @@ jQuery(document).ready(function ($) {
190
  $('#' + seopress_admin_tab_session_storage.split('#tab=')).addClass("active");
191
  } else {
192
  //Default TAB
193
- $('#tab_seopress_analytics-tab').addClass("nav-tab-active");
194
- $('#tab_seopress_analytics').addClass("active");
195
  }
196
  };
197
  $("#seopress-admin-tabs").find("a.nav-tab").click(function (e) {
190
  $('#' + seopress_admin_tab_session_storage.split('#tab=')).addClass("active");
191
  } else {
192
  //Default TAB
193
+ $('#seopress-admin-tabs a.nav-tab').first().addClass("nav-tab-active");
194
+ $('#seopress-admin-tabs .wrap-seopress-tab-content > div').first().addClass("active");
195
  }
196
  };
197
  $("#seopress-admin-tabs").find("a.nav-tab").click(function (e) {
assets/js/seopress-dashboard.min.js CHANGED
@@ -1 +1 @@
1
- jQuery(document).ready(function(s){s.trim(s("#seopress-notifications-center").html())||s("#seopress-notifications-center").remove();const e=["notice-get-started","notice-usm","notice-wizard","notice-insights-wizard","notice-seo-consultant","notice-tagdiv","notice-divide-comments","notice-review","notice-trailingslash","notice-posts-number","notice-rss-use-excerpt","notice-ga-ids","notice-search-console","notice-google-business","notice-ssl","notice-title-tag","notice-enfold","notice-themes","notice-page-builders","notice-go-pro","notice-noindex","notice-tasks","notice-insights","notice-robots-txt","notice-robots-txt-valid"];e.forEach(function(e){s("#"+e).on("click",function(){s("#"+e).attr("data-notice","1"==s("#"+e).attr("data-notice")?"0":"1"),s.ajax({method:"POST",url:seopressAjaxHideNotices.seopress_hide_notices,data:{action:"seopress_hide_notices",notice:e,notice_value:s("#"+e).attr("data-notice"),_ajax_nonce:seopressAjaxHideNotices.seopress_nonce},success:function(t){s("#seopress-notice-save").css("display","block"),s("#seopress-notice-save .html").html("Notice successfully removed"),s("#"+e+"-alert").fadeOut(),s("#seopress-notice-save").delay(3500).fadeOut()}})})});const t=["titles","xml-sitemap","social","google-analytics","instant-indexing","advanced","local-business","woocommerce","edd","dublin-core","rich-snippets","breadcrumbs","inspect-url","robots","news","404","bot","rewrite","white-label"];t.forEach(function(e){s("#toggle-"+e).on("click",function(){s("#toggle-"+e).attr("data-toggle","1"==s("#toggle-"+e).attr("data-toggle")?"0":"1"),s(this).siblings("#titles-state-default").toggleClass("feature-state-off"),s(this).siblings("#titles-state").toggleClass("feature-state-off"),s.ajax({method:"POST",url:seopressAjaxToggleFeatures.seopress_toggle_features,data:{action:"seopress_toggle_features",feature:"toggle-"+e,feature_value:s("#toggle-"+e).attr("data-toggle"),_ajax_nonce:seopressAjaxToggleFeatures.seopress_nonce},success:function(){window.history.pushState("","",window.location.href+"&settings-updated=true"),s("#seopress-notice-save").show(),s("#seopress-notice-save").delay(3500).fadeOut(),window.history.pushState("","",window.location.href)}})})}),s("#seopress-activity-panel button").on("click",function(){s(this).toggleClass("is-active"),s("#seopress-activity-panel-"+s(this).data("panel")).toggleClass("is-open")}),s("#seopress-content").on("click",function(){s("#seopress-activity-panel").find(".is-open").toggleClass("is-open"),s("#seopress-activity-panel").find(".is-active").toggleClass("is-active")}),s(".seopress-item-toggle-options").on("click",function(){s(this).next(".seopress-card-popover").toggleClass("is-open")}),s("#seopress-news-items").on("click",function(){s.ajax({method:"POST",url:seopressAjaxNews.seopress_news,data:{action:"seopress_news",news_max_items:s("#news_max_items").val(),_ajax_nonce:seopressAjaxNews.seopress_nonce},success:function(e){s("#seopress-news-panel .seopress-card-content").load(" #seopress-news-panel .seopress-card-content"),s("#seopress-news-panel .seopress-card-popover").toggleClass("is-open")}})}),s("#seopress_news").on("click",function(){s("#seopress-news-panel").toggleClass("is-active"),s("#seopress_news").attr("data-toggle","1"==s("#seopress_news").attr("data-toggle")?"0":"1"),s.ajax({method:"POST",url:seopressAjaxDisplay.seopress_display,data:{action:"seopress_display",news_center:s("#seopress_news").attr("data-toggle"),_ajax_nonce:seopressAjaxDisplay.seopress_nonce}})}),s("#seopress_tools").on("click",function(){s("#notice-insights-alert").toggleClass("is-active"),s("#seopress_tools").attr("data-toggle","1"==s("#seopress_tools").attr("data-toggle")?"0":"1"),s.ajax({method:"POST",url:seopressAjaxDisplay.seopress_display,data:{action:"seopress_display",tools_center:s("#seopress_tools").attr("data-toggle"),_ajax_nonce:seopressAjaxDisplay.seopress_nonce}})}),s("#notifications_center").on("click",function(){s("#seopress-notifications-center").toggleClass("is-active"),s("#notifications_center").attr("data-toggle","1"==s("#notifications_center").attr("data-toggle")?"0":"1"),s.ajax({method:"POST",url:seopressAjaxDisplay.seopress_display,data:{action:"seopress_display",notifications_center:s("#notifications_center").attr("data-toggle"),_ajax_nonce:seopressAjaxDisplay.seopress_nonce}})})}),jQuery(document).ready(function(s){var e=window.location.hash,t=e.split("$");if("undefined"!=typeof sessionStorage){var a=sessionStorage.getItem("seopress_admin_tab");"1"==t[1]?(s("#tab_seopress_analytics-tab").addClass("nav-tab-active"),s("#tab_seopress_analytics").addClass("active")):"2"==t[1]?(s("#tab_seopress_seo_tools-tab").addClass("nav-tab-active"),s("#tab_seopress_seo_tools").addClass("active")):"3"==t[1]?(s("#tab_seopress_ps-tab").addClass("nav-tab-active"),s("#tab_seopress_ps_tools").addClass("active")):a?(s("#seopress-admin-tabs").find(".nav-tab.nav-tab-active").removeClass("nav-tab-active"),s("#seopress-admin-tabs").find(".seopress-tab.active").removeClass("active"),s("#"+a.split("#tab=")+"-tab").addClass("nav-tab-active"),s("#"+a.split("#tab=")).addClass("active")):(s("#tab_seopress_analytics-tab").addClass("nav-tab-active"),s("#tab_seopress_analytics").addClass("active"))}s("#seopress-admin-tabs").find("a.nav-tab").click(function(e){e.preventDefault();var a=s(this).attr("href").split("#tab=")[1];s("#seopress-admin-tabs").find(".nav-tab.nav-tab-active").removeClass("nav-tab-active"),s("#"+a+"-tab").addClass("nav-tab-active"),1==t[1]?sessionStorage.setItem("seopress_admin_tab","tab_seopress_analytics"):2==t[1]?sessionStorage.setItem("seopress_admin_tab","tab_seopress_seo_tools"):3==t[1]?sessionStorage.setItem("seopress_admin_tab","tab_seopress_ps_tools"):sessionStorage.setItem("seopress_admin_tab",a),s("#seopress-admin-tabs").find(".seopress-tab.active").removeClass("active"),s("#"+a).addClass("active")}),s("#seopress-reverse-submit").on("click",function(){s.ajax({method:"GET",url:seopressAjaxReverse.seopress_request_reverse,data:{action:"seopress_request_reverse",_ajax_nonce:seopressAjaxReverse.seopress_nonce},success:function(s){window.location.reload(!0)}})}),s("#seopress-reverse-submit").on("click",function(){s(this).attr("disabled","disabled"),s("#spinner-reverse.spinner").css("visibility","visible"),s("#spinner-reverse.spinner").css("float","none")}),s(".seopress-dashboard-columns .seopress-dashboard-column:last-child").sortable({items:".seopress-card",placeholder:"sp-dashboard-card-highlight",cancel:".seopress-intro, .seopress-card-popover",handle:".seopress-card-title",opacity:.9,forcePlaceholderSize:!0,update:function(e){const t=jQuery(e.target);var a=t.sortable("toArray",{attribute:"id"});s.ajax({method:"POST",url:seopressAjaxDndFeatures.seopress_dnd_features,data:{action:"seopress_dnd_features",order:a,_ajax_nonce:seopressAjaxDndFeatures.seopress_nonce}})}})});
1
+ jQuery(document).ready(function(s){s.trim(s("#seopress-notifications-center").html())||s("#seopress-notifications-center").remove();const e=["notice-get-started","notice-usm","notice-wizard","notice-insights-wizard","notice-seo-consultant","notice-tagdiv","notice-divide-comments","notice-review","notice-trailingslash","notice-posts-number","notice-rss-use-excerpt","notice-ga-ids","notice-search-console","notice-google-business","notice-ssl","notice-title-tag","notice-enfold","notice-themes","notice-page-builders","notice-go-pro","notice-noindex","notice-tasks","notice-insights","notice-robots-txt","notice-robots-txt-valid"];e.forEach(function(e){s("#"+e).on("click",function(){s("#"+e).attr("data-notice","1"==s("#"+e).attr("data-notice")?"0":"1"),s.ajax({method:"POST",url:seopressAjaxHideNotices.seopress_hide_notices,data:{action:"seopress_hide_notices",notice:e,notice_value:s("#"+e).attr("data-notice"),_ajax_nonce:seopressAjaxHideNotices.seopress_nonce},success:function(t){s("#seopress-notice-save").css("display","block"),s("#seopress-notice-save .html").html("Notice successfully removed"),s("#"+e+"-alert").fadeOut(),s("#seopress-notice-save").delay(3500).fadeOut()}})})});const t=["titles","xml-sitemap","social","google-analytics","instant-indexing","advanced","local-business","woocommerce","edd","dublin-core","rich-snippets","breadcrumbs","inspect-url","robots","news","404","bot","rewrite","white-label"];t.forEach(function(e){s("#toggle-"+e).on("click",function(){s("#toggle-"+e).attr("data-toggle","1"==s("#toggle-"+e).attr("data-toggle")?"0":"1"),s(this).siblings("#titles-state-default").toggleClass("feature-state-off"),s(this).siblings("#titles-state").toggleClass("feature-state-off"),s.ajax({method:"POST",url:seopressAjaxToggleFeatures.seopress_toggle_features,data:{action:"seopress_toggle_features",feature:"toggle-"+e,feature_value:s("#toggle-"+e).attr("data-toggle"),_ajax_nonce:seopressAjaxToggleFeatures.seopress_nonce},success:function(){window.history.pushState("","",window.location.href+"&settings-updated=true"),s("#seopress-notice-save").show(),s("#seopress-notice-save").delay(3500).fadeOut(),window.history.pushState("","",window.location.href)}})})}),s("#seopress-activity-panel button").on("click",function(){s(this).toggleClass("is-active"),s("#seopress-activity-panel-"+s(this).data("panel")).toggleClass("is-open")}),s("#seopress-content").on("click",function(){s("#seopress-activity-panel").find(".is-open").toggleClass("is-open"),s("#seopress-activity-panel").find(".is-active").toggleClass("is-active")}),s(".seopress-item-toggle-options").on("click",function(){s(this).next(".seopress-card-popover").toggleClass("is-open")}),s("#seopress-news-items").on("click",function(){s.ajax({method:"POST",url:seopressAjaxNews.seopress_news,data:{action:"seopress_news",news_max_items:s("#news_max_items").val(),_ajax_nonce:seopressAjaxNews.seopress_nonce},success:function(e){s("#seopress-news-panel .seopress-card-content").load(" #seopress-news-panel .seopress-card-content"),s("#seopress-news-panel .seopress-card-popover").toggleClass("is-open")}})}),s("#seopress_news").on("click",function(){s("#seopress-news-panel").toggleClass("is-active"),s("#seopress_news").attr("data-toggle","1"==s("#seopress_news").attr("data-toggle")?"0":"1"),s.ajax({method:"POST",url:seopressAjaxDisplay.seopress_display,data:{action:"seopress_display",news_center:s("#seopress_news").attr("data-toggle"),_ajax_nonce:seopressAjaxDisplay.seopress_nonce}})}),s("#seopress_tools").on("click",function(){s("#notice-insights-alert").toggleClass("is-active"),s("#seopress_tools").attr("data-toggle","1"==s("#seopress_tools").attr("data-toggle")?"0":"1"),s.ajax({method:"POST",url:seopressAjaxDisplay.seopress_display,data:{action:"seopress_display",tools_center:s("#seopress_tools").attr("data-toggle"),_ajax_nonce:seopressAjaxDisplay.seopress_nonce}})}),s("#notifications_center").on("click",function(){s("#seopress-notifications-center").toggleClass("is-active"),s("#notifications_center").attr("data-toggle","1"==s("#notifications_center").attr("data-toggle")?"0":"1"),s.ajax({method:"POST",url:seopressAjaxDisplay.seopress_display,data:{action:"seopress_display",notifications_center:s("#notifications_center").attr("data-toggle"),_ajax_nonce:seopressAjaxDisplay.seopress_nonce}})})}),jQuery(document).ready(function(s){var e=window.location.hash,t=e.split("$");if("undefined"!=typeof sessionStorage){var a=sessionStorage.getItem("seopress_admin_tab");"1"==t[1]?(s("#tab_seopress_analytics-tab").addClass("nav-tab-active"),s("#tab_seopress_analytics").addClass("active")):"2"==t[1]?(s("#tab_seopress_seo_tools-tab").addClass("nav-tab-active"),s("#tab_seopress_seo_tools").addClass("active")):"3"==t[1]?(s("#tab_seopress_ps-tab").addClass("nav-tab-active"),s("#tab_seopress_ps_tools").addClass("active")):a?(s("#seopress-admin-tabs").find(".nav-tab.nav-tab-active").removeClass("nav-tab-active"),s("#seopress-admin-tabs").find(".seopress-tab.active").removeClass("active"),s("#"+a.split("#tab=")+"-tab").addClass("nav-tab-active"),s("#"+a.split("#tab=")).addClass("active")):(s("#seopress-admin-tabs a.nav-tab").first().addClass("nav-tab-active"),s("#seopress-admin-tabs .wrap-seopress-tab-content > div").first().addClass("active"))}s("#seopress-admin-tabs").find("a.nav-tab").click(function(e){e.preventDefault();var a=s(this).attr("href").split("#tab=")[1];s("#seopress-admin-tabs").find(".nav-tab.nav-tab-active").removeClass("nav-tab-active"),s("#"+a+"-tab").addClass("nav-tab-active"),1==t[1]?sessionStorage.setItem("seopress_admin_tab","tab_seopress_analytics"):2==t[1]?sessionStorage.setItem("seopress_admin_tab","tab_seopress_seo_tools"):3==t[1]?sessionStorage.setItem("seopress_admin_tab","tab_seopress_ps_tools"):sessionStorage.setItem("seopress_admin_tab",a),s("#seopress-admin-tabs").find(".seopress-tab.active").removeClass("active"),s("#"+a).addClass("active")}),s("#seopress-reverse-submit").on("click",function(){s.ajax({method:"GET",url:seopressAjaxReverse.seopress_request_reverse,data:{action:"seopress_request_reverse",_ajax_nonce:seopressAjaxReverse.seopress_nonce},success:function(s){window.location.reload(!0)}})}),s("#seopress-reverse-submit").on("click",function(){s(this).attr("disabled","disabled"),s("#spinner-reverse.spinner").css("visibility","visible"),s("#spinner-reverse.spinner").css("float","none")}),s(".seopress-dashboard-columns .seopress-dashboard-column:last-child").sortable({items:".seopress-card",placeholder:"sp-dashboard-card-highlight",cancel:".seopress-intro, .seopress-card-popover",handle:".seopress-card-title",opacity:.9,forcePlaceholderSize:!0,update:function(e){const t=jQuery(e.target);var a=t.sortable("toArray",{attribute:"id"});s.ajax({method:"POST",url:seopressAjaxDndFeatures.seopress_dnd_features,data:{action:"seopress_dnd_features",order:a,_ajax_nonce:seopressAjaxDndFeatures.seopress_nonce}})}})});
assets/js/seopress-sitemap-video.js CHANGED
@@ -3,7 +3,7 @@ jQuery(document).ready(function ($) {
3
  function seopress_call_media_uploader() {
4
  var mediaUploader;
5
  var thumb;
6
- $('.seopress_video_thumbnail_upload').click(function (e) {
7
  e.preventDefault();
8
  $btn = $(this);
9
  // If the uploader object has already been created, reopen the dialog
@@ -14,12 +14,16 @@ jQuery(document).ready(function ($) {
14
  thumb = $(this).prev();
15
  // Extend the wp.media object
16
  mediaUploader = wp.media.frames.file_frame = wp.media({
17
- multiple: false
18
  });
19
 
20
  // When a file is selected, grab the URL and set it as the text field's value
21
- mediaUploader.on('select', function () {
22
- var attachment = mediaUploader.state().get('selection').first().toJSON();
 
 
 
 
23
  $btn.prev().val(attachment.url);
24
  });
25
  // Open the uploader dialog
@@ -28,7 +32,7 @@ jQuery(document).ready(function ($) {
28
  }
29
  seopress_call_media_uploader();
30
 
31
- var template = $('#wrap-videos .video:last').clone();
32
 
33
  //accordion
34
  var stop = false;
@@ -50,53 +54,98 @@ jQuery(document).ready(function ($) {
50
  seopress_call_video_accordion();
51
 
52
  //define counter
53
- var sectionsCount = $('#wrap-videos').attr('data-count');
54
 
55
  //add new section
56
- $('#add-video').click(function () {
57
-
58
  //increment
59
  sectionsCount++;
60
 
61
  //loop through each input
62
- var section = template.clone().find(':input').each(function () {
63
- //Stock input id
64
- var input_id = this.id;
65
-
66
- //Stock input name
67
- var input_name = this.name;
68
-
69
- //set id to store the updated section number
70
- var newId = this.id.replace(/^(\w+)\[.*?\]/, '$1[' + sectionsCount + ']');
71
-
72
- //Update input name
73
- $(this).attr('name', input_name.replace(/^(\w+)\[.*?\]/, '$1[' + sectionsCount + ']'));
74
-
75
- //Clear input value
76
- if (!$(this).hasClass('seopress_video_thumbnail_upload')) {
77
- $(this).attr('value', '');
78
- }
79
-
80
- //update for label
81
- if ($(this).is(':checkbox')) {
82
- $(this).parent().attr('for', input_id.replace(/^(\w+)\[.*?\]/, '$1[' + sectionsCount + ']'));
83
- $(this).parent().attr('id', input_name.replace(/^(\w+)\[.*?\]/, '$1[' + sectionsCount + ']'));
84
- } else if ($(this).hasClass('seopress_video_thumbnail_upload')) {
85
- //do nothing
86
- } else {
87
- $(this).prev().attr('for', input_id.replace(/^(\w+)\[.*?\]/, '$1[' + sectionsCount + ']'));
88
- $(this).prev().attr('id', input_name.replace(/^(\w+)\[.*?\]/, '$1[' + sectionsCount + ']'));
89
- }
90
-
91
- //update id
92
- this.id = newId;
93
-
94
- }).end()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
95
 
96
  //inject new section
97
- .appendTo('#wrap-videos');
98
  seopress_call_video_accordion();
99
- $("#wrap-videos .video").accordion('destroy');
100
  seopress_call_video_accordion();
101
  $("[id^=__wp-uploader-id-]").each(function () {
102
  $(this).remove();
@@ -106,10 +155,10 @@ jQuery(document).ready(function ($) {
106
  });
107
 
108
  //remove section
109
- $('#wrap-videos').on('click', '.remove-video', function () {
110
  //fade out section
111
  $(this).fadeOut(300, function () {
112
- $(this).parent().parent().parent().parent().remove();
113
  return false;
114
  });
115
  return false;
3
  function seopress_call_media_uploader() {
4
  var mediaUploader;
5
  var thumb;
6
+ $(".seopress_video_thumbnail_upload").click(function (e) {
7
  e.preventDefault();
8
  $btn = $(this);
9
  // If the uploader object has already been created, reopen the dialog
14
  thumb = $(this).prev();
15
  // Extend the wp.media object
16
  mediaUploader = wp.media.frames.file_frame = wp.media({
17
+ multiple: false,
18
  });
19
 
20
  // When a file is selected, grab the URL and set it as the text field's value
21
+ mediaUploader.on("select", function () {
22
+ var attachment = mediaUploader
23
+ .state()
24
+ .get("selection")
25
+ .first()
26
+ .toJSON();
27
  $btn.prev().val(attachment.url);
28
  });
29
  // Open the uploader dialog
32
  }
33
  seopress_call_media_uploader();
34
 
35
+ var template = $("#wrap-videos .video:last").clone();
36
 
37
  //accordion
38
  var stop = false;
54
  seopress_call_video_accordion();
55
 
56
  //define counter
57
+ var sectionsCount = $("#wrap-videos").attr("data-count");
58
 
59
  //add new section
60
+ $("#add-video").click(function () {
 
61
  //increment
62
  sectionsCount++;
63
 
64
  //loop through each input
65
+ var section = template
66
+ .clone()
67
+ .find(":input")
68
+ .each(function () {
69
+ //Stock input id
70
+ var input_id = this.id;
71
+
72
+ //Stock input name
73
+ var input_name = this.name;
74
+
75
+ //set id to store the updated section number
76
+ var newId = this.id.replace(
77
+ /^(\w+)\[.*?\]/,
78
+ "$1[" + sectionsCount + "]"
79
+ );
80
+
81
+ //Update input name
82
+ $(this).attr(
83
+ "name",
84
+ input_name.replace(
85
+ /^(\w+)\[.*?\]/,
86
+ "$1[" + sectionsCount + "]"
87
+ )
88
+ );
89
+
90
+ //Clear input value
91
+ if (!$(this).hasClass("seopress_video_thumbnail_upload")) {
92
+ $(this).attr("value", "");
93
+ }
94
+
95
+ //update for label
96
+ if ($(this).is(":checkbox")) {
97
+ $(this)
98
+ .parent()
99
+ .attr(
100
+ "for",
101
+ input_id.replace(
102
+ /^(\w+)\[.*?\]/,
103
+ "$1[" + sectionsCount + "]"
104
+ )
105
+ );
106
+ $(this)
107
+ .parent()
108
+ .attr(
109
+ "id",
110
+ input_name.replace(
111
+ /^(\w+)\[.*?\]/,
112
+ "$1[" + sectionsCount + "]"
113
+ )
114
+ );
115
+ } else if (
116
+ $(this).hasClass("seopress_video_thumbnail_upload")
117
+ ) {
118
+ //do nothing
119
+ } else {
120
+ $(this)
121
+ .prev()
122
+ .attr(
123
+ "for",
124
+ input_id.replace(
125
+ /^(\w+)\[.*?\]/,
126
+ "$1[" + sectionsCount + "]"
127
+ )
128
+ );
129
+ $(this)
130
+ .prev()
131
+ .attr(
132
+ "id",
133
+ input_name.replace(
134
+ /^(\w+)\[.*?\]/,
135
+ "$1[" + sectionsCount + "]"
136
+ )
137
+ );
138
+ }
139
+
140
+ //update id
141
+ this.id = newId;
142
+ })
143
+ .end()
144
 
145
  //inject new section
146
+ .appendTo("#wrap-videos");
147
  seopress_call_video_accordion();
148
+ $("#wrap-videos .video").accordion("destroy");
149
  seopress_call_video_accordion();
150
  $("[id^=__wp-uploader-id-]").each(function () {
151
  $(this).remove();
155
  });
156
 
157
  //remove section
158
+ $("#wrap-videos").on("click", ".remove-video", function () {
159
  //fade out section
160
  $(this).fadeOut(300, function () {
161
+ $(this).parent().parent().parent().remove();
162
  return false;
163
  });
164
  return false;
assets/js/seopress-sitemap-video.min.js CHANGED
@@ -1 +1 @@
1
- jQuery(document).ready(function(e){function t(){var t;e(".seopress_video_thumbnail_upload").click(function(i){i.preventDefault(),$btn=e(this),t?t.open():(e(this).prev(),t=wp.media.frames.file_frame=wp.media({multiple:!1}),t.on("select",function(){var e=t.state().get("selection").first().toJSON();$btn.prev().val(e.url)}),t.open())})}function i(){e("#wrap-videos .video").accordion({animate:!1,collapsible:!0,active:!1,heightStyle:"panel"})}t();var a=e("#wrap-videos .video:last").clone(),r=!1;e("#wrap-videos .video h3").click(function(e){r&&(e.stopImmediatePropagation(),e.preventDefault(),r=!1)}),i();var o=e("#wrap-videos").attr("data-count");e("#add-video").click(function(){o++;a.clone().find(":input").each(function(){var t=this.id,i=this.name,a=this.id.replace(/^(\w+)\[.*?\]/,"$1["+o+"]");e(this).attr("name",i.replace(/^(\w+)\[.*?\]/,"$1["+o+"]")),e(this).hasClass("seopress_video_thumbnail_upload")||e(this).attr("value",""),e(this).is(":checkbox")?(e(this).parent().attr("for",t.replace(/^(\w+)\[.*?\]/,"$1["+o+"]")),e(this).parent().attr("id",i.replace(/^(\w+)\[.*?\]/,"$1["+o+"]"))):e(this).hasClass("seopress_video_thumbnail_upload")||(e(this).prev().attr("for",t.replace(/^(\w+)\[.*?\]/,"$1["+o+"]")),e(this).prev().attr("id",i.replace(/^(\w+)\[.*?\]/,"$1["+o+"]"))),this.id=a}).end().appendTo("#wrap-videos");return i(),e("#wrap-videos .video").accordion("destroy"),i(),e("[id^=__wp-uploader-id-]").each(function(){e(this).remove()}),t(),!1}),e("#wrap-videos").on("click",".remove-video",function(){return e(this).fadeOut(300,function(){return e(this).parent().parent().parent().parent().remove(),!1}),!1})});
1
+ jQuery(document).ready(function(e){function t(){var t;e(".seopress_video_thumbnail_upload").click(function(i){i.preventDefault(),$btn=e(this),t?t.open():(e(this).prev(),t=wp.media.frames.file_frame=wp.media({multiple:!1}),t.on("select",function(){var e=t.state().get("selection").first().toJSON();$btn.prev().val(e.url)}),t.open())})}function i(){e("#wrap-videos .video").accordion({animate:!1,collapsible:!0,active:!1,heightStyle:"panel"})}t();var a=e("#wrap-videos .video:last").clone(),r=!1;e("#wrap-videos .video h3").click(function(e){r&&(e.stopImmediatePropagation(),e.preventDefault(),r=!1)}),i();var o=e("#wrap-videos").attr("data-count");e("#add-video").click(function(){o++;a.clone().find(":input").each(function(){var t=this.id,i=this.name,a=this.id.replace(/^(\w+)\[.*?\]/,"$1["+o+"]");e(this).attr("name",i.replace(/^(\w+)\[.*?\]/,"$1["+o+"]")),e(this).hasClass("seopress_video_thumbnail_upload")||e(this).attr("value",""),e(this).is(":checkbox")?(e(this).parent().attr("for",t.replace(/^(\w+)\[.*?\]/,"$1["+o+"]")),e(this).parent().attr("id",i.replace(/^(\w+)\[.*?\]/,"$1["+o+"]"))):e(this).hasClass("seopress_video_thumbnail_upload")||(e(this).prev().attr("for",t.replace(/^(\w+)\[.*?\]/,"$1["+o+"]")),e(this).prev().attr("id",i.replace(/^(\w+)\[.*?\]/,"$1["+o+"]"))),this.id=a}).end().appendTo("#wrap-videos");return i(),e("#wrap-videos .video").accordion("destroy"),i(),e("[id^=__wp-uploader-id-]").each(function(){e(this).remove()}),t(),!1}),e("#wrap-videos").on("click",".remove-video",function(){return e(this).fadeOut(300,function(){return e(this).parent().parent().parent().remove(),!1}),!1})});
assets/js/src/primary-category-select.js ADDED
@@ -0,0 +1,95 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import { __ } from '@wordpress/i18n'
2
+ import { Component } from '@wordpress/element'
3
+ import { withSelect } from '@wordpress/data';
4
+ import { PanelRow, SelectControl } from '@wordpress/components'
5
+
6
+ class TermSelect extends Component {
7
+ constructor() {
8
+ super(...arguments);
9
+ this.onChange = this.onChange.bind(this);
10
+ this.updateMetabox = this.updateMetabox.bind(this);
11
+ this.state = {
12
+ primaryTermId: 'none',
13
+ selectableTerms: [],
14
+ }
15
+ this.metaboxField = document.querySelector('#seopress_robots_primary_cat');
16
+ }
17
+
18
+ componentDidMount() {
19
+ const primaryTermId = this.props.primaryTermId || 'none';
20
+ this.setState({ primaryTermId });
21
+ this.metaboxField.addEventListener('change', e => {
22
+ this.setState({ primaryTermId: e.target.value });
23
+ });
24
+ }
25
+
26
+ componentDidUpdate(prevProps, prevState) {
27
+ // If available terms or selected terms have changed, check state.
28
+ if (prevProps.allTerms !== this.props.allTerms || prevProps.selectedTermIds !== this.props.selectedTermIds) {
29
+ const selectableTerms = this.props.allTerms.filter(term => this.props.selectedTermIds.includes(term.id));
30
+ const primaryTermId = !this.props.selectedTermIds.length || !this.props.selectedTermIds.includes(parseInt(this.state.primaryTermId)) ? 'none' : this.state.primaryTermId;
31
+ this.setState({ selectableTerms, primaryTermId });
32
+ }
33
+ if (prevState.primaryTermId !== this.state.primaryTermId || prevState.selectableTerms !== this.state.selectableTerms) {
34
+ this.updateMetabox(this.state.primaryTermId);
35
+ }
36
+ }
37
+
38
+ updateMetabox(selectedTermId) {
39
+ const options = this.getOptions().map(option => {
40
+ const selected = option.value == selectedTermId ? 'selected="selected"' : '';
41
+ return `<option value="${option.value}" ${selected}>${option.label}</option>`;
42
+ });
43
+ this.metaboxField.value = selectedTermId;
44
+ this.metaboxField.innerHTML = options.join('');
45
+ }
46
+
47
+ getOptions() {
48
+ return [
49
+ { value: 'none', label: __('None (will disable this feature)', 'wp-seopress') },
50
+ ...this.state.selectableTerms.map((term) => ({ value: term.id, label: term.name, }))
51
+ ];
52
+ }
53
+
54
+ onChange(termId) {
55
+ this.setState({ primaryTermId: termId });
56
+ }
57
+
58
+ render() {
59
+ return !!this.state.selectableTerms.length && (
60
+ <SelectControl
61
+ label={__('Select a primary category', 'wp-seopress')}
62
+ value={this.state.primaryTermId}
63
+ options={this.getOptions()}
64
+ onChange={this.onChange}
65
+ />
66
+ );
67
+ }
68
+ }
69
+
70
+
71
+ const PrimaryTermSelect = withSelect((select, { slug }) => {
72
+ const taxonomy = select('core').getTaxonomy(slug);
73
+ const selectedTermIds = taxonomy ? select('core/editor').getEditedPostAttribute(taxonomy.rest_base) : [];
74
+ const allTerms = select('core').getEntityRecords('taxonomy', slug, { per_page: -1 })
75
+ const primaryTermId = select('core/editor').getEditedPostAttribute('meta')['_seopress_robots_primary_cat'] || 'none';
76
+ return { taxonomy, allTerms, primaryTermId, selectedTermIds }
77
+ })(TermSelect);
78
+
79
+
80
+ wp.hooks.addFilter(
81
+ 'editor.PostTaxonomyType',
82
+ 'wpseopress',
83
+ (PostTaxonomies) => (props) => {
84
+ return (
85
+ <>
86
+ <PostTaxonomies {...props} />
87
+ {props.slug && 'category' == props.slug &&
88
+ < PanelRow className="seopress-primary-term-picker">
89
+ <PrimaryTermSelect {...props} />
90
+ </PanelRow>
91
+ }
92
+ </>
93
+ );
94
+ }
95
+ )
inc/admin/admin-bar/admin-header.php CHANGED
@@ -31,7 +31,7 @@ function seopress_admin_header($context = "") {
31
  <button type="button" role="tab" aria-selected="true" id="activity-panel-tab-help" data-panel="help"
32
  class="btn">
33
  <span class="dashicons dashicons-editor-help"></span>
34
- <?php _e('Documentation', 'wp-seopress'); ?>
35
  </button>
36
  </div>
37
  <div id="seopress-activity-panel-help" class="seopress-activity-panel-wrapper" tabindex="0" role="tabpanel"
31
  <button type="button" role="tab" aria-selected="true" id="activity-panel-tab-help" data-panel="help"
32
  class="btn">
33
  <span class="dashicons dashicons-editor-help"></span>
34
+ <?php _e('Help', 'wp-seopress'); ?>
35
  </button>
36
  </div>
37
  <div id="seopress-activity-panel-help" class="seopress-activity-panel-wrapper" tabindex="0" role="tabpanel"
inc/admin/admin-features-list.php CHANGED
@@ -22,7 +22,7 @@
22
  ],
23
  'xml-sitemap' => [
24
  'title' => __('XML & HTML Sitemaps', 'wp-seopress'),
25
- 'desc' => __('Manage your XML - Image - Video - HTML Sitemap', 'wp-seopress'),
26
  'btn_primary' => admin_url('admin.php?page=seopress-xml-sitemap'),
27
  'filter' => 'seopress_remove_feature_xml_sitemap',
28
  ],
@@ -34,19 +34,19 @@
34
  ],
35
  'google-analytics' => [
36
  'title' => __('Analytics', 'wp-seopress'),
37
- 'desc' => __('Track everything about your visitors with Google Analytics / Matomo / Microsoft Clarity', 'wp-seopress'),
38
  'btn_primary' => admin_url('admin.php?page=seopress-google-analytics'),
39
  'filter' => 'seopress_remove_feature_google_analytics',
40
  ],
41
  'instant-indexing' => [
42
  'title' => __('Instant Indexing', 'wp-seopress'),
43
- 'desc' => __('Ping Google & Bing to quickly index your content', 'wp-seopress'),
44
  'btn_primary' => admin_url('admin.php?page=seopress-instant-indexing'),
45
  'filter' => 'seopress_remove_feature_instant_indexing',
46
  ],
47
  'advanced' => [
48
- 'title' => __('Advanced', 'wp-seopress'),
49
- 'desc' => __('Advanced SEO options for advanced users!', 'wp-seopress'),
50
  'btn_primary' => admin_url('admin.php?page=seopress-advanced'),
51
  'filter' => 'seopress_remove_feature_advanced',
52
  ],
@@ -63,25 +63,25 @@
63
  if (is_plugin_active('wp-seopress-pro/seopress-pro.php')) {
64
  $features['woocommerce'] = [
65
  'title' => __('WooCommerce', 'wp-seopress'),
66
- 'desc' => __('Improve WooCommerce SEO', 'wp-seopress'),
67
  'btn_primary' => admin_url('admin.php?page=seopress-pro-page#tab=tab_seopress_woocommerce'),
68
  'filter' => 'seopress_remove_feature_woocommerce',
69
  ];
70
  $features['edd'] = [
71
  'title' => __('Easy Digital Downloads', 'wp-seopress'),
72
- 'desc' => __('Improve Easy Digital Downloads SEO', 'wp-seopress'),
73
  'btn_primary' => admin_url('admin.php?page=seopress-pro-page#tab=tab_seopress_edd'),
74
  'filter' => 'seopress_remove_feature_edd',
75
  ];
76
  $features['local-business'] = [
77
  'title' => __('Local Business', 'wp-seopress'),
78
- 'desc' => __('Add Google Local Business data type', 'wp-seopress'),
79
  'btn_primary' => admin_url('admin.php?page=seopress-pro-page#tab=tab_seopress_local_business'),
80
  'filter' => 'seopress_remove_feature_local_business',
81
  ];
82
  $features['dublin-core'] = [
83
  'title' => __('Dublin Core', 'wp-seopress'),
84
- 'desc' => __('Add Dublin Core meta tags', 'wp-seopress'),
85
  'btn_primary' => admin_url('admin.php?page=seopress-pro-page#tab=tab_seopress_dublin_core'),
86
  'filter' => 'seopress_remove_feature_dublin_core',
87
  ];
@@ -93,40 +93,47 @@
93
  ];
94
  $features['breadcrumbs'] = [
95
  'title' => __('Breadcrumbs', 'wp-seopress'),
96
- 'desc' => __('Enable Breadcrumbs for your theme and improve your SEO in SERPs', 'wp-seopress'),
97
  'btn_primary' => admin_url('admin.php?page=seopress-pro-page#tab=tab_seopress_breadcrumbs'),
98
  'filter' => 'seopress_remove_feature_breadcrumbs',
99
  ];
100
  $features['page-speed'] = [
101
  'title' => __('Google Page Speed', 'wp-seopress'),
102
- 'desc' => __('Track your website performance to improve SEO with Google Page Speed', 'wp-seopress'),
103
  'btn_primary' => admin_url('admin.php?page=seopress-pro-page#tab=tab_seopress_page_speed'),
104
  'filter' => 'seopress_remove_feature_page_speed',
105
  'toggle' => false,
106
  ];
 
 
 
 
 
 
 
107
  if (! is_multisite() || (is_multisite() && defined('SUBDOMAIN_INSTALL') && true === constant('SUBDOMAIN_INSTALL'))) {//subdomains or single site
108
  $features['robots'] = [
109
  'title' => __('robots.txt', 'wp-seopress'),
110
- 'desc' => __('Edit your robots.txt file', 'wp-seopress'),
111
  'btn_primary' => admin_url('admin.php?page=seopress-pro-page#tab=tab_seopress_robots'),
112
  'filter' => 'seopress_remove_feature_robots',
113
  ];
114
  }
115
  $features['news'] = [
116
  'title' => __('Google News Sitemap', 'wp-seopress'),
117
- 'desc' => __('Optimize your site for Google News', 'wp-seopress'),
118
  'btn_primary' => admin_url('admin.php?page=seopress-pro-page#tab=tab_seopress_news'),
119
  'filter' => 'seopress_remove_feature_news',
120
  ];
121
  $features['rich-snippets'] = [
122
  'title' => __('Schemas', 'wp-seopress'),
123
- 'desc' => __('Create / manage your schemas', 'wp-seopress'),
124
  'btn_primary' => admin_url('admin.php?page=seopress-pro-page#tab=tab_seopress_rich_snippets'),
125
  'filter' => 'seopress_remove_feature_schemas',
126
  ];
127
  $features['404'] = [
128
  'title' => __('Redirections', 'wp-seopress'),
129
- 'desc' => __('Monitor 404, create 301, 302 and 307 redirections', 'wp-seopress'),
130
  'btn_primary' => admin_url('admin.php?page=seopress-pro-page#tab=tab_seopress_404'),
131
  'filter' => 'seopress_remove_feature_redirects',
132
  ];
22
  ],
23
  'xml-sitemap' => [
24
  'title' => __('XML & HTML Sitemaps', 'wp-seopress'),
25
+ 'desc' => __('Manage your XML - Image - Video - HTML Sitemap.', 'wp-seopress'),
26
  'btn_primary' => admin_url('admin.php?page=seopress-xml-sitemap'),
27
  'filter' => 'seopress_remove_feature_xml_sitemap',
28
  ],
34
  ],
35
  'google-analytics' => [
36
  'title' => __('Analytics', 'wp-seopress'),
37
+ 'desc' => __('Track everything about your visitors with Google Analytics / Matomo / Microsoft Clarity.', 'wp-seopress'),
38
  'btn_primary' => admin_url('admin.php?page=seopress-google-analytics'),
39
  'filter' => 'seopress_remove_feature_google_analytics',
40
  ],
41
  'instant-indexing' => [
42
  'title' => __('Instant Indexing', 'wp-seopress'),
43
+ 'desc' => __('Ping Google & Bing to quickly index your content.', 'wp-seopress'),
44
  'btn_primary' => admin_url('admin.php?page=seopress-instant-indexing'),
45
  'filter' => 'seopress_remove_feature_instant_indexing',
46
  ],
47
  'advanced' => [
48
+ 'title' => __('Image SEO & Advanced settings', 'wp-seopress'),
49
+ 'desc' => __('Optimize your images for SEO. Configure advanced settings.', 'wp-seopress'),
50
  'btn_primary' => admin_url('admin.php?page=seopress-advanced'),
51
  'filter' => 'seopress_remove_feature_advanced',
52
  ],
63
  if (is_plugin_active('wp-seopress-pro/seopress-pro.php')) {
64
  $features['woocommerce'] = [
65
  'title' => __('WooCommerce', 'wp-seopress'),
66
+ 'desc' => __('Improve WooCommerce SEO.', 'wp-seopress'),
67
  'btn_primary' => admin_url('admin.php?page=seopress-pro-page#tab=tab_seopress_woocommerce'),
68
  'filter' => 'seopress_remove_feature_woocommerce',
69
  ];
70
  $features['edd'] = [
71
  'title' => __('Easy Digital Downloads', 'wp-seopress'),
72
+ 'desc' => __('Improve Easy Digital Downloads SEO.', 'wp-seopress'),
73
  'btn_primary' => admin_url('admin.php?page=seopress-pro-page#tab=tab_seopress_edd'),
74
  'filter' => 'seopress_remove_feature_edd',
75
  ];
76
  $features['local-business'] = [
77
  'title' => __('Local Business', 'wp-seopress'),
78
+ 'desc' => __('Add Google Local Business data type.', 'wp-seopress'),
79
  'btn_primary' => admin_url('admin.php?page=seopress-pro-page#tab=tab_seopress_local_business'),
80
  'filter' => 'seopress_remove_feature_local_business',
81
  ];
82
  $features['dublin-core'] = [
83
  'title' => __('Dublin Core', 'wp-seopress'),
84
+ 'desc' => __('Add Dublin Core meta tags.', 'wp-seopress'),
85
  'btn_primary' => admin_url('admin.php?page=seopress-pro-page#tab=tab_seopress_dublin_core'),
86
  'filter' => 'seopress_remove_feature_dublin_core',
87
  ];
93
  ];
94
  $features['breadcrumbs'] = [
95
  'title' => __('Breadcrumbs', 'wp-seopress'),
96
+ 'desc' => __('Enable Breadcrumbs for your theme and improve your SEO in SERPs.', 'wp-seopress'),
97
  'btn_primary' => admin_url('admin.php?page=seopress-pro-page#tab=tab_seopress_breadcrumbs'),
98
  'filter' => 'seopress_remove_feature_breadcrumbs',
99
  ];
100
  $features['page-speed'] = [
101
  'title' => __('Google Page Speed', 'wp-seopress'),
102
+ 'desc' => __('Track your website performance to improve SEO with Google Page Speed.', 'wp-seopress'),
103
  'btn_primary' => admin_url('admin.php?page=seopress-pro-page#tab=tab_seopress_page_speed'),
104
  'filter' => 'seopress_remove_feature_page_speed',
105
  'toggle' => false,
106
  ];
107
+ $features['inspect-url'] = [
108
+ 'title' => __('Inspect URL with Google Search Console', 'wp-seopress'),
109
+ 'desc' => __('Inspect your URL for details about crawling, indexing, mobile compatibility, schemas and more.', 'wp-seopress'),
110
+ 'btn_primary' => admin_url('admin.php?page=seopress-pro-page#tab=tab_seopress_inspect_url'),
111
+ 'filter' => 'seopress_remove_feature_inspect_url',
112
+ 'toggle' => true,
113
+ ];
114
  if (! is_multisite() || (is_multisite() && defined('SUBDOMAIN_INSTALL') && true === constant('SUBDOMAIN_INSTALL'))) {//subdomains or single site
115
  $features['robots'] = [
116
  'title' => __('robots.txt', 'wp-seopress'),
117
+ 'desc' => __('Edit your robots.txt file.', 'wp-seopress'),
118
  'btn_primary' => admin_url('admin.php?page=seopress-pro-page#tab=tab_seopress_robots'),
119
  'filter' => 'seopress_remove_feature_robots',
120
  ];
121
  }
122
  $features['news'] = [
123
  'title' => __('Google News Sitemap', 'wp-seopress'),
124
+ 'desc' => __('Optimize your site for Google News.', 'wp-seopress'),
125
  'btn_primary' => admin_url('admin.php?page=seopress-pro-page#tab=tab_seopress_news'),
126
  'filter' => 'seopress_remove_feature_news',
127
  ];
128
  $features['rich-snippets'] = [
129
  'title' => __('Schemas', 'wp-seopress'),
130
+ 'desc' => __('Create / manage your schemas.', 'wp-seopress'),
131
  'btn_primary' => admin_url('admin.php?page=seopress-pro-page#tab=tab_seopress_rich_snippets'),
132
  'filter' => 'seopress_remove_feature_schemas',
133
  ];
134
  $features['404'] = [
135
  'title' => __('Redirections', 'wp-seopress'),
136
+ 'desc' => __('Monitor 404, create 301, 302 and 307 redirections.', 'wp-seopress'),
137
  'btn_primary' => admin_url('admin.php?page=seopress-pro-page#tab=tab_seopress_404'),
138
  'filter' => 'seopress_remove_feature_redirects',
139
  ];
inc/admin/admin.php CHANGED
@@ -102,7 +102,7 @@ class seopress_options
102
  $seopress_social_networks_help_tab = add_submenu_page('seopress-option', __('Social Networks', 'wp-seopress'), __('Social Networks', 'wp-seopress'), seopress_capability('manage_options', PagesAdmin::SOCIAL_NETWORKS), 'seopress-social', [$this, 'seopress_social_page']);
103
  $seopress_google_analytics_help_tab = add_submenu_page('seopress-option', __('Analytics', 'wp-seopress'), __('Analytics', 'wp-seopress'), seopress_capability('manage_options', PagesAdmin::ANALYTICS), 'seopress-google-analytics', [$this, 'seopress_google_analytics_page']);
104
  add_submenu_page('seopress-option', __('Instant Indexing', 'wp-seopress'), __('Instant Indexing', 'wp-seopress'), seopress_capability('manage_options', PagesAdmin::INSTANT_INDEXING), 'seopress-instant-indexing', [$this, 'seopress_instant_indexing_page']);
105
- add_submenu_page('seopress-option', __('Advanced', 'wp-seopress'), __('Advanced', 'wp-seopress'), seopress_capability('manage_options', PagesAdmin::ADVANCED), 'seopress-advanced', [$this, 'seopress_advanced_page']);
106
  add_submenu_page('seopress-option', __('Tools', 'wp-seopress'), __('Tools', 'wp-seopress'), seopress_capability('manage_options', PagesAdmin::TOOLS), 'seopress-import-export', [$this, 'seopress_import_export_page']);
107
 
108
  if (function_exists('seopress_get_toggle_white_label_option')) {
102
  $seopress_social_networks_help_tab = add_submenu_page('seopress-option', __('Social Networks', 'wp-seopress'), __('Social Networks', 'wp-seopress'), seopress_capability('manage_options', PagesAdmin::SOCIAL_NETWORKS), 'seopress-social', [$this, 'seopress_social_page']);
103
  $seopress_google_analytics_help_tab = add_submenu_page('seopress-option', __('Analytics', 'wp-seopress'), __('Analytics', 'wp-seopress'), seopress_capability('manage_options', PagesAdmin::ANALYTICS), 'seopress-google-analytics', [$this, 'seopress_google_analytics_page']);
104
  add_submenu_page('seopress-option', __('Instant Indexing', 'wp-seopress'), __('Instant Indexing', 'wp-seopress'), seopress_capability('manage_options', PagesAdmin::INSTANT_INDEXING), 'seopress-instant-indexing', [$this, 'seopress_instant_indexing_page']);
105
+ add_submenu_page('seopress-option', __('Image SEO & Advanced settings', 'wp-seopress'), __('Advanced', 'wp-seopress'), seopress_capability('manage_options', PagesAdmin::ADVANCED), 'seopress-advanced', [$this, 'seopress_advanced_page']);
106
  add_submenu_page('seopress-option', __('Tools', 'wp-seopress'), __('Tools', 'wp-seopress'), seopress_capability('manage_options', PagesAdmin::TOOLS), 'seopress-import-export', [$this, 'seopress_import_export_page']);
107
 
108
  if (function_exists('seopress_get_toggle_white_label_option')) {
inc/admin/ajax.php CHANGED
@@ -156,6 +156,11 @@ function seopress_do_real_preview()
156
  $seopress_get_the_content = get_post_field('post_content', $seopress_get_the_id);
157
  }
158
 
 
 
 
 
 
159
  //BeTheme is activated
160
  $theme = wp_get_theme();
161
  if ('betheme' == $theme->template || 'Betheme' == $theme->parent_theme) {
@@ -183,11 +188,11 @@ function seopress_do_real_preview()
183
 
184
  //Bricks compatibility
185
  if (defined('BRICKS_DB_EDITOR_MODE') && ('bricks' == $theme->template || 'Bricks' == $theme->parent_theme)) {
186
- $page_sections = get_post_meta($seopress_get_the_id, '_bricks_page_content', true);
187
  $editor_mode = get_post_meta($seopress_get_the_id, BRICKS_DB_EDITOR_MODE, true);
188
 
189
  if (is_array($page_sections) && 'wordpress' !== $editor_mode) {
190
- $seopress_get_the_content = Bricks\Frontend::render_sections($page_sections, $seopress_get_the_id, 'content', true);
191
  }
192
  }
193
 
@@ -397,7 +402,7 @@ function seopress_do_real_preview()
397
  //Keywords density
398
  if (! is_plugin_active('oxygen/functions.php') && ! function_exists('ct_template_output')) { //disable for Oxygen
399
  foreach ($seopress_analysis_target_kw as $kw) {
400
- if (preg_match_all('#\b(' . $kw . ')\b#iu', stripslashes_deep(strip_tags(wp_filter_nohtml_kses($seopress_get_the_content))), $m)) {
401
  $data['kws_density']['matches'][$kw][] = $m[0];
402
  }
403
  }
@@ -546,7 +551,7 @@ function seopress_do_real_preview()
546
  //Words Counter
547
  if (! is_plugin_active('oxygen/functions.php') && ! function_exists('ct_template_output')) { //disable for Oxygen
548
  if ('' != $seopress_get_the_content) {
549
- $data['words_counter'] = preg_match_all("/\p{L}[\p{L}\p{Mn}\p{Pd}'\x{2019}]*/u", strip_tags(wp_filter_nohtml_kses($seopress_get_the_content)), $matches);
550
 
551
  if (! empty($matches[0])) {
552
  $words_counter_unique = count(array_unique($matches[0]));
@@ -737,9 +742,26 @@ function seopress_video_xml_sitemap_regenerate()
737
  $offset = absint($_POST['offset']);
738
  }
739
 
740
- global $wpdb;
 
 
 
 
 
 
 
 
 
 
 
 
 
741
 
742
- $total_count_posts = (int) $wpdb->get_var("SELECT count(*) FROM {$wpdb->posts}");
 
 
 
 
743
 
744
  $increment = 1;
745
  global $post;
@@ -751,7 +773,7 @@ function seopress_video_xml_sitemap_regenerate()
751
  } else {
752
  $args = [
753
  'posts_per_page' => $increment,
754
- 'post_type' => 'any',
755
  'post_status' => ['pending', 'draft', 'publish', 'future'],
756
  'offset' => $offset,
757
  ];
156
  $seopress_get_the_content = get_post_field('post_content', $seopress_get_the_id);
157
  }
158
 
159
+ //Zion Builder compatibility
160
+ if (is_plugin_active('zionbuilder/zionbuilder.php')) {
161
+ $seopress_get_the_content = $seopress_get_the_content . get_post_meta($seopress_get_the_id, '_zionbuilder_page_elements', true);
162
+ }
163
+
164
  //BeTheme is activated
165
  $theme = wp_get_theme();
166
  if ('betheme' == $theme->template || 'Betheme' == $theme->parent_theme) {
188
 
189
  //Bricks compatibility
190
  if (defined('BRICKS_DB_EDITOR_MODE') && ('bricks' == $theme->template || 'Bricks' == $theme->parent_theme)) {
191
+ $page_sections = get_post_meta($seopress_get_the_id, BRICKS_DB_PAGE_CONTENT, true);
192
  $editor_mode = get_post_meta($seopress_get_the_id, BRICKS_DB_EDITOR_MODE, true);
193
 
194
  if (is_array($page_sections) && 'wordpress' !== $editor_mode) {
195
+ $seopress_get_the_content = Bricks\Frontend::render_data($page_sections);
196
  }
197
  }
198
 
402
  //Keywords density
403
  if (! is_plugin_active('oxygen/functions.php') && ! function_exists('ct_template_output')) { //disable for Oxygen
404
  foreach ($seopress_analysis_target_kw as $kw) {
405
+ if (preg_match_all('#\b(' . $kw . ')\b#iu', stripslashes_deep(wp_strip_all_tags(wp_filter_nohtml_kses($seopress_get_the_content))), $m)) {
406
  $data['kws_density']['matches'][$kw][] = $m[0];
407
  }
408
  }
551
  //Words Counter
552
  if (! is_plugin_active('oxygen/functions.php') && ! function_exists('ct_template_output')) { //disable for Oxygen
553
  if ('' != $seopress_get_the_content) {
554
+ $data['words_counter'] = preg_match_all("/\p{L}[\p{L}\p{Mn}\p{Pd}'\x{2019}]*/u", wp_strip_all_tags(wp_filter_nohtml_kses($seopress_get_the_content)), $matches);
555
 
556
  if (! empty($matches[0])) {
557
  $words_counter_unique = count(array_unique($matches[0]));
742
  $offset = absint($_POST['offset']);
743
  }
744
 
745
+ $cpt = ['any'];
746
+ if (seopress_xml_sitemap_post_types_list_option()) {
747
+ unset($cpt[0]);
748
+ foreach (seopress_xml_sitemap_post_types_list_option() as $cpt_key => $cpt_value) {
749
+ foreach ($cpt_value as $_cpt_key => $_cpt_value) {
750
+ if ('1' == $_cpt_value) {
751
+ $cpt[] = $cpt_key;
752
+ }
753
+ }
754
+ }
755
+
756
+ $cpt = array_map(function($item) {
757
+ return "'" . esc_sql($item) . "'";
758
+ }, $cpt);
759
 
760
+ $cpt = implode(",", $cpt);
761
+ }
762
+
763
+ global $wpdb;
764
+ $total_count_posts = (int) $wpdb->get_var("SELECT count(*) FROM {$wpdb->posts} WHERE post_status IN ('pending', 'draft', 'publish', 'future') AND post_type IN ( $cpt ) ");
765
 
766
  $increment = 1;
767
  global $post;
773
  } else {
774
  $args = [
775
  'posts_per_page' => $increment,
776
+ 'post_type' => $cpt,
777
  'post_status' => ['pending', 'draft', 'publish', 'future'],
778
  'offset' => $offset,
779
  ];
inc/admin/blocks/insights.php CHANGED
@@ -69,6 +69,10 @@
69
  'tab_seopress_ps' => __('PageSpeed', 'wp-seopress'),
70
  'tab_seopress_seo_tools' => __('SEO Tools', 'wp-seopress'),
71
  ];
 
 
 
 
72
  ?>
73
 
74
  <div class="nav-tab-wrapper">
@@ -97,59 +101,11 @@
97
  ?>
98
 
99
  <div class="wrap-seopress-tab-content">
100
- <div id="tab_seopress_ps" class="seopress-tab seopress-page-speed inside<?php if ('tab_seopress_ps' == $current_tab) {
101
- echo 'active';
102
- }?>">
103
- <h3><?php _e('Google Page Speed Score','wp-seopress'); ?></h3>
104
- <p><?php _e('Learn how your site has performed, based on data from your actual users around the world.','wp-seopress'); ?>
105
- </p>
106
- <?php if ($ps_score && $ps_score_desktop) { ?>
107
- <div class="seopress-cwv seopress-summary-item-data">
108
- <?php echo $ps_score; ?>
109
- <?php echo $ps_score_desktop; ?>
110
- <p class="wrap-scale">
111
- <?php _e('<span><span class="score red"></span>0-49</span><span><span class="score yellow"></span>50-89</span><span><span class="score green"></span>90-100</span>','wp-seopress') ?>
112
- </p>
113
- </div>
114
- <div class="seopress-cwv">
115
- <?php if ($core_web_vitals_score === true) { ?>
116
- <img src="<?php echo SEOPRESS_PRO_ASSETS_DIR; ?>/img/cwv-pass.svg"
117
- alt='' width='96' height='96' />
118
- <?php } else { ?>
119
- <img src="<?php echo SEOPRESS_PRO_ASSETS_DIR; ?>/img/cwv-fail.svg"
120
- alt='' width='96' height='96' />
121
- <?php } ?>
122
- <div>
123
- <h3>
124
- <?php _e('Core Web Vitals Assessment: ', 'wp-seopress'); ?>
125
-
126
- <?php if ($core_web_vitals_score === true) { ?>
127
- <span class="green"><?php _e('Passed', 'wp-seopress'); ?></span>
128
- <?php } elseif ($core_web_vitals_score === null) { ?>
129
- <span class="red"><?php _e('No data found', 'wp-seopress'); ?></span>
130
- <?php } else { ?>
131
- <span class="red"><?php _e('Failed', 'wp-seopress'); ?></span>
132
- <?php } ?>
133
- </h3>
134
- <p><?php printf(__('Computed from the %s Core Web Vitals metrics over the latest 28-day collection period.', 'wp-seopress'), $cwv_svg); ?></p>
135
- </div>
136
- </div>
137
- <?php } else { ?>
138
- <p><?php _e('No data available.','wp-seopress'); ?></p>
139
- <?php } ?>
140
- <p>
141
- <a href="<?php echo admin_url('admin.php?page=seopress-pro-page#tab=tab_seopress_page_speed'); ?>"
142
- class="btn btnSecondary">
143
- <?php _e('See full report', 'wp-seopress'); ?>
144
- </a>
145
- </p>
146
- </div>
147
-
148
- <?php if (is_plugin_active('wp-seopress-pro/seopress-pro.php')) { ?>
149
  <div id="tab_seopress_analytics" class="seopress-tab seopress-analytics <?php if ('tab_seopress_analytics' == $current_tab) {
150
  echo 'active';
151
  } ?>">
152
- <?php if ('1' == seopress_get_toggle_option('google-analytics') && '1' !== seopress_google_analytics_dashboard_widget_option()) {
153
  $stats = get_transient('seopress_results_google_analytics');
154
  $html = [];
155
  if (! empty($stats['sessions'])) {
@@ -205,6 +161,54 @@
205
  </div>
206
  <?php } ?>
207
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
208
  <?php if (is_plugin_active('wp-seopress-pro/seopress-pro.php') ) { ?>
209
  <div id="tab_seopress_seo_tools" class="seopress-tab seopress-useful-tools inside <?php if ('tab_seopress_seo_tools' == $current_tab) {
210
  echo 'active';
69
  'tab_seopress_ps' => __('PageSpeed', 'wp-seopress'),
70
  'tab_seopress_seo_tools' => __('SEO Tools', 'wp-seopress'),
71
  ];
72
+
73
+ if (seopress_get_toggle_option('google-analytics') !=='1') {
74
+ unset($dashboard_settings_tabs['tab_seopress_analytics']);
75
+ }
76
  ?>
77
 
78
  <div class="nav-tab-wrapper">
101
  ?>
102
 
103
  <div class="wrap-seopress-tab-content">
104
+ <?php if (is_plugin_active('wp-seopress-pro/seopress-pro.php') && seopress_get_toggle_option('google-analytics')) { ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
105
  <div id="tab_seopress_analytics" class="seopress-tab seopress-analytics <?php if ('tab_seopress_analytics' == $current_tab) {
106
  echo 'active';
107
  } ?>">
108
+ <?php if ('1' !== seopress_google_analytics_dashboard_widget_option()) {
109
  $stats = get_transient('seopress_results_google_analytics');
110
  $html = [];
111
  if (! empty($stats['sessions'])) {
161
  </div>
162
  <?php } ?>
163
 
164
+ <div id="tab_seopress_ps" class="seopress-tab seopress-page-speed inside<?php if ('tab_seopress_ps' == $current_tab) {
165
+ echo 'active';
166
+ }?>">
167
+ <h3><?php _e('Google Page Speed Score','wp-seopress'); ?></h3>
168
+ <p><?php _e('Learn how your site has performed, based on data from your actual users around the world.','wp-seopress'); ?>
169
+ </p>
170
+ <?php if ($ps_score && $ps_score_desktop) { ?>
171
+ <div class="seopress-cwv seopress-summary-item-data">
172
+ <?php echo $ps_score; ?>
173
+ <?php echo $ps_score_desktop; ?>
174
+ <p class="wrap-scale">
175
+ <?php _e('<span><span class="score red"></span>0-49</span><span><span class="score yellow"></span>50-89</span><span><span class="score green"></span>90-100</span>','wp-seopress') ?>
176
+ </p>
177
+ </div>
178
+ <div class="seopress-cwv">
179
+ <?php if ($core_web_vitals_score === true) { ?>
180
+ <img src="<?php echo SEOPRESS_PRO_ASSETS_DIR; ?>/img/cwv-pass.svg"
181
+ alt='' width='96' height='96' />
182
+ <?php } else { ?>
183
+ <img src="<?php echo SEOPRESS_PRO_ASSETS_DIR; ?>/img/cwv-fail.svg"
184
+ alt='' width='96' height='96' />
185
+ <?php } ?>
186
+ <div>
187
+ <h3>
188
+ <?php _e('Core Web Vitals Assessment: ', 'wp-seopress'); ?>
189
+
190
+ <?php if ($core_web_vitals_score === true) { ?>
191
+ <span class="green"><?php _e('Passed', 'wp-seopress'); ?></span>
192
+ <?php } elseif ($core_web_vitals_score === null) { ?>
193
+ <span class="red"><?php _e('No data found', 'wp-seopress'); ?></span>
194
+ <?php } else { ?>
195
+ <span class="red"><?php _e('Failed', 'wp-seopress'); ?></span>
196
+ <?php } ?>
197
+ </h3>
198
+ <p><?php printf(__('Computed from the %s Core Web Vitals metrics over the latest 28-day collection period.', 'wp-seopress'), $cwv_svg); ?></p>
199
+ </div>
200
+ </div>
201
+ <?php } else { ?>
202
+ <p><?php _e('No data available.','wp-seopress'); ?></p>
203
+ <?php } ?>
204
+ <p>
205
+ <a href="<?php echo admin_url('admin.php?page=seopress-pro-page#tab=tab_seopress_page_speed'); ?>"
206
+ class="btn btnSecondary">
207
+ <?php _e('See full report', 'wp-seopress'); ?>
208
+ </a>
209
+ </p>
210
+ </div>
211
+
212
  <?php if (is_plugin_active('wp-seopress-pro/seopress-pro.php') ) { ?>
213
  <div id="tab_seopress_seo_tools" class="seopress-tab seopress-useful-tools inside <?php if ('tab_seopress_seo_tools' == $current_tab) {
214
  echo 'active';
inc/admin/blocks/notifications-center.php CHANGED
@@ -254,7 +254,7 @@
254
  'high' => __('High impact', 'wp-seopress'),
255
  ],
256
  'link' => [
257
- 'fr' => 'https://www.seopress.org/fr/support/guides/corriger-erreur-compatibilite-extension-tagdiv-composer-newspaper/?utm_source=plugin&utm_medium=wp-admin&utm_campaign=seopress',
258
  'en' => 'https://www.seopress.org/support/guides/fix-compatibility-issue-tagdiv-composer-plugin-newspaper-theme/?utm_source=plugin&utm_medium=wp-admin&utm_campaign=seopress',
259
  'title' => __('Fix this!', 'wp-seopress'),
260
  'external' => true,
254
  'high' => __('High impact', 'wp-seopress'),
255
  ],
256
  'link' => [
257
+ 'fr' => 'https://www.seopress.org/fr/support/guides/corriger-lerreur-de-compatibilite-avec-lextension-tagdiv-composer-inclus-dans-le-theme-newspaper/?utm_source=plugin&utm_medium=wp-admin&utm_campaign=seopress',
258
  'en' => 'https://www.seopress.org/support/guides/fix-compatibility-issue-tagdiv-composer-plugin-newspaper-theme/?utm_source=plugin&utm_medium=wp-admin&utm_campaign=seopress',
259
  'title' => __('Fix this!', 'wp-seopress'),
260
  'external' => true,
inc/admin/callbacks/Advanced.php CHANGED
@@ -60,6 +60,10 @@ function seopress_advanced_advanced_category_url_callback() {
60
  printf(__('Remove <strong>%s</strong> in your permalinks', 'wp-seopress'), $category_base); ?>
61
  </label>
62
 
 
 
 
 
63
  <div class="seopress-notice">
64
  <p>
65
  <?php _e('You have to flush your permalinks each time you change this setting.', 'wp-seopress'); ?>
@@ -101,12 +105,16 @@ function seopress_advanced_advanced_product_cat_url_callback() {
101
 
102
  </label>
103
 
 
 
 
 
104
  <div class="seopress-notice">
105
  <p>
106
  <?php _e('You have to flush your permalinks each time you change this setting.', 'wp-seopress'); ?>
107
  </p>
108
  <p>
109
- <?php _e('Make sure you don\'t have indentical URLs after activating this option to prevent conflicts.', 'wp-seopress'); ?>
110
  </p>
111
  </div>
112
 
60
  printf(__('Remove <strong>%s</strong> in your permalinks', 'wp-seopress'), $category_base); ?>
61
  </label>
62
 
63
+ <p class="description">
64
+ <?php _e('e.g. "https://example.com/category/my-post-category/" => "https://example.com/my-post-category/"','wp-seopress'); ?>
65
+ </p>
66
+
67
  <div class="seopress-notice">
68
  <p>
69
  <?php _e('You have to flush your permalinks each time you change this setting.', 'wp-seopress'); ?>
105
 
106
  </label>
107
 
108
+ <p class="description">
109
+ <?php _e('e.g. "https://example.com/product-category/my-product-category/" => "https://example.com/my-product-category/"','wp-seopress'); ?>
110
+ </p>
111
+
112
  <div class="seopress-notice">
113
  <p>
114
  <?php _e('You have to flush your permalinks each time you change this setting.', 'wp-seopress'); ?>
115
  </p>
116
  <p>
117
+ <?php _e('Make sure you don\'t have identical URLs after activating this option to prevent conflicts.', 'wp-seopress'); ?>
118
  </p>
119
  </div>
120
 
inc/admin/callbacks/Analytics.php CHANGED
@@ -37,6 +37,12 @@ esc_html($check)
37
  <?php _e('Find your tracking ID', 'wp-seopress'); ?>
38
  </a>
39
  </p>
 
 
 
 
 
 
40
  <?php
41
  }
42
 
37
  <?php _e('Find your tracking ID', 'wp-seopress'); ?>
38
  </a>
39
  </p>
40
+
41
+ <div class="seopress-notice is-warning">
42
+ <p>
43
+ <?php _e('<strong>Universal Analytics</strong> will stop working in <strong>June 2023</strong>. We invite you to use GA4 now or an alternative like Matomo.','wp-seopress'); ?>
44
+ </p>
45
+ </div>
46
  <?php
47
  }
48
 
inc/admin/callbacks/ImageSEO.php CHANGED
@@ -45,6 +45,30 @@ function seopress_advanced_advanced_attachments_file_callback() {
45
  }
46
  }
47
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
48
  function seopress_advanced_advanced_image_auto_title_editor_callback() {
49
  $options = get_option('seopress_advanced_option_name');
50
 
@@ -60,6 +84,10 @@ function seopress_advanced_advanced_image_auto_title_editor_callback() {
60
  <?php _e('When sending an image file, automatically set the title based on the filename', 'wp-seopress'); ?>
61
  </label>
62
 
 
 
 
 
63
  <?php if (isset($options['seopress_advanced_advanced_image_auto_title_editor'])) {
64
  esc_attr($options['seopress_advanced_advanced_image_auto_title_editor']);
65
  }
45
  }
46
  }
47
 
48
+ function seopress_advanced_advanced_clean_filename_callback() {
49
+ $options = get_option('seopress_advanced_option_name');
50
+
51
+ $check = isset($options['seopress_advanced_advanced_clean_filename']); ?>
52
+
53
+ <label for="seopress_advanced_advanced_clean_filename">
54
+ <input id="seopress_advanced_advanced_clean_filename"
55
+ name="seopress_advanced_option_name[seopress_advanced_advanced_clean_filename]" type="checkbox" <?php if ('1' == $check) { ?>
56
+ checked="yes"
57
+ <?php } ?>
58
+ value="1"/>
59
+
60
+ <?php _e('When send a media, remove accents, spaces, capital letters... and force UTF-8 encoding', 'wp-seopress'); ?>
61
+ </label>
62
+
63
+ <p class="description">
64
+ <?php _e('e.g. "ExãMple 1 cópy!.jpg" => "example-1-copy.jpg"', 'wp-seopress'); ?>
65
+ </p>
66
+
67
+ <?php if (isset($options['seopress_advanced_advanced_clean_filename'])) {
68
+ esc_attr($options['seopress_advanced_advanced_clean_filename']);
69
+ }
70
+ }
71
+
72
  function seopress_advanced_advanced_image_auto_title_editor_callback() {
73
  $options = get_option('seopress_advanced_option_name');
74
 
84
  <?php _e('When sending an image file, automatically set the title based on the filename', 'wp-seopress'); ?>
85
  </label>
86
 
87
+ <p class="description">
88
+ <?php _e('We use the product title for WooCommerce products.', 'wp-seopress'); ?>
89
+ </p>
90
+
91
  <?php if (isset($options['seopress_advanced_advanced_image_auto_title_editor'])) {
92
  esc_attr($options['seopress_advanced_advanced_image_auto_title_editor']);
93
  }
inc/admin/callbacks/Sitemaps.php CHANGED
@@ -155,7 +155,7 @@ function seopress_xml_sitemap_post_types_list_callback()
155
  $output = 'objects'; // names or objects, note names is the default
156
  $operator = 'and'; // 'and' or 'or'
157
 
158
- $post_types = get_post_types($args, $output, $operator);
159
 
160
  foreach ($post_types as $seopress_cpt_key => $seopress_cpt_value) { ?>
161
  <h3>
@@ -214,7 +214,7 @@ function seopress_xml_sitemap_taxonomies_list_callback()
214
 
215
  $output = 'objects'; // or objects
216
  $operator = 'and'; // 'and' or 'or'
217
- $taxonomies = get_taxonomies($args, $output, $operator);
218
 
219
  foreach ($taxonomies as $seopress_tax_key => $seopress_tax_value) { ?>
220
  <h3>
155
  $output = 'objects'; // names or objects, note names is the default
156
  $operator = 'and'; // 'and' or 'or'
157
 
158
+ $post_types = apply_filters( 'seopress_sitemaps_cpt', get_post_types($args, $output, $operator) );
159
 
160
  foreach ($post_types as $seopress_cpt_key => $seopress_cpt_value) { ?>
161
  <h3>
214
 
215
  $output = 'objects'; // or objects
216
  $operator = 'and'; // 'and' or 'or'
217
+ $taxonomies = apply_filters( 'seopress_sitemaps_tax', get_taxonomies($args, $output, $operator) );
218
 
219
  foreach ($taxonomies as $seopress_tax_key => $seopress_tax_value) { ?>
220
  <h3>
inc/admin/callbacks/Social.php CHANGED
@@ -9,7 +9,7 @@ function seopress_social_knowledge_type_callback()
9
  $selected = isset($options['seopress_social_knowledge_type']) ? $options['seopress_social_knowledge_type'] : null; ?>
10
 
11
  <select id="seopress_social_knowledge_type" name="seopress_social_option_name[seopress_social_knowledge_type]">
12
- <option <?php if ('None' == $selected) { ?>
13
  selected="selected"
14
  <?php } ?>
15
  value="none"><?php _e('None (will disable this feature)', 'wp-seopress'); ?>
@@ -20,7 +20,7 @@ function seopress_social_knowledge_type_callback()
20
  value="Person"><?php _e('Person', 'wp-seopress'); ?>
21
  </option>
22
  <option <?php if ('Organization' == $selected) { ?>
23
- selected="selected
24
  <?php } ?>
25
  value="Organization"><?php _e('Organization', 'wp-seopress'); ?>
26
  </option>
@@ -307,6 +307,8 @@ function seopress_social_facebook_img_callback()
307
 
308
  <p class="description"><?php _e('Minimum size: 200x200px, ideal ratio 1.91:1, 8Mb max. (eg: 1640x856px or 3280x1712px for retina screens)', 'wp-seopress'); ?>
309
  </p>
 
 
310
 
311
  <?php if (isset($options['seopress_social_facebook_img'])) {
312
  esc_attr($options['seopress_social_facebook_img']);
9
  $selected = isset($options['seopress_social_knowledge_type']) ? $options['seopress_social_knowledge_type'] : null; ?>
10
 
11
  <select id="seopress_social_knowledge_type" name="seopress_social_option_name[seopress_social_knowledge_type]">
12
+ <option <?php if ('none' == $selected) { ?>
13
  selected="selected"
14
  <?php } ?>
15
  value="none"><?php _e('None (will disable this feature)', 'wp-seopress'); ?>
20
  value="Person"><?php _e('Person', 'wp-seopress'); ?>
21
  </option>
22
  <option <?php if ('Organization' == $selected) { ?>
23
+ selected="selected"
24
  <?php } ?>
25
  value="Organization"><?php _e('Organization', 'wp-seopress'); ?>
26
  </option>
307
 
308
  <p class="description"><?php _e('Minimum size: 200x200px, ideal ratio 1.91:1, 8Mb max. (eg: 1640x856px or 3280x1712px for retina screens)', 'wp-seopress'); ?>
309
  </p>
310
+ <p class="description"><?php _e('If no default image is set, we‘ll use your site icon defined from the Customizer.', 'wp-seopress'); ?>
311
+ </p>
312
 
313
  <?php if (isset($options['seopress_social_facebook_img'])) {
314
  esc_attr($options['seopress_social_facebook_img']);
inc/admin/callbacks/Titles.php CHANGED
@@ -490,7 +490,8 @@ function seopress_titles_tax_titles_callback()
490
  echo seopress_get_empty_templates('tax', 'title');
491
  echo seopress_get_empty_templates('tax', 'description');
492
 
493
- foreach (seopress_get_taxonomies() as $seopress_tax_key => $seopress_tax_value) { ?>
 
494
  <h3>
495
  <?php echo $seopress_tax_value->labels->name; ?>
496
  <em>
490
  echo seopress_get_empty_templates('tax', 'title');
491
  echo seopress_get_empty_templates('tax', 'description');
492
 
493
+ $taxonomies = seopress_get_service('WordPressData')->getTaxonomies();
494
+ foreach ($taxonomies as $seopress_tax_key => $seopress_tax_value) { ?>
495
  <h3>
496
  <?php echo $seopress_tax_value->labels->name; ?>
497
  <em>
inc/admin/cron.php CHANGED
@@ -5,9 +5,10 @@ if ( ! defined('ABSPATH')) {
5
  }
6
 
7
  /**
8
- * Automatically ping Google / Bing daily for XML sitemaps
9
  *
10
  * @since 5.3.0
 
11
  *
12
  */
13
  function seopress_xml_sitemaps_ping_cron_action() {
@@ -31,6 +32,5 @@ function seopress_xml_sitemaps_ping_cron_action() {
31
  $args = apply_filters( 'seopress_sitemaps_xml_ping_args', $args);
32
 
33
  wp_remote_get('https://www.google.com/ping?sitemap='.$url, $args);
34
- wp_remote_get('https://www.bing.com/ping?sitemap='.$url, $args);
35
  }
36
  add_action('seopress_xml_sitemaps_ping_cron', 'seopress_xml_sitemaps_ping_cron_action');
5
  }
6
 
7
  /**
8
+ * Automatically ping Google daily for XML sitemaps
9
  *
10
  * @since 5.3.0
11
+ * @updated 5.8.0
12
  *
13
  */
14
  function seopress_xml_sitemaps_ping_cron_action() {
32
  $args = apply_filters( 'seopress_sitemaps_xml_ping_args', $args);
33
 
34
  wp_remote_get('https://www.google.com/ping?sitemap='.$url, $args);
 
35
  }
36
  add_action('seopress_xml_sitemaps_ping_cron', 'seopress_xml_sitemaps_ping_cron_action');
inc/admin/docs/DocsLinks.php CHANGED
@@ -29,6 +29,7 @@ function seopress_get_docs_links()
29
  'analytics' => ['Mesurez votre trafic avec Google Analytics' => 'https://www.seopress.org/fr/support/guides/debutez-avec-google-analytics/' . $utm],
30
  'search_console' => ['Ajouter votre site WordPress à l’index de Google' => 'https://www.seopress.org/fr/support/guides/ajouter-votre-site-a-google-search-console/' . $utm],
31
  'social' => ['Optimisez votre taux de clics sur les réseaux sociaux' => 'https://www.seopress.org/fr/support/guides/gerer-les-metas-facebook-open-graph-et-twitter-cards/' . $utm],
 
32
  ],
33
  'get_started_insights' => [
34
  'installation' => ['Activer votre licence SEOPress PRO / Insights' => 'https://www.seopress.org/fr/support/guides/activer-votre-licence-seopress-pro-insights/' . $utm3],
@@ -158,15 +159,16 @@ function seopress_get_docs_links()
158
  'analytics' => [__('Measure your traffic with Google Analytics', 'wp-seopress') => 'https://www.seopress.org/support/guides/google-analytics/' . $utm],
159
  'search_console' => [__('Add your WordPress site to Google’s index', 'wp-seopress') => 'https://www.seopress.org/support/guides/google-search-console/' . $utm],
160
  'social' => [__('Optimize your click-through rate on social networks', 'wp-seopress') => 'https://www.seopress.org/support/guides/manage-facebook-open-graph-and-twitter-cards-metas/' . $utm],
 
161
  ],
162
  'get_started_insights' => [
163
- 'installation' => ['Activate your SEOPress Insights license' => 'https://www.seopress.org/support/guides/activate-seopress-pro-license/' . $utm3],
164
- 'track_kw' => ['Track your keyword rankings in Google with SEOPress Insights' => 'https://www.seopress.org/support/guides/track-keyword-rankings-google-seopress-insights/' . $utm3],
165
- 'track_bl' => ['Monitor and analyse your Backlinks with SEOPress Insights' => 'https://www.seopress.org/support/guides/monitor-and-analyse-your-backlinks-with-seopress-insights/' . $utm3],
166
- 'find_kw' => ['Finding SEO keywords for your WordPress site' => 'https://www.seopress.org/support/tutorials/finding-seo-keywords-for-your-blog/' . $utm3],
167
- 'optimize_kw' => ['Optimize WordPress posts for a keyword' => 'https://www.seopress.org/support/tutorials/optimize-wordpress-posts-for-a-keyword/' . $utm3],
168
- 'audit_bl' => ['Audit the backlinks of your WordPress site (in WordPress)' => 'https://www.seopress.org/support/tutorials/audit-the-backlinks-of-your-wordpress-site-in-wordpress/' . $utm3],
169
- 'importance_bl' => ['The importance of backlinks' => 'https://www.seopress.org/support/tutorials/the-importance-of-backlinks/' . $utm3],
170
  ],
171
  'universal' => [
172
  'introduction' => 'https://www.seopress.org/features/page-builders-integration/' . $utm,
29
  'analytics' => ['Mesurez votre trafic avec Google Analytics' => 'https://www.seopress.org/fr/support/guides/debutez-avec-google-analytics/' . $utm],
30
  'search_console' => ['Ajouter votre site WordPress à l’index de Google' => 'https://www.seopress.org/fr/support/guides/ajouter-votre-site-a-google-search-console/' . $utm],
31
  'social' => ['Optimisez votre taux de clics sur les réseaux sociaux' => 'https://www.seopress.org/fr/support/guides/gerer-les-metas-facebook-open-graph-et-twitter-cards/' . $utm],
32
+ 'ebooks' => ['Ebooks gratuits pour apprendre le référencement' => 'https://www.seopress.org/fr/support/ebooks/' . $utm],
33
  ],
34
  'get_started_insights' => [
35
  'installation' => ['Activer votre licence SEOPress PRO / Insights' => 'https://www.seopress.org/fr/support/guides/activer-votre-licence-seopress-pro-insights/' . $utm3],
159
  'analytics' => [__('Measure your traffic with Google Analytics', 'wp-seopress') => 'https://www.seopress.org/support/guides/google-analytics/' . $utm],
160
  'search_console' => [__('Add your WordPress site to Google’s index', 'wp-seopress') => 'https://www.seopress.org/support/guides/google-search-console/' . $utm],
161
  'social' => [__('Optimize your click-through rate on social networks', 'wp-seopress') => 'https://www.seopress.org/support/guides/manage-facebook-open-graph-and-twitter-cards-metas/' . $utm],
162
+ 'ebooks' => [__('Free ebooks to learn SEO', 'wp-seopress') => 'https://www.seopress.org/support/ebooks/' . $utm],
163
  ],
164
  'get_started_insights' => [
165
+ 'installation' => [__('Activate your SEOPress Insights license', 'wp-seopress') => 'https://www.seopress.org/support/guides/activate-seopress-pro-license/' . $utm3],
166
+ 'track_kw' => [__('Track your keyword rankings in Google with SEOPress Insights', 'wp-seopress') => 'https://www.seopress.org/support/guides/track-keyword-rankings-google-seopress-insights/' . $utm3],
167
+ 'track_bl' => [__('Monitor and analyse your Backlinks with SEOPress Insights', 'wp-seopress') => 'https://www.seopress.org/support/guides/monitor-and-analyse-your-backlinks-with-seopress-insights/' . $utm3],
168
+ 'find_kw' => [__('Finding SEO keywords for your WordPress site', 'wp-seopress') => 'https://www.seopress.org/support/tutorials/finding-seo-keywords-for-your-blog/' . $utm3],
169
+ 'optimize_kw' => [__('Optimize WordPress posts for a keyword', 'wp-seopress') => 'https://www.seopress.org/support/tutorials/optimize-wordpress-posts-for-a-keyword/' . $utm3],
170
+ 'audit_bl' => [__('Audit the backlinks of your WordPress site (in WordPress)', 'wp-seopress') => 'https://www.seopress.org/support/tutorials/audit-the-backlinks-of-your-wordpress-site-in-wordpress/' . $utm3],
171
+ 'importance_bl' => [__('The importance of backlinks', 'wp-seopress') => 'https://www.seopress.org/support/tutorials/the-importance-of-backlinks/' . $utm3],
172
  ],
173
  'universal' => [
174
  'introduction' => 'https://www.seopress.org/features/page-builders-integration/' . $utm,
inc/admin/export/csv.php CHANGED
@@ -44,7 +44,7 @@ function seopress_metadata_export() {
44
 
45
  //Get taxonomies
46
  $seopress_get_taxonomies = [];
47
- foreach (seopress_get_taxonomies() as $seopress_tax_key => $seopress_tax_value) {
48
  $seopress_get_taxonomies[] = $seopress_tax_key;
49
  }
50
 
44
 
45
  //Get taxonomies
46
  $seopress_get_taxonomies = [];
47
+ foreach (seopress_get_service('WordPressData')->getTaxonomies() as $seopress_tax_key => $seopress_tax_value) {
48
  $seopress_get_taxonomies[] = $seopress_tax_key;
49
  }
50
 
inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php CHANGED
@@ -14,7 +14,9 @@ $data_attr = seopress_metaboxes_init();
14
  <?php if (is_plugin_active('wp-seopress-pro/seopress-pro.php') && version_compare(SEOPRESS_PRO_VERSION, '5.7') >= 0) { ?>
15
  <ul class="wrap-ca-list">
16
  <li><a href="#seopress-ca-tabs-2"><?php _e('Overview', 'wp-seopress'); ?></a></li>
17
- <li><a href="#seopress-ca-tabs-1"><?php _e('Inspect with Google', 'wp-seopress'); ?></a></li>
 
 
18
  </ul>
19
  <?php } ?>
20
  <div id="seopress-ca-tabs-2">
@@ -116,11 +118,13 @@ $data_attr = seopress_metaboxes_init();
116
  seopress_get_service('RenderContentAnalysis')->render($analyzes, $seopress_analysis_data);
117
  } ?>
118
  </div>
119
- <?php if (is_plugin_active('wp-seopress-pro/seopress-pro.php') && version_compare(SEOPRESS_PRO_VERSION, '5.7') >= 0) { ?>
120
- <div id="seopress-ca-tabs-1">
121
- <?php if (function_exists('seopress_get_service') && !empty($data_attr['current_id'])) {
122
- seopress_get_service('RenderGSCInspectUrl')->render($data_attr['current_id']);
123
- } ?>
124
- </div>
125
- <?php } ?>
 
 
126
  </div>
14
  <?php if (is_plugin_active('wp-seopress-pro/seopress-pro.php') && version_compare(SEOPRESS_PRO_VERSION, '5.7') >= 0) { ?>
15
  <ul class="wrap-ca-list">
16
  <li><a href="#seopress-ca-tabs-2"><?php _e('Overview', 'wp-seopress'); ?></a></li>
17
+ <?php if (seopress_get_toggle_option('inspect-url') ==='1') { ?>
18
+ <li><a href="#seopress-ca-tabs-1"><?php _e('Inspect with Google', 'wp-seopress'); ?></a></li>
19
+ <?php } ?>
20
  </ul>
21
  <?php } ?>
22
  <div id="seopress-ca-tabs-2">
118
  seopress_get_service('RenderContentAnalysis')->render($analyzes, $seopress_analysis_data);
119
  } ?>
120
  </div>
121
+ <?php if (is_plugin_active('wp-seopress-pro/seopress-pro.php') && version_compare(SEOPRESS_PRO_VERSION, '5.7') >= 0) {
122
+ if (seopress_get_toggle_option('inspect-url') === '1') { ?>
123
+ <div id="seopress-ca-tabs-1">
124
+ <?php if (function_exists('seopress_get_service') && !empty($data_attr['current_id'])) {
125
+ seopress_get_service('RenderGSCInspectUrl')->render($data_attr['current_id']);
126
+ } ?>
127
+ </div>
128
+ <?php }
129
+ } ?>
130
  </div>
inc/admin/metaboxes/admin-metaboxes.php CHANGED
@@ -227,18 +227,16 @@ function seopress_display_seo_metaboxe()
227
  $seopress_advanced_appearance_metaboxe_position_option = 'default';
228
  }
229
 
230
- if (function_exists('seopress_get_post_types')) {
231
- $seopress_get_post_types = seopress_get_service('WordPressData')->getPostTypes();
232
 
233
- $seopress_get_post_types = apply_filters('seopress_metaboxe_seo', $seopress_get_post_types);
234
 
235
- if (! empty($seopress_get_post_types) && ! seopress_get_service('EnqueueModuleMetabox')->canEnqueue()) {
236
- foreach ($seopress_get_post_types as $key => $value) {
237
- add_meta_box('seopress_cpt', __('SEO', 'wp-seopress'), 'seopress_cpt', $key, 'normal', $seopress_advanced_appearance_metaboxe_position_option);
238
- }
239
  }
240
- add_meta_box('seopress_cpt', __('SEO', 'wp-seopress'), 'seopress_cpt', 'seopress_404', 'normal', $seopress_advanced_appearance_metaboxe_position_option);
241
  }
 
242
  }
243
 
244
  function seopress_cpt($post)
@@ -269,6 +267,7 @@ function seopress_display_seo_metaboxe()
269
  if (isset($get_current_screen->is_block_editor)) {
270
  if ($get_current_screen->is_block_editor) {
271
  wp_enqueue_script('seopress-block-editor-js', SEOPRESS_ASSETS_DIR . '/js/seopress-block-editor' . $prefix . '.js', ['jquery'], SEOPRESS_VERSION, true);
 
272
  }
273
  }
274
  }
@@ -628,15 +627,14 @@ function seopress_display_ca_metaboxe()
628
  } else {
629
  $seopress_advanced_appearance_metaboxe_position_option = 'default';
630
  }
631
- if (function_exists('seopress_get_post_types')) {
632
- $seopress_get_post_types = seopress_get_service('WordPressData')->getPostTypes();
633
 
634
- $seopress_get_post_types = apply_filters('seopress_metaboxe_content_analysis', $seopress_get_post_types);
635
 
636
- if (! empty($seopress_get_post_types) && ! seopress_get_service('EnqueueModuleMetabox')->canEnqueue()) {
637
- foreach ($seopress_get_post_types as $key => $value) {
638
- add_meta_box('seopress_content_analysis', __('Content analysis', 'wp-seopress'), 'seopress_content_analysis', $key, 'normal', $seopress_advanced_appearance_metaboxe_position_option);
639
- }
 
640
  }
641
  }
642
  }
227
  $seopress_advanced_appearance_metaboxe_position_option = 'default';
228
  }
229
 
230
+ $seopress_get_post_types = seopress_get_service('WordPressData')->getPostTypes();
 
231
 
232
+ $seopress_get_post_types = apply_filters('seopress_metaboxe_seo', $seopress_get_post_types);
233
 
234
+ if (! empty($seopress_get_post_types) && ! seopress_get_service('EnqueueModuleMetabox')->canEnqueue()) {
235
+ foreach ($seopress_get_post_types as $key => $value) {
236
+ add_meta_box('seopress_cpt', __('SEO', 'wp-seopress'), 'seopress_cpt', $key, 'normal', $seopress_advanced_appearance_metaboxe_position_option);
 
237
  }
 
238
  }
239
+ add_meta_box('seopress_cpt', __('SEO', 'wp-seopress'), 'seopress_cpt', 'seopress_404', 'normal', $seopress_advanced_appearance_metaboxe_position_option);
240
  }
241
 
242
  function seopress_cpt($post)
267
  if (isset($get_current_screen->is_block_editor)) {
268
  if ($get_current_screen->is_block_editor) {
269
  wp_enqueue_script('seopress-block-editor-js', SEOPRESS_ASSETS_DIR . '/js/seopress-block-editor' . $prefix . '.js', ['jquery'], SEOPRESS_VERSION, true);
270
+ wp_enqueue_script( 'seopress-primary-category-js', SEOPRESS_ASSETS_DIR . '/js/build/primary-category-select.js', ['wp-hooks'], SEOPRESS_VERSION, true);
271
  }
272
  }
273
  }
627
  } else {
628
  $seopress_advanced_appearance_metaboxe_position_option = 'default';
629
  }
 
 
630
 
631
+ $seopress_get_post_types = seopress_get_service('WordPressData')->getPostTypes();
632
 
633
+ $seopress_get_post_types = apply_filters('seopress_metaboxe_content_analysis', $seopress_get_post_types);
634
+
635
+ if (! empty($seopress_get_post_types) && ! seopress_get_service('EnqueueModuleMetabox')->canEnqueue()) {
636
+ foreach ($seopress_get_post_types as $key => $value) {
637
+ add_meta_box('seopress_content_analysis', __('Content analysis', 'wp-seopress'), 'seopress_content_analysis', $key, 'normal', $seopress_advanced_appearance_metaboxe_position_option);
638
  }
639
  }
640
  }
inc/admin/metaboxes/admin-term-metaboxes.php CHANGED
@@ -160,34 +160,32 @@ function seopress_display_seo_term_metaboxe() {
160
  add_action('init', 'seopress_init_term_metabox', 11);
161
 
162
  function seopress_init_term_metabox() {
163
- if (function_exists('seopress_get_taxonomies')) {
164
- $seopress_get_taxonomies = seopress_get_taxonomies();
165
- $seopress_get_taxonomies = apply_filters('seopress_metaboxe_term_seo', $seopress_get_taxonomies);
166
-
167
- if ( ! empty($seopress_get_taxonomies)) {
168
- if (function_exists('seopress_advanced_appearance_term_metaboxe_position_option')) {
169
- switch (seopress_advanced_appearance_term_metaboxe_position_option()) {
170
- case 'high':
171
- $priority = 1;
172
- break;
173
- case 'default':
174
- $priority = 10;
175
- break;
176
- case 'low':
177
- $priority = 100;
178
- break;
179
- default:
180
- $priority = 10;
181
- break;
182
- }
183
- } else {
184
- $priority = 10;
185
- }
186
- $priority = apply_filters('seopress_metaboxe_term_seo_priority', $priority);
187
- foreach ($seopress_get_taxonomies as $key => $value) {
188
- add_action($key . '_edit_form', 'seopress_tax', $priority, 2); //Edit term page
189
- add_action('edit_' . $key, 'seopress_tax_save_term', $priority, 2); //Edit save term
190
  }
 
 
 
 
 
 
 
191
  }
192
  }
193
  }
160
  add_action('init', 'seopress_init_term_metabox', 11);
161
 
162
  function seopress_init_term_metabox() {
163
+ $seopress_get_taxonomies = seopress_get_service('WordPressData')->getTaxonomies();
164
+ $seopress_get_taxonomies = apply_filters('seopress_metaboxe_term_seo', $seopress_get_taxonomies);
165
+
166
+ if ( ! empty($seopress_get_taxonomies)) {
167
+ if (function_exists('seopress_advanced_appearance_term_metaboxe_position_option')) {
168
+ switch (seopress_advanced_appearance_term_metaboxe_position_option()) {
169
+ case 'high':
170
+ $priority = 1;
171
+ break;
172
+ case 'default':
173
+ $priority = 10;
174
+ break;
175
+ case 'low':
176
+ $priority = 100;
177
+ break;
178
+ default:
179
+ $priority = 10;
180
+ break;
 
 
 
 
 
 
 
 
 
181
  }
182
+ } else {
183
+ $priority = 10;
184
+ }
185
+ $priority = apply_filters('seopress_metaboxe_term_seo_priority', $priority);
186
+ foreach ($seopress_get_taxonomies as $key => $value) {
187
+ add_action($key . '_edit_form', 'seopress_tax', $priority, 2); //Edit term page
188
+ add_action('edit_' . $key, 'seopress_tax_save_term', $priority, 2); //Edit save term
189
  }
190
  }
191
  }
inc/admin/page-builders/gutenberg/inc/blocks/faq-block/build/index.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array('wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n', 'wp-polyfill'), 'version' => '31d0e88c486b722bec9c2b5c34fe4e45');
1
+ <?php return array('dependencies' => array('wp-block-editor', 'wp-blocks', 'wp-components', 'wp-i18n'), 'version' => '348968cf73cea0dd9b2b');
inc/admin/page-builders/gutenberg/inc/blocks/faq-block/build/index.css CHANGED
@@ -1,2 +1 @@
1
- .wpseopress-faqs-actions{border:1px solid #1e1e1e;padding:1rem;background:#fff;margin-top:1rem}.wpseopress-answer-meta .wp-block-wp-seopress-image .components-button.editor-post-featured-image__preview{text-align:left}.wpseopress-faq-cta{display:flex;justify-content:flex-end}.wpseopress-faqs-list-style button.components-button.is-primary,.wpseopress-faqs-title-wrapper button.components-button.is-primary,.wpseopress-faqs-image-size button.components-button.is-primary{background-color:#007cba;color:#ffffff;border-color:#007cba;box-shadow:inset 0 0 0 1px #007cba}.wpseopress-faqs-list-style button.components-button.is-primary:hover:not(:disabled),.wpseopress-faqs-title-wrapper button.components-button.is-primary:hover:not(:disabled),.wpseopress-faqs-image-size button.components-button.is-primary:hover:not(:disabled){color:#ffffff}.components-panel__body>p{margin:15px 0 0 0}
2
-
1
+ .wpseopress-faqs-actions{border:1px solid #1e1e1e;padding:1rem;background:#fff;margin-top:1rem}.wpseopress-answer-meta .wp-block-wp-seopress-image .components-button.editor-post-featured-image__preview{text-align:left}.wpseopress-faq-cta{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.wpseopress-faqs-list-style button.components-button.is-primary,.wpseopress-faqs-title-wrapper button.components-button.is-primary,.wpseopress-faqs-image-size button.components-button.is-primary{background-color:#007cba;color:#fff;border-color:#007cba;-webkit-box-shadow:inset 0 0 0 1px #007cba;box-shadow:inset 0 0 0 1px #007cba}.wpseopress-faqs-list-style button.components-button.is-primary:hover:not(:disabled),.wpseopress-faqs-title-wrapper button.components-button.is-primary:hover:not(:disabled),.wpseopress-faqs-image-size button.components-button.is-primary:hover:not(:disabled){color:#fff}.components-panel__body>p{margin:15px 0 0 0}
 
inc/admin/page-builders/gutenberg/inc/blocks/faq-block/build/index.js CHANGED
@@ -1 +1 @@
1
- (window.webpackJsonp=window.webpackJsonp||[]).push([[1],{9:function(e,t,n){}}]),function(e){function t(t){for(var r,o,i=t[0],c=t[1],l=t[2],p=0,m=[];p<i.length;p++)o=i[p],Object.prototype.hasOwnProperty.call(s,o)&&s[o]&&m.push(s[o][0]),s[o]=0;for(r in c)Object.prototype.hasOwnProperty.call(c,r)&&(e[r]=c[r]);for(u&&u(t);m.length;)m.shift()();return a.push.apply(a,l||[]),n()}function n(){for(var e,t=0;t<a.length;t++){for(var n=a[t],r=!0,i=1;i<n.length;i++){var c=n[i];0!==s[c]&&(r=!1)}r&&(a.splice(t--,1),e=o(o.s=n[0]))}return e}var r={},s={0:0},a=[];function o(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,o),n.l=!0,n.exports}o.m=e,o.c=r,o.d=function(e,t,n){o.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},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,t){if(1&t&&(e=o(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(o.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)o.d(n,r,function(t){return e[t]}.bind(null,r));return n},o.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(t,"a",t),t},o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},o.p="";var i=window.webpackJsonp=window.webpackJsonp||[],c=i.push.bind(i);i.push=t,i=i.slice();for(var l=0;l<i.length;l++)t(i[l]);var u=c;a.push([14,1]),n()}([function(e,t){!function(){e.exports=this.wp.element}()},function(e,t){!function(){e.exports=this.wp.components}()},function(e,t){!function(){e.exports=this.wp.blockEditor}()},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(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(10),s=n(11),a=n(12),o=n(13);e.exports=function(e){return r(e)||s(e)||a(e)||o()}},function(e,t){!function(){e.exports=this.wp.blocks}()},function(e,t){!function(){e.exports=this.wp.i18n}()},function(e,t,n){},,function(e,t,n){var r=n(3);e.exports=function(e){if(Array.isArray(e))return r(e)}},function(e,t){e.exports=function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}},function(e,t,n){var r=n(3);e.exports=function(e,t){if(e){if("string"==typeof e)return r(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?r(e,t):void 0}}},function(e,t){e.exports=function(){throw new TypeError("Invalid attempt to spread 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);n(8),n(9);var r=n(4),s=n.n(r),a=n(5),o=n.n(a),i=n(0),c=n(1),l=n(2),u=window.wp,p=u.data.withSelect,m=(u.element.Component,u.components),f=m.Spinner,b=m.Button,d=(m.ResponsiveWrapper,u.compose.compose),w=u.i18n.__,O=["image"];var g=d(p((function(e,t){return{image:t.value?e("core").getMedia(t.value):null}})))((function(e){var t=e.value,n=e.image,r=Object(i.createElement)("p",null,w("To edit the background image, you need permission to upload media.","wp-seopress"));return Object(i.createElement)("div",{className:"wp-block-wp-seopress-image"},Object(i.createElement)(l.MediaUploadCheck,{fallback:r},Object(i.createElement)(l.MediaUpload,{title:w("Set Image","wp-seopress"),onSelect:function(t){e.onSelect(t.id,e.index)},allowedTypes:O,value:t,render:function(r){var s=r.open,a=function(t){var n=null;try{if(null!=t&&((n={}).source_url=t.guid.raw,null!=t.media_details.sizes))switch(n=null,e.imageSize){case"thumbnail":n=null!=t?t.media_details.sizes.thumbnail:null;break;case"medium":n=null!=t?t.media_details.sizes.medium:null;break;case"large":n=null!=t?null!=t.media_details.sizes.large?t.media_details.sizes.large:t.media_details.sizes.medium_large:null;break;default:n=null!=t?t.media_details.sizes.full:null}return n}catch(e){return n}}(n);return Object(i.createElement)(b,{className:t?"editor-post-featured-image__preview":"editor-post-featured-image__toggle",onClick:s},!t&&w("Set Image","wp-seopress"),!!t&&!n&&Object(i.createElement)(f,null),!!t&&n&&a&&a.source_url&&Object(i.createElement)("img",{src:a.source_url,alt:w("Set Image","wp-seopress")}))}})),!!t&&Object(i.createElement)(l.MediaUploadCheck,null,Object(i.createElement)(b,{onClick:function(){e.onRemoveImage(e.index)},isLink:!0,isDestructive:!0},w("Remove Image","wp-seopress"))))}));function y(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function j(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?y(Object(n),!0).forEach((function(t){s()(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):y(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}var v=wp.element,h=(v.Component,v.Fragment),E=wp.i18n,S=E.__,A=E._x;var k=(0,wp.compose.compose)((0,wp.data.withSelect)((function(e,t){var n=t.attributes,r=e("core").getMedia,s=n.selectedImageId;return{selectedImage:s?r(s):0}})))((function(e){var t=e.attributes,n=t.listStyle,r=t.titleWrapper,s=t.imageSize,a=t.showFAQScheme,u=t.showAccordion,p=function(){return"none"===t.listStyle&&t.faqs.map((function(e,n){return Object(i.createElement)("div",{key:n,className:"wpseopress-faqs-area"},Object(i.createElement)("div",{className:"wpseopress-faq"},Object(i.createElement)(l.RichText,{tagName:t.titleWrapper,className:"wpseopress-faq-question",placeholder:S("Question...","wp-seopress"),value:e?e.question:"",onChange:function(e){return f(e,n)}}),Object(i.createElement)("div",{className:"wpseopress-answer-meta"},Object(i.createElement)(g,{value:e?e.image:"",onSelect:d,onRemoveImage:w,imageSize:t.imageSize,index:n}),Object(i.createElement)(l.RichText,{tagName:"p",className:"wpseopress-faq-answer",placeholder:S("Answer...","wp-seopress"),value:e?e.answer:"",onChange:function(e){return b(e,n)}}))),Object(i.createElement)("div",{className:"wpseopress-faq-cta"},Object(i.createElement)("button",{className:"components-button is-tertiary is-destructive",value:S("Remove","wp-seopress"),onClick:function(){return m(n)}},S("Remove","wp-seopress"))))}))||("ul"===t.listStyle||"ol"===t.listStyle)&&t.faqs.map((function(e,n){return Object(i.createElement)("li",{key:n,className:"wpseopress-faqs-area"},Object(i.createElement)("div",{className:"wpseopress-faq"},Object(i.createElement)(l.RichText,{tagName:t.titleWrapper,className:"wpseopress-faq-question",placeholder:S("Question...","wp-seopress"),value:e?e.question:"",onChange:function(e){return f(e,n)}}),Object(i.createElement)("div",{className:"wpseopress-answer-meta"},Object(i.createElement)(g,{value:e?e.image:"",onSelect:d,onRemoveImage:w,imageSize:t.imageSize,index:n}),Object(i.createElement)(l.RichText,{tagName:"div",className:"wpseopress-faq-answer",placeholder:S("Answer...","wp-seopress"),value:e?e.answer:"",onChange:function(e){return b(e,n)}}))),Object(i.createElement)("div",{className:"wpseopress-faq-cta"},Object(i.createElement)("button",{className:"components-button is-tertiary is-destructive",value:S("Remove","wp-seopress"),onClick:function(){return m(n)}},S("Remove","wp-seopress"))))}))},m=function(n){var r=t.faqs.filter((function(e,t){return t!==n}));e.setAttributes({faqs:r})},f=function(n,r){var s=t.faqs.map((function(e,t){return t!==r?e:j(j({},e),{},{question:n})}));e.setAttributes({faqs:s})},b=function(n,r){var s=t.faqs.map((function(e,t){return t!==r?e:j(j({},e),{},{answer:n})}));e.setAttributes({faqs:s})},d=function(n,r){var s=t.faqs.map((function(e,t){return t!==r?e:j(j({},e),{},{image:n})}));e.setAttributes({faqs:s})},w=function(n){var r=t.faqs.map((function(e,t){return t!==n?e:j(j({},e),{},{image:null})}));e.setAttributes({faqs:r})},O=Object(i.createElement)(l.InspectorControls,null,Object(i.createElement)(c.PanelBody,{title:S("FAQ Settings","wp-seopress")},Object(i.createElement)("p",null,S("List Style","wp-seopress")),Object(i.createElement)(c.PanelRow,{className:"wpseopress-faqs-list-style"},Object(i.createElement)(c.ButtonGroup,null,Object(i.createElement)(c.Button,{isSecondary:!0,isPrimary:"none"==n,onClick:function(t){e.setAttributes({listStyle:"none"})}},A("NONE","Div tag List","wp-seopress")),Object(i.createElement)(c.Button,{isSecondary:!0,isPrimary:"ol"==n,onClick:function(t){e.setAttributes({listStyle:"ol"})}},A("OL","Numbered List","wp-seopress")),Object(i.createElement)(c.Button,{isSecondary:!0,isPrimary:"ul"==n,onClick:function(t){e.setAttributes({listStyle:"ul"})}},A("UL","Unordered List","wp-seopress")))),Object(i.createElement)("p",null,S("Title Wrapper","wp-seopress")),Object(i.createElement)(c.PanelRow,{className:"wpseopress-faqs-title-wrapper"},Object(i.createElement)(c.ButtonGroup,null,Object(i.createElement)(c.Button,{isSecondary:!0,isPrimary:"h2"==r,onClick:function(t){e.setAttributes({titleWrapper:"h2"})}},A("H2","H2 title tag","wp-seopress")),Object(i.createElement)(c.Button,{isSecondary:!0,isPrimary:"h3"==r,onClick:function(t){e.setAttributes({titleWrapper:"h3"})}},A("H3","H3 title tag","wp-seopress")),Object(i.createElement)(c.Button,{isSecondary:!0,isPrimary:"h4"==r,onClick:function(t){e.setAttributes({titleWrapper:"h4"})}},A("H4","H4 title tag","wp-seopress")),Object(i.createElement)(c.Button,{isSecondary:!0,isPrimary:"h5"==r,onClick:function(t){e.setAttributes({titleWrapper:"h5"})}},A("H5","H5 title tag","wp-seopress")),Object(i.createElement)(c.Button,{isSecondary:!0,isPrimary:"h6"==r,onClick:function(t){e.setAttributes({titleWrapper:"h6"})}},A("H6","H6 title tag","wp-seopress")),Object(i.createElement)(c.Button,{isSecondary:!0,isPrimary:"p"==r,onClick:function(t){e.setAttributes({titleWrapper:"p"})}},A("P","P title tag","wp-seopress")),Object(i.createElement)(c.Button,{isSecondary:!0,isPrimary:"div"==r,onClick:function(t){e.setAttributes({titleWrapper:"div"})}},A("DIV","DIV title tag","wp-seopress")))),Object(i.createElement)("p",null,S("Image Size","wp-seopress")),Object(i.createElement)(c.PanelRow,{className:"wpseopress-faqs-image-size"},Object(i.createElement)(c.ButtonGroup,null,Object(i.createElement)(c.Button,{isSecondary:!0,isPrimary:"thumbnail"==s,onClick:function(t){e.setAttributes({imageSize:"thumbnail"})}},A("S","Thubmnail Size","wp-seopress")),Object(i.createElement)(c.Button,{isSecondary:!0,isPrimary:"medium"==s,onClick:function(t){e.setAttributes({imageSize:"medium"})}},A("M","Medium Size","wp-seopress")),Object(i.createElement)(c.Button,{isSecondary:!0,isPrimary:"large"==s,onClick:function(t){e.setAttributes({imageSize:"large"})}},A("L","Large Size","wp-seopress")),Object(i.createElement)(c.Button,{isSecondary:!0,isPrimary:"full"==s,onClick:function(t){e.setAttributes({imageSize:"full"})}},A("XL","Original Size","wp-seopress")))),Object(i.createElement)("p",null,S("SEO Settings","wp-seopress")),Object(i.createElement)(c.PanelRow,null,Object(i.createElement)(c.ToggleControl,{label:S("Enable FAQ Schema","wp-seopress"),checked:!!a,onChange:function(t){e.setAttributes({showFAQScheme:!a})}})),Object(i.createElement)("p",null,S("Display","wp-seopress")),Object(i.createElement)(c.PanelRow,null,Object(i.createElement)(c.ToggleControl,{label:S("Enable accordion","wp-seopress"),checked:!!u,onChange:function(t){e.setAttributes({showAccordion:!u})}}))));return Object(i.createElement)(h,null,O,Object(i.createElement)("div",{className:"wpseopress-faqs"},"ul"===n&&Object(i.createElement)("ul",null,p()),"ol"===n&&Object(i.createElement)("ol",null,p()),"none"===n&&p(),Object(i.createElement)("div",{className:"wpseopress-faqs-actions"},Object(i.createElement)("button",{type:"button",title:S("Add FAQ","wp-seopress"),className:"add-faq components-button is-secondary",onClick:function(n){n.preventDefault(),e.setAttributes({faqs:[].concat(o()(t.faqs),[{question:"",answer:"",image:""}])})}},S("Add FAQ","wp-seopress")))))})),P=n(6),q=n(7);Object(P.registerBlockType)("wpseopress/faq-block",{title:Object(q.__)("FAQ","wp-seopress"),icon:"index-card",category:"wpseopress",example:{},edit:k,save:function(){return null}})}]);
1
+ !function(){"use strict";var e,t={642:function(){var e=window.wp.components,t=window.wp.blockEditor,n=window.wp,r=n.data.withSelect,a=(n.element.Component,n.components),s=a.Spinner,i=a.Button,o=(a.ResponsiveWrapper,n.compose.compose),__=n.i18n.__,l=["image"],c=o(r((function(e,t){return{image:t.value?e("core").getMedia(t.value):null}})))((function(e){var n=e.value,r=e.image,a=React.createElement("p",null,__("To edit the background image, you need permission to upload media.","wp-seopress"));return React.createElement("div",{className:"wp-block-wp-seopress-image"},React.createElement(t.MediaUploadCheck,{fallback:a},React.createElement(t.MediaUpload,{title:__("Set Image","wp-seopress"),onSelect:function(t){e.onSelect(t.id,e.index)},allowedTypes:l,value:n,render:function(t){var a=t.open,o=function(t){var n=null;try{if(null!=t&&((n={}).source_url=t.guid.raw,null!=t.media_details.sizes))switch(n=null,e.imageSize){case"thumbnail":n=null!=t?t.media_details.sizes.thumbnail:null;break;case"medium":n=null!=t?t.media_details.sizes.medium:null;break;case"large":n=null!=t?null!=t.media_details.sizes.large?t.media_details.sizes.large:t.media_details.sizes.medium_large:null;break;default:n=null!=t?t.media_details.sizes.full:null}return n}catch(e){return n}}(r);return React.createElement(i,{className:n?"editor-post-featured-image__preview":"editor-post-featured-image__toggle",onClick:a},!n&&__("Set Image","wp-seopress"),!!n&&!r&&React.createElement(s,null),!!n&&r&&o&&o.source_url&&React.createElement("img",{src:o.source_url,alt:__("Set Image","wp-seopress")}))}})),!!n&&React.createElement(t.MediaUploadCheck,null,React.createElement(i,{onClick:function(){e.onRemoveImage(e.index)},isLink:!0,isDestructive:!0},__("Remove Image","wp-seopress"))))}));function u(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function p(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){m(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}function m(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function f(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 d=wp.element.Fragment,w=wp.i18n,g=w.__,_x=w._x,b=(0,wp.compose.compose)((0,wp.data.withSelect)((function(e,t){var n=t.attributes,r=e("core").getMedia,a=n.selectedImageId;return{selectedImage:a?r(a):0}})))((function(n){var r=n.attributes,a=r.listStyle,s=r.titleWrapper,i=r.imageSize,o=r.showFAQScheme,l=r.showAccordion,u=r.isProActive,m=function(){return"none"===r.listStyle&&r.faqs.map((function(e,n){return React.createElement("div",{key:n,className:"wpseopress-faqs-area"},React.createElement("div",{className:"wpseopress-faq"},React.createElement(t.RichText,{tagName:r.titleWrapper,className:"wpseopress-faq-question",placeholder:g("Question...","wp-seopress"),value:e?e.question:"",onChange:function(e){return b(e,n)}}),React.createElement("div",{className:"wpseopress-answer-meta"},React.createElement(c,{value:e?e.image:"",onSelect:v,onRemoveImage:y,imageSize:r.imageSize,index:n}),React.createElement(t.RichText,{tagName:"p",className:"wpseopress-faq-answer",placeholder:g("Answer...","wp-seopress"),value:e?e.answer:"",onChange:function(e){return R(e,n)}}))),React.createElement("div",{className:"wpseopress-faq-cta"},React.createElement("button",{className:"components-button is-tertiary is-destructive",value:g("Remove","wp-seopress"),onClick:function(){return w(n)}},g("Remove","wp-seopress"))))}))||("ul"===r.listStyle||"ol"===r.listStyle)&&r.faqs.map((function(e,n){return React.createElement("li",{key:n,className:"wpseopress-faqs-area"},React.createElement("div",{className:"wpseopress-faq"},React.createElement(t.RichText,{tagName:r.titleWrapper,className:"wpseopress-faq-question",placeholder:g("Question...","wp-seopress"),value:e?e.question:"",onChange:function(e){return b(e,n)}}),React.createElement("div",{className:"wpseopress-answer-meta"},React.createElement(c,{value:e?e.image:"",onSelect:v,onRemoveImage:y,imageSize:r.imageSize,index:n}),React.createElement(t.RichText,{tagName:"div",className:"wpseopress-faq-answer",placeholder:g("Answer...","wp-seopress"),value:e?e.answer:"",onChange:function(e){return R(e,n)}}))),React.createElement("div",{className:"wpseopress-faq-cta"},React.createElement("button",{className:"components-button is-tertiary is-destructive",value:g("Remove","wp-seopress"),onClick:function(){return w(n)}},g("Remove","wp-seopress"))))}))},w=function(e){var t=r.faqs.filter((function(t,n){return n!==e}));n.setAttributes({faqs:t})},b=function(e,t){var a=r.faqs.map((function(n,r){return r!==t?n:p(p({},n),{},{question:e})}));n.setAttributes({faqs:a})},R=function(e,t){var a=r.faqs.map((function(n,r){return r!==t?n:p(p({},n),{},{answer:e})}));n.setAttributes({faqs:a})},v=function(e,t){var a=r.faqs.map((function(n,r){return r!==t?n:p(p({},n),{},{image:e})}));n.setAttributes({faqs:a})},y=function(e){var t=r.faqs.map((function(t,n){return n!==e?t:p(p({},t),{},{image:null})}));n.setAttributes({faqs:t})},E=React.createElement(t.InspectorControls,null,React.createElement(e.PanelBody,{title:g("FAQ Settings","wp-seopress")},React.createElement("p",null,g("List Style","wp-seopress")),React.createElement(e.PanelRow,{className:"wpseopress-faqs-list-style"},React.createElement(e.ButtonGroup,null,React.createElement(e.Button,{isSecondary:!0,isPrimary:"none"==a,onClick:function(e){n.setAttributes({listStyle:"none"})}},_x("NONE","Div tag List","wp-seopress")),React.createElement(e.Button,{isSecondary:!0,isPrimary:"ol"==a,onClick:function(e){n.setAttributes({listStyle:"ol"})}},_x("OL","Numbered List","wp-seopress")),React.createElement(e.Button,{isSecondary:!0,isPrimary:"ul"==a,onClick:function(e){n.setAttributes({listStyle:"ul"})}},_x("UL","Unordered List","wp-seopress")))),React.createElement("p",null,g("Title Wrapper","wp-seopress")),React.createElement(e.PanelRow,{className:"wpseopress-faqs-title-wrapper"},React.createElement(e.ButtonGroup,null,React.createElement(e.Button,{isSecondary:!0,isPrimary:"h2"==s,onClick:function(e){n.setAttributes({titleWrapper:"h2"})}},_x("H2","H2 title tag","wp-seopress")),React.createElement(e.Button,{isSecondary:!0,isPrimary:"h3"==s,onClick:function(e){n.setAttributes({titleWrapper:"h3"})}},_x("H3","H3 title tag","wp-seopress")),React.createElement(e.Button,{isSecondary:!0,isPrimary:"h4"==s,onClick:function(e){n.setAttributes({titleWrapper:"h4"})}},_x("H4","H4 title tag","wp-seopress")),React.createElement(e.Button,{isSecondary:!0,isPrimary:"h5"==s,onClick:function(e){n.setAttributes({titleWrapper:"h5"})}},_x("H5","H5 title tag","wp-seopress")),React.createElement(e.Button,{isSecondary:!0,isPrimary:"h6"==s,onClick:function(e){n.setAttributes({titleWrapper:"h6"})}},_x("H6","H6 title tag","wp-seopress")),React.createElement(e.Button,{isSecondary:!0,isPrimary:"p"==s,onClick:function(e){n.setAttributes({titleWrapper:"p"})}},_x("P","P title tag","wp-seopress")),React.createElement(e.Button,{isSecondary:!0,isPrimary:"div"==s,onClick:function(e){n.setAttributes({titleWrapper:"div"})}},_x("DIV","DIV title tag","wp-seopress")))),React.createElement("p",null,g("Image Size","wp-seopress")),React.createElement(e.PanelRow,{className:"wpseopress-faqs-image-size"},React.createElement(e.ButtonGroup,null,React.createElement(e.Button,{isSecondary:!0,isPrimary:"thumbnail"==i,onClick:function(e){n.setAttributes({imageSize:"thumbnail"})}},_x("S","Thubmnail Size","wp-seopress")),React.createElement(e.Button,{isSecondary:!0,isPrimary:"medium"==i,onClick:function(e){n.setAttributes({imageSize:"medium"})}},_x("M","Medium Size","wp-seopress")),React.createElement(e.Button,{isSecondary:!0,isPrimary:"large"==i,onClick:function(e){n.setAttributes({imageSize:"large"})}},_x("L","Large Size","wp-seopress")),React.createElement(e.Button,{isSecondary:!0,isPrimary:"full"==i,onClick:function(e){n.setAttributes({imageSize:"full"})}},_x("XL","Original Size","wp-seopress")))),u&&React.createElement(React.Fragment,null,React.createElement("p",null,g("SEO Settings","wp-seopress")),React.createElement(e.PanelRow,null,React.createElement(e.ToggleControl,{label:g("Enable FAQ Schema","wp-seopress"),checked:!!o,onChange:function(e){n.setAttributes({showFAQScheme:!o})}}))),React.createElement("p",null,g("Display","wp-seopress")),React.createElement(e.PanelRow,null,React.createElement(e.ToggleControl,{label:g("Enable accordion","wp-seopress"),checked:!!l,onChange:function(e){n.setAttributes({showAccordion:!l})}}))));return React.createElement(d,null,E,React.createElement("div",{className:"wpseopress-faqs"},"ul"===a&&React.createElement("ul",null,m()),"ol"===a&&React.createElement("ol",null,m()),"none"===a&&m(),React.createElement("div",{className:"wpseopress-faqs-actions"},React.createElement("button",{type:"button",title:g("Add FAQ","wp-seopress"),className:"add-faq components-button is-secondary",onClick:function(e){var t;e.preventDefault(),n.setAttributes({faqs:[].concat((t=r.faqs,function(e){if(Array.isArray(e))return f(e)}(t)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(t)||function(e,t){if(e){if("string"==typeof e)return f(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?f(e,t):void 0}}(t)||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.")}()),[{question:"",answer:"",image:""}])})}},g("Add FAQ","wp-seopress")))))})),R=window.wp.blocks,v=window.wp.i18n;(0,R.registerBlockType)("wpseopress/faq-block",{title:(0,v.__)("FAQ","wp-seopress"),icon:"index-card",category:"wpseopress",example:{},edit:b,save:function(){return null}})}},n={};function r(e){var a=n[e];if(void 0!==a)return a.exports;var s=n[e]={exports:{}};return t[e](s,s.exports,r),s.exports}r.m=t,e=[],r.O=function(t,n,a,s){if(!n){var i=1/0;for(u=0;u<e.length;u++){n=e[u][0],a=e[u][1],s=e[u][2];for(var o=!0,l=0;l<n.length;l++)(!1&s||i>=s)&&Object.keys(r.O).every((function(e){return r.O[e](n[l])}))?n.splice(l--,1):(o=!1,s<i&&(i=s));if(o){e.splice(u--,1);var c=a();void 0!==c&&(t=c)}}return t}s=s||0;for(var u=e.length;u>0&&e[u-1][2]>s;u--)e[u]=e[u-1];e[u]=[n,a,s]},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},function(){var e={826:0,431:0};r.O.j=function(t){return 0===e[t]};var t=function(t,n){var a,s,i=n[0],o=n[1],l=n[2],c=0;if(i.some((function(t){return 0!==e[t]}))){for(a in o)r.o(o,a)&&(r.m[a]=o[a]);if(l)var u=l(r)}for(t&&t(n);c<i.length;c++)s=i[c],r.o(e,s)&&e[s]&&e[s][0](),e[s]=0;return r.O(u)},n=self.webpackChunkwp_seopress=self.webpackChunkwp_seopress||[];n.forEach(t.bind(null,0)),n.push=t.bind(null,n.push.bind(n))}();var a=r.O(void 0,[431],(function(){return r(642)}));a=r.O(a)}();
inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js CHANGED
@@ -1,4 +1,4 @@
1
- const { Component, Fragment } = wp.element
2
 
3
  import {
4
  PanelBody,
@@ -18,7 +18,7 @@ const { withSelect } = wp.data
18
 
19
  function WPSeopress_FAQ(props) {
20
  const { attributes } = props
21
- const { listStyle, titleWrapper, imageSize, showFAQScheme, showAccordion } = attributes
22
 
23
  const showFAQs = () => {
24
  return (
@@ -352,18 +352,22 @@ function WPSeopress_FAQ(props) {
352
  </Button>
353
  </ButtonGroup>
354
  </PanelRow>
355
- <p>{__('SEO Settings', 'wp-seopress')}</p>
356
- <PanelRow>
357
- <ToggleControl
358
- label={__('Enable FAQ Schema', 'wp-seopress')}
359
- checked={!!showFAQScheme}
360
- onChange={(e) => {
361
- props.setAttributes({
362
- showFAQScheme: !showFAQScheme,
363
- })
364
- }}
365
- />
366
- </PanelRow>
 
 
 
 
367
  <p>{__('Display', 'wp-seopress')}</p>
368
  <PanelRow>
369
  <ToggleControl
1
+ const { Fragment } = wp.element
2
 
3
  import {
4
  PanelBody,
18
 
19
  function WPSeopress_FAQ(props) {
20
  const { attributes } = props
21
+ const { listStyle, titleWrapper, imageSize, showFAQScheme, showAccordion, isProActive } = attributes
22
 
23
  const showFAQs = () => {
24
  return (
352
  </Button>
353
  </ButtonGroup>
354
  </PanelRow>
355
+ {isProActive &&
356
+ <>
357
+ <p>{__('SEO Settings', 'wp-seopress')}</p>
358
+ <PanelRow>
359
+ <ToggleControl
360
+ label={__('Enable FAQ Schema', 'wp-seopress')}
361
+ checked={!!showFAQScheme}
362
+ onChange={(e) => {
363
+ props.setAttributes({
364
+ showFAQScheme: !showFAQScheme,
365
+ })
366
+ }}
367
+ />
368
+ </PanelRow>
369
+ </>
370
+ }
371
  <p>{__('Display', 'wp-seopress')}</p>
372
  <PanelRow>
373
  <ToggleControl
inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/register-block.php CHANGED
@@ -22,7 +22,7 @@ function seopress_register_block_faq($asset_file)
22
 
23
  register_block_type('wpseopress/faq-block', [
24
  'editor_script' => 'wp-seopress-gutenberg-faq-block',
25
- 'editor_style' => 'wp-seopress-gutenberg-faq-block',
26
  'attributes' => array(
27
  'faqs' => array(
28
  'type' => 'array',
@@ -50,6 +50,10 @@ function seopress_register_block_faq($asset_file)
50
  'showAccordion' => array(
51
  'type' => 'boolean',
52
  'default' => false
 
 
 
 
53
  )
54
  ),
55
  'render_callback' => 'seopress_block_faq_render_frontend',
@@ -189,10 +193,8 @@ function seopress_block_faq_render_frontend($attributes)
189
  <?php endforeach; ?>
190
  <?php echo $listStyleCloseTag;
191
 
192
- //FAQ Schema
193
- $seopress_get_toggle_rich_snippets_option = get_option('seopress_toggle');
194
- $seopress_get_toggle_rich_snippets_option = isset($seopress_get_toggle_rich_snippets_option['toggle-rich-snippets']) ? $seopress_get_toggle_rich_snippets_option['toggle-rich-snippets'] : '0';
195
- if ('0' != $seopress_get_toggle_rich_snippets_option && (int) $attributes['showFAQScheme']) {
196
  $schema = '<script type="application/ld+json">
197
  {
198
  "@context": "https://schema.org",
22
 
23
  register_block_type('wpseopress/faq-block', [
24
  'editor_script' => 'wp-seopress-gutenberg-faq-block',
25
+ 'editor_style' => 'wp-seopress-gutenberg-faq-block',
26
  'attributes' => array(
27
  'faqs' => array(
28
  'type' => 'array',
50
  'showAccordion' => array(
51
  'type' => 'boolean',
52
  'default' => false
53
+ ),
54
+ 'isProActive' => array(
55
+ 'type' => 'boolean',
56
+ 'default' => is_plugin_active( 'wp-seopress-pro/seopress-pro.php' )
57
  )
58
  ),
59
  'render_callback' => 'seopress_block_faq_render_frontend',
193
  <?php endforeach; ?>
194
  <?php echo $listStyleCloseTag;
195
 
196
+ // FAQ Schema
197
+ if ( (bool) $attributes['isProActive'] && (int) $attributes['showFAQScheme'] ) {
 
 
198
  $schema = '<script type="application/ld+json">
199
  {
200
  "@context": "https://schema.org",
inc/admin/sections/Sitemaps.php CHANGED
@@ -56,14 +56,13 @@ function print_section_info_xml_sitemap_general()
56
  </p>
57
 
58
  <pre>location ~ ([^/]*)sitemap(.*)\.x(m|s)l$ {
59
- ## SEOPress
60
- rewrite ^.*/sitemaps\.xml$ /index.php?seopress_sitemap=1 last;
61
- rewrite ^.*/sitemaps/news.xml$ /index.php?seopress_news=$1 last;
62
- rewrite ^.*/sitemaps/video.xml$ /index.php?seopress_video=$1 last;
63
- rewrite ^.*/sitemaps/author.xml$ /index.php?seopress_author=$1 last;
64
- rewrite ^.*/sitemaps_xsl\.xsl$ /index.php?seopress_sitemap_xsl=1 last;
65
- rewrite ^.*/sitemaps_video_xsl\.xsl$ /index.php?seopress_sitemap_video_xsl=1 last;
66
- rewrite ^.*/sitemaps/([^/]+?)-sitemap([0-9]+)?.xml$ /index.php?seopress_cpt=$1&seopress_paged=$2 last;
67
  }</pre>
68
  </div>
69
  <?php }
56
  </p>
57
 
58
  <pre>location ~ ([^/]*)sitemap(.*)\.x(m|s)l$ {
59
+ ## SEOPress
60
+ rewrite ^.*/sitemaps\.xml$ /index.php?seopress_sitemap=1 last;
61
+ rewrite ^.*/news.xml$ /index.php?seopress_news=$1 last;
62
+ rewrite ^.*/video.xml$ /index.php?seopress_video=$1 last;
63
+ rewrite ^.*/author.xml$ /index.php?seopress_author=$1 last;
64
+ rewrite ^.*/sitemaps_xsl\.xsl$ /index.php?seopress_sitemap_xsl=1 last;
65
+ rewrite ^.*/([^/]+?)-sitemap([0-9]+)?.xml$ /index.php?seopress_cpt=$1&seopress_paged=$2 last;
 
66
  }</pre>
67
  </div>
68
  <?php }
inc/admin/sections/Social.php CHANGED
@@ -84,6 +84,9 @@ function print_section_info_social_facebook()
84
  <li>
85
  <?php _e('Global OG Image set in SEO > Social > Open Graph', 'wp-seopress'); ?>
86
  </li>
 
 
 
87
  </ol>
88
  </div>
89
 
84
  <li>
85
  <?php _e('Global OG Image set in SEO > Social > Open Graph', 'wp-seopress'); ?>
86
  </li>
87
+ <li>
88
+ <?php _e('Site icon from the Customizer', 'wp-seopress'); ?>
89
+ </li>
90
  </ol>
91
  </div>
92
 
inc/admin/settings/Advanced.php CHANGED
@@ -43,6 +43,14 @@ add_settings_field(
43
  'seopress_setting_section_advanced_advanced' // Section
44
  );
45
 
 
 
 
 
 
 
 
 
46
  add_settings_field(
47
  'seopress_advanced_advanced_wp_generator', // ID
48
  __('Remove WordPress generator meta tag', 'wp-seopress'), // Title
43
  'seopress_setting_section_advanced_advanced' // Section
44
  );
45
 
46
+ add_settings_field(
47
+ 'seopress_advanced_advanced_replytocom', // ID
48
+ __('Remove ?replytocom link to avoid duplicate content', 'wp-seopress'), // Title
49
+ 'seopress_advanced_advanced_replytocom_callback', // Callback
50
+ 'seopress-settings-admin-advanced-advanced', // Page
51
+ 'seopress_setting_section_advanced_advanced' // Section
52
+ );
53
+
54
  add_settings_field(
55
  'seopress_advanced_advanced_wp_generator', // ID
56
  __('Remove WordPress generator meta tag', 'wp-seopress'), // Title
inc/admin/settings/ImageSEO.php CHANGED
@@ -28,9 +28,9 @@ add_settings_field(
28
  );
29
 
30
  add_settings_field(
31
- 'seopress_advanced_advanced_replytocom', // ID
32
- __('Remove ?replytocom link to avoid duplicate content', 'wp-seopress'), // Title
33
- 'seopress_advanced_advanced_replytocom_callback', // Callback
34
  'seopress-settings-admin-advanced-image', // Page
35
  'seopress_setting_section_advanced_image' // Section
36
  );
28
  );
29
 
30
  add_settings_field(
31
+ 'seopress_advanced_advanced_clean_filename', // ID
32
+ __('Cleaning media filename', 'wp-seopress'), // Title
33
+ 'seopress_advanced_advanced_clean_filename_callback', // Callback
34
  'seopress-settings-admin-advanced-image', // Page
35
  'seopress_setting_section_advanced_image' // Section
36
  );
inc/admin/wizard/admin-wizard.php CHANGED
@@ -1038,6 +1038,10 @@ class SEOPRESS_Admin_Setup_Wizard {
1038
  if (!empty($cpt)) { ?>
1039
  </ul>
1040
  <?php }
 
 
 
 
1041
  } ?>
1042
 
1043
  <p class="seopress-setup-actions step">
@@ -1096,7 +1100,11 @@ class SEOPRESS_Admin_Setup_Wizard {
1096
  <div class="seopress-tab active">
1097
 
1098
  <form method="post" class="seopress-wizard-indexing-form">
1099
- <?php if ( ! empty(seopress_get_taxonomies())) { ?>
 
 
 
 
1100
  <h2>
1101
  <?php _e('For which taxonomy archives, should indexing be disabled?', 'wp-seopress'); ?>
1102
  </h2>
@@ -1104,7 +1112,7 @@ class SEOPRESS_Admin_Setup_Wizard {
1104
  <ul>
1105
  <?php
1106
  //Archives
1107
- foreach (seopress_get_taxonomies() as $seopress_tax_key => $seopress_tax_value) {
1108
  $seopress_titles_tax_titles = isset($seopress_titles_option['seopress_titles_tax_titles'][$seopress_tax_key]['noindex']); ?>
1109
  <h3><?php echo $seopress_tax_value->labels->name; ?>
1110
  <em><small>[<?php echo $seopress_tax_value->name; ?>]</small></em>
@@ -1155,7 +1163,7 @@ class SEOPRESS_Admin_Setup_Wizard {
1155
  $seopress_titles_option = get_option('seopress_titles_option_name');
1156
 
1157
  //Archives noindex
1158
- foreach (seopress_get_taxonomies() as $seopress_tax_key => $seopress_tax_value) {
1159
  if (isset($_POST['seopress_titles_option_name']['seopress_titles_tax_titles'][$seopress_tax_key]['noindex'])) {
1160
  $noindex = esc_attr(wp_unslash($_POST['seopress_titles_option_name']['seopress_titles_tax_titles'][$seopress_tax_key]['noindex']));
1161
  } else {
1038
  if (!empty($cpt)) { ?>
1039
  </ul>
1040
  <?php }
1041
+
1042
+ if (empty($cpt)) { ?>
1043
+ <p><?php _e('You don‘t have any post type archives, you can continue to the next step.','wp-seopress'); ?></p>
1044
+ <?php }
1045
  } ?>
1046
 
1047
  <p class="seopress-setup-actions step">
1100
  <div class="seopress-tab active">
1101
 
1102
  <form method="post" class="seopress-wizard-indexing-form">
1103
+ <?php
1104
+
1105
+ $taxonomies = seopress_get_service('WordPressData')->getTaxonomies();
1106
+
1107
+ if ( ! empty($taxonomies)) { ?>
1108
  <h2>
1109
  <?php _e('For which taxonomy archives, should indexing be disabled?', 'wp-seopress'); ?>
1110
  </h2>
1112
  <ul>
1113
  <?php
1114
  //Archives
1115
+ foreach ($taxonomies as $seopress_tax_key => $seopress_tax_value) {
1116
  $seopress_titles_tax_titles = isset($seopress_titles_option['seopress_titles_tax_titles'][$seopress_tax_key]['noindex']); ?>
1117
  <h3><?php echo $seopress_tax_value->labels->name; ?>
1118
  <em><small>[<?php echo $seopress_tax_value->name; ?>]</small></em>
1163
  $seopress_titles_option = get_option('seopress_titles_option_name');
1164
 
1165
  //Archives noindex
1166
+ foreach (seopress_get_service('WordPressData')->getTaxonomies() as $seopress_tax_key => $seopress_tax_value) {
1167
  if (isset($_POST['seopress_titles_option_name']['seopress_titles_tax_titles'][$seopress_tax_key]['noindex'])) {
1168
  $noindex = esc_attr(wp_unslash($_POST['seopress_titles_option_name']['seopress_titles_tax_titles'][$seopress_tax_key]['noindex']));
1169
  } else {
inc/functions/options-advanced-admin.php CHANGED
@@ -60,6 +60,29 @@ if (isset($pagenow) && 'options-permalink.php' == $pagenow) {
60
 
61
  //Advanced
62
  //=================================================================================================
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
63
  //Automatic title on media file
64
  function seopress_advanced_advanced_image_auto_title_editor_option()
65
  {
@@ -94,7 +117,15 @@ if ('' != seopress_advanced_advanced_image_auto_title_editor_option() ||
94
  function seopress_auto_image_attr($post_ID)
95
  {
96
  if (wp_attachment_is_image($post_ID)) {
97
- $img_attr = get_post($post_ID)->post_title;
 
 
 
 
 
 
 
 
98
 
99
  // Sanitize the title: remove hyphens, underscores & extra spaces:
100
  $img_attr = preg_replace('%\s*[-_\s]+\s*%', ' ', $img_attr);
@@ -102,7 +133,7 @@ if ('' != seopress_advanced_advanced_image_auto_title_editor_option() ||
102
  // Lowercase attributes
103
  $img_attr = strtolower($img_attr);
104
 
105
- $img_attr = apply_filters('seopress_auto_image_title', $img_attr);
106
 
107
  // Create an array with the image meta (Title, Caption, Description) to be updated
108
  $img_attr_array = ['ID'=>$post_ID]; // Image (ID) to be updated
@@ -407,7 +438,8 @@ $postTypes = seopress_get_service('WordPressData')->getPostTypes();
407
  foreach ($postTypes as $key => $value) {
408
  add_filter('bulk_actions-edit-' . $key, 'seopress_bulk_actions_noindex');
409
  }
410
- foreach (seopress_get_taxonomies() as $key => $value) {
 
411
  add_filter('bulk_actions-edit-' . $key, 'seopress_bulk_actions_noindex');
412
  }
413
 
@@ -425,7 +457,7 @@ function seopress_bulk_actions_noindex($bulk_actions)
425
  foreach ($postTypes as $key => $value) {
426
  add_filter('handle_bulk_actions-edit-' . $key, 'seopress_bulk_action_noindex_handler', 10, 3);
427
  }
428
- foreach (seopress_get_taxonomies() as $key => $value) {
429
  add_filter('handle_bulk_actions-edit-' . $key, 'seopress_bulk_action_noindex_handler', 10, 3);
430
  }
431
  if (is_plugin_active('woocommerce/woocommerce.php')) {
@@ -469,7 +501,7 @@ $postTypes = seopress_get_service('WordPressData')->getPostTypes();
469
  foreach ($postTypes as $key => $value) {
470
  add_filter('bulk_actions-edit-' . $key, 'seopress_bulk_actions_index');
471
  }
472
- foreach (seopress_get_taxonomies() as $key => $value) {
473
  add_filter('bulk_actions-edit-' . $key, 'seopress_bulk_actions_index');
474
  }
475
  if (is_plugin_active('woocommerce/woocommerce.php')) {
@@ -486,7 +518,7 @@ function seopress_bulk_actions_index($bulk_actions)
486
  foreach ($postTypes as $key => $value) {
487
  add_filter('handle_bulk_actions-edit-' . $key, 'seopress_bulk_action_index_handler', 10, 3);
488
  }
489
- foreach (seopress_get_taxonomies() as $key => $value) {
490
  add_filter('handle_bulk_actions-edit-' . $key, 'seopress_bulk_action_index_handler', 10, 3);
491
  }
492
  if (is_plugin_active('woocommerce/woocommerce.php')) {
@@ -528,7 +560,7 @@ function seopress_bulk_action_index_admin_notice()
528
  foreach ($postTypes as $key => $value) {
529
  add_filter('bulk_actions-edit-' . $key, 'seopress_bulk_actions_nofollow');
530
  }
531
- foreach (seopress_get_taxonomies() as $key => $value) {
532
  add_filter('bulk_actions-edit-' . $key, 'seopress_bulk_actions_nofollow');
533
  }
534
  if (is_plugin_active('woocommerce/woocommerce.php')) {
@@ -544,7 +576,7 @@ function seopress_bulk_actions_nofollow($bulk_actions)
544
  foreach ($postTypes as $key => $value) {
545
  add_filter('handle_bulk_actions-edit-' . $key, 'seopress_bulk_action_nofollow_handler', 10, 3);
546
  }
547
- foreach (seopress_get_taxonomies() as $key => $value) {
548
  add_filter('handle_bulk_actions-edit-' . $key, 'seopress_bulk_action_nofollow_handler', 10, 3);
549
  }
550
  if (is_plugin_active('woocommerce/woocommerce.php')) {
@@ -586,7 +618,7 @@ function seopress_bulk_action_nofollow_admin_notice()
586
  foreach ($postTypes as $key => $value) {
587
  add_filter('bulk_actions-edit-' . $key, 'seopress_bulk_actions_follow');
588
  }
589
- foreach (seopress_get_taxonomies() as $key => $value) {
590
  add_filter('bulk_actions-edit-' . $key, 'seopress_bulk_actions_follow');
591
  }
592
  if (is_plugin_active('woocommerce/woocommerce.php')) {
@@ -603,7 +635,7 @@ function seopress_bulk_actions_follow($bulk_actions)
603
  foreach ($postTypes as $key => $value) {
604
  add_filter('handle_bulk_actions-edit-' . $key, 'seopress_bulk_action_follow_handler', 10, 3);
605
  }
606
- foreach (seopress_get_taxonomies() as $key => $value) {
607
  add_filter('handle_bulk_actions-edit-' . $key, 'seopress_bulk_action_follow_handler', 10, 3);
608
  }
609
  if (is_plugin_active('woocommerce/woocommerce.php')) {
@@ -959,7 +991,7 @@ if ('' != seopress_advanced_advanced_tax_desc_editor_option() && current_user_ca
959
  <?php
960
  }
961
  }
962
- $seopress_get_taxonomies = seopress_get_taxonomies();
963
  foreach ($seopress_get_taxonomies as $key => $value) {
964
  add_action($key . '_edit_form_fields', 'seopress_tax_desc_wp_editor', 9, 1);
965
  }
60
 
61
  //Advanced
62
  //=================================================================================================
63
+ //Cleaning filename
64
+ if (seopress_get_service('AdvancedOption')->getAdvancedCleaningFileName() === '1') {
65
+ function seopress_image_seo_cleaning_filename($filename) {
66
+ /* Force the file name in UTF-8 (encoding Windows / OS X / Linux) */
67
+ $filename = mb_convert_encoding($filename, "UTF-8");
68
+
69
+ $char_not_clean = array('/À/','/Á/','/Â/','/Ã/','/Ä/','/Å/','/Ç/','/È/','/É/','/Ê/','/Ë/','/Ì/','/Í/','/Î/','/Ï/','/Ò/','/Ó/','/Ô/','/Õ/','/Ö/','/Ù/','/Ú/','/Û/','/Ü/','/Ý/','/à/','/á/','/â/','/ã/','/ä/','/å/','/ç/','/è/','/é/','/ê/','/ë/','/ì/','/í/','/î/','/ï/','/ð/','/ò/','/ó/','/ô/','/õ/','/ö/','/ù/','/ú/','/û/','/ü/','/ý/','/ÿ/', '/©/');
70
+ $clean = array('a','a','a','a','a','a','c','e','e','e','e','i','i','i','i','o','o','o','o','o','u','u','u','u','y','a','a','a','a','a','a','c','e','e','e','e','i','i','i','i','o','o','o','o','o','o','u','u','u','u','y','y','copy');
71
+
72
+ $friendly_filename = preg_replace($char_not_clean, $clean, $filename);
73
+
74
+ /* After replacement, we destroy the last residues */
75
+ $friendly_filename = utf8_decode($friendly_filename);
76
+ $friendly_filename = preg_replace('/\?/', '', $friendly_filename);
77
+
78
+ /* Remove uppercase */
79
+ $friendly_filename = strtolower($friendly_filename);
80
+
81
+ return $friendly_filename;
82
+ }
83
+ add_filter('sanitize_file_name', 'seopress_image_seo_cleaning_filename', 10);
84
+ }
85
+
86
  //Automatic title on media file
87
  function seopress_advanced_advanced_image_auto_title_editor_option()
88
  {
117
  function seopress_auto_image_attr($post_ID)
118
  {
119
  if (wp_attachment_is_image($post_ID)) {
120
+
121
+ $parent = get_post($post_ID)->post_parent ? get_post($post_ID)->post_parent : null;
122
+ $cpt = get_post_type($parent) ? get_post_type($parent) : null;
123
+
124
+ if (isset($cpt) && isset($parent) && $cpt === 'product') { //use the product title for WC products
125
+ $img_attr = get_post($parent)->post_title;
126
+ } else {
127
+ $img_attr = get_post($post_ID)->post_title;
128
+ }
129
 
130
  // Sanitize the title: remove hyphens, underscores & extra spaces:
131
  $img_attr = preg_replace('%\s*[-_\s]+\s*%', ' ', $img_attr);
133
  // Lowercase attributes
134
  $img_attr = strtolower($img_attr);
135
 
136
+ $img_attr = apply_filters('seopress_auto_image_title', $img_attr, $cpt, $parent);
137
 
138
  // Create an array with the image meta (Title, Caption, Description) to be updated
139
  $img_attr_array = ['ID'=>$post_ID]; // Image (ID) to be updated
438
  foreach ($postTypes as $key => $value) {
439
  add_filter('bulk_actions-edit-' . $key, 'seopress_bulk_actions_noindex');
440
  }
441
+
442
+ foreach (seopress_get_service('WordPressData')->getTaxonomies() as $key => $value) {
443
  add_filter('bulk_actions-edit-' . $key, 'seopress_bulk_actions_noindex');
444
  }
445
 
457
  foreach ($postTypes as $key => $value) {
458
  add_filter('handle_bulk_actions-edit-' . $key, 'seopress_bulk_action_noindex_handler', 10, 3);
459
  }
460
+ foreach (seopress_get_service('WordPressData')->getTaxonomies() as $key => $value) {
461
  add_filter('handle_bulk_actions-edit-' . $key, 'seopress_bulk_action_noindex_handler', 10, 3);
462
  }
463
  if (is_plugin_active('woocommerce/woocommerce.php')) {
501
  foreach ($postTypes as $key => $value) {
502
  add_filter('bulk_actions-edit-' . $key, 'seopress_bulk_actions_index');
503
  }
504
+ foreach (seopress_get_service('WordPressData')->getTaxonomies() as $key => $value) {
505
  add_filter('bulk_actions-edit-' . $key, 'seopress_bulk_actions_index');
506
  }
507
  if (is_plugin_active('woocommerce/woocommerce.php')) {
518
  foreach ($postTypes as $key => $value) {
519
  add_filter('handle_bulk_actions-edit-' . $key, 'seopress_bulk_action_index_handler', 10, 3);
520
  }
521
+ foreach (seopress_get_service('WordPressData')->getTaxonomies() as $key => $value) {
522
  add_filter('handle_bulk_actions-edit-' . $key, 'seopress_bulk_action_index_handler', 10, 3);
523
  }
524
  if (is_plugin_active('woocommerce/woocommerce.php')) {
560
  foreach ($postTypes as $key => $value) {
561
  add_filter('bulk_actions-edit-' . $key, 'seopress_bulk_actions_nofollow');
562
  }
563
+ foreach (seopress_get_service('WordPressData')->getTaxonomies() as $key => $value) {
564
  add_filter('bulk_actions-edit-' . $key, 'seopress_bulk_actions_nofollow');
565
  }
566
  if (is_plugin_active('woocommerce/woocommerce.php')) {
576
  foreach ($postTypes as $key => $value) {
577
  add_filter('handle_bulk_actions-edit-' . $key, 'seopress_bulk_action_nofollow_handler', 10, 3);
578
  }
579
+ foreach (seopress_get_service('WordPressData')->getTaxonomies() as $key => $value) {
580
  add_filter('handle_bulk_actions-edit-' . $key, 'seopress_bulk_action_nofollow_handler', 10, 3);
581
  }
582
  if (is_plugin_active('woocommerce/woocommerce.php')) {
618
  foreach ($postTypes as $key => $value) {
619
  add_filter('bulk_actions-edit-' . $key, 'seopress_bulk_actions_follow');
620
  }
621
+ foreach (seopress_get_service('WordPressData')->getTaxonomies() as $key => $value) {
622
  add_filter('bulk_actions-edit-' . $key, 'seopress_bulk_actions_follow');
623
  }
624
  if (is_plugin_active('woocommerce/woocommerce.php')) {
635
  foreach ($postTypes as $key => $value) {
636
  add_filter('handle_bulk_actions-edit-' . $key, 'seopress_bulk_action_follow_handler', 10, 3);
637
  }
638
+ foreach (seopress_get_service('WordPressData')->getTaxonomies() as $key => $value) {
639
  add_filter('handle_bulk_actions-edit-' . $key, 'seopress_bulk_action_follow_handler', 10, 3);
640
  }
641
  if (is_plugin_active('woocommerce/woocommerce.php')) {
991
  <?php
992
  }
993
  }
994
+ $seopress_get_taxonomies = seopress_get_service('WordPressData')->getTaxonomies();
995
  foreach ($seopress_get_taxonomies as $key => $value) {
996
  add_action($key . '_edit_form_fields', 'seopress_tax_desc_wp_editor', 9, 1);
997
  }
inc/functions/options-advanced.php CHANGED
@@ -2,44 +2,19 @@
2
 
3
  defined('ABSPATH') or exit('Please don&rsquo;t call the plugin directly. Thanks :)');
4
 
5
- //Advanced
6
- //=================================================================================================
7
- //?replytocom
8
- /**
9
- * @deprecated 5.4.0
10
- */
11
- function seopress_advanced_advanced_replytocom_option() {
12
- return seopress_get_service('AdvancedOption')->getAdvancedReplytocom();
13
- }
14
-
15
- if ('1' == seopress_advanced_advanced_replytocom_option()) {
16
  add_filter('comment_reply_link', 'seopress_remove_reply_to_com');
17
  }
18
  function seopress_remove_reply_to_com($link) {
19
  return preg_replace('/href=\'(.*(\?|&)replytocom=(\d+)#respond)/', 'href=\'#comment-$3', $link);
20
  }
21
 
22
- //WordPress Meta generator
23
- /**
24
- * @deprecated 5.4.0
25
- */
26
- function seopress_advanced_advanced_wp_generator_option() {
27
- return seopress_get_service('AdvancedOption')->getAdvancedWPGenerator();
28
- }
29
-
30
- if ('1' == seopress_advanced_advanced_wp_generator_option()) {
31
  remove_action('wp_head', 'wp_generator');
32
  }
33
 
34
  //Remove hentry post class
35
- /**
36
- * @deprecated 5.4.0
37
- */
38
- function seopress_advanced_advanced_hentry_option() {
39
- return seopress_get_service('AdvancedOption')->getAdvancedHentry();
40
- }
41
-
42
- if ('1' == seopress_advanced_advanced_hentry_option()) {
43
  function seopress_advanced_advanced_hentry_hook($classes) {
44
  $classes = array_diff($classes, ['hentry']);
45
 
@@ -49,52 +24,25 @@ if ('1' == seopress_advanced_advanced_hentry_option()) {
49
  }
50
 
51
  //WordPress
52
- /**
53
- * @deprecated 5.4.0
54
- */
55
- function seopress_advanced_advanced_wp_shortlink_option() {
56
- return seopress_get_service('AdvancedOption')->getAdvancedWPShortlink();
57
- }
58
-
59
- if ('1' == seopress_advanced_advanced_wp_shortlink_option()) {
60
  remove_action('wp_head', 'wp_shortlink_wp_head');
61
  }
62
 
63
  //WordPress WLWManifest
64
- /**
65
- * @deprecated 5.4.0
66
- */
67
- function seopress_advanced_advanced_wp_wlw_option() {
68
- return seopress_get_service('AdvancedOption')->getAdvancedWPManifest();
69
- }
70
-
71
- if ('1' == seopress_advanced_advanced_wp_wlw_option()) {
72
  remove_action('wp_head', 'wlwmanifest_link');
73
  }
74
 
75
  //WordPress RSD
76
- /**
77
- * @deprecated 5.4.0
78
- */
79
- function seopress_advanced_advanced_wp_rsd_option() {
80
- return seopress_get_service('AdvancedOption')->getAdvancedWPRSD();
81
- }
82
-
83
- if ('1' == seopress_advanced_advanced_wp_rsd_option()) {
84
  remove_action('wp_head', 'rsd_link');
85
  }
86
 
87
  //Google site verification
88
- /**
89
- * @deprecated 5.4.0
90
- */
91
- function seopress_advanced_advanced_google_option() {
92
- return seopress_get_service('AdvancedOption')->getAdvancedGoogleVerification();
93
- }
94
-
95
  function seopress_advanced_advanced_google_hook() {
96
- if ('' != seopress_advanced_advanced_google_option()) {
97
- $seopress_advanced_advanced_google = '<meta name="google-site-verification" content="' . seopress_advanced_advanced_google_option() . '" />';
 
98
  $seopress_advanced_advanced_google .= "\n";
99
  echo $seopress_advanced_advanced_google;
100
  }
@@ -104,16 +52,10 @@ if (is_home() || is_front_page()) {
104
  }
105
 
106
  //Bing site verification
107
- /**
108
- * @deprecated 5.4.0
109
- */
110
- function seopress_advanced_advanced_bing_option() {
111
- return seopress_get_service('AdvancedOption')->getAdvancedBingVerification();
112
- }
113
-
114
  function seopress_advanced_advanced_bing_hook() {
115
- if ('' != seopress_advanced_advanced_bing_option()) {
116
- $seopress_advanced_advanced_bing = '<meta name="msvalidate.01" content="' . seopress_advanced_advanced_bing_option() . '" />';
 
117
  $seopress_advanced_advanced_bing .= "\n";
118
  echo $seopress_advanced_advanced_bing;
119
  }
@@ -123,16 +65,10 @@ if (is_home() || is_front_page()) {
123
  }
124
 
125
  //Pinterest site verification
126
- /**
127
- * @deprecated 5.4.0
128
- */
129
- function seopress_advanced_advanced_pinterest_option() {
130
- return seopress_get_service('AdvancedOption')->getAdvancedPinterestVerification();
131
- }
132
-
133
  function seopress_advanced_advanced_pinterest_hook() {
134
- if ('' != seopress_advanced_advanced_pinterest_option()) {
135
- $seopress_advanced_advanced_pinterest = '<meta name="p:domain_verify" content="' . seopress_advanced_advanced_pinterest_option() . '" />';
 
136
  $seopress_advanced_advanced_pinterest .= "\n";
137
  echo $seopress_advanced_advanced_pinterest;
138
  }
@@ -160,19 +96,7 @@ if (is_home() || is_front_page()) {
160
  }
161
 
162
  //Automatic alt text based on target kw
163
- function seopress_advanced_advanced_image_auto_alt_target_kw_option() {
164
- $seopress_advanced_advanced_image_auto_alt_target_kw_option = get_option('seopress_advanced_option_name');
165
- if ( ! empty($seopress_advanced_advanced_image_auto_alt_target_kw_option)) {
166
- foreach ($seopress_advanced_advanced_image_auto_alt_target_kw_option as $key => $seopress_advanced_advanced_image_auto_alt_target_kw_value) {
167
- $options[$key] = $seopress_advanced_advanced_image_auto_alt_target_kw_value;
168
- }
169
- if (isset($seopress_advanced_advanced_image_auto_alt_target_kw_option['seopress_advanced_advanced_image_auto_alt_target_kw'])) {
170
- return $seopress_advanced_advanced_image_auto_alt_target_kw_option['seopress_advanced_advanced_image_auto_alt_target_kw'];
171
- }
172
- }
173
- }
174
-
175
- if ('' != seopress_advanced_advanced_image_auto_alt_target_kw_option()) {
176
  function seopress_auto_img_alt_thumb_target_kw($atts, $attachment) {
177
  if ( ! is_admin()) {
178
  if (empty($atts['alt'])) {
2
 
3
  defined('ABSPATH') or exit('Please don&rsquo;t call the plugin directly. Thanks :)');
4
 
5
+ if ('1' == seopress_get_service('AdvancedOption')->getAdvancedReplytocom()) {
 
 
 
 
 
 
 
 
 
 
6
  add_filter('comment_reply_link', 'seopress_remove_reply_to_com');
7
  }
8
  function seopress_remove_reply_to_com($link) {
9
  return preg_replace('/href=\'(.*(\?|&)replytocom=(\d+)#respond)/', 'href=\'#comment-$3', $link);
10
  }
11
 
12
+ if ('1' == seopress_get_service('AdvancedOption')->getAdvancedWPGenerator()) {
 
 
 
 
 
 
 
 
13
  remove_action('wp_head', 'wp_generator');
14
  }
15
 
16
  //Remove hentry post class
17
+ if ('1' == seopress_get_service('AdvancedOption')->getAdvancedHentry()) {
 
 
 
 
 
 
 
18
  function seopress_advanced_advanced_hentry_hook($classes) {
19
  $classes = array_diff($classes, ['hentry']);
20
 
24
  }
25
 
26
  //WordPress
27
+ if ('1' == seopress_get_service('AdvancedOption')->getAdvancedWPShortlink()) {
 
 
 
 
 
 
 
28
  remove_action('wp_head', 'wp_shortlink_wp_head');
29
  }
30
 
31
  //WordPress WLWManifest
32
+ if ('1' == seopress_get_service('AdvancedOption')->getAdvancedWPManifest()) {
 
 
 
 
 
 
 
33
  remove_action('wp_head', 'wlwmanifest_link');
34
  }
35
 
36
  //WordPress RSD
37
+ if ('1' == seopress_get_service('AdvancedOption')->getAdvancedWPRSD()) {
 
 
 
 
 
 
 
38
  remove_action('wp_head', 'rsd_link');
39
  }
40
 
41
  //Google site verification
 
 
 
 
 
 
 
42
  function seopress_advanced_advanced_google_hook() {
43
+ $optionGoogle = seopress_get_service('AdvancedOption')->getAdvancedGoogleVerification();
44
+ if (!empty($optionGoogle)) {
45
+ $seopress_advanced_advanced_google = '<meta name="google-site-verification" content="' . $optionGoogle . '" />';
46
  $seopress_advanced_advanced_google .= "\n";
47
  echo $seopress_advanced_advanced_google;
48
  }
52
  }
53
 
54
  //Bing site verification
 
 
 
 
 
 
 
55
  function seopress_advanced_advanced_bing_hook() {
56
+ $optionBing = seopress_get_service('AdvancedOption')->getAdvancedBingVerification();
57
+ if (!empty($optionBing)) {
58
+ $seopress_advanced_advanced_bing = '<meta name="msvalidate.01" content="' . $optionBing . '" />';
59
  $seopress_advanced_advanced_bing .= "\n";
60
  echo $seopress_advanced_advanced_bing;
61
  }
65
  }
66
 
67
  //Pinterest site verification
 
 
 
 
 
 
 
68
  function seopress_advanced_advanced_pinterest_hook() {
69
+ $optionPinterest =seopress_get_service('AdvancedOption')->getAdvancedPinterestVerification();
70
+ if (!empty($optionPinterest)) {
71
+ $seopress_advanced_advanced_pinterest = '<meta name="p:domain_verify" content="' . $optionPinterest . '" />';
72
  $seopress_advanced_advanced_pinterest .= "\n";
73
  echo $seopress_advanced_advanced_pinterest;
74
  }
96
  }
97
 
98
  //Automatic alt text based on target kw
99
+ if (!empty(seopress_get_service('AdvancedOption')->getAdvancedImageAutoAltTargetKw())) {
 
 
 
 
 
 
 
 
 
 
 
 
100
  function seopress_auto_img_alt_thumb_target_kw($atts, $attachment) {
101
  if ( ! is_admin()) {
102
  if (empty($atts['alt'])) {
inc/functions/options-google-analytics.php CHANGED
@@ -5,254 +5,87 @@ defined('ABSPATH') or exit('Please don&rsquo;t call the plugin directly. Thanks
5
  //Google Analytics
6
  //=================================================================================================
7
  function seopress_google_analytics_hook_option() {
8
- $seopress_google_analytics_hook_option = get_option('seopress_google_analytics_option_name');
9
- if ( ! empty($seopress_google_analytics_hook_option)) {
10
- foreach ($seopress_google_analytics_hook_option as $key => $seopress_google_analytics_hook_value) {
11
- $options[$key] = $seopress_google_analytics_hook_value;
12
- }
13
- if (isset($seopress_google_analytics_hook_option['seopress_google_analytics_hook'])) {
14
- return $seopress_google_analytics_hook_option['seopress_google_analytics_hook'];
15
- }
16
- }
17
  }
 
18
  function seopress_google_analytics_opt_out_msg_ok_option() {
19
- $seopress_google_analytics_opt_out_msg_ok_option = get_option('seopress_google_analytics_option_name');
20
- if ( ! empty($seopress_google_analytics_opt_out_msg_ok_option)) {
21
- foreach ($seopress_google_analytics_opt_out_msg_ok_option as $key => $seopress_google_analytics_opt_out_msg_ok_value) {
22
- $options[$key] = $seopress_google_analytics_opt_out_msg_ok_value;
23
- }
24
- if (isset($seopress_google_analytics_opt_out_msg_ok_option['seopress_google_analytics_opt_out_msg_ok'])) {
25
- return $seopress_google_analytics_opt_out_msg_ok_option['seopress_google_analytics_opt_out_msg_ok'];
26
- }
27
- }
28
  }
29
 
30
  function seopress_google_analytics_opt_out_msg_close_option() {
31
- $seopress_google_analytics_opt_out_msg_close_option = get_option('seopress_google_analytics_option_name');
32
- if ( ! empty($seopress_google_analytics_opt_out_msg_close_option)) {
33
- foreach ($seopress_google_analytics_opt_out_msg_close_option as $key => $seopress_google_analytics_opt_out_msg_close_value) {
34
- $options[$key] = $seopress_google_analytics_opt_out_msg_close_value;
35
- }
36
- if (isset($seopress_google_analytics_opt_out_msg_close_option['seopress_google_analytics_opt_out_msg_close'])) {
37
- return $seopress_google_analytics_opt_out_msg_close_option['seopress_google_analytics_opt_out_msg_close'];
38
- }
39
- }
40
  }
41
 
42
  function seopress_google_analytics_cb_bg_option() {
43
- $seopress_google_analytics_cb_bg_option = get_option('seopress_google_analytics_option_name');
44
- if ( ! empty($seopress_google_analytics_cb_bg_option)) {
45
- foreach ($seopress_google_analytics_cb_bg_option as $key => $seopress_google_analytics_cb_bg_value) {
46
- $options[$key] = $seopress_google_analytics_cb_bg_value;
47
- }
48
- if (isset($seopress_google_analytics_cb_bg_option['seopress_google_analytics_cb_bg'])) {
49
- return $seopress_google_analytics_cb_bg_option['seopress_google_analytics_cb_bg'];
50
- }
51
- }
52
  }
53
 
54
  function seopress_google_analytics_cb_txt_col_option() {
55
- $seopress_google_analytics_cb_txt_col_option = get_option('seopress_google_analytics_option_name');
56
- if ( ! empty($seopress_google_analytics_cb_txt_col_option)) {
57
- foreach ($seopress_google_analytics_cb_txt_col_option as $key => $seopress_google_analytics_cb_txt_col_value) {
58
- $options[$key] = $seopress_google_analytics_cb_txt_col_value;
59
- }
60
- if (isset($seopress_google_analytics_cb_txt_col_option['seopress_google_analytics_cb_txt_col'])) {
61
- return $seopress_google_analytics_cb_txt_col_option['seopress_google_analytics_cb_txt_col'];
62
- }
63
- }
64
  }
65
 
66
  function seopress_google_analytics_cb_lk_col_option() {
67
- $seopress_google_analytics_cb_lk_col_option = get_option('seopress_google_analytics_option_name');
68
- if ( ! empty($seopress_google_analytics_cb_lk_col_option)) {
69
- foreach ($seopress_google_analytics_cb_lk_col_option as $key => $seopress_google_analytics_cb_lk_col_value) {
70
- $options[$key] = $seopress_google_analytics_cb_lk_col_value;
71
- }
72
- if (isset($seopress_google_analytics_cb_lk_col_option['seopress_google_analytics_cb_lk_col'])) {
73
- return $seopress_google_analytics_cb_lk_col_option['seopress_google_analytics_cb_lk_col'];
74
- }
75
- }
76
  }
77
 
78
  function seopress_google_analytics_cb_btn_bg_option() {
79
- $seopress_google_analytics_cb_btn_bg_option = get_option('seopress_google_analytics_option_name');
80
- if ( ! empty($seopress_google_analytics_cb_btn_bg_option)) {
81
- foreach ($seopress_google_analytics_cb_btn_bg_option as $key => $seopress_google_analytics_cb_btn_bg_value) {
82
- $options[$key] = $seopress_google_analytics_cb_btn_bg_value;
83
- }
84
- if (isset($seopress_google_analytics_cb_btn_bg_option['seopress_google_analytics_cb_btn_bg'])) {
85
- return $seopress_google_analytics_cb_btn_bg_option['seopress_google_analytics_cb_btn_bg'];
86
- }
87
- }
88
  }
89
 
90
  function seopress_google_analytics_cb_btn_bg_hov_option() {
91
- $seopress_google_analytics_cb_btn_bg_hov_option = get_option('seopress_google_analytics_option_name');
92
- if ( ! empty($seopress_google_analytics_cb_btn_bg_hov_option)) {
93
- foreach ($seopress_google_analytics_cb_btn_bg_hov_option as $key => $seopress_google_analytics_cb_btn_bg_hov_value) {
94
- $options[$key] = $seopress_google_analytics_cb_btn_bg_hov_value;
95
- }
96
- if (isset($seopress_google_analytics_cb_btn_bg_hov_option['seopress_google_analytics_cb_btn_bg_hov'])) {
97
- return $seopress_google_analytics_cb_btn_bg_hov_option['seopress_google_analytics_cb_btn_bg_hov'];
98
- }
99
- }
100
  }
101
 
102
  function seopress_google_analytics_cb_btn_col_option() {
103
- $seopress_google_analytics_cb_btn_col_option = get_option('seopress_google_analytics_option_name');
104
- if ( ! empty($seopress_google_analytics_cb_btn_col_option)) {
105
- foreach ($seopress_google_analytics_cb_btn_col_option as $key => $seopress_google_analytics_cb_btn_col_value) {
106
- $options[$key] = $seopress_google_analytics_cb_btn_col_value;
107
- }
108
- if (isset($seopress_google_analytics_cb_btn_col_option['seopress_google_analytics_cb_btn_col'])) {
109
- return $seopress_google_analytics_cb_btn_col_option['seopress_google_analytics_cb_btn_col'];
110
- }
111
- }
112
  }
113
 
114
  function seopress_google_analytics_cb_btn_col_hov_option() {
115
- $seopress_google_analytics_cb_btn_col_hov_option = get_option('seopress_google_analytics_option_name');
116
- if ( ! empty($seopress_google_analytics_cb_btn_col_hov_option)) {
117
- foreach ($seopress_google_analytics_cb_btn_col_hov_option as $key => $seopress_google_analytics_cb_btn_col_hov_value) {
118
- $options[$key] = $seopress_google_analytics_cb_btn_col_hov_value;
119
- }
120
- if (isset($seopress_google_analytics_cb_btn_col_hov_option['seopress_google_analytics_cb_btn_col_hov'])) {
121
- return $seopress_google_analytics_cb_btn_col_hov_option['seopress_google_analytics_cb_btn_col_hov'];
122
- }
123
- }
124
  }
125
 
126
  function seopress_google_analytics_cb_btn_sec_bg_option() {
127
- $seopress_google_analytics_cb_btn_sec_bg_option = get_option('seopress_google_analytics_option_name');
128
- if ( ! empty($seopress_google_analytics_cb_btn_sec_bg_option)) {
129
- foreach ($seopress_google_analytics_cb_btn_sec_bg_option as $key => $seopress_google_analytics_cb_btn_sec_bg_value) {
130
- $options[$key] = $seopress_google_analytics_cb_btn_sec_bg_value;
131
- }
132
- if (isset($seopress_google_analytics_cb_btn_sec_bg_option['seopress_google_analytics_cb_btn_sec_bg'])) {
133
- return $seopress_google_analytics_cb_btn_sec_bg_option['seopress_google_analytics_cb_btn_sec_bg'];
134
- }
135
- }
136
  }
137
 
138
  function seopress_google_analytics_cb_btn_sec_col_option() {
139
- $seopress_google_analytics_cb_btn_sec_col_option = get_option('seopress_google_analytics_option_name');
140
- if ( ! empty($seopress_google_analytics_cb_btn_sec_col_option)) {
141
- foreach ($seopress_google_analytics_cb_btn_sec_col_option as $key => $seopress_google_analytics_cb_btn_sec_col_value) {
142
- $options[$key] = $seopress_google_analytics_cb_btn_sec_col_value;
143
- }
144
- if (isset($seopress_google_analytics_cb_btn_sec_col_option['seopress_google_analytics_cb_btn_sec_col'])) {
145
- return $seopress_google_analytics_cb_btn_sec_col_option['seopress_google_analytics_cb_btn_sec_col'];
146
- }
147
- }
148
  }
149
 
150
  function seopress_google_analytics_cb_btn_sec_bg_hov_option() {
151
- $seopress_google_analytics_cb_btn_sec_bg_hov_option = get_option('seopress_google_analytics_option_name');
152
- if ( ! empty($seopress_google_analytics_cb_btn_sec_bg_hov_option)) {
153
- foreach ($seopress_google_analytics_cb_btn_sec_bg_hov_option as $key => $seopress_google_analytics_cb_btn_sec_bg_hov_value) {
154
- $options[$key] = $seopress_google_analytics_cb_btn_sec_bg_hov_value;
155
- }
156
- if (isset($seopress_google_analytics_cb_btn_sec_bg_hov_option['seopress_google_analytics_cb_btn_sec_bg_hov'])) {
157
- return $seopress_google_analytics_cb_btn_sec_bg_hov_option['seopress_google_analytics_cb_btn_sec_bg_hov'];
158
- }
159
- }
160
  }
161
 
162
  function seopress_google_analytics_cb_btn_sec_col_hov_option() {
163
- $seopress_google_analytics_cb_btn_sec_col_hov_option = get_option('seopress_google_analytics_option_name');
164
- if ( ! empty($seopress_google_analytics_cb_btn_sec_col_hov_option)) {
165
- foreach ($seopress_google_analytics_cb_btn_sec_col_hov_option as $key => $seopress_google_analytics_cb_btn_sec_col_hov_value) {
166
- $options[$key] = $seopress_google_analytics_cb_btn_sec_col_hov_value;
167
- }
168
- if (isset($seopress_google_analytics_cb_btn_sec_col_hov_option['seopress_google_analytics_cb_btn_sec_col_hov'])) {
169
- return $seopress_google_analytics_cb_btn_sec_col_hov_option['seopress_google_analytics_cb_btn_sec_col_hov'];
170
- }
171
- }
172
  }
173
 
174
  function seopress_google_analytics_cb_pos_option() {
175
- $seopress_google_analytics_cb_pos_option = get_option('seopress_google_analytics_option_name');
176
- if ( ! empty($seopress_google_analytics_cb_pos_option)) {
177
- foreach ($seopress_google_analytics_cb_pos_option as $key => $seopress_google_analytics_cb_pos_value) {
178
- $options[$key] = $seopress_google_analytics_cb_pos_value;
179
- }
180
- if (isset($seopress_google_analytics_cb_pos_option['seopress_google_analytics_cb_pos'])) {
181
- return $seopress_google_analytics_cb_pos_option['seopress_google_analytics_cb_pos'];
182
- }
183
- }
184
  }
185
 
186
  function seopress_google_analytics_cb_width_option() {
187
- $seopress_google_analytics_cb_width_option = get_option('seopress_google_analytics_option_name');
188
- if ( ! empty($seopress_google_analytics_cb_width_option)) {
189
- foreach ($seopress_google_analytics_cb_width_option as $key => $seopress_google_analytics_cb_width_value) {
190
- $options[$key] = $seopress_google_analytics_cb_width_value;
191
- }
192
- if (isset($seopress_google_analytics_cb_width_option['seopress_google_analytics_cb_width'])) {
193
- return $seopress_google_analytics_cb_width_option['seopress_google_analytics_cb_width'];
194
- }
195
- }
196
  }
197
 
198
  function seopress_google_analytics_cb_backdrop_option() {
199
- $seopress_google_analytics_cb_backdrop_option = get_option('seopress_google_analytics_option_name');
200
- if ( ! empty($seopress_google_analytics_cb_backdrop_option)) {
201
- foreach ($seopress_google_analytics_cb_backdrop_option as $key => $seopress_google_analytics_cb_backdrop_value) {
202
- $options[$key] = $seopress_google_analytics_cb_backdrop_value;
203
- }
204
- if (isset($seopress_google_analytics_cb_backdrop_option['seopress_google_analytics_cb_backdrop'])) {
205
- return $seopress_google_analytics_cb_backdrop_option['seopress_google_analytics_cb_backdrop'];
206
- }
207
- }
208
  }
209
 
210
  function seopress_google_analytics_cb_backdrop_bg_option() {
211
- $seopress_google_analytics_cb_backdrop_bg_option = get_option('seopress_google_analytics_option_name');
212
- if ( ! empty($seopress_google_analytics_cb_backdrop_bg_option)) {
213
- foreach ($seopress_google_analytics_cb_backdrop_bg_option as $key => $seopress_google_analytics_cb_backdrop_bg_value) {
214
- $options[$key] = $seopress_google_analytics_cb_backdrop_bg_value;
215
- }
216
- if (isset($seopress_google_analytics_cb_backdrop_bg_option['seopress_google_analytics_cb_backdrop_bg'])) {
217
- return $seopress_google_analytics_cb_backdrop_bg_option['seopress_google_analytics_cb_backdrop_bg'];
218
- }
219
- }
220
  }
221
 
222
  function seopress_google_analytics_cb_txt_align_option() {
223
- $seopress_google_analytics_cb_txt_align_option = get_option('seopress_google_analytics_option_name');
224
- if ( ! empty($seopress_google_analytics_cb_txt_align_option)) {
225
- foreach ($seopress_google_analytics_cb_txt_align_option as $key => $seopress_google_analytics_cb_txt_align_value) {
226
- $options[$key] = $seopress_google_analytics_cb_txt_align_value;
227
- }
228
- if (isset($seopress_google_analytics_cb_txt_align_option['seopress_google_analytics_cb_txt_align'])) {
229
- return $seopress_google_analytics_cb_txt_align_option['seopress_google_analytics_cb_txt_align'];
230
- }
231
- }
232
  }
233
 
234
  function seopress_google_analytics_opt_out_edit_choice_option() {
235
- $seopress_google_analytics_opt_out_edit_choice_option = get_option('seopress_google_analytics_option_name');
236
- if ( ! empty($seopress_google_analytics_opt_out_edit_choice_option)) {
237
- foreach ($seopress_google_analytics_opt_out_edit_choice_option as $key => $seopress_google_analytics_opt_out_edit_choice_value) {
238
- $options[$key] = $seopress_google_analytics_opt_out_edit_choice_value;
239
- }
240
- if (isset($seopress_google_analytics_opt_out_edit_choice_option['seopress_google_analytics_opt_out_edit_choice'])) {
241
- return $seopress_google_analytics_opt_out_edit_choice_option['seopress_google_analytics_opt_out_edit_choice'];
242
- }
243
- }
244
  }
245
 
246
  function seopress_google_analytics_opt_out_msg_edit_option() {
247
- $seopress_google_analytics_opt_out_msg_edit_option = get_option('seopress_google_analytics_option_name');
248
- if ( ! empty($seopress_google_analytics_opt_out_msg_edit_option)) {
249
- foreach ($seopress_google_analytics_opt_out_msg_edit_option as $key => $seopress_google_analytics_opt_out_msg_edit_value) {
250
- $options[$key] = $seopress_google_analytics_opt_out_msg_edit_value;
251
- }
252
- if (isset($seopress_google_analytics_opt_out_msg_edit_option['seopress_google_analytics_opt_out_msg_edit'])) {
253
- return $seopress_google_analytics_opt_out_msg_edit_option['seopress_google_analytics_opt_out_msg_edit'];
254
- }
255
- }
256
  }
257
 
258
  function seopress_cookies_user_consent_html() {
@@ -822,12 +655,13 @@ function seopress_google_analytics_remove_from_cart_option() {
822
  function seopress_google_analytics_js($echo) {
823
  if (('' != seopress_google_analytics_ua_option() || '' != seopress_google_analytics_ga4_option()) && '1' == seopress_google_analytics_enable_option()) {
824
  //Init
 
825
  $seopress_google_analytics_config = [];
826
  $seopress_google_analytics_event = [];
827
 
828
  $seopress_google_analytics_html = "\n";
829
  $seopress_google_analytics_html .=
830
- "<script async src='https://www.googletagmanager.com/gtag/js?id=" . seopress_google_analytics_ua_option() . "'></script>
831
  <script>
832
  window.dataLayer = window.dataLayer || [];
833
  function gtag(){dataLayer.push(arguments);}";
5
  //Google Analytics
6
  //=================================================================================================
7
  function seopress_google_analytics_hook_option() {
8
+ return seopress_get_service('GoogleAnalyticsOption')->getHook();
 
 
 
 
 
 
 
 
9
  }
10
+
11
  function seopress_google_analytics_opt_out_msg_ok_option() {
12
+ return seopress_get_service('GoogleAnalyticsOption')->getOptOutMessageOk();
 
 
 
 
 
 
 
 
13
  }
14
 
15
  function seopress_google_analytics_opt_out_msg_close_option() {
16
+ return seopress_get_service('GoogleAnalyticsOption')->getOptOutMessageClose();
 
 
 
 
 
 
 
 
17
  }
18
 
19
  function seopress_google_analytics_cb_bg_option() {
20
+ return seopress_get_service('GoogleAnalyticsOption')->getCbBg();
 
 
 
 
 
 
 
 
21
  }
22
 
23
  function seopress_google_analytics_cb_txt_col_option() {
24
+ return seopress_get_service('GoogleAnalyticsOption')->getCbTxtCol();
 
 
 
 
 
 
 
 
25
  }
26
 
27
  function seopress_google_analytics_cb_lk_col_option() {
28
+ return seopress_get_service('GoogleAnalyticsOption')->getCbLkCol();
 
 
 
 
 
 
 
 
29
  }
30
 
31
  function seopress_google_analytics_cb_btn_bg_option() {
32
+ return seopress_get_service('GoogleAnalyticsOption')->getCbBtnBg();
 
 
 
 
 
 
 
 
33
  }
34
 
35
  function seopress_google_analytics_cb_btn_bg_hov_option() {
36
+ return seopress_get_service('GoogleAnalyticsOption')->getCbBtnBgHov();
 
 
 
 
 
 
 
 
37
  }
38
 
39
  function seopress_google_analytics_cb_btn_col_option() {
40
+ return seopress_get_service('GoogleAnalyticsOption')->getCbBtnCol();
 
 
 
 
 
 
 
 
41
  }
42
 
43
  function seopress_google_analytics_cb_btn_col_hov_option() {
44
+ return seopress_get_service('GoogleAnalyticsOption')->getCbBtnColHov();
 
 
 
 
 
 
 
 
45
  }
46
 
47
  function seopress_google_analytics_cb_btn_sec_bg_option() {
48
+ return seopress_get_service('GoogleAnalyticsOption')->getCbBtnSecBg();
 
 
 
 
 
 
 
 
49
  }
50
 
51
  function seopress_google_analytics_cb_btn_sec_col_option() {
52
+ return seopress_get_service('GoogleAnalyticsOption')->getCbBtnSecCol();
 
 
 
 
 
 
 
 
53
  }
54
 
55
  function seopress_google_analytics_cb_btn_sec_bg_hov_option() {
56
+ return seopress_get_service('GoogleAnalyticsOption')->getCbBtnSecBgHov();
 
 
 
 
 
 
 
 
57
  }
58
 
59
  function seopress_google_analytics_cb_btn_sec_col_hov_option() {
60
+ return seopress_get_service('GoogleAnalyticsOption')->getCbBtnSecColHov();
 
 
 
 
 
 
 
 
61
  }
62
 
63
  function seopress_google_analytics_cb_pos_option() {
64
+ return seopress_get_service('GoogleAnalyticsOption')->getCbPos();
 
 
 
 
 
 
 
 
65
  }
66
 
67
  function seopress_google_analytics_cb_width_option() {
68
+ return seopress_get_service('GoogleAnalyticsOption')->getCbWidth();
 
 
 
 
 
 
 
 
69
  }
70
 
71
  function seopress_google_analytics_cb_backdrop_option() {
72
+ return seopress_get_service('GoogleAnalyticsOption')->getCbBackdrop();
 
 
 
 
 
 
 
 
73
  }
74
 
75
  function seopress_google_analytics_cb_backdrop_bg_option() {
76
+ return seopress_get_service('GoogleAnalyticsOption')->getCbBackdropBg();
 
 
 
 
 
 
 
 
77
  }
78
 
79
  function seopress_google_analytics_cb_txt_align_option() {
80
+ return seopress_get_service('GoogleAnalyticsOption')->getCbTxtAlign();
 
 
 
 
 
 
 
 
81
  }
82
 
83
  function seopress_google_analytics_opt_out_edit_choice_option() {
84
+ return seopress_get_service('GoogleAnalyticsOption')->getOptOutEditChoice();
 
 
 
 
 
 
 
 
85
  }
86
 
87
  function seopress_google_analytics_opt_out_msg_edit_option() {
88
+ return seopress_get_service('GoogleAnalyticsOption')->getOptOutMessageEdit();
 
 
 
 
 
 
 
 
89
  }
90
 
91
  function seopress_cookies_user_consent_html() {
655
  function seopress_google_analytics_js($echo) {
656
  if (('' != seopress_google_analytics_ua_option() || '' != seopress_google_analytics_ga4_option()) && '1' == seopress_google_analytics_enable_option()) {
657
  //Init
658
+ $tracking_id = seopress_google_analytics_ua_option() ? seopress_google_analytics_ua_option() : seopress_google_analytics_ga4_option();
659
  $seopress_google_analytics_config = [];
660
  $seopress_google_analytics_event = [];
661
 
662
  $seopress_google_analytics_html = "\n";
663
  $seopress_google_analytics_html .=
664
+ "<script async src='https://www.googletagmanager.com/gtag/js?id=" . $tracking_id . "'></script>
665
  <script>
666
  window.dataLayer = window.dataLayer || [];
667
  function gtag(){dataLayer.push(arguments);}";
inc/functions/options-import-export.php CHANGED
@@ -32,6 +32,7 @@ function seopress_export_settings() {
32
  $settings['seopress_google_analytics_lock_option_name'] = get_option('seopress_google_analytics_lock_option_name');
33
  $settings['seopress_tools_option_name'] = get_option('seopress_tools_option_name');
34
  $settings['seopress_dashboard_option_name'] = get_option('seopress_dashboard_option_name');
 
35
 
36
  ignore_user_abort(true);
37
  nocache_headers();
@@ -110,6 +111,9 @@ function seopress_import_settings() {
110
  if (false !== $settings['seopress_tools_option_name']) {
111
  update_option('seopress_tools_option_name', $settings['seopress_tools_option_name'], false);
112
  }
 
 
 
113
 
114
  wp_safe_redirect(admin_url('admin.php?page=seopress-import-export&success=true'));
115
  exit;
32
  $settings['seopress_google_analytics_lock_option_name'] = get_option('seopress_google_analytics_lock_option_name');
33
  $settings['seopress_tools_option_name'] = get_option('seopress_tools_option_name');
34
  $settings['seopress_dashboard_option_name'] = get_option('seopress_dashboard_option_name');
35
+ $settings['seopress_instant_indexing_option_name'] = get_option('seopress_instant_indexing_option_name');
36
 
37
  ignore_user_abort(true);
38
  nocache_headers();
111
  if (false !== $settings['seopress_tools_option_name']) {
112
  update_option('seopress_tools_option_name', $settings['seopress_tools_option_name'], false);
113
  }
114
+ if (false !== $settings['seopress_instant_indexing_option_name']) {
115
+ update_option('seopress_instant_indexing_option_name', $settings['seopress_instant_indexing_option_name'], false);
116
+ }
117
 
118
  wp_safe_redirect(admin_url('admin.php?page=seopress-import-export&success=true'));
119
  exit;
inc/functions/options-instant-indexing.php CHANGED
@@ -134,13 +134,13 @@ function seopress_instant_indexing_fn($is_manual_submission = true, $permalink =
134
  //Prepare the URLS
135
  if ($is_manual_submission === true) {
136
  $urls = preg_split('/\r\n|\r|\n/', $urls);
137
- $x_source_info = 'https://www.seopress.org/5.7.3/true';
138
 
139
  $urls = array_slice($urls, 0, 100);
140
  } elseif ($is_manual_submission === false && !empty($permalink)) {
141
  $urls = null;
142
  $urls[] = $permalink;
143
- $x_source_info = 'https://www.seopress.org/5.7.3/false';
144
  }
145
 
146
  //Bing API
134
  //Prepare the URLS
135
  if ($is_manual_submission === true) {
136
  $urls = preg_split('/\r\n|\r|\n/', $urls);
137
+ $x_source_info = 'https://www.seopress.org/5.8/true';
138
 
139
  $urls = array_slice($urls, 0, 100);
140
  } elseif ($is_manual_submission === false && !empty($permalink)) {
141
  $urls = null;
142
  $urls[] = $permalink;
143
+ $x_source_info = 'https://www.seopress.org/5.8/false';
144
  }
145
 
146
  //Bing API
inc/functions/options-sitemap.php CHANGED
@@ -200,6 +200,8 @@ if ('1' == seopress_xml_sitemap_html_enable_option()) {
200
  'fields' => 'ids',
201
  'exclude' => $seopress_xml_sitemap_html_exclude_option,
202
  'suppress_filters' => false,
 
 
203
  ];
204
  if ('post' === $cpt_key || 'product' === $cpt_key) {
205
  if (get_post_type_archive_link($cpt_key) && 0 != get_option('page_for_posts')) {
@@ -233,7 +235,7 @@ if ('1' == seopress_xml_sitemap_html_enable_option()) {
233
  foreach ($cats as $cat) {
234
  if ( ! is_wp_error($cat) && is_object($cat)) {
235
  $html .= '<div class="sp-wrap-cat">';
236
- $html .= '<h3 class="sp-cat-name">' . $cat->name . '</h3>';
237
 
238
  if ('post' === $cpt_key) {
239
  unset($args['cat']);
200
  'fields' => 'ids',
201
  'exclude' => $seopress_xml_sitemap_html_exclude_option,
202
  'suppress_filters' => false,
203
+ 'no_found_rows' => true,
204
+ 'nopaging' => true,
205
  ];
206
  if ('post' === $cpt_key || 'product' === $cpt_key) {
207
  if (get_post_type_archive_link($cpt_key) && 0 != get_option('page_for_posts')) {
235
  foreach ($cats as $cat) {
236
  if ( ! is_wp_error($cat) && is_object($cat)) {
237
  $html .= '<div class="sp-wrap-cat">';
238
+ $html .= '<h3 class="sp-cat-name"><a href="'. get_term_link($cat->term_id) .'">' . $cat->name . '</a></h3>';
239
 
240
  if ('post' === $cpt_key) {
241
  unset($args['cat']);
inc/functions/options-social.php CHANGED
@@ -922,6 +922,12 @@ function seopress_social_fb_img_hook() {
922
 
923
  $seopress_social_og_thumb .= seopress_social_fb_img_size_from_url(seopress_social_facebook_img_option());
924
 
 
 
 
 
 
 
925
  }
926
 
927
  //Hook on post OG thumbnail - 'seopress_social_og_thumb'
922
 
923
  $seopress_social_og_thumb .= seopress_social_fb_img_size_from_url(seopress_social_facebook_img_option());
924
 
925
+ } elseif (!empty(get_option('site_icon'))) { //Site icon
926
+
927
+ $site_icon = wp_get_attachment_url(get_option('site_icon'));
928
+
929
+ $seopress_social_og_thumb .= seopress_social_fb_img_size_from_url($site_icon);
930
+
931
  }
932
 
933
  //Hook on post OG thumbnail - 'seopress_social_og_thumb'
inc/functions/sitemap/template-xml-sitemaps.php CHANGED
@@ -149,7 +149,7 @@ function seopress_xml_sitemap_index() {
149
  $seopress_sitemaps .= '<sitemap>';
150
  $seopress_sitemaps .= "\n";
151
  $seopress_sitemaps .= '<loc>';
152
- $seopress_sitemaps .= $home_url . 'sitemaps/' . $cpt_key . '-sitemap' . $paged . '.xml';
153
  $seopress_sitemaps .= '</loc>';
154
  $seopress_sitemaps .= "\n";
155
 
@@ -270,7 +270,7 @@ function seopress_xml_sitemap_index() {
270
  $seopress_sitemaps .= '<sitemap>';
271
  $seopress_sitemaps .= "\n";
272
  $seopress_sitemaps .= '<loc>';
273
- $seopress_sitemaps .= $home_url . 'sitemaps/' . $tax_key . '-sitemap' . $paged . '.xml';
274
  $seopress_sitemaps .= '</loc>';
275
  $seopress_sitemaps .= "\n";
276
  $seopress_sitemaps .= '</sitemap>';
@@ -335,7 +335,7 @@ function seopress_xml_sitemap_index() {
335
  $seopress_sitemaps .= '<sitemap>';
336
  $seopress_sitemaps .= "\n";
337
  $seopress_sitemaps .= '<loc>';
338
- $seopress_sitemaps .= $home_url . 'sitemaps/news.xml';
339
  $seopress_sitemaps .= '</loc>';
340
  $seopress_sitemaps .= "\n";
341
  $seopress_sitemaps .= '<lastmod>';
@@ -479,7 +479,7 @@ function seopress_xml_sitemap_index() {
479
  $seopress_sitemaps .= '<sitemap>';
480
  $seopress_sitemaps .= "\n";
481
  $seopress_sitemaps .= '<loc>';
482
- $seopress_sitemaps .= $home_url . 'sitemaps/video' . $paged . '.xml';
483
  $seopress_sitemaps .= '</loc>';
484
  $seopress_sitemaps .= "\n";
485
  $seopress_sitemaps .= '</sitemap>';
@@ -492,7 +492,7 @@ function seopress_xml_sitemap_index() {
492
  $seopress_sitemaps .= '<sitemap>';
493
  $seopress_sitemaps .= "\n";
494
  $seopress_sitemaps .= '<loc>';
495
- $seopress_sitemaps .= $home_url . 'sitemaps/author.xml';
496
  $seopress_sitemaps .= '</loc>';
497
  $seopress_sitemaps .= "\n";
498
  $seopress_sitemaps .= '</sitemap>';
149
  $seopress_sitemaps .= '<sitemap>';
150
  $seopress_sitemaps .= "\n";
151
  $seopress_sitemaps .= '<loc>';
152
+ $seopress_sitemaps .= $home_url . $cpt_key . '-sitemap' . $paged . '.xml';
153
  $seopress_sitemaps .= '</loc>';
154
  $seopress_sitemaps .= "\n";
155
 
270
  $seopress_sitemaps .= '<sitemap>';
271
  $seopress_sitemaps .= "\n";
272
  $seopress_sitemaps .= '<loc>';
273
+ $seopress_sitemaps .= $home_url . $tax_key . '-sitemap' . $paged . '.xml';
274
  $seopress_sitemaps .= '</loc>';
275
  $seopress_sitemaps .= "\n";
276
  $seopress_sitemaps .= '</sitemap>';
335
  $seopress_sitemaps .= '<sitemap>';
336
  $seopress_sitemaps .= "\n";
337
  $seopress_sitemaps .= '<loc>';
338
+ $seopress_sitemaps .= $home_url . 'news.xml';
339
  $seopress_sitemaps .= '</loc>';
340
  $seopress_sitemaps .= "\n";
341
  $seopress_sitemaps .= '<lastmod>';
479
  $seopress_sitemaps .= '<sitemap>';
480
  $seopress_sitemaps .= "\n";
481
  $seopress_sitemaps .= '<loc>';
482
+ $seopress_sitemaps .= $home_url . 'video' . $paged . '.xml';
483
  $seopress_sitemaps .= '</loc>';
484
  $seopress_sitemaps .= "\n";
485
  $seopress_sitemaps .= '</sitemap>';
492
  $seopress_sitemaps .= '<sitemap>';
493
  $seopress_sitemaps .= "\n";
494
  $seopress_sitemaps .= '<loc>';
495
+ $seopress_sitemaps .= $home_url . 'author.xml';
496
  $seopress_sitemaps .= '</loc>';
497
  $seopress_sitemaps .= "\n";
498
  $seopress_sitemaps .= '</sitemap>';
languages/wp-seopress.pot CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the GPLv2.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: SEOPress 5.7.3\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-seopress\n"
7
  "Last-Translator: SEOPress Team <contact@seopress.org>\n"
8
  "Language-Team: SEOPress Team <contact@seopress.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2022-05-25T08:25:28+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.6.0\n"
15
  "X-Domain: wp-seopress\n"
@@ -31,10 +31,10 @@ msgstr ""
31
  #: inc/admin/admin-bar/admin-bar.php:26
32
  #: inc/admin/admin.php:93
33
  #: inc/admin/metaboxes/admin-metaboxes-form.php:39
34
- #: inc/admin/metaboxes/admin-metaboxes.php:237
35
- #: inc/admin/metaboxes/admin-metaboxes.php:240
36
  #: inc/admin/page-builders/gutenberg/gutenberg-addon.php:39
37
- #: inc/functions/options-advanced-admin.php:750
38
  #: app/react/layout/Head/index.js:14
39
  msgid "SEO"
40
  msgstr ""
@@ -96,7 +96,6 @@ msgid "Instant Indexing"
96
  msgstr ""
97
 
98
  #: inc/admin/admin-bar/admin-bar.php:136
99
- #: inc/admin/admin-features-list.php:48
100
  #: inc/admin/admin-pages/Advanced.php:21
101
  #: inc/admin/admin-pages/Titles.php:24
102
  #: inc/admin/admin.php:105
@@ -117,7 +116,7 @@ msgid "Insights"
117
  msgstr ""
118
 
119
  #: inc/admin/admin-bar/admin-bar.php:151
120
- #: inc/admin/admin-features-list.php:163
121
  #: inc/admin/admin.php:106
122
  msgid "Tools"
123
  msgstr ""
@@ -127,7 +126,7 @@ msgid "BOT"
127
  msgstr ""
128
 
129
  #: inc/admin/admin-bar/admin-bar.php:166
130
- #: inc/admin/admin-features-list.php:171
131
  #: inc/admin/blocks/notifications-center.php:994
132
  msgid "License"
133
  msgstr ""
@@ -139,13 +138,13 @@ msgid "PRO"
139
  msgstr ""
140
 
141
  #: inc/admin/admin-bar/admin-bar.php:179
142
- #: inc/admin/admin-features-list.php:122
143
  #: app/react/constants/tabs.js:42
144
  msgid "Schemas"
145
  msgstr ""
146
 
147
  #: inc/admin/admin-bar/admin-bar.php:187
148
- #: inc/admin/admin-features-list.php:128
149
  #: inc/admin/admin-pages/Tools.php:24
150
  msgid "Redirections"
151
  msgstr ""
@@ -165,11 +164,14 @@ msgid "Home"
165
  msgstr ""
166
 
167
  #: inc/admin/admin-bar/admin-header.php:29
168
- #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:367
169
  msgid "Display"
170
  msgstr ""
171
 
172
  #: inc/admin/admin-bar/admin-header.php:34
 
 
 
173
  #: inc/admin/admin-bar/admin-header.php:42
174
  msgid "Documentation"
175
  msgstr ""
@@ -202,12 +204,12 @@ msgstr ""
202
  #: inc/admin/callbacks/Titles.php:37
203
  #: inc/admin/callbacks/Titles.php:231
204
  #: inc/admin/callbacks/Titles.php:439
205
- #: inc/admin/callbacks/Titles.php:659
206
- #: inc/admin/callbacks/Titles.php:872
207
- #: inc/admin/callbacks/Titles.php:1015
208
- #: inc/admin/callbacks/Titles.php:1108
209
- #: inc/admin/callbacks/Titles.php:1203
210
- #: inc/admin/callbacks/Titles.php:1267
211
  #: inc/admin/metaboxes/admin-metaboxes-form.php:134
212
  #: inc/admin/page-builders/elementor/inc/controls/class-text-letter-counter-control.php:67
213
  #: src/Tags/SiteTitle.php:22
@@ -257,7 +259,7 @@ msgid "Post modified date"
257
  msgstr ""
258
 
259
  #: inc/admin/admin-dyn-variables-helper.php:16
260
- #: inc/admin/callbacks/Titles.php:1006
261
  msgid "Post author"
262
  msgstr ""
263
 
@@ -437,7 +439,7 @@ msgid "XML & HTML Sitemaps"
437
  msgstr ""
438
 
439
  #: inc/admin/admin-features-list.php:25
440
- msgid "Manage your XML - Image - Video - HTML Sitemap"
441
  msgstr ""
442
 
443
  #: inc/admin/admin-features-list.php:31
@@ -445,15 +447,20 @@ msgid "Open Graph, Twitter Card, Google Knowledge Graph and more..."
445
  msgstr ""
446
 
447
  #: inc/admin/admin-features-list.php:37
448
- msgid "Track everything about your visitors with Google Analytics / Matomo / Microsoft Clarity"
449
  msgstr ""
450
 
451
  #: inc/admin/admin-features-list.php:43
452
- msgid "Ping Google & Bing to quickly index your content"
 
 
 
 
 
453
  msgstr ""
454
 
455
  #: inc/admin/admin-features-list.php:49
456
- msgid "Advanced SEO options for advanced users!"
457
  msgstr ""
458
 
459
  #: inc/admin/admin-features-list.php:57
@@ -465,7 +472,7 @@ msgid "WooCommerce"
465
  msgstr ""
466
 
467
  #: inc/admin/admin-features-list.php:66
468
- msgid "Improve WooCommerce SEO"
469
  msgstr ""
470
 
471
  #: inc/admin/admin-features-list.php:71
@@ -473,7 +480,7 @@ msgid "Easy Digital Downloads"
473
  msgstr ""
474
 
475
  #: inc/admin/admin-features-list.php:72
476
- msgid "Improve Easy Digital Downloads SEO"
477
  msgstr ""
478
 
479
  #: inc/admin/admin-features-list.php:77
@@ -481,7 +488,7 @@ msgid "Local Business"
481
  msgstr ""
482
 
483
  #: inc/admin/admin-features-list.php:78
484
- msgid "Add Google Local Business data type"
485
  msgstr ""
486
 
487
  #: inc/admin/admin-features-list.php:83
@@ -489,7 +496,7 @@ msgid "Dublin Core"
489
  msgstr ""
490
 
491
  #: inc/admin/admin-features-list.php:84
492
- msgid "Add Dublin Core meta tags"
493
  msgstr ""
494
 
495
  #: inc/admin/admin-features-list.php:89
@@ -505,7 +512,7 @@ msgid "Breadcrumbs"
505
  msgstr ""
506
 
507
  #: inc/admin/admin-features-list.php:96
508
- msgid "Enable Breadcrumbs for your theme and improve your SEO in SERPs"
509
  msgstr ""
510
 
511
  #: inc/admin/admin-features-list.php:101
@@ -513,74 +520,82 @@ msgid "Google Page Speed"
513
  msgstr ""
514
 
515
  #: inc/admin/admin-features-list.php:102
516
- msgid "Track your website performance to improve SEO with Google Page Speed"
517
  msgstr ""
518
 
519
- #: inc/admin/admin-features-list.php:109
520
- msgid "robots.txt"
521
  msgstr ""
522
 
523
- #: inc/admin/admin-features-list.php:110
524
- msgid "Edit your robots.txt file"
525
  msgstr ""
526
 
527
  #: inc/admin/admin-features-list.php:116
528
- msgid "Google News Sitemap"
529
  msgstr ""
530
 
531
  #: inc/admin/admin-features-list.php:117
532
- msgid "Optimize your site for Google News"
533
  msgstr ""
534
 
535
  #: inc/admin/admin-features-list.php:123
536
- msgid "Create / manage your schemas"
537
  msgstr ""
538
 
539
- #: inc/admin/admin-features-list.php:129
540
- msgid "Monitor 404, create 301, 302 and 307 redirections"
 
 
 
 
 
 
 
 
541
  msgstr ""
542
 
543
- #: inc/admin/admin-features-list.php:134
544
  msgid "Broken links"
545
  msgstr ""
546
 
547
- #: inc/admin/admin-features-list.php:135
548
  msgid "Scan your site to find SEO problems."
549
  msgstr ""
550
 
551
- #: inc/admin/admin-features-list.php:140
552
  msgid "URL Rewriting"
553
  msgstr ""
554
 
555
- #: inc/admin/admin-features-list.php:141
556
  msgid "Customize your permalinks."
557
  msgstr ""
558
 
559
- #: inc/admin/admin-features-list.php:147
560
  msgid ".htaccess"
561
  msgstr ""
562
 
563
- #: inc/admin/admin-features-list.php:148
564
  msgid "Edit your htaccess file."
565
  msgstr ""
566
 
567
- #: inc/admin/admin-features-list.php:155
568
  msgid "RSS"
569
  msgstr ""
570
 
571
- #: inc/admin/admin-features-list.php:156
572
  msgid "Configure default WordPress RSS."
573
  msgstr ""
574
 
575
- #: inc/admin/admin-features-list.php:164
576
  msgid "Import/Export plugin settings from site to site."
577
  msgstr ""
578
 
579
- #: inc/admin/admin-features-list.php:172
580
  msgid "Edit your license key."
581
  msgstr ""
582
 
583
- #: inc/admin/admin-features-list.php:203
584
  msgid "Toggle %s"
585
  msgstr ""
586
 
@@ -605,7 +620,7 @@ msgstr ""
605
  #: inc/admin/admin-pages/Sitemaps.php:43
606
  #: inc/admin/admin-pages/Social.php:43
607
  #: inc/admin/admin-pages/Titles.php:54
608
- #: seopress-functions.php:711
609
  msgid "Save changes"
610
  msgstr ""
611
 
@@ -673,13 +688,13 @@ msgstr ""
673
  #: inc/admin/admin-pages/Tools.php:22
674
  #: inc/admin/admin-pages/Tools.php:155
675
  #: inc/admin/sections/InstantIndexing.php:54
676
- #: seopress.php:601
677
  msgid "Settings"
678
  msgstr ""
679
 
680
  #: inc/admin/admin-pages/Sitemaps.php:19
681
  #: inc/admin/admin-pages/Titles.php:21
682
- #: inc/admin/sections/Sitemaps.php:153
683
  #: inc/admin/sections/Titles.php:48
684
  #: inc/admin/wizard/admin-wizard.php:200
685
  #: inc/admin/wizard/admin-wizard.php:211
@@ -689,7 +704,7 @@ msgstr ""
689
 
690
  #: inc/admin/admin-pages/Sitemaps.php:20
691
  #: inc/admin/admin-pages/Titles.php:23
692
- #: inc/admin/sections/Sitemaps.php:168
693
  #: inc/admin/sections/Titles.php:78
694
  #: inc/admin/wizard/admin-wizard.php:202
695
  #: inc/admin/wizard/admin-wizard.php:213
@@ -698,7 +713,7 @@ msgid "Taxonomies"
698
  msgstr ""
699
 
700
  #: inc/admin/admin-pages/Sitemaps.php:21
701
- #: inc/admin/sections/Sitemaps.php:125
702
  msgid "HTML Sitemap"
703
  msgstr ""
704
 
@@ -720,7 +735,7 @@ msgid "Facebook (Open Graph)"
720
  msgstr ""
721
 
722
  #: inc/admin/admin-pages/Social.php:21
723
- #: inc/admin/sections/Social.php:98
724
  msgid "Twitter (Twitter card)"
725
  msgstr ""
726
 
@@ -780,7 +795,7 @@ msgstr ""
780
  #: inc/admin/metaboxes/admin-metaboxes-form.php:150
781
  #: inc/admin/migrate/MigrationTools.php:19
782
  #: inc/admin/settings/Titles.php:32
783
- #: inc/functions/options-advanced-admin.php:761
784
  #: src/Helpers/ContentAnalysis.php:53
785
  #: app/react/components/Forms/MetaTitleDescription/index.js:149
786
  #: app/react/components/Forms/MetaTitleDescription/index.js:151
@@ -824,17 +839,17 @@ msgstr ""
824
  #: src/Helpers/ContentAnalysis.php:13
825
  #: src/Helpers/Metas/RobotSettings.php:100
826
  #: app/react/layout/Main/components/Advanced/index.js:145
827
- #: app/react/services/content-analysis/canonicalUrl.js:107
828
  msgid "Canonical URL"
829
  msgstr ""
830
 
831
  #: inc/admin/admin-pages/Tools.php:84
832
  #: inc/admin/admin-pages/Tools.php:130
833
- #: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:34
834
- #: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:35
835
- #: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:39
836
  #: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:566
837
- #: inc/functions/options-advanced-admin.php:770
838
  #: app/react/layout/Main/components/ContentAnalysis/index.js:365
839
  #: app/react/layout/Main/components/ContentAnalysis/index.js:367
840
  msgid "Target keywords"
@@ -960,7 +975,7 @@ msgstr ""
960
  #: app/react/layout/Main/components/GoogleNews/index.js:42
961
  #: app/react/layout/Main/components/MainTitleDescription/index.js:33
962
  #: app/react/layout/Main/components/Redirection/index.js:181
963
- #: app/react/layout/Main/components/SchemasManual/index.js:377
964
  #: app/react/layout/Main/components/Social/index.js:42
965
  #: app/react/layout/Main/components/VideoSitemap/index.js:205
966
  msgid "Your settings have been saved."
@@ -1017,7 +1032,7 @@ msgid "Get started"
1017
  msgstr ""
1018
 
1019
  #: inc/admin/blocks/get-started.php:25
1020
- #: seopress-functions.php:502
1021
  msgid "Dismiss"
1022
  msgstr ""
1023
 
@@ -1037,111 +1052,111 @@ msgstr ""
1037
  msgid "SEO Tools"
1038
  msgstr ""
1039
 
1040
- #: inc/admin/blocks/insights.php:103
1041
- msgid "Google Page Speed Score"
1042
  msgstr ""
1043
 
1044
- #: inc/admin/blocks/insights.php:104
1045
- msgid "Learn how your site has performed, based on data from your actual users around the world."
1046
  msgstr ""
1047
 
1048
- #: inc/admin/blocks/insights.php:111
1049
- msgid "<span><span class=\"score red\"></span>0-49</span><span><span class=\"score yellow\"></span>50-89</span><span><span class=\"score green\"></span>90-100</span>"
1050
  msgstr ""
1051
 
1052
- #: inc/admin/blocks/insights.php:124
1053
- msgid "Core Web Vitals Assessment: "
1054
  msgstr ""
1055
 
1056
- #: inc/admin/blocks/insights.php:127
1057
- msgid "Passed"
1058
  msgstr ""
1059
 
1060
- #: inc/admin/blocks/insights.php:129
1061
- msgid "No data found"
1062
  msgstr ""
1063
 
1064
- #: inc/admin/blocks/insights.php:131
1065
- msgid "Failed"
1066
  msgstr ""
1067
 
1068
- #: inc/admin/blocks/insights.php:134
1069
- msgid "Computed from the %s Core Web Vitals metrics over the latest 28-day collection period."
1070
  msgstr ""
1071
 
1072
- #: inc/admin/blocks/insights.php:138
1073
- msgid "No data available."
1074
  msgstr ""
1075
 
1076
- #: inc/admin/blocks/insights.php:143
1077
- msgid "See full report"
1078
  msgstr ""
1079
 
1080
- #: inc/admin/blocks/insights.php:156
1081
- msgid "Sessions"
1082
  msgstr ""
1083
 
1084
- #: inc/admin/blocks/insights.php:159
1085
- msgid "Users"
1086
  msgstr ""
1087
 
1088
- #: inc/admin/blocks/insights.php:162
1089
- msgid "Page Views"
1090
  msgstr ""
1091
 
1092
- #: inc/admin/blocks/insights.php:165
1093
- msgid "Page view / session"
1094
  msgstr ""
1095
 
1096
- #: inc/admin/blocks/insights.php:168
1097
- msgid "Average session duration"
1098
  msgstr ""
1099
 
1100
- #: inc/admin/blocks/insights.php:171
1101
- msgid "Bounce rate"
1102
  msgstr ""
1103
 
1104
- #: inc/admin/blocks/insights.php:174
1105
- msgid "New sessions"
1106
  msgstr ""
1107
 
1108
- #: inc/admin/blocks/insights.php:190
1109
- msgid "No stats found"
1110
  msgstr ""
1111
 
1112
- #: inc/admin/blocks/insights.php:199
1113
- msgid "Connect Google Analytics"
1114
  msgstr ""
1115
 
1116
- #: inc/admin/blocks/insights.php:215
1117
  msgid "Check websites setup on your server"
1118
  msgstr ""
1119
 
1120
- #: inc/admin/blocks/insights.php:224
1121
  msgid "Not found"
1122
  msgstr ""
1123
 
1124
- #: inc/admin/blocks/insights.php:229
1125
  msgid "No scrape."
1126
  msgstr ""
1127
 
1128
- #: inc/admin/blocks/insights.php:234
1129
  msgid "No domain found."
1130
  msgstr ""
1131
 
1132
- #: inc/admin/blocks/insights.php:245
1133
  msgid "Server IP Address: "
1134
  msgstr ""
1135
 
1136
- #: inc/admin/blocks/insights.php:252
1137
  msgid "Last scrape: "
1138
  msgstr ""
1139
 
1140
- #: inc/admin/blocks/insights.php:259
1141
  msgid "Number of websites on your server: "
1142
  msgstr ""
1143
 
1144
- #: inc/admin/blocks/insights.php:280
1145
  msgid "Get list"
1146
  msgstr ""
1147
 
@@ -1162,7 +1177,7 @@ msgstr ""
1162
  #: app/react/layout/Main/components/Advanced/index.js:244
1163
  #: app/react/layout/Main/components/GoogleNews/index.js:86
1164
  #: app/react/layout/Main/components/Redirection/index.js:149
1165
- #: app/react/layout/Main/components/SchemasManual/index.js:340
1166
  #: app/react/layout/Main/components/Social/index.js:233
1167
  #: app/react/layout/Main/components/VideoSitemap/index.js:277
1168
  msgid "Save"
@@ -1329,11 +1344,11 @@ msgstr ""
1329
  #: inc/admin/blocks/notifications-center.php:559
1330
  #: inc/admin/blocks/notifications-center.php:579
1331
  #: inc/admin/blocks/notifications-center.php:597
1332
- #: inc/admin/callbacks/Analytics.php:599
1333
- #: inc/admin/callbacks/Analytics.php:696
1334
- #: inc/admin/callbacks/Analytics.php:724
1335
- #: inc/admin/callbacks/Analytics.php:753
1336
- #: inc/admin/callbacks/Analytics.php:781
1337
  msgid "Learn more"
1338
  msgstr ""
1339
 
@@ -1616,233 +1631,241 @@ msgid "Add TINYMCE editor to term description"
1616
  msgstr ""
1617
 
1618
  #: inc/admin/callbacks/Advanced.php:60
1619
- #: inc/admin/callbacks/Advanced.php:100
1620
- #: inc/admin/wizard/admin-wizard.php:1236
1621
- #: inc/admin/wizard/admin-wizard.php:1260
1622
  msgid "Remove <strong>%s</strong> in your permalinks"
1623
  msgstr ""
1624
 
1625
- #: inc/admin/callbacks/Advanced.php:65
1626
- #: inc/admin/callbacks/Advanced.php:106
 
 
 
 
1627
  msgid "You have to flush your permalinks each time you change this setting."
1628
  msgstr ""
1629
 
1630
  #: inc/admin/callbacks/Advanced.php:109
1631
- msgid "Make sure you don't have indentical URLs after activating this option to prevent conflicts."
 
 
 
 
1632
  msgstr ""
1633
 
1634
- #: inc/admin/callbacks/Advanced.php:120
1635
  msgid "You need to enable <strong>WooCommerce</strong> to apply these settings."
1636
  msgstr ""
1637
 
1638
- #: inc/admin/callbacks/Advanced.php:139
1639
  #: inc/admin/settings/Advanced.php:40
1640
  msgid "Disable trailing slash for metas"
1641
  msgstr ""
1642
 
1643
- #: inc/admin/callbacks/Advanced.php:144
1644
  msgid "You must check this box if the structure of your permalinks <strong>DOES NOT</strong> contain a slash at the end (eg: /%postname%)"
1645
  msgstr ""
1646
 
1647
- #: inc/admin/callbacks/Advanced.php:165
1648
  msgid "Remove WordPress meta generator in source code"
1649
  msgstr ""
1650
 
1651
- #: inc/admin/callbacks/Advanced.php:185
1652
  msgid "Remove hentry post class to prevent Google from seeing this as structured data (schema)"
1653
  msgstr ""
1654
 
1655
- #: inc/admin/callbacks/Advanced.php:205
1656
  msgid "Remove comment author URL in comments if the website is filled from profile page"
1657
  msgstr ""
1658
 
1659
- #: inc/admin/callbacks/Advanced.php:225
1660
  msgid "Remove website field from comment form to reduce spam"
1661
  msgstr ""
1662
 
1663
- #: inc/admin/callbacks/Advanced.php:245
1664
  msgid "Prevent search engines to follow / index the link to the comments form (<em>eg: https://www.example.com/my-blog-post/#respond</em>)"
1665
  msgstr ""
1666
 
1667
- #: inc/admin/callbacks/Advanced.php:265
1668
  msgid "Remove WordPress shortlink meta tag in source code (eg:"
1669
  msgstr ""
1670
 
1671
- #: inc/admin/callbacks/Advanced.php:288
1672
  msgid "Remove Windows Live Writer meta tag in source code (eg:"
1673
  msgstr ""
1674
 
1675
- #: inc/admin/callbacks/Advanced.php:311
1676
  msgid "Remove Really Simple Discovery meta tag in source code (eg:"
1677
  msgstr ""
1678
 
1679
- #: inc/admin/callbacks/Advanced.php:318
1680
  msgid "WordPress Site Health feature will return a HTTPS warning if you enable this option. This is a false positive of course."
1681
  msgstr ""
1682
 
1683
- #: inc/admin/callbacks/Advanced.php:331
1684
  msgid "Enter Google meta value site verification"
1685
  msgstr ""
1686
 
1687
- #: inc/admin/callbacks/Advanced.php:331
1688
- #: inc/admin/settings/Advanced.php:112
1689
  msgid "Google site verification"
1690
  msgstr ""
1691
 
1692
- #: inc/admin/callbacks/Advanced.php:335
1693
  msgid "If your site is already verified in <strong>Google Search Console</strong>, you can leave this field empty."
1694
  msgstr ""
1695
 
1696
- #: inc/admin/callbacks/Advanced.php:346
1697
  msgid "Enter Bing meta value site verification"
1698
  msgstr ""
1699
 
1700
- #: inc/admin/callbacks/Advanced.php:346
1701
- #: inc/admin/settings/Advanced.php:120
1702
  msgid "Bing site verification"
1703
  msgstr ""
1704
 
1705
- #: inc/admin/callbacks/Advanced.php:350
1706
  msgid "If your site is already verified in <strong>Bing Webmaster tools</strong>, you can leave this field empty."
1707
  msgstr ""
1708
 
1709
- #: inc/admin/callbacks/Advanced.php:361
1710
  msgid "Enter Pinterest meta value site verification"
1711
  msgstr ""
1712
 
1713
- #: inc/admin/callbacks/Advanced.php:361
1714
- #: inc/admin/settings/Advanced.php:128
1715
  msgid "Pinterest site verification"
1716
  msgstr ""
1717
 
1718
- #: inc/admin/callbacks/Advanced.php:371
1719
- #: inc/admin/settings/Advanced.php:136
1720
  msgid "Yandex site verification"
1721
  msgstr ""
1722
 
1723
- #: inc/admin/callbacks/Advanced.php:371
1724
  msgid "Enter Yandex meta value site verification"
1725
  msgstr ""
1726
 
1727
- #: inc/admin/callbacks/Advanced.php:388
1728
  msgid "Remove SEO from Admin Bar in backend and frontend"
1729
  msgstr ""
1730
 
1731
- #: inc/admin/callbacks/Advanced.php:408
1732
  msgid "Enable the universal SEO metabox for the Block Editor (Gutenberg)"
1733
  msgstr ""
1734
 
1735
- #: inc/admin/callbacks/Advanced.php:437
1736
  msgid "Disable the universal SEO metabox"
1737
  msgstr ""
1738
 
1739
- #: inc/admin/callbacks/Advanced.php:442
1740
  msgid "Learn more about how we interface with all page builders to optimize your productivity"
1741
  msgstr ""
1742
 
1743
- #: inc/admin/callbacks/Advanced.php:464
1744
  msgid "Remove noindex item from Admin Bar in backend and frontend"
1745
  msgstr ""
1746
 
1747
- #: inc/admin/callbacks/Advanced.php:482
1748
  msgid "High priority (top)"
1749
  msgstr ""
1750
 
1751
- #: inc/admin/callbacks/Advanced.php:487
1752
  msgid "Normal priority (default)"
1753
  msgstr ""
1754
 
1755
- #: inc/admin/callbacks/Advanced.php:492
1756
  msgid "Low priority"
1757
  msgstr ""
1758
 
1759
- #: inc/admin/callbacks/Advanced.php:512
1760
  msgid "Automatic tab (default)"
1761
  msgstr ""
1762
 
1763
- #: inc/admin/callbacks/Advanced.php:517
1764
  msgid "Manual tab"
1765
  msgstr ""
1766
 
1767
- #: inc/admin/callbacks/Advanced.php:539
1768
  msgid "Hide Notifications Center in SEO Dashboard page"
1769
  msgstr ""
1770
 
1771
- #: inc/admin/callbacks/Advanced.php:559
1772
  msgid "Hide SEO News in SEO Dashboard page"
1773
  msgstr ""
1774
 
1775
- #: inc/admin/callbacks/Advanced.php:579
1776
  msgid "Hide Site Overview in SEO Dashboard page"
1777
  msgstr ""
1778
 
1779
- #: inc/admin/callbacks/Advanced.php:598
1780
  msgid "Add title column"
1781
  msgstr ""
1782
 
1783
- #: inc/admin/callbacks/Advanced.php:618
1784
  msgid "Add meta description column"
1785
  msgstr ""
1786
 
1787
- #: inc/admin/callbacks/Advanced.php:638
1788
  msgid "Add redirection enable column"
1789
  msgstr ""
1790
 
1791
- #: inc/admin/callbacks/Advanced.php:658
1792
  msgid "Add redirection URL column"
1793
  msgstr ""
1794
 
1795
- #: inc/admin/callbacks/Advanced.php:678
1796
  msgid "Add canonical URL column"
1797
  msgstr ""
1798
 
1799
- #: inc/admin/callbacks/Advanced.php:698
1800
  msgid "Add target keyword column"
1801
  msgstr ""
1802
 
1803
- #: inc/admin/callbacks/Advanced.php:718
1804
  msgid "Display noindex status"
1805
  msgstr ""
1806
 
1807
- #: inc/admin/callbacks/Advanced.php:738
1808
  msgid "Display nofollow status"
1809
  msgstr ""
1810
 
1811
- #: inc/admin/callbacks/Advanced.php:758
1812
  msgid "Display total number of words in content"
1813
  msgstr ""
1814
 
1815
- #: inc/admin/callbacks/Advanced.php:779
1816
  msgid "Display Page Speed column to check performances"
1817
  msgstr ""
1818
 
1819
- #: inc/admin/callbacks/Advanced.php:800
1820
  msgid "Display SEO Insights column to check rankings"
1821
  msgstr ""
1822
 
1823
- #: inc/admin/callbacks/Advanced.php:821
1824
  msgid "Display Content Analysis results column (\"Good\" or \"Should be improved\")"
1825
  msgstr ""
1826
 
1827
- #: inc/admin/callbacks/Advanced.php:841
1828
- #: inc/admin/settings/Advanced.php:326
1829
  msgid "Remove Content Analysis Metabox"
1830
  msgstr ""
1831
 
1832
- #: inc/admin/callbacks/Advanced.php:861
1833
  msgid "Remove Genesis SEO Metabox"
1834
  msgstr ""
1835
 
1836
- #: inc/admin/callbacks/Advanced.php:881
1837
  msgid "Remove Genesis SEO link in WP Admin Menu"
1838
  msgstr ""
1839
 
1840
- #: inc/admin/callbacks/Advanced.php:901
1841
  msgid "Remove the advice if None schema selected"
1842
  msgstr ""
1843
 
1844
- #: inc/admin/callbacks/Advanced.php:947
1845
- #: inc/admin/callbacks/Advanced.php:988
1846
  msgid "Hook to filter structured data types metabox call by post type - new window"
1847
  msgstr ""
1848
 
@@ -1864,542 +1887,546 @@ msgstr ""
1864
  msgid "Find your tracking ID"
1865
  msgstr ""
1866
 
1867
- #: inc/admin/callbacks/Analytics.php:48
 
 
 
 
1868
  msgid "Enter your measurement ID (G-XXXXXXXXXX)"
1869
  msgstr ""
1870
 
1871
- #: inc/admin/callbacks/Analytics.php:48
1872
  msgid "Enter your measurement ID"
1873
  msgstr ""
1874
 
1875
- #: inc/admin/callbacks/Analytics.php:55
1876
  msgid "Find your measurement ID"
1877
  msgstr ""
1878
 
1879
- #: inc/admin/callbacks/Analytics.php:71
1880
  msgid "After the opening body tag (recommended)"
1881
  msgstr ""
1882
 
1883
- #: inc/admin/callbacks/Analytics.php:76
1884
  msgid "Footer"
1885
  msgstr ""
1886
 
1887
- #: inc/admin/callbacks/Analytics.php:81
1888
  msgid "Head (not recommended)"
1889
  msgstr ""
1890
 
1891
- #: inc/admin/callbacks/Analytics.php:107
1892
  msgid "Request user's consent for analytics tracking (required by GDPR)"
1893
  msgstr ""
1894
 
1895
- #: inc/admin/callbacks/Analytics.php:111
1896
  msgid "The user must click the <strong>Accept button</strong> to allow tracking."
1897
  msgstr ""
1898
 
1899
- #: inc/admin/callbacks/Analytics.php:116
1900
  msgid "User roles excluded from tracking will not see the consent message."
1901
  msgstr ""
1902
 
1903
- #: inc/admin/callbacks/Analytics.php:119
1904
  msgid "If you use a caching plugin, you have to exclude this JS file in your settings:"
1905
  msgstr ""
1906
 
1907
- #: inc/admin/callbacks/Analytics.php:122
1908
  msgid "<strong>/wp-content/plugins/wp-seopress/assets/js/seopress-cookies-ajax.js</strong> and this cookie <strong>seopress-user-consent-accept</strong>"
1909
  msgstr ""
1910
 
1911
- #: inc/admin/callbacks/Analytics.php:123
1912
  msgid "Hook to add custom tracking code with user consent - new window"
1913
  msgstr ""
1914
 
1915
- #: inc/admin/callbacks/Analytics.php:142
1916
  msgid "Display and automatically accept the user‘s consent on page load (not fully GDPR)"
1917
  msgstr ""
1918
 
1919
- #: inc/admin/callbacks/Analytics.php:146
1920
  msgid "The previous option must be checked to use this."
1921
  msgstr ""
1922
 
1923
- #: inc/admin/callbacks/Analytics.php:166
1924
  msgid "Allow user to change its choice about cookies"
1925
  msgstr ""
1926
 
1927
- #: inc/admin/callbacks/Analytics.php:180
1928
  msgid "Enter your message (HTML allowed)"
1929
  msgstr ""
1930
 
1931
- #: inc/admin/callbacks/Analytics.php:180
1932
  msgid "This message will only appear if request user's consent is enabled."
1933
  msgstr ""
1934
 
1935
- #: inc/admin/callbacks/Analytics.php:183
1936
  msgid "Hook to filter user consent message - new window"
1937
  msgstr ""
1938
 
1939
- #: inc/admin/callbacks/Analytics.php:186
1940
  msgid "HTML tags allowed: strong, em, br, a href / target"
1941
  msgstr ""
1942
 
1943
- #: inc/admin/callbacks/Analytics.php:189
1944
  msgid "Shortcode allowed to get the privacy page set in WordPress settings: [seopress_privacy_page]"
1945
  msgstr ""
1946
 
1947
- #: inc/admin/callbacks/Analytics.php:200
1948
- #: inc/functions/options-google-analytics.php:277
1949
  msgid "Accept"
1950
  msgstr ""
1951
 
1952
- #: inc/admin/callbacks/Analytics.php:200
1953
  msgid "Change the button value"
1954
  msgstr ""
1955
 
1956
- #: inc/admin/callbacks/Analytics.php:210
1957
  msgid "default: X"
1958
  msgstr ""
1959
 
1960
- #: inc/admin/callbacks/Analytics.php:210
1961
  msgid "Change the close button value"
1962
  msgstr ""
1963
 
1964
- #: inc/admin/callbacks/Analytics.php:220
1965
  msgid "default: Manage cookies"
1966
  msgstr ""
1967
 
1968
- #: inc/admin/callbacks/Analytics.php:220
1969
  msgid "Change the edit button value"
1970
  msgstr ""
1971
 
1972
- #: inc/admin/callbacks/Analytics.php:240
1973
  msgid "Default: 30 days before the cookie expiration."
1974
  msgstr ""
1975
 
1976
- #: inc/admin/callbacks/Analytics.php:256
1977
  msgid "Bottom (default)"
1978
  msgstr ""
1979
 
1980
- #: inc/admin/callbacks/Analytics.php:261
1981
  msgid "Middle"
1982
  msgstr ""
1983
 
1984
- #: inc/admin/callbacks/Analytics.php:266
1985
  msgid "Top"
1986
  msgstr ""
1987
 
1988
- #: inc/admin/callbacks/Analytics.php:285
1989
  msgid "Left"
1990
  msgstr ""
1991
 
1992
- #: inc/admin/callbacks/Analytics.php:290
1993
  msgid "Center (default)"
1994
  msgstr ""
1995
 
1996
- #: inc/admin/callbacks/Analytics.php:295
1997
  msgid "Right"
1998
  msgstr ""
1999
 
2000
- #: inc/admin/callbacks/Analytics.php:310
2001
  msgid "Change the cookie bar width"
2002
  msgstr ""
2003
 
2004
- #: inc/admin/callbacks/Analytics.php:314
2005
  msgid "Default unit is Pixels. Add % just after your custom value to use percentages (eg: 80%)."
2006
  msgstr ""
2007
 
2008
- #: inc/admin/callbacks/Analytics.php:328
2009
  msgid "Backdrop"
2010
  msgstr ""
2011
 
2012
- #: inc/admin/callbacks/Analytics.php:332
2013
  msgid "Customize the cookie bar <strong>backdrop</strong>."
2014
  msgstr ""
2015
 
2016
- #: inc/admin/callbacks/Analytics.php:341
2017
  msgid "Display a backdrop with the cookie bar"
2018
  msgstr ""
2019
 
2020
- #: inc/admin/callbacks/Analytics.php:354
2021
- #: inc/admin/callbacks/Analytics.php:376
2022
- #: inc/admin/callbacks/Analytics.php:431
2023
- #: inc/admin/callbacks/Analytics.php:500
2024
  msgid "Background color: "
2025
  msgstr ""
2026
 
2027
- #: inc/admin/callbacks/Analytics.php:358
2028
  msgid "Change the background color of the backdrop"
2029
  msgstr ""
2030
 
2031
- #: inc/admin/callbacks/Analytics.php:368
2032
  msgid "Main settings"
2033
  msgstr ""
2034
 
2035
- #: inc/admin/callbacks/Analytics.php:372
2036
  msgid "Customize the general settings of the <strong>cookie bar</strong>."
2037
  msgstr ""
2038
 
2039
- #: inc/admin/callbacks/Analytics.php:381
2040
  msgid "Change the color of the cookie bar background"
2041
  msgstr ""
2042
 
2043
- #: inc/admin/callbacks/Analytics.php:391
2044
- #: inc/admin/callbacks/Analytics.php:460
2045
- #: inc/admin/callbacks/Analytics.php:515
2046
  msgid "Text color: "
2047
  msgstr ""
2048
 
2049
- #: inc/admin/callbacks/Analytics.php:396
2050
  msgid "Change the color of the cookie bar text"
2051
  msgstr ""
2052
 
2053
- #: inc/admin/callbacks/Analytics.php:406
2054
  msgid "Link color: "
2055
  msgstr ""
2056
 
2057
- #: inc/admin/callbacks/Analytics.php:411
2058
  msgid "Change the color of the cookie bar link"
2059
  msgstr ""
2060
 
2061
- #: inc/admin/callbacks/Analytics.php:423
2062
  msgid "Primary button"
2063
  msgstr ""
2064
 
2065
- #: inc/admin/callbacks/Analytics.php:427
2066
  msgid "Customize the <strong>Accept button</strong>."
2067
  msgstr ""
2068
 
2069
- #: inc/admin/callbacks/Analytics.php:435
2070
  msgid "Change the color of the cookie bar button background"
2071
  msgstr ""
2072
 
2073
- #: inc/admin/callbacks/Analytics.php:445
2074
- #: inc/admin/callbacks/Analytics.php:530
2075
  msgid "Background color on hover: "
2076
  msgstr ""
2077
 
2078
- #: inc/admin/callbacks/Analytics.php:450
2079
  msgid "Change the color of the cookie bar button hover background"
2080
  msgstr ""
2081
 
2082
- #: inc/admin/callbacks/Analytics.php:465
2083
  msgid "Change the color of the cookie bar button"
2084
  msgstr ""
2085
 
2086
- #: inc/admin/callbacks/Analytics.php:475
2087
- #: inc/admin/callbacks/Analytics.php:545
2088
  msgid "Text color on hover: "
2089
  msgstr ""
2090
 
2091
- #: inc/admin/callbacks/Analytics.php:480
2092
  msgid "Change the color of the cookie bar button hover"
2093
  msgstr ""
2094
 
2095
- #: inc/admin/callbacks/Analytics.php:492
2096
  msgid "Secondary button"
2097
  msgstr ""
2098
 
2099
- #: inc/admin/callbacks/Analytics.php:496
2100
  msgid "Customize the <strong>Close button</strong>."
2101
  msgstr ""
2102
 
2103
- #: inc/admin/callbacks/Analytics.php:505
2104
  msgid "Change the color of the cookie bar secondary button background"
2105
  msgstr ""
2106
 
2107
- #: inc/admin/callbacks/Analytics.php:520
2108
  msgid "Change the color of the cookie bar secondary button hover background"
2109
  msgstr ""
2110
 
2111
- #: inc/admin/callbacks/Analytics.php:535
2112
  msgid "Change the color of the cookie bar secondary button"
2113
  msgstr ""
2114
 
2115
- #: inc/admin/callbacks/Analytics.php:550
2116
  msgid "Change the color of the cookie bar secondary button hover"
2117
  msgstr ""
2118
 
2119
- #: inc/admin/callbacks/Analytics.php:592
2120
  msgid "Enter your Google Optimize container ID"
2121
  msgstr ""
2122
 
2123
- #: inc/admin/callbacks/Analytics.php:592
2124
  msgid "GTM-XXXXXXX"
2125
  msgstr ""
2126
 
2127
- #: inc/admin/callbacks/Analytics.php:596
2128
  msgid "Google Optimize offers A/B testing, website testing & personalization tools."
2129
  msgstr ""
2130
 
2131
- #: inc/admin/callbacks/Analytics.php:614
2132
  msgid "Enter your Google Ads conversion ID (eg: AW-123456789)"
2133
  msgstr ""
2134
 
2135
- #: inc/admin/callbacks/Analytics.php:614
2136
  msgid "AW-XXXXXXXXX"
2137
  msgstr ""
2138
 
2139
- #: inc/admin/callbacks/Analytics.php:618
2140
  msgid "Learn how to find your Google Ads Conversion ID"
2141
  msgstr ""
2142
 
2143
- #: inc/admin/callbacks/Analytics.php:631
2144
  msgid "Paste your tracking code here like Google Tag Manager (head). Do NOT paste GA4 or Universal Analytics codes here. They are automatically added to your source code."
2145
  msgstr ""
2146
 
2147
- #: inc/admin/callbacks/Analytics.php:631
2148
  msgid "Additional tracking code field"
2149
  msgstr ""
2150
 
2151
- #: inc/admin/callbacks/Analytics.php:634
2152
  msgid "This code will be added in the head section of your page."
2153
  msgstr ""
2154
 
2155
- #: inc/admin/callbacks/Analytics.php:645
2156
  msgid "Paste your tracking code here like Google Tag Manager (body)"
2157
  msgstr ""
2158
 
2159
- #: inc/admin/callbacks/Analytics.php:645
2160
  msgid "Additional tracking code field added to body"
2161
  msgstr ""
2162
 
2163
- #: inc/admin/callbacks/Analytics.php:647
2164
  msgid "This code will be added just after the opening body tag of your page."
2165
  msgstr ""
2166
 
2167
- #: inc/admin/callbacks/Analytics.php:650
2168
  msgid "You don‘t see your code? Make sure to call <strong>wp_body_open();</strong> just after the opening body tag in your theme."
2169
  msgstr ""
2170
 
2171
- #: inc/admin/callbacks/Analytics.php:657
2172
  msgid "Learn how to integrate Google Tag Manager"
2173
  msgstr ""
2174
 
2175
- #: inc/admin/callbacks/Analytics.php:670
2176
  msgid "Paste your tracking code here (footer)"
2177
  msgstr ""
2178
 
2179
- #: inc/admin/callbacks/Analytics.php:670
2180
  msgid "Additional tracking code field added to footer"
2181
  msgstr ""
2182
 
2183
- #: inc/admin/callbacks/Analytics.php:674
2184
  msgid "This code will be added just after the closing body tag of your page."
2185
  msgstr ""
2186
 
2187
- #: inc/admin/callbacks/Analytics.php:690
2188
  #: inc/admin/settings/Analytics.php:283
2189
  msgid "Enable remarketing, demographics, and interests reporting"
2190
  msgstr ""
2191
 
2192
- #: inc/admin/callbacks/Analytics.php:694
2193
  msgid "A remarketing audience is a list of cookies or mobile-advertising IDs that represents a group of users you want to re-engage because of their likelihood to convert."
2194
  msgstr ""
2195
 
2196
- #: inc/admin/callbacks/Analytics.php:717
2197
  #: inc/admin/settings/Analytics.php:291
2198
  msgid "Enable IP Anonymization"
2199
  msgstr ""
2200
 
2201
- #: inc/admin/callbacks/Analytics.php:721
2202
  msgid "When a customer of Analytics requests IP address anonymization, Analytics anonymizes the address as soon as technically feasible at the earliest possible stage of the collection network."
2203
  msgstr ""
2204
 
2205
- #: inc/admin/callbacks/Analytics.php:745
2206
  #: inc/admin/settings/Analytics.php:299
2207
  msgid "Enhanced Link Attribution"
2208
  msgstr ""
2209
 
2210
- #: inc/admin/callbacks/Analytics.php:749
2211
  msgid "Enhanced Link Attribution improves the accuracy of your In-Page Analytics report by automatically differentiating between multiple links to the same URL on a single page by using link element IDs."
2212
  msgstr ""
2213
 
2214
- #: inc/admin/callbacks/Analytics.php:774
2215
  #: inc/admin/settings/Analytics.php:307
2216
  msgid "Enable cross-domain tracking"
2217
  msgstr ""
2218
 
2219
- #: inc/admin/callbacks/Analytics.php:778
2220
  msgid "Cross domain tracking makes it possible for Analytics to see sessions on two related sites (such as an ecommerce site and a separate shopping cart site) as a single session. This is sometimes called site linking."
2221
  msgstr ""
2222
 
2223
- #: inc/admin/callbacks/Analytics.php:796
2224
- #: inc/admin/callbacks/Analytics.php:1205
2225
  msgid "Enter your domains: seopress.org,sub.seopress.org,sub2.seopress.org"
2226
  msgstr ""
2227
 
2228
- #: inc/admin/callbacks/Analytics.php:796
2229
- #: inc/admin/callbacks/Analytics.php:1206
2230
  #: inc/admin/settings/Analytics.php:315
2231
  msgid "Cross domains"
2232
  msgstr ""
2233
 
2234
- #: inc/admin/callbacks/Analytics.php:813
2235
  #: inc/admin/settings/Analytics.php:367
2236
  msgid "Enable external links tracking"
2237
  msgstr ""
2238
 
2239
- #: inc/admin/callbacks/Analytics.php:833
2240
  msgid "Enable download tracking"
2241
  msgstr ""
2242
 
2243
- #: inc/admin/callbacks/Analytics.php:846
2244
  msgid "pdf|docx|pptx|zip"
2245
  msgstr ""
2246
 
2247
- #: inc/admin/callbacks/Analytics.php:846
2248
  #: inc/admin/settings/Analytics.php:383
2249
  msgid "Track downloads' clicks"
2250
  msgstr ""
2251
 
2252
- #: inc/admin/callbacks/Analytics.php:850
2253
  msgid "Separate each file type extensions with a pipe \"|\""
2254
  msgstr ""
2255
 
2256
- #: inc/admin/callbacks/Analytics.php:868
2257
  msgid "Enable affiliate/outbound tracking"
2258
  msgstr ""
2259
 
2260
- #: inc/admin/callbacks/Analytics.php:882
2261
  msgid "aff|go|out"
2262
  msgstr ""
2263
 
2264
- #: inc/admin/callbacks/Analytics.php:882
2265
  #: inc/admin/settings/Analytics.php:399
2266
  msgid "Track affiliate/outbound links"
2267
  msgstr ""
2268
 
2269
- #: inc/admin/callbacks/Analytics.php:886
2270
  msgid "Separate each keyword with a pipe \"|\""
2271
  msgstr ""
2272
 
2273
- #: inc/admin/callbacks/Analytics.php:900
2274
- #: inc/admin/callbacks/Analytics.php:926
2275
- #: inc/admin/callbacks/Analytics.php:953
2276
- #: inc/admin/callbacks/Analytics.php:980
2277
- #: inc/admin/callbacks/Analytics.php:1008
2278
  #: inc/admin/callbacks/InstantIndexing.php:220
2279
  #: inc/admin/callbacks/Social.php:175
2280
  msgid "None"
2281
  msgstr ""
2282
 
2283
- #: inc/admin/callbacks/Analytics.php:907
2284
- #: inc/admin/callbacks/Analytics.php:933
2285
- #: inc/admin/callbacks/Analytics.php:960
2286
- #: inc/admin/callbacks/Analytics.php:987
2287
- #: inc/admin/callbacks/Analytics.php:1014
2288
  msgid "Custom Dimension #%d"
2289
  msgstr ""
2290
 
2291
- #: inc/admin/callbacks/Analytics.php:1034
2292
  #: inc/admin/settings/Analytics.php:466
2293
  msgid "Enable Matomo tracking"
2294
  msgstr ""
2295
 
2296
- #: inc/admin/callbacks/Analytics.php:1036
2297
  msgid "A Matomo Cloud account or a self hosted Matomo installation is required."
2298
  msgstr ""
2299
 
2300
- #: inc/admin/callbacks/Analytics.php:1058
2301
  msgid "Yes, self-hosted installation"
2302
  msgstr ""
2303
 
2304
- #: inc/admin/callbacks/Analytics.php:1060
2305
  msgid "If you use Matomo Cloud, uncheck this option."
2306
  msgstr ""
2307
 
2308
- #: inc/admin/callbacks/Analytics.php:1064
2309
  msgid "Learn how to install Matomo On-Premise on your server."
2310
  msgstr ""
2311
 
2312
- #: inc/admin/callbacks/Analytics.php:1080
2313
  msgid "Matomo URL (Cloud or Self-hosted)"
2314
  msgstr ""
2315
 
2316
- #: inc/admin/callbacks/Analytics.php:1095
2317
  msgid "Enter your site ID here"
2318
  msgstr ""
2319
 
2320
- #: inc/admin/callbacks/Analytics.php:1096
2321
  msgid "Matomo Site ID"
2322
  msgstr ""
2323
 
2324
- #: inc/admin/callbacks/Analytics.php:1101
2325
  msgid "To find your site ID, go to your <strong>Matomo Cloud account, Websites, Manage page</strong>. Look at \"Site ID\" on the right part."
2326
  msgstr ""
2327
 
2328
- #: inc/admin/callbacks/Analytics.php:1102
2329
  msgid "For self-hosted installations, go to your Matomo administration, Settings, Websites, Manage. From the list of your websites, find the ID line."
2330
  msgstr ""
2331
 
2332
- #: inc/admin/callbacks/Analytics.php:1119
2333
  msgid "Tracking one domain and its subdomains in the same website"
2334
  msgstr ""
2335
 
2336
- #: inc/admin/callbacks/Analytics.php:1123
2337
  msgid "If one visitor visits x.example.com and y.example.com, they will be counted as a unique visitor."
2338
  msgstr ""
2339
 
2340
- #: inc/admin/callbacks/Analytics.php:1142
2341
  msgid "Prepend the site domain to the page title when tracking"
2342
  msgstr ""
2343
 
2344
- #: inc/admin/callbacks/Analytics.php:1145
2345
  msgid "If someone visits the 'About' page on blog.example.com it will be recorded as 'blog / About'. This is the easiest way to get an overview of your traffic by sub-domain."
2346
  msgstr ""
2347
 
2348
- #: inc/admin/callbacks/Analytics.php:1163
2349
  #: inc/admin/settings/Analytics.php:514
2350
  msgid "Track users with JavaScript disabled"
2351
  msgstr ""
2352
 
2353
- #: inc/admin/callbacks/Analytics.php:1182
2354
  #: inc/admin/settings/Analytics.php:522
2355
  msgid "Enables cross domain linking"
2356
  msgstr ""
2357
 
2358
- #: inc/admin/callbacks/Analytics.php:1186
2359
  msgid "By default, the visitor ID that identifies a unique visitor is stored in the browser's first party cookies which can only be accessed by pages on the same domain."
2360
  msgstr ""
2361
 
2362
- #: inc/admin/callbacks/Analytics.php:1189
2363
  msgid "Enabling cross domain linking lets you track all the actions and pageviews of a specific visitor into the same visit even when they view pages on several domains."
2364
  msgstr ""
2365
 
2366
- #: inc/admin/callbacks/Analytics.php:1192
2367
  msgid "Whenever a user clicks on a link to one of your website's alias URLs, it will append a URL parameter pk_vid forwarding the Visitor ID."
2368
  msgstr ""
2369
 
2370
- #: inc/admin/callbacks/Analytics.php:1219
2371
  msgid "Enable client side DoNotTrack detection"
2372
  msgstr ""
2373
 
2374
- #: inc/admin/callbacks/Analytics.php:1223
2375
  msgid "Tracking requests will not be sent if visitors do not wish to be tracked."
2376
  msgstr ""
2377
 
2378
- #: inc/admin/callbacks/Analytics.php:1243
2379
  msgid "Disables all first party cookies. Existing Matomo cookies for this website will be deleted on the next page view."
2380
  msgstr ""
2381
 
2382
- #: inc/admin/callbacks/Analytics.php:1262
2383
  msgid "Enabling Download & Outlink tracking"
2384
  msgstr ""
2385
 
2386
- #: inc/admin/callbacks/Analytics.php:1266
2387
  msgid "By default, any file ending with one of these extensions will be considered a \"download\" in the Matomo interface: 7z|aac|arc|arj|apk|asf|asx|avi|bin|bz|bz2|csv|deb|dmg|doc|exe|flv|gif|gz|gzip|hqx|jar|jpg|jpeg|js|mp2|mp3|mp4|mpg|mpeg|mov|movie|msi|msp|odb|odf|odg|odp|ods|odt|ogg|ogv| pdf|phps|png|ppt|qt|qtm|ra|ram|rar|rpm|sea|sit|tar|tbz|tbz2|tgz|torrent|txt|wav|wma|wmv|wpd|xls|xml|z|zip"
2388
  msgstr ""
2389
 
2390
- #: inc/admin/callbacks/Analytics.php:1285
2391
  msgid "Disabling all heatmaps and session recordings"
2392
  msgstr ""
2393
 
2394
- #: inc/admin/callbacks/Analytics.php:1303
2395
  msgid "Add Microsoft Clarity code to your site"
2396
  msgstr ""
2397
 
2398
- #: inc/admin/callbacks/Analytics.php:1317
2399
  msgid "Enter your Project ID"
2400
  msgstr ""
2401
 
2402
- #: inc/admin/callbacks/Analytics.php:1324
2403
  msgid "Find your project ID"
2404
  msgstr ""
2405
 
@@ -2408,7 +2435,7 @@ msgid "Redirect attachment pages to post parent (or homepage if none)"
2408
  msgstr ""
2409
 
2410
  #: inc/admin/callbacks/ImageSEO.php:36
2411
- #: inc/admin/wizard/admin-wizard.php:1217
2412
  msgid "Redirect attachment pages to their file URL (https://www.example.com/my-image-file.jpg)"
2413
  msgstr ""
2414
 
@@ -2417,30 +2444,42 @@ msgid "If this option is checked, it will take precedence over the redirection o
2417
  msgstr ""
2418
 
2419
  #: inc/admin/callbacks/ImageSEO.php:60
 
 
 
 
 
 
 
 
2420
  msgid "When sending an image file, automatically set the title based on the filename"
2421
  msgstr ""
2422
 
2423
- #: inc/admin/callbacks/ImageSEO.php:80
 
 
 
 
2424
  msgid "When sending an image file, automatically set the alternative text based on the filename"
2425
  msgstr ""
2426
 
2427
- #: inc/admin/callbacks/ImageSEO.php:85
2428
  msgid "We recommend Image SEO plugin to optimize your image ALT texts and names for Search Engines using AI and Machine Learning. Starting from just €4.99."
2429
  msgstr ""
2430
 
2431
- #: inc/admin/callbacks/ImageSEO.php:107
2432
  msgid "Use the target keywords if not alternative text set for the image"
2433
  msgstr ""
2434
 
2435
- #: inc/admin/callbacks/ImageSEO.php:111
2436
  msgid "This setting will be applied to images without any alt text only on frontend. This setting is retroactive. If you turn it off, alt texts that were previously empty will be empty again."
2437
  msgstr ""
2438
 
2439
- #: inc/admin/callbacks/ImageSEO.php:132
2440
  msgid "When sending an image file, automatically set the caption based on the filename"
2441
  msgstr ""
2442
 
2443
- #: inc/admin/callbacks/ImageSEO.php:151
2444
  msgid "When sending an image file, automatically set the description based on the filename"
2445
  msgstr ""
2446
 
@@ -2587,7 +2626,7 @@ msgid "Enable HTML Sitemap"
2587
  msgstr ""
2588
 
2589
  #: inc/admin/callbacks/Sitemaps.php:135
2590
- #: inc/admin/sections/Sitemaps.php:140
2591
  msgid "Guide to enable a HTML Sitemap - new window"
2592
  msgstr ""
2593
 
@@ -2663,6 +2702,8 @@ msgstr ""
2663
  #: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:286
2664
  #: inc/admin/wizard/admin-wizard.php:714
2665
  #: src/Helpers/Metas/RobotSettings.php:19
 
 
2666
  msgid "None (will disable this feature)"
2667
  msgstr ""
2668
 
@@ -2698,8 +2739,8 @@ msgstr ""
2698
 
2699
  #: inc/admin/callbacks/Social.php:60
2700
  #: inc/admin/callbacks/Social.php:306
2701
- #: inc/admin/callbacks/Social.php:382
2702
- #: inc/admin/callbacks/Social.php:524
2703
  #: inc/admin/metaboxes/admin-metaboxes-form.php:430
2704
  #: inc/admin/metaboxes/admin-metaboxes-form.php:550
2705
  #: inc/admin/metaboxes/admin-metaboxes-form.php:905
@@ -2840,14 +2881,14 @@ msgid "Enable OG data"
2840
  msgstr ""
2841
 
2842
  #: inc/admin/callbacks/Social.php:297
2843
- #: inc/admin/callbacks/Social.php:374
2844
  #: inc/admin/settings/Social.php:138
2845
  msgid "Select a default image"
2846
  msgstr ""
2847
 
2848
  #: inc/admin/callbacks/Social.php:298
2849
- #: inc/admin/callbacks/Social.php:375
2850
- #: inc/admin/callbacks/Social.php:521
2851
  #: inc/admin/metaboxes/admin-metaboxes-form.php:415
2852
  #: inc/admin/metaboxes/admin-metaboxes-form.php:535
2853
  #: src/Helpers/Metas/SocialSettings.php:46
@@ -2861,71 +2902,75 @@ msgstr ""
2861
  msgid "Minimum size: 200x200px, ideal ratio 1.91:1, 8Mb max. (eg: 1640x856px or 3280x1712px for retina screens)"
2862
  msgstr ""
2863
 
2864
- #: inc/admin/callbacks/Social.php:328
 
 
 
 
2865
  msgid "Override every <strong>og:image</strong> tag with this default image (except if a custom og:image has already been set from the SEO metabox)."
2866
  msgstr ""
2867
 
2868
- #: inc/admin/callbacks/Social.php:335
2869
  msgid "Please define a <strong>default OG Image</strong> from the field above"
2870
  msgstr ""
2871
 
2872
- #: inc/admin/callbacks/Social.php:359
2873
  msgid "WooCommerce Shop Page."
2874
  msgstr ""
2875
 
2876
- #: inc/admin/callbacks/Social.php:392
2877
  msgid "No custom post type to configure."
2878
  msgstr ""
2879
 
2880
- #: inc/admin/callbacks/Social.php:409
2881
  msgid "One or more Facebook Page IDs that are associated with a URL in order to enable link editing and instant article publishing."
2882
  msgstr ""
2883
 
2884
- #: inc/admin/callbacks/Social.php:417
2885
  msgid "How do I find my Facebook Page ID?"
2886
  msgstr ""
2887
 
2888
- #: inc/admin/callbacks/Social.php:434
2889
  msgid "The ID (or comma-separated list for properties that can accept multiple IDs) of an app, person using the app, or Page Graph API object."
2890
  msgstr ""
2891
 
2892
- #: inc/admin/callbacks/Social.php:453
2893
  msgid "The Facebook app ID of the site's app. In order to use Facebook Insights you must add the app ID to your page. Insights lets you view analytics for traffic to your site from Facebook. Find the app ID in your App Dashboard. <a class=\"seopress-help\" href=\"https://developers.facebook.com/apps/redirect/dashboard\" target=\"_blank\">More info here</a> <span class=\"seopress-help dashicons dashicons-external\"></span>"
2894
  msgstr ""
2895
 
2896
- #: inc/admin/callbacks/Social.php:461
2897
  msgid "How to create a Facebook App ID"
2898
  msgstr ""
2899
 
2900
- #: inc/admin/callbacks/Social.php:480
2901
  msgid "Enable Twitter card"
2902
  msgstr ""
2903
 
2904
- #: inc/admin/callbacks/Social.php:501
2905
  msgid "Use OG if no Twitter Cards"
2906
  msgstr ""
2907
 
2908
- #: inc/admin/callbacks/Social.php:520
2909
  #: inc/admin/settings/Social.php:211
2910
  msgid "Default Twitter Image"
2911
  msgstr ""
2912
 
2913
- #: inc/admin/callbacks/Social.php:527
2914
  #: inc/admin/metaboxes/admin-metaboxes-form.php:539
2915
  #: src/Helpers/Metas/SocialSettings.php:91
2916
  msgid "Minimum size: 144x144px (300x157px with large card enabled), ideal ratio 1:1 (2:1 with large card), 5Mb max."
2917
  msgstr ""
2918
 
2919
- #: inc/admin/callbacks/Social.php:546
2920
  #: seopress.php:407
2921
  msgid "Default"
2922
  msgstr ""
2923
 
2924
- #: inc/admin/callbacks/Social.php:551
2925
  msgid "Large"
2926
  msgstr ""
2927
 
2928
- #: inc/admin/callbacks/Social.php:556
2929
  msgid "The Summary Card with <strong>Large Image</strong> features a large, full-width prominent image alongside a tweet. It is designed to give the reader a rich photo experience, and clicking on the image brings the user to your website."
2930
  msgstr ""
2931
 
@@ -2937,12 +2982,12 @@ msgstr ""
2937
  #: inc/admin/callbacks/Titles.php:42
2938
  #: inc/admin/callbacks/Titles.php:224
2939
  #: inc/admin/callbacks/Titles.php:434
2940
- #: inc/admin/callbacks/Titles.php:652
2941
- #: inc/admin/callbacks/Titles.php:867
2942
- #: inc/admin/callbacks/Titles.php:1010
2943
- #: inc/admin/callbacks/Titles.php:1104
2944
- #: inc/admin/callbacks/Titles.php:1198
2945
- #: inc/admin/callbacks/Titles.php:1271
2946
  #: inc/admin/metaboxes/admin-metaboxes-form.php:136
2947
  #: inc/admin/page-builders/elementor/inc/controls/class-text-letter-counter-control.php:68
2948
  #: inc/admin/settings/Titles.php:16
@@ -2987,23 +3032,23 @@ msgstr ""
2987
 
2988
  #: inc/admin/callbacks/Titles.php:170
2989
  #: inc/admin/callbacks/Titles.php:418
2990
- #: inc/admin/callbacks/Titles.php:582
2991
- #: inc/admin/callbacks/Titles.php:815
2992
- #: inc/admin/callbacks/Titles.php:994
2993
- #: inc/admin/callbacks/Titles.php:1088
2994
- #: inc/admin/callbacks/Titles.php:1181
2995
- #: inc/admin/callbacks/Titles.php:1255
2996
  msgid "Title template"
2997
  msgstr ""
2998
 
2999
  #: inc/admin/callbacks/Titles.php:241
3000
  #: inc/admin/callbacks/Titles.php:452
3001
- #: inc/admin/callbacks/Titles.php:670
3002
- #: inc/admin/callbacks/Titles.php:882
3003
- #: inc/admin/callbacks/Titles.php:1026
3004
- #: inc/admin/callbacks/Titles.php:1119
3005
- #: inc/admin/callbacks/Titles.php:1213
3006
- #: inc/admin/callbacks/Titles.php:1283
3007
  msgid "Meta description template"
3008
  msgstr ""
3009
 
@@ -3043,244 +3088,276 @@ msgstr ""
3043
  msgid "Do not display BuddyPress groups in search engine results <strong>(noindex)</strong>"
3044
  msgstr ""
3045
 
3046
- #: inc/admin/callbacks/Titles.php:522
3047
- #: inc/admin/callbacks/Titles.php:533
3048
- #: inc/admin/callbacks/Titles.php:538
3049
- #: inc/admin/callbacks/Titles.php:547
3050
  msgid "Click to hide any SEO metaboxes for this taxonomy"
3051
  msgstr ""
3052
 
3053
- #: inc/admin/callbacks/Titles.php:529
3054
- #: inc/admin/callbacks/Titles.php:542
3055
- #: inc/admin/callbacks/Titles.php:546
3056
  msgid "Click to display any SEO metaboxes for this taxonomy"
3057
  msgstr ""
3058
 
3059
- #: inc/admin/callbacks/Titles.php:628
3060
  #: src/Tags/CategoryTitle.php:15
3061
  msgid "Category Title"
3062
  msgstr ""
3063
 
3064
- #: inc/admin/callbacks/Titles.php:636
3065
  #: src/Tags/TagTitle.php:15
3066
  msgid "Tag Title"
3067
  msgstr ""
3068
 
3069
- #: inc/admin/callbacks/Titles.php:644
3070
  #: inc/admin/metaboxes/admin-metaboxes-form.php:128
3071
  #: src/Tags/TermTitle.php:15
3072
  msgid "Term Title"
3073
  msgstr ""
3074
 
3075
- #: inc/admin/callbacks/Titles.php:701
3076
  #: src/Tags/CategoryDescription.php:15
3077
  msgid "Category Description"
3078
  msgstr ""
3079
 
3080
- #: inc/admin/callbacks/Titles.php:709
3081
  #: src/Tags/TagDescription.php:15
3082
  msgid "Tag Description"
3083
  msgstr ""
3084
 
3085
- #: inc/admin/callbacks/Titles.php:717
3086
  #: src/Tags/TermDescription.php:15
3087
  msgid "Term Description"
3088
  msgstr ""
3089
 
3090
- #: inc/admin/callbacks/Titles.php:739
3091
  msgid "Do not display this taxonomy archive in search engine results <strong>(noindex)</strong>"
3092
  msgstr ""
3093
 
3094
- #: inc/admin/callbacks/Titles.php:747
3095
  msgid "This custom taxonomy is <strong>NOT</strong> excluded from your XML sitemaps despite the fact that it is set to <strong>NOINDEX</strong>. We recommend that you check this out."
3096
  msgstr ""
3097
 
3098
- #: inc/admin/callbacks/Titles.php:777
3099
  msgid "Do not follow links for this taxonomy archive <strong>(nofollow)</strong>"
3100
  msgstr ""
3101
 
3102
- #: inc/admin/callbacks/Titles.php:806
3103
  msgid "See archive"
3104
  msgstr ""
3105
 
3106
- #: inc/admin/callbacks/Titles.php:862
3107
  msgid "Post Type Archive Name"
3108
  msgstr ""
3109
 
3110
- #: inc/admin/callbacks/Titles.php:946
3111
  msgid "Do not display this post type archive in search engine results <strong>(noindex)</strong>"
3112
  msgstr ""
3113
 
3114
- #: inc/admin/callbacks/Titles.php:973
3115
  msgid "Do not follow links for this post type archive <strong>(nofollow)</strong>"
3116
  msgstr ""
3117
 
3118
- #: inc/admin/callbacks/Titles.php:990
3119
  msgid "Author archives"
3120
  msgstr ""
3121
 
3122
- #: inc/admin/callbacks/Titles.php:1051
3123
- #: inc/admin/wizard/admin-wizard.php:1204
3124
  msgid "Do not display author archives in search engine results <strong>(noindex)</strong>"
3125
  msgstr ""
3126
 
3127
- #: inc/admin/callbacks/Titles.php:1072
3128
  msgid "Disable author archives"
3129
  msgstr ""
3130
 
3131
- #: inc/admin/callbacks/Titles.php:1084
3132
- #: inc/admin/callbacks/Titles.php:1100
3133
  msgid "Date archives"
3134
  msgstr ""
3135
 
3136
- #: inc/admin/callbacks/Titles.php:1143
3137
  msgid "Do not display date archives in search engine results <strong>(noindex)</strong>"
3138
  msgstr ""
3139
 
3140
- #: inc/admin/callbacks/Titles.php:1165
3141
  msgid "Disable date archives"
3142
  msgstr ""
3143
 
3144
- #: inc/admin/callbacks/Titles.php:1177
3145
  msgid "Search archives"
3146
  msgstr ""
3147
 
3148
- #: inc/admin/callbacks/Titles.php:1193
3149
  #: src/Tags/SearchKeywords.php:15
3150
  msgid "Search Keywords"
3151
  msgstr ""
3152
 
3153
- #: inc/admin/callbacks/Titles.php:1239
3154
  msgid "Do not display search archives in search engine results <strong>(noindex)</strong>"
3155
  msgstr ""
3156
 
3157
- #: inc/admin/callbacks/Titles.php:1251
3158
  msgid "404 archives"
3159
  msgstr ""
3160
 
3161
- #: inc/admin/callbacks/Titles.php:1310
3162
  #: inc/admin/settings/Titles.php:243
3163
  msgid "noindex"
3164
  msgstr ""
3165
 
3166
- #: inc/admin/callbacks/Titles.php:1314
3167
  msgid "Do not display all pages of the site in Google search results and do not display \"Cached\" links in search results."
3168
  msgstr ""
3169
 
3170
- #: inc/admin/callbacks/Titles.php:1318
3171
  msgid "Check also the <strong>\"Search engine visibility\"</strong> setting from the <a href=\"%s\">WordPress Reading page</a>."
3172
  msgstr ""
3173
 
3174
- #: inc/admin/callbacks/Titles.php:1340
3175
  #: inc/admin/settings/Titles.php:251
3176
  msgid "nofollow"
3177
  msgstr ""
3178
 
3179
- #: inc/admin/callbacks/Titles.php:1344
3180
  msgid "Do not follow links for all pages."
3181
  msgstr ""
3182
 
3183
- #: inc/admin/callbacks/Titles.php:1366
3184
  #: inc/admin/settings/Titles.php:259
3185
  msgid "noodp"
3186
  msgstr ""
3187
 
3188
- #: inc/admin/callbacks/Titles.php:1370
3189
  msgid "Do not use Open Directory project metadata for titles or excerpts for all pages."
3190
  msgstr ""
3191
 
3192
- #: inc/admin/callbacks/Titles.php:1392
3193
  #: inc/admin/settings/Titles.php:267
3194
  msgid "noimageindex"
3195
  msgstr ""
3196
 
3197
- #: inc/admin/callbacks/Titles.php:1396
3198
  msgid "Do not index images from the entire site."
3199
  msgstr ""
3200
 
3201
- #: inc/admin/callbacks/Titles.php:1417
3202
  #: inc/admin/settings/Titles.php:275
3203
  msgid "noarchive"
3204
  msgstr ""
3205
 
3206
- #: inc/admin/callbacks/Titles.php:1421
3207
  msgid "Do not display a \"Cached\" link in the Google search results."
3208
  msgstr ""
3209
 
3210
- #: inc/admin/callbacks/Titles.php:1443
3211
  #: inc/admin/settings/Titles.php:283
3212
  msgid "nosnippet"
3213
  msgstr ""
3214
 
3215
- #: inc/admin/callbacks/Titles.php:1447
3216
  msgid "Do not display a description in the Google search results for all pages."
3217
  msgstr ""
3218
 
3219
- #: inc/admin/callbacks/Titles.php:1469
3220
  #: inc/admin/settings/Titles.php:291
3221
  msgid "nositelinkssearchbox"
3222
  msgstr ""
3223
 
3224
- #: inc/admin/callbacks/Titles.php:1473
3225
  msgid "Prevents Google to display a sitelinks searchbox in search results. Enable this option will remove the \"Website\" schema from your source code."
3226
  msgstr ""
3227
 
3228
- #: inc/admin/callbacks/Titles.php:1495
3229
  msgid "Add rel next/prev link in head of paginated archive pages"
3230
  msgstr ""
3231
 
3232
- #: inc/admin/callbacks/Titles.php:1517
3233
  msgid "Add a \"noindex\" meta robots for all paginated archive pages"
3234
  msgstr ""
3235
 
3236
- #: inc/admin/callbacks/Titles.php:1521
3237
  msgid "eg: https://example.com/category/my-category/page/2/"
3238
  msgstr ""
3239
 
3240
- #: inc/admin/callbacks/Titles.php:1543
3241
  msgid "Add a \"noindex\" meta robots for all attachment pages"
3242
  msgstr ""
3243
 
3244
- #: inc/admin/callbacks/Titles.php:1547
3245
  msgid "eg: https://example.com/my-media-attachment-page"
3246
  msgstr ""
3247
 
3248
- #: inc/admin/docs/DocsLinks.php:152
3249
  msgid "Installation of SEOPress"
3250
  msgstr ""
3251
 
3252
- #: inc/admin/docs/DocsLinks.php:153
3253
  msgid "Activate your license key to receive automatic updates"
3254
  msgstr ""
3255
 
3256
- #: inc/admin/docs/DocsLinks.php:154
3257
  msgid "Configure SEOPress in 5 minutes"
3258
  msgstr ""
3259
 
3260
- #: inc/admin/docs/DocsLinks.php:155
3261
  msgid "Migrate your SEO metadata from other plugins"
3262
  msgstr ""
3263
 
3264
- #: inc/admin/docs/DocsLinks.php:156
3265
  msgid "Promote the exploration of your WordPress site by search engine robots"
3266
  msgstr ""
3267
 
3268
- #: inc/admin/docs/DocsLinks.php:157
3269
  msgid "Optimize content from A to Z with SEOPress"
3270
  msgstr ""
3271
 
3272
- #: inc/admin/docs/DocsLinks.php:158
3273
  msgid "Measure your traffic with Google Analytics"
3274
  msgstr ""
3275
 
3276
- #: inc/admin/docs/DocsLinks.php:159
3277
  msgid "Add your WordPress site to Google’s index"
3278
  msgstr ""
3279
 
3280
- #: inc/admin/docs/DocsLinks.php:160
3281
  msgid "Optimize your click-through rate on social networks"
3282
  msgstr ""
3283
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3284
  #: inc/admin/help-tabs/Analytics.php:11
3285
  msgid "Watch our video to learn how to connect your WordPress site with Google Analytics and get statistics right in your dashboard (PRO only)."
3286
  msgstr ""
@@ -3330,54 +3407,54 @@ msgstr ""
3330
  msgid "Overview"
3331
  msgstr ""
3332
 
3333
- #: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:17
3334
  #: app/react/constants/tabs.js:97
3335
  msgid "Inspect with Google"
3336
  msgstr ""
3337
 
3338
- #: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:22
3339
  #: app/react/layout/Main/components/ContentAnalysis/index.js:340
3340
  msgid "Enter a few keywords for analysis to help you write optimized content."
3341
  msgstr ""
3342
 
3343
- #: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:30
3344
  #: app/react/layout/Main/components/ContentAnalysis/index.js:356
3345
  msgid "Writing content for your users is the most important thing! If it doesn‘t feel natural, your visitors will leave your site, Google will know it and your ranking will be affected."
3346
  msgstr ""
3347
 
3348
- #: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:35
3349
  #: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:568
3350
  #: app/react/layout/Main/components/ContentAnalysis/index.js:370
3351
  msgid "Separate target keywords with commas. Do not use spaces after the commas, unless you want to include them"
3352
  msgstr ""
3353
 
3354
- #: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:38
3355
  #: app/react/layout/Main/components/ContentAnalysis/index.js:423
3356
  msgid "Enter your target keywords"
3357
  msgstr ""
3358
 
3359
- #: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:46
3360
  msgid "Analyze my content"
3361
  msgstr ""
3362
 
3363
- #: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:51
3364
  #: inc/admin/page-builders/elementor/inc/controls/class-content-analysis-control.php:46
3365
  #: app/react/layout/Main/components/ContentAnalysis/index.js:438
3366
  msgid "Refresh analysis"
3367
  msgstr ""
3368
 
3369
- #: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:59
3370
  msgid "Track with Insights"
3371
  msgstr ""
3372
 
3373
- #: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:65
3374
  #: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:592
3375
  #: app/react/layout/Main/components/ContentAnalysis/index.js:441
3376
  msgid "To get the most accurate analysis, save your post first. We analyze all of your source code as a search engine would."
3377
  msgstr ""
3378
 
3379
- #: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:72
3380
- #: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:73
3381
  #: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:579
3382
  #: inc/admin/page-builders/elementor/inc/controls/class-google-suggestions-control.php:50
3383
  #: inc/admin/page-builders/elementor/inc/controls/class-google-suggestions-control.php:51
@@ -3386,23 +3463,23 @@ msgstr ""
3386
  msgid "Google suggestions"
3387
  msgstr ""
3388
 
3389
- #: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:73
3390
  #: inc/admin/page-builders/elementor/inc/controls/class-google-suggestions-control.php:51
3391
  #: app/react/layout/Main/components/ContentAnalysis/index.js:456
3392
  msgid "Enter a keyword, or a phrase, to find the top 10 Google suggestions instantly. This is useful if you want to work with the long tail technique."
3393
  msgstr ""
3394
 
3395
- #: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:76
3396
  #: inc/admin/page-builders/elementor/inc/controls/class-google-suggestions-control.php:52
3397
  #: app/react/layout/Main/components/ContentAnalysis/index.js:469
3398
  msgid "Get suggestions from Google"
3399
  msgstr ""
3400
 
3401
- #: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:78
3402
  msgid "Click on a suggestion below to add it as a target keyword."
3403
  msgstr ""
3404
 
3405
- #: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:82
3406
  #: inc/admin/page-builders/elementor/inc/controls/class-google-suggestions-control.php:53
3407
  #: app/react/layout/Main/components/ContentAnalysis/index.js:492
3408
  msgid "Get suggestions!"
@@ -3526,7 +3603,7 @@ msgid "You cannot uncheck a parameter? This is normal, and it‘s most likely de
3526
  msgstr ""
3527
 
3528
  #: inc/admin/metaboxes/admin-metaboxes-form.php:266
3529
- #: inc/functions/options-advanced-admin.php:787
3530
  msgid "Do not display this page in search engine results / XML - HTML sitemaps <strong>(noindex)</strong>"
3531
  msgstr ""
3532
 
@@ -3540,7 +3617,7 @@ msgid "By checking this option, you will add a meta robots tag with the value \"
3540
  msgstr ""
3541
 
3542
  #: inc/admin/metaboxes/admin-metaboxes-form.php:277
3543
- #: inc/functions/options-advanced-admin.php:795
3544
  msgid "Do not follow links for this page <strong>(nofollow)</strong>"
3545
  msgstr ""
3546
 
@@ -3619,6 +3696,8 @@ msgstr ""
3619
  #: inc/admin/metaboxes/admin-metaboxes-form.php:334
3620
  #: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:293
3621
  #: src/Helpers/Metas/RobotSettings.php:109
 
 
3622
  msgid "Select a primary category"
3623
  msgstr ""
3624
 
@@ -4058,15 +4137,15 @@ msgstr ""
4058
  msgid "Add video"
4059
  msgstr ""
4060
 
4061
- #: inc/admin/metaboxes/admin-metaboxes.php:281
4062
- #: inc/admin/metaboxes/admin-metaboxes.php:658
4063
- #: inc/admin/metaboxes/admin-term-metaboxes.php:217
4064
  #: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:72
4065
  #: inc/admin/page-builders/elementor/inc/controls/class-content-analysis-control.php:35
4066
  msgid "Analysis in progress..."
4067
  msgstr ""
4068
 
4069
- #: inc/admin/metaboxes/admin-metaboxes.php:638
4070
  #: src/Services/ContentAnalysis/RenderContentAnalysis.php:19
4071
  msgid "Content analysis"
4072
  msgstr ""
@@ -4348,55 +4427,55 @@ msgstr ""
4348
  msgid "Your server uses NGINX. If XML Sitemaps doesn't work properly, you need to add this rule to your configuration:"
4349
  msgstr ""
4350
 
4351
- #: inc/admin/sections/Sitemaps.php:72
4352
  msgid "<strong>Noindex content</strong> will not be displayed in Sitemaps."
4353
  msgstr ""
4354
 
4355
- #: inc/admin/sections/Sitemaps.php:75
4356
  msgid "If you disable globally this feature (using the blue toggle from above), the native WordPress XML sitemaps will be re-activated."
4357
  msgstr ""
4358
 
4359
- #: inc/admin/sections/Sitemaps.php:82
4360
  msgid "Blank sitemap?"
4361
  msgstr ""
4362
 
4363
- #: inc/admin/sections/Sitemaps.php:87
4364
  msgid "404 error?"
4365
  msgstr ""
4366
 
4367
- #: inc/admin/sections/Sitemaps.php:92
4368
  msgid "HTML error? Exclude XML and XSL from caching plugins!"
4369
  msgstr ""
4370
 
4371
- #: inc/admin/sections/Sitemaps.php:96
4372
  msgid "Add your XML sitemaps to Google Search Console (video)"
4373
  msgstr ""
4374
 
4375
- #: inc/admin/sections/Sitemaps.php:102
4376
  msgid "View your sitemap"
4377
  msgstr ""
4378
 
4379
- #: inc/admin/sections/Sitemaps.php:107
4380
  msgid "Ping Google manually"
4381
  msgstr ""
4382
 
4383
- #: inc/admin/sections/Sitemaps.php:111
4384
  msgid "Flush permalinks"
4385
  msgstr ""
4386
 
4387
- #: inc/admin/sections/Sitemaps.php:130
4388
  msgid "Create an HTML Sitemap for your visitors and boost your SEO."
4389
  msgstr ""
4390
 
4391
- #: inc/admin/sections/Sitemaps.php:133
4392
  msgid "Limited to 1,000 posts per post type. You can change the order and sorting criteria below."
4393
  msgstr ""
4394
 
4395
- #: inc/admin/sections/Sitemaps.php:157
4396
  msgid "Include/Exclude Post Types."
4397
  msgstr ""
4398
 
4399
- #: inc/admin/sections/Sitemaps.php:172
4400
  msgid "Include/Exclude Taxonomies."
4401
  msgstr ""
4402
 
@@ -4429,7 +4508,7 @@ msgid "Manage Open Graph data. These metatags will be used by Facebook, Pinteres
4429
  msgstr ""
4430
 
4431
  #: inc/admin/sections/Social.php:66
4432
- #: inc/admin/sections/Social.php:103
4433
  msgid "Manage Facebook Open Graph and Twitter Cards metas - new window"
4434
  msgstr ""
4435
 
@@ -4442,12 +4521,12 @@ msgid "Custom OG Image from SEO metabox"
4442
  msgstr ""
4443
 
4444
  #: inc/admin/sections/Social.php:79
4445
- #: inc/admin/sections/Social.php:116
4446
  msgid "Post thumbnail / Product category thumbnail (Featured image)"
4447
  msgstr ""
4448
 
4449
  #: inc/admin/sections/Social.php:82
4450
- #: inc/admin/sections/Social.php:119
4451
  msgid "First image of your post content"
4452
  msgstr ""
4453
 
@@ -4455,19 +4534,23 @@ msgstr ""
4455
  msgid "Global OG Image set in SEO > Social > Open Graph"
4456
  msgstr ""
4457
 
4458
- #: inc/admin/sections/Social.php:102
 
 
 
 
4459
  msgid "Manage your Twitter card."
4460
  msgstr ""
4461
 
4462
- #: inc/admin/sections/Social.php:108
4463
  msgid "We generate the <strong>twitter:image</strong> meta in this order:"
4464
  msgstr ""
4465
 
4466
- #: inc/admin/sections/Social.php:113
4467
  msgid "Custom Twitter image from SEO metabox"
4468
  msgstr ""
4469
 
4470
- #: inc/admin/sections/Social.php:122
4471
  msgid "Global Twitter:image set in SEO > Social > Twitter Card"
4472
  msgstr ""
4473
 
@@ -4512,138 +4595,142 @@ msgid "Remove /product-category/ in URL"
4512
  msgstr ""
4513
 
4514
  #: inc/admin/settings/Advanced.php:48
4515
- msgid "Remove WordPress generator meta tag"
4516
  msgstr ""
4517
 
4518
  #: inc/admin/settings/Advanced.php:56
4519
- msgid "Remove hentry post class"
4520
  msgstr ""
4521
 
4522
  #: inc/admin/settings/Advanced.php:64
4523
- msgid "Remove author URL"
4524
  msgstr ""
4525
 
4526
  #: inc/admin/settings/Advanced.php:72
4527
- msgid "Remove website field in comment form"
4528
  msgstr ""
4529
 
4530
  #: inc/admin/settings/Advanced.php:80
4531
- msgid "Add \"nofollow noopener noreferrer\" rel attributes to the comments form link"
4532
  msgstr ""
4533
 
4534
  #: inc/admin/settings/Advanced.php:88
4535
- msgid "Remove WordPress shortlink meta tag"
4536
  msgstr ""
4537
 
4538
  #: inc/admin/settings/Advanced.php:96
4539
- msgid "Remove Windows Live Writer meta tag"
4540
  msgstr ""
4541
 
4542
  #: inc/admin/settings/Advanced.php:104
 
 
 
 
4543
  msgid "Remove RSD meta tag"
4544
  msgstr ""
4545
 
4546
- #: inc/admin/settings/Advanced.php:153
4547
  msgid "SEO in admin bar"
4548
  msgstr ""
4549
 
4550
- #: inc/admin/settings/Advanced.php:161
4551
  msgid "Universal Metabox (Gutenberg)"
4552
  msgstr ""
4553
 
4554
- #: inc/admin/settings/Advanced.php:168
4555
  msgid "Disable Universal Metabox"
4556
  msgstr ""
4557
 
4558
- #: inc/admin/settings/Advanced.php:176
4559
  msgid "Noindex in admin bar"
4560
  msgstr ""
4561
 
4562
- #: inc/admin/settings/Advanced.php:184
4563
  msgid "Move SEO metabox's position"
4564
  msgstr ""
4565
 
4566
- #: inc/admin/settings/Advanced.php:193
4567
  msgid "Set default tab for Structured data metabox"
4568
  msgstr ""
4569
 
4570
- #: inc/admin/settings/Advanced.php:202
4571
  msgid "Hide Notifications Center"
4572
  msgstr ""
4573
 
4574
- #: inc/admin/settings/Advanced.php:210
4575
  msgid "Hide SEO News"
4576
  msgstr ""
4577
 
4578
- #: inc/admin/settings/Advanced.php:218
4579
  msgid "Hide Site Overview"
4580
  msgstr ""
4581
 
4582
- #: inc/admin/settings/Advanced.php:226
4583
  msgid "Show Title tag column in post types"
4584
  msgstr ""
4585
 
4586
- #: inc/admin/settings/Advanced.php:234
4587
  msgid "Show Meta description column in post types"
4588
  msgstr ""
4589
 
4590
- #: inc/admin/settings/Advanced.php:242
4591
  msgid "Show Redirection Enable column in post types"
4592
  msgstr ""
4593
 
4594
- #: inc/admin/settings/Advanced.php:250
4595
  msgid "Show Redirect URL column in post types"
4596
  msgstr ""
4597
 
4598
- #: inc/admin/settings/Advanced.php:258
4599
  msgid "Show canonical URL column in post types"
4600
  msgstr ""
4601
 
4602
- #: inc/admin/settings/Advanced.php:266
4603
  msgid "Show Target Keyword column in post types"
4604
  msgstr ""
4605
 
4606
- #: inc/admin/settings/Advanced.php:274
4607
  msgid "Show noindex column in post types"
4608
  msgstr ""
4609
 
4610
- #: inc/admin/settings/Advanced.php:282
4611
  msgid "Show nofollow column in post types"
4612
  msgstr ""
4613
 
4614
- #: inc/admin/settings/Advanced.php:290
4615
  msgid "Show total number of words column in post types"
4616
  msgstr ""
4617
 
4618
- #: inc/admin/settings/Advanced.php:299
4619
  msgid "Show Google Page Speed column in post types"
4620
  msgstr ""
4621
 
4622
- #: inc/admin/settings/Advanced.php:309
4623
  msgid "Show Insights column in post types"
4624
  msgstr ""
4625
 
4626
- #: inc/admin/settings/Advanced.php:318
4627
  msgid "Show content analysis score column in post types"
4628
  msgstr ""
4629
 
4630
- #: inc/admin/settings/Advanced.php:334
4631
  msgid "Hide Genesis SEO Metabox"
4632
  msgstr ""
4633
 
4634
- #: inc/admin/settings/Advanced.php:342
4635
  msgid "Hide Genesis SEO Settings link"
4636
  msgstr ""
4637
 
4638
- #: inc/admin/settings/Advanced.php:350
4639
  msgid "Hide advice in Structured Data Types metabox"
4640
  msgstr ""
4641
 
4642
- #: inc/admin/settings/Advanced.php:367
4643
  msgid "Block SEO metabox to user roles"
4644
  msgstr ""
4645
 
4646
- #: inc/admin/settings/Advanced.php:383
4647
  msgid "Block Content analysis metabox to user roles"
4648
  msgstr ""
4649
 
@@ -4804,7 +4891,7 @@ msgid "Redirect attachment pages to their file URL"
4804
  msgstr ""
4805
 
4806
  #: inc/admin/settings/ImageSEO.php:32
4807
- msgid "Remove ?replytocom link to avoid duplicate content"
4808
  msgstr ""
4809
 
4810
  #: inc/admin/settings/ImageSEO.php:40
@@ -4986,7 +5073,7 @@ msgstr ""
4986
  #: inc/admin/wizard/admin-wizard.php:218
4987
  #: inc/admin/wizard/admin-wizard.php:902
4988
  #: inc/admin/wizard/admin-wizard.php:993
4989
- #: inc/admin/wizard/admin-wizard.php:1092
4990
  #: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:265
4991
  #: app/react/layout/Main/components/InspectUrl/index.js:429
4992
  msgid "Indexing"
@@ -4994,8 +5081,8 @@ msgstr ""
4994
 
4995
  #: inc/admin/wizard/admin-wizard.php:230
4996
  #: inc/admin/wizard/admin-wizard.php:240
4997
- #: inc/admin/wizard/admin-wizard.php:1187
4998
- #: inc/admin/wizard/admin-wizard.php:1319
4999
  msgid "Advanced options"
5000
  msgstr ""
5001
 
@@ -5027,7 +5114,7 @@ msgid "Skip this step"
5027
  msgstr ""
5028
 
5029
  #: inc/admin/wizard/admin-wizard.php:554
5030
- #: inc/admin/wizard/admin-wizard.php:1538
5031
  msgid "Welcome to %s!"
5032
  msgstr ""
5033
 
@@ -5043,8 +5130,8 @@ msgstr ""
5043
  #: inc/admin/wizard/admin-wizard.php:569
5044
  #: inc/admin/wizard/admin-wizard.php:637
5045
  #: inc/admin/wizard/admin-wizard.php:639
5046
- #: inc/admin/wizard/admin-wizard.php:1535
5047
- #: inc/admin/wizard/admin-wizard.php:1557
5048
  msgid "Next step"
5049
  msgstr ""
5050
 
@@ -5110,14 +5197,14 @@ msgstr ""
5110
  #: inc/admin/wizard/admin-wizard.php:861
5111
  #: inc/admin/wizard/admin-wizard.php:947
5112
  #: inc/admin/wizard/admin-wizard.php:949
5113
- #: inc/admin/wizard/admin-wizard.php:1045
5114
- #: inc/admin/wizard/admin-wizard.php:1047
5115
- #: inc/admin/wizard/admin-wizard.php:1135
5116
- #: inc/admin/wizard/admin-wizard.php:1137
5117
- #: inc/admin/wizard/admin-wizard.php:1270
5118
- #: inc/admin/wizard/admin-wizard.php:1272
5119
- #: inc/admin/wizard/admin-wizard.php:1367
5120
- #: inc/admin/wizard/admin-wizard.php:1369
5121
  msgid "Save & Continue"
5122
  msgstr ""
5123
 
@@ -5149,191 +5236,195 @@ msgstr ""
5149
  msgid "Do not display this post type archive in search engine results <strong>(noindex)</strong>"
5150
  msgstr ""
5151
 
5152
- #: inc/admin/wizard/admin-wizard.php:1101
 
 
 
 
5153
  msgid "For which taxonomy archives, should indexing be disabled?"
5154
  msgstr ""
5155
 
5156
- #: inc/admin/wizard/admin-wizard.php:1123
5157
  msgid "Do not display this taxonomy archive in search engine results <strong>(noindex)</strong>"
5158
  msgstr ""
5159
 
5160
- #: inc/admin/wizard/admin-wizard.php:1192
5161
  msgid "Almost done!"
5162
  msgstr ""
5163
 
5164
- #: inc/admin/wizard/admin-wizard.php:1194
5165
  msgid "Final step before being ready to rank on search engines."
5166
  msgstr ""
5167
 
5168
- #: inc/admin/wizard/admin-wizard.php:1208
5169
  msgid "You only have one author on your site? Check this option to avoid duplicate content."
5170
  msgstr ""
5171
 
5172
- #: inc/admin/wizard/admin-wizard.php:1221
5173
  msgid "By default, SEOPress redirects your Attachment pages to the parent post. Optimize this by redirecting the user directly to the URL of the media file."
5174
  msgstr ""
5175
 
5176
- #: inc/admin/wizard/admin-wizard.php:1240
5177
- #: inc/admin/wizard/admin-wizard.php:1264
5178
  msgid "Shorten your URLs by removing %s and improve your SEO."
5179
  msgstr ""
5180
 
5181
- #: inc/admin/wizard/admin-wizard.php:1327
5182
  msgid "Improve your workflow with the Universal SEO metabox"
5183
  msgstr ""
5184
 
5185
- #: inc/admin/wizard/admin-wizard.php:1330
5186
  msgid "Edit your SEO metadata directly from your page or theme builder."
5187
  msgstr ""
5188
 
5189
- #: inc/admin/wizard/admin-wizard.php:1345
5190
  msgid "No, I prefer to use the good old one SEO metabox"
5191
  msgstr ""
5192
 
5193
- #: inc/admin/wizard/admin-wizard.php:1349
5194
- #: inc/admin/wizard/admin-wizard.php:1361
5195
  msgid "You can change this setting at anytime from SEO, Advanced settings page, Appearance tab."
5196
  msgstr ""
5197
 
5198
- #: inc/admin/wizard/admin-wizard.php:1357
5199
  msgid "Yes, enable the universal SEO metabox for the Block Editor too"
5200
  msgstr ""
5201
 
5202
- #: inc/admin/wizard/admin-wizard.php:1414
5203
  msgid "SEOPress PRO"
5204
  msgstr ""
5205
 
5206
- #: inc/admin/wizard/admin-wizard.php:1420
5207
  msgid "Premium SEO features to increase your rankings"
5208
  msgstr ""
5209
 
5210
- #: inc/admin/wizard/admin-wizard.php:1423
5211
  msgid "Improve your business's presence in <strong>local search results</strong>."
5212
  msgstr ""
5213
 
5214
- #: inc/admin/wizard/admin-wizard.php:1426
5215
  msgid "Optimize your SEO from your favorite e-commerce plugin: <strong>WooCommerce or Easy Digital Downloads</strong>."
5216
  msgstr ""
5217
 
5218
- #: inc/admin/wizard/admin-wizard.php:1429
5219
  msgid "Add an infinity of <strong>Google structured data (schema)</strong> to your content to improve its visibility in search results."
5220
  msgstr ""
5221
 
5222
- #: inc/admin/wizard/admin-wizard.php:1432
5223
  msgid "Add your custom <strong>breadcrumbs</strong>."
5224
  msgstr ""
5225
 
5226
- #: inc/admin/wizard/admin-wizard.php:1435
5227
  msgid "Configure your <strong>robots.txt and .htaccess files</strong>."
5228
  msgstr ""
5229
 
5230
- #: inc/admin/wizard/admin-wizard.php:1438
5231
  msgid "Observe the evolution of your site via <strong>Google Analytics stats</strong> directly from your WordPress Dashboard."
5232
  msgstr ""
5233
 
5234
- #: inc/admin/wizard/admin-wizard.php:1442
5235
  msgid "And so many other features to increase your rankings, sales and productivity."
5236
  msgstr ""
5237
 
5238
- #: inc/admin/wizard/admin-wizard.php:1451
5239
  msgid "Get SEOPress PRO"
5240
  msgstr ""
5241
 
5242
- #: inc/admin/wizard/admin-wizard.php:1468
5243
  msgid "SEOPress Insights"
5244
  msgstr ""
5245
 
5246
- #: inc/admin/wizard/admin-wizard.php:1474
5247
  msgid "Start monitoring your rankings and backlinks directly from your WordPress admin"
5248
  msgstr ""
5249
 
5250
- #: inc/admin/wizard/admin-wizard.php:1477
5251
  msgid "Track your keyword positions from Google Search results daily."
5252
  msgstr ""
5253
 
5254
- #: inc/admin/wizard/admin-wizard.php:1480
5255
  msgid "Monitor and analyse your top 1,000 Backlinks weekly."
5256
  msgstr ""
5257
 
5258
- #: inc/admin/wizard/admin-wizard.php:1483
5259
  msgid "Export your data to CSV, PDF, Excel."
5260
  msgstr ""
5261
 
5262
- #: inc/admin/wizard/admin-wizard.php:1486
5263
  msgid "Receive your rankings in your inbox."
5264
  msgstr ""
5265
 
5266
- #: inc/admin/wizard/admin-wizard.php:1495
5267
  msgid "Get SEOPress Insights"
5268
  msgstr ""
5269
 
5270
- #: inc/admin/wizard/admin-wizard.php:1524
5271
  msgid "Your site is now ready for search engines!"
5272
  msgstr ""
5273
 
5274
- #: inc/admin/wizard/admin-wizard.php:1541
5275
  #: inc/functions/options-advanced-admin.php:25
5276
  msgid "Please activate your license to receive automatic updates and get premium support."
5277
  msgstr ""
5278
 
5279
- #: inc/admin/wizard/admin-wizard.php:1548
5280
  #: inc/functions/options-advanced-admin.php:27
5281
  msgid "Activate License"
5282
  msgstr ""
5283
 
5284
- #: inc/admin/wizard/admin-wizard.php:1559
5285
  msgid "Create your XML sitemaps"
5286
  msgstr ""
5287
 
5288
- #: inc/admin/wizard/admin-wizard.php:1561
5289
  msgid "Build custom XML sitemaps to improve Google's crawling of your site."
5290
  msgstr ""
5291
 
5292
- #: inc/admin/wizard/admin-wizard.php:1568
5293
  msgid "Configure your XML sitemaps"
5294
  msgstr ""
5295
 
5296
- #: inc/admin/wizard/admin-wizard.php:1577
5297
  msgid "Follow us:"
5298
  msgstr ""
5299
 
5300
- #: inc/admin/wizard/admin-wizard.php:1586
5301
  msgid "Like our Facebook page"
5302
  msgstr ""
5303
 
5304
- #: inc/admin/wizard/admin-wizard.php:1593
5305
  msgid "Join our Facebook Community group"
5306
  msgstr ""
5307
 
5308
- #: inc/admin/wizard/admin-wizard.php:1600
5309
  msgid "Watch our guided tour videos to learn more about SEOPress"
5310
  msgstr ""
5311
 
5312
- #: inc/admin/wizard/admin-wizard.php:1607
5313
  msgid "Read our blog posts about SEO concepts, tutorials and more"
5314
  msgstr ""
5315
 
5316
- #: inc/admin/wizard/admin-wizard.php:1614
5317
  msgid "Follow us on Twitter"
5318
  msgstr ""
5319
 
5320
- #: inc/admin/wizard/admin-wizard.php:1621
5321
  msgid "The off side of SEOPress"
5322
  msgstr ""
5323
 
5324
- #: inc/admin/wizard/admin-wizard.php:1631
5325
  msgid "You can also:"
5326
  msgstr ""
5327
 
5328
- #: inc/admin/wizard/admin-wizard.php:1638
5329
  msgid "Visit Dashboard"
5330
  msgstr ""
5331
 
5332
- #: inc/admin/wizard/admin-wizard.php:1642
5333
  msgid "Review Settings"
5334
  msgstr ""
5335
 
5336
- #: inc/admin/wizard/admin-wizard.php:1648
5337
  msgid "Knowledge base"
5338
  msgstr ""
5339
 
@@ -5354,131 +5445,131 @@ msgstr ""
5354
  msgid "URL rewriting is NOT enabled on your site. Select a permalink structure that is optimized for SEO (NOT Plain)."
5355
  msgstr ""
5356
 
5357
- #: inc/functions/options-advanced-admin.php:420
5358
  msgid "Enable noindex"
5359
  msgstr ""
5360
 
5361
- #: inc/functions/options-advanced-admin.php:457
5362
  msgid "%s post to noindex."
5363
  msgid_plural "%s posts to noindex."
5364
  msgstr[0] ""
5365
  msgstr[1] ""
5366
 
5367
- #: inc/functions/options-advanced-admin.php:481
5368
  msgid "Enable index"
5369
  msgstr ""
5370
 
5371
- #: inc/functions/options-advanced-admin.php:518
5372
  msgid "%s post to index."
5373
  msgid_plural "%s posts to index."
5374
  msgstr[0] ""
5375
  msgstr[1] ""
5376
 
5377
- #: inc/functions/options-advanced-admin.php:540
5378
  msgid "Enable nofollow"
5379
  msgstr ""
5380
 
5381
- #: inc/functions/options-advanced-admin.php:576
5382
  msgid "%s post to nofollow."
5383
  msgid_plural "%s posts to nofollow."
5384
  msgstr[0] ""
5385
  msgstr[1] ""
5386
 
5387
- #: inc/functions/options-advanced-admin.php:598
5388
  msgid "Enable follow"
5389
  msgstr ""
5390
 
5391
- #: inc/functions/options-advanced-admin.php:635
5392
  msgid "%s post to follow."
5393
  msgid_plural "%s posts to follow."
5394
  msgstr[0] ""
5395
  msgstr[1] ""
5396
 
5397
- #: inc/functions/options-advanced-admin.php:651
5398
  msgid "Enable redirection"
5399
  msgstr ""
5400
 
5401
- #: inc/functions/options-advanced-admin.php:680
5402
  msgid "%s redirections enabled."
5403
  msgid_plural "%s redirections enabled."
5404
  msgstr[0] ""
5405
  msgstr[1] ""
5406
 
5407
- #: inc/functions/options-advanced-admin.php:696
5408
  msgid "Disable redirection"
5409
  msgstr ""
5410
 
5411
- #: inc/functions/options-advanced-admin.php:724
5412
  msgid "%s redirection disabled."
5413
  msgid_plural "%s redirections disabled."
5414
  msgstr[0] ""
5415
  msgstr[1] ""
5416
 
5417
- #: inc/functions/options-advanced-admin.php:753
5418
  #: src/Actions/Admin/ManageColumn.php:55
5419
  msgid "Title tag"
5420
  msgstr ""
5421
 
5422
- #: inc/functions/options-advanced-admin.php:778
5423
  #: src/Actions/Admin/ManageColumn.php:67
5424
  msgid "Canonical"
5425
  msgstr ""
5426
 
5427
- #: inc/functions/options-google-analytics.php:262
5428
  msgid "By visiting our site, you agree to our privacy policy regarding cookies, tracking statistics, etc.&nbsp;<a href=\"[seopress_privacy_page]\">Read more</a>"
5429
  msgstr ""
5430
 
5431
- #: inc/functions/options-google-analytics.php:264
5432
  msgid "By visiting our site, you agree to our privacy policy regarding cookies, tracking statistics, etc."
5433
  msgstr ""
5434
 
5435
- #: inc/functions/options-google-analytics.php:283
5436
  msgid "X"
5437
  msgstr ""
5438
 
5439
- #: inc/functions/options-google-analytics.php:306
5440
  msgid "Manage cookies"
5441
  msgstr ""
5442
 
5443
- #: inc/functions/options-google-analytics.php:902
5444
  #: inc/functions/options-matomo.php:234
5445
  msgid "Authors"
5446
  msgstr ""
5447
 
5448
- #: inc/functions/options-google-analytics.php:921
5449
  #: inc/functions/options-matomo.php:248
5450
  msgid "Categories"
5451
  msgstr ""
5452
 
5453
- #: inc/functions/options-google-analytics.php:947
5454
  #: inc/functions/options-matomo.php:268
5455
  msgid "Tags"
5456
  msgstr ""
5457
 
5458
- #: inc/functions/options-google-analytics.php:961
5459
  #: inc/functions/options-matomo.php:277
5460
  msgid "Post types"
5461
  msgstr ""
5462
 
5463
- #: inc/functions/options-google-analytics.php:975
5464
  #: inc/functions/options-matomo.php:286
5465
  msgid "Connected users"
5466
  msgstr ""
5467
 
5468
- #: inc/functions/options-import-export.php:61
5469
  msgid "Please upload a valid .json file"
5470
  msgstr ""
5471
 
5472
- #: inc/functions/options-import-export.php:66
5473
- #: inc/functions/options-import-export.php:138
5474
  msgid "Please upload a file to import"
5475
  msgstr ""
5476
 
5477
- #: inc/functions/options-import-export.php:134
5478
  msgid "Please upload a valid .csv file"
5479
  msgstr ""
5480
 
5481
- #: inc/functions/options-import-export.php:142
5482
  msgid "Please choose a separator"
5483
  msgstr ""
5484
 
@@ -5524,16 +5615,16 @@ msgstr ""
5524
  msgid "Page %d of %2$d"
5525
  msgstr ""
5526
 
5527
- #: seopress-functions.php:285
5528
  msgid "Custom Post Types"
5529
  msgstr ""
5530
 
5531
- #: seopress-functions.php:289
5532
  msgid "Custom Taxonomies"
5533
  msgstr ""
5534
 
5535
  #. translators: %s: "Custom Post Types" or "Custom Taxonomies" %s: "title" or "description"
5536
- #: seopress-functions.php:329
5537
  msgid "Some <strong>%s</strong> have no <strong>meta %s</strong> set! We strongly encourage you to add one by filling in the fields below."
5538
  msgstr ""
5539
 
@@ -5565,20 +5656,20 @@ msgstr ""
5565
  msgid "Color value"
5566
  msgstr ""
5567
 
5568
- #: seopress.php:602
5569
  msgid "Docs"
5570
  msgstr ""
5571
 
5572
- #: seopress.php:603
5573
  msgid "Configuration Wizard"
5574
  msgstr ""
5575
 
5576
- #: seopress.php:605
5577
  msgid "GO PRO!"
5578
  msgstr ""
5579
 
5580
- #: seopress.php:641
5581
- msgid "Important changes incoming for XML sitemaps in version 5.8: <a href=\"%s\" target=\"_blank\">Learn more</a>."
5582
  msgstr ""
5583
 
5584
  #: src/Actions/Admin/ManageColumn.php:58
@@ -5631,7 +5722,7 @@ msgstr ""
5631
  msgid "Should be improved"
5632
  msgstr ""
5633
 
5634
- #: src/Actions/Options/Init.php:266
5635
  msgid "404 - Page not found"
5636
  msgstr ""
5637
 
@@ -5675,7 +5766,7 @@ msgid "Meta robots"
5675
  msgstr ""
5676
 
5677
  #: src/Helpers/ContentAnalysis.php:68
5678
- #: app/react/services/content-analysis/images.js:121
5679
  msgid "Alternative texts of images"
5680
  msgstr ""
5681
 
@@ -6205,72 +6296,68 @@ msgstr ""
6205
  msgid "<strong>nositelinkssearchbox</strong> is off. Google will probably display a sitelinks searchbox in search results."
6206
  msgstr ""
6207
 
6208
- #: src/Services/ContentAnalysis/GetContent.php:733
6209
  #: app/react/services/content-analysis/images.js:61
6210
  msgid "No alternative text found for these images. Alt tags are important for both SEO and accessibility. Edit your images using the media library or your favorite page builder and fill in alternative text fields."
6211
  msgstr ""
6212
 
6213
- #: src/Services/ContentAnalysis/GetContent.php:744
6214
- #: app/react/services/content-analysis/images.js:110
6215
  msgid "Note that we scan all your source code, it means, some missing alternative texts of images might be located in your header, sidebar or footer."
6216
  msgstr ""
6217
 
6218
- #: src/Services/ContentAnalysis/GetContent.php:751
6219
  #: app/react/services/content-analysis/images.js:48
6220
  msgid "All alternative tags are filled in. Good work!"
6221
  msgstr ""
6222
 
6223
- #: src/Services/ContentAnalysis/GetContent.php:754
6224
  #: app/react/services/content-analysis/images.js:32
6225
  msgid "We could not find any image in your content. Content with media is a plus for your SEO."
6226
  msgstr ""
6227
 
6228
- #: src/Services/ContentAnalysis/GetContent.php:772
6229
  msgid "We found %d links with nofollow attribute in your page. Do not overuse nofollow attribute in links. Below, the list:"
6230
  msgstr ""
6231
 
6232
- #: src/Services/ContentAnalysis/GetContent.php:783
6233
  #: app/react/services/content-analysis/noFollowLinks.js:53
6234
  msgid "This page doesn't have any nofollow links."
6235
  msgstr ""
6236
 
6237
- #: src/Services/ContentAnalysis/GetContent.php:802
6238
  msgid "We found %s outbound links in your page. Below, the list:"
6239
  msgstr ""
6240
 
6241
- #: src/Services/ContentAnalysis/GetContent.php:812
6242
  #: app/react/services/content-analysis/outboundLinks.js:31
6243
  msgid "This page doesn't have any outbound links."
6244
  msgstr ""
6245
 
6246
- #: src/Services/ContentAnalysis/GetContent.php:832
6247
  msgid "We found %s internal links to this page."
6248
  msgstr ""
6249
 
6250
- #: src/Services/ContentAnalysis/GetContent.php:839
6251
  msgid "edit %s"
6252
  msgstr ""
6253
 
6254
- #: src/Services/ContentAnalysis/GetContent.php:846
6255
  #: app/react/services/content-analysis/internalLinks.js:31
6256
  msgid "This page doesn't have any internal links from other content. Links from archive pages are not considered internal links due to lack of context."
6257
  msgstr ""
6258
 
6259
- #: src/Services/ContentAnalysis/GetContent.php:866
6260
- msgid "We found %s canonical URL in your source code. Below, the list:"
6261
- msgstr ""
6262
-
6263
- #: src/Services/ContentAnalysis/GetContent.php:875
6264
- #: app/react/services/content-analysis/canonicalUrl.js:95
6265
  msgid "You must fix this. Canonical URL duplication is bad for SEO."
6266
  msgstr ""
6267
 
6268
- #: src/Services/ContentAnalysis/GetContent.php:880
6269
  #: app/react/services/content-analysis/canonicalUrl.js:49
6270
  msgid "This page doesn't have any canonical URL because your post is set to <strong>noindex</strong>. This is normal."
6271
  msgstr ""
6272
 
6273
- #: src/Services/ContentAnalysis/GetContent.php:883
6274
  #: app/react/services/content-analysis/canonicalUrl.js:58
6275
  msgid "This page doesn't have any canonical URL."
6276
  msgstr ""
@@ -6281,13 +6368,13 @@ msgstr ""
6281
 
6282
  #: src/Services/ContentAnalysis/RenderContentAnalysis.php:37
6283
  #: app/react/layout/Main/components/ContentAnalysis/index.js:554
6284
- #: app/react/layout/Main/components/SchemasManual/index.js:249
6285
  msgid "Expand"
6286
  msgstr ""
6287
 
6288
  #: src/Services/ContentAnalysis/RenderContentAnalysis.php:37
6289
  #: app/react/layout/Main/components/ContentAnalysis/index.js:569
6290
- #: app/react/layout/Main/components/SchemasManual/index.js:264
6291
  msgid "Close"
6292
  msgstr ""
6293
 
@@ -7024,7 +7111,7 @@ msgstr ""
7024
  msgid "Delete schema"
7025
  msgstr ""
7026
 
7027
- #: app/react/layout/Main/components/SchemasManual/index.js:331
7028
  msgid "Add a schema"
7029
  msgstr ""
7030
 
@@ -7158,140 +7245,157 @@ msgid "We found a"
7158
  msgstr ""
7159
 
7160
  #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/build/index.js:1
7161
- #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/index.js:8
7162
- msgid "FAQ"
7163
- msgstr ""
7164
-
7165
- #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:32
7166
- #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:75
7167
- msgid "Question..."
7168
- msgstr ""
7169
-
7170
- #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:49
7171
- #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:92
7172
- msgid "Answer..."
7173
- msgstr ""
7174
-
7175
- #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:60
7176
- #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:63
7177
- #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:103
7178
- #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:106
7179
- msgid "Remove"
7180
  msgstr ""
7181
 
7182
- #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:185
7183
- msgid "FAQ Settings"
 
 
 
7184
  msgstr ""
7185
 
7186
- #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:186
7187
- msgid "List Style"
 
7188
  msgstr ""
7189
 
 
7190
  #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:198
7191
  msgctxt "Div tag List"
7192
  msgid "NONE"
7193
  msgstr ""
7194
 
 
7195
  #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:209
7196
  msgctxt "Numbered List"
7197
  msgid "OL"
7198
  msgstr ""
7199
 
 
7200
  #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:220
7201
  msgctxt "Unordered List"
7202
  msgid "UL"
7203
  msgstr ""
7204
 
7205
- #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:224
7206
- msgid "Title Wrapper"
7207
- msgstr ""
7208
-
7209
  #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:236
7210
  msgctxt "H2 title tag"
7211
  msgid "H2"
7212
  msgstr ""
7213
 
 
7214
  #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:247
7215
  msgctxt "H3 title tag"
7216
  msgid "H3"
7217
  msgstr ""
7218
 
 
7219
  #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:258
7220
  msgctxt "H4 title tag"
7221
  msgid "H4"
7222
  msgstr ""
7223
 
 
7224
  #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:269
7225
  msgctxt "H5 title tag"
7226
  msgid "H5"
7227
  msgstr ""
7228
 
 
7229
  #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:280
7230
  msgctxt "H6 title tag"
7231
  msgid "H6"
7232
  msgstr ""
7233
 
 
7234
  #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:291
7235
  msgctxt "P title tag"
7236
  msgid "P"
7237
  msgstr ""
7238
 
 
7239
  #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:302
7240
  msgctxt "DIV title tag"
7241
  msgid "DIV"
7242
  msgstr ""
7243
 
7244
- #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:306
7245
- msgid "Image Size"
7246
- msgstr ""
7247
-
7248
  #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:318
7249
  msgctxt "Thubmnail Size"
7250
  msgid "S"
7251
  msgstr ""
7252
 
 
7253
  #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:329
7254
  msgctxt "Medium Size"
7255
  msgid "M"
7256
  msgstr ""
7257
 
 
7258
  #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:340
7259
  msgctxt "Large Size"
7260
  msgid "L"
7261
  msgstr ""
7262
 
 
7263
  #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:351
7264
  msgctxt "Original Size"
7265
  msgid "XL"
7266
  msgstr ""
7267
 
7268
- #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:355
7269
- msgid "SEO Settings"
 
7270
  msgstr ""
7271
 
7272
- #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:358
7273
- msgid "Enable FAQ Schema"
 
7274
  msgstr ""
7275
 
7276
- #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:370
7277
- msgid "Enable accordion"
 
7278
  msgstr ""
7279
 
7280
- #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:393
7281
- #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:400
7282
- msgid "Add FAQ"
 
 
7283
  msgstr ""
7284
 
7285
- #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/image-control.js:70
7286
- msgid "To edit the background image, you need permission to upload media."
7287
  msgstr ""
7288
 
7289
- #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/image-control.js:81
7290
- #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/image-control.js:96
7291
- #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/image-control.js:104
7292
- msgid "Set Image"
7293
  msgstr ""
7294
 
7295
- #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/image-control.js:115
7296
- msgid "Remove Image"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7297
  msgstr ""
2
  # This file is distributed under the GPLv2.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: SEOPress 5.8\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-seopress\n"
7
  "Last-Translator: SEOPress Team <contact@seopress.org>\n"
8
  "Language-Team: SEOPress Team <contact@seopress.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2022-06-30T12:41:02+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.6.0\n"
15
  "X-Domain: wp-seopress\n"
31
  #: inc/admin/admin-bar/admin-bar.php:26
32
  #: inc/admin/admin.php:93
33
  #: inc/admin/metaboxes/admin-metaboxes-form.php:39
34
+ #: inc/admin/metaboxes/admin-metaboxes.php:236
35
+ #: inc/admin/metaboxes/admin-metaboxes.php:239
36
  #: inc/admin/page-builders/gutenberg/gutenberg-addon.php:39
37
+ #: inc/functions/options-advanced-admin.php:782
38
  #: app/react/layout/Head/index.js:14
39
  msgid "SEO"
40
  msgstr ""
96
  msgstr ""
97
 
98
  #: inc/admin/admin-bar/admin-bar.php:136
 
99
  #: inc/admin/admin-pages/Advanced.php:21
100
  #: inc/admin/admin-pages/Titles.php:24
101
  #: inc/admin/admin.php:105
116
  msgstr ""
117
 
118
  #: inc/admin/admin-bar/admin-bar.php:151
119
+ #: inc/admin/admin-features-list.php:170
120
  #: inc/admin/admin.php:106
121
  msgid "Tools"
122
  msgstr ""
126
  msgstr ""
127
 
128
  #: inc/admin/admin-bar/admin-bar.php:166
129
+ #: inc/admin/admin-features-list.php:178
130
  #: inc/admin/blocks/notifications-center.php:994
131
  msgid "License"
132
  msgstr ""
138
  msgstr ""
139
 
140
  #: inc/admin/admin-bar/admin-bar.php:179
141
+ #: inc/admin/admin-features-list.php:129
142
  #: app/react/constants/tabs.js:42
143
  msgid "Schemas"
144
  msgstr ""
145
 
146
  #: inc/admin/admin-bar/admin-bar.php:187
147
+ #: inc/admin/admin-features-list.php:135
148
  #: inc/admin/admin-pages/Tools.php:24
149
  msgid "Redirections"
150
  msgstr ""
164
  msgstr ""
165
 
166
  #: inc/admin/admin-bar/admin-header.php:29
167
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:371
168
  msgid "Display"
169
  msgstr ""
170
 
171
  #: inc/admin/admin-bar/admin-header.php:34
172
+ msgid "Help"
173
+ msgstr ""
174
+
175
  #: inc/admin/admin-bar/admin-header.php:42
176
  msgid "Documentation"
177
  msgstr ""
204
  #: inc/admin/callbacks/Titles.php:37
205
  #: inc/admin/callbacks/Titles.php:231
206
  #: inc/admin/callbacks/Titles.php:439
207
+ #: inc/admin/callbacks/Titles.php:660
208
+ #: inc/admin/callbacks/Titles.php:873
209
+ #: inc/admin/callbacks/Titles.php:1016
210
+ #: inc/admin/callbacks/Titles.php:1109
211
+ #: inc/admin/callbacks/Titles.php:1204
212
+ #: inc/admin/callbacks/Titles.php:1268
213
  #: inc/admin/metaboxes/admin-metaboxes-form.php:134
214
  #: inc/admin/page-builders/elementor/inc/controls/class-text-letter-counter-control.php:67
215
  #: src/Tags/SiteTitle.php:22
259
  msgstr ""
260
 
261
  #: inc/admin/admin-dyn-variables-helper.php:16
262
+ #: inc/admin/callbacks/Titles.php:1007
263
  msgid "Post author"
264
  msgstr ""
265
 
439
  msgstr ""
440
 
441
  #: inc/admin/admin-features-list.php:25
442
+ msgid "Manage your XML - Image - Video - HTML Sitemap."
443
  msgstr ""
444
 
445
  #: inc/admin/admin-features-list.php:31
447
  msgstr ""
448
 
449
  #: inc/admin/admin-features-list.php:37
450
+ msgid "Track everything about your visitors with Google Analytics / Matomo / Microsoft Clarity."
451
  msgstr ""
452
 
453
  #: inc/admin/admin-features-list.php:43
454
+ msgid "Ping Google & Bing to quickly index your content."
455
+ msgstr ""
456
+
457
+ #: inc/admin/admin-features-list.php:48
458
+ #: inc/admin/admin.php:105
459
+ msgid "Image SEO & Advanced settings"
460
  msgstr ""
461
 
462
  #: inc/admin/admin-features-list.php:49
463
+ msgid "Optimize your images for SEO. Configure advanced settings."
464
  msgstr ""
465
 
466
  #: inc/admin/admin-features-list.php:57
472
  msgstr ""
473
 
474
  #: inc/admin/admin-features-list.php:66
475
+ msgid "Improve WooCommerce SEO."
476
  msgstr ""
477
 
478
  #: inc/admin/admin-features-list.php:71
480
  msgstr ""
481
 
482
  #: inc/admin/admin-features-list.php:72
483
+ msgid "Improve Easy Digital Downloads SEO."
484
  msgstr ""
485
 
486
  #: inc/admin/admin-features-list.php:77
488
  msgstr ""
489
 
490
  #: inc/admin/admin-features-list.php:78
491
+ msgid "Add Google Local Business data type."
492
  msgstr ""
493
 
494
  #: inc/admin/admin-features-list.php:83
496
  msgstr ""
497
 
498
  #: inc/admin/admin-features-list.php:84
499
+ msgid "Add Dublin Core meta tags."
500
  msgstr ""
501
 
502
  #: inc/admin/admin-features-list.php:89
512
  msgstr ""
513
 
514
  #: inc/admin/admin-features-list.php:96
515
+ msgid "Enable Breadcrumbs for your theme and improve your SEO in SERPs."
516
  msgstr ""
517
 
518
  #: inc/admin/admin-features-list.php:101
520
  msgstr ""
521
 
522
  #: inc/admin/admin-features-list.php:102
523
+ msgid "Track your website performance to improve SEO with Google Page Speed."
524
  msgstr ""
525
 
526
+ #: inc/admin/admin-features-list.php:108
527
+ msgid "Inspect URL with Google Search Console"
528
  msgstr ""
529
 
530
+ #: inc/admin/admin-features-list.php:109
531
+ msgid "Inspect your URL for details about crawling, indexing, mobile compatibility, schemas and more."
532
  msgstr ""
533
 
534
  #: inc/admin/admin-features-list.php:116
535
+ msgid "robots.txt"
536
  msgstr ""
537
 
538
  #: inc/admin/admin-features-list.php:117
539
+ msgid "Edit your robots.txt file."
540
  msgstr ""
541
 
542
  #: inc/admin/admin-features-list.php:123
543
+ msgid "Google News Sitemap"
544
  msgstr ""
545
 
546
+ #: inc/admin/admin-features-list.php:124
547
+ msgid "Optimize your site for Google News."
548
+ msgstr ""
549
+
550
+ #: inc/admin/admin-features-list.php:130
551
+ msgid "Create / manage your schemas."
552
+ msgstr ""
553
+
554
+ #: inc/admin/admin-features-list.php:136
555
+ msgid "Monitor 404, create 301, 302 and 307 redirections."
556
  msgstr ""
557
 
558
+ #: inc/admin/admin-features-list.php:141
559
  msgid "Broken links"
560
  msgstr ""
561
 
562
+ #: inc/admin/admin-features-list.php:142
563
  msgid "Scan your site to find SEO problems."
564
  msgstr ""
565
 
566
+ #: inc/admin/admin-features-list.php:147
567
  msgid "URL Rewriting"
568
  msgstr ""
569
 
570
+ #: inc/admin/admin-features-list.php:148
571
  msgid "Customize your permalinks."
572
  msgstr ""
573
 
574
+ #: inc/admin/admin-features-list.php:154
575
  msgid ".htaccess"
576
  msgstr ""
577
 
578
+ #: inc/admin/admin-features-list.php:155
579
  msgid "Edit your htaccess file."
580
  msgstr ""
581
 
582
+ #: inc/admin/admin-features-list.php:162
583
  msgid "RSS"
584
  msgstr ""
585
 
586
+ #: inc/admin/admin-features-list.php:163
587
  msgid "Configure default WordPress RSS."
588
  msgstr ""
589
 
590
+ #: inc/admin/admin-features-list.php:171
591
  msgid "Import/Export plugin settings from site to site."
592
  msgstr ""
593
 
594
+ #: inc/admin/admin-features-list.php:179
595
  msgid "Edit your license key."
596
  msgstr ""
597
 
598
+ #: inc/admin/admin-features-list.php:210
599
  msgid "Toggle %s"
600
  msgstr ""
601
 
620
  #: inc/admin/admin-pages/Sitemaps.php:43
621
  #: inc/admin/admin-pages/Social.php:43
622
  #: inc/admin/admin-pages/Titles.php:54
623
+ #: seopress-functions.php:662
624
  msgid "Save changes"
625
  msgstr ""
626
 
688
  #: inc/admin/admin-pages/Tools.php:22
689
  #: inc/admin/admin-pages/Tools.php:155
690
  #: inc/admin/sections/InstantIndexing.php:54
691
+ #: seopress.php:613
692
  msgid "Settings"
693
  msgstr ""
694
 
695
  #: inc/admin/admin-pages/Sitemaps.php:19
696
  #: inc/admin/admin-pages/Titles.php:21
697
+ #: inc/admin/sections/Sitemaps.php:152
698
  #: inc/admin/sections/Titles.php:48
699
  #: inc/admin/wizard/admin-wizard.php:200
700
  #: inc/admin/wizard/admin-wizard.php:211
704
 
705
  #: inc/admin/admin-pages/Sitemaps.php:20
706
  #: inc/admin/admin-pages/Titles.php:23
707
+ #: inc/admin/sections/Sitemaps.php:167
708
  #: inc/admin/sections/Titles.php:78
709
  #: inc/admin/wizard/admin-wizard.php:202
710
  #: inc/admin/wizard/admin-wizard.php:213
713
  msgstr ""
714
 
715
  #: inc/admin/admin-pages/Sitemaps.php:21
716
+ #: inc/admin/sections/Sitemaps.php:124
717
  msgid "HTML Sitemap"
718
  msgstr ""
719
 
735
  msgstr ""
736
 
737
  #: inc/admin/admin-pages/Social.php:21
738
+ #: inc/admin/sections/Social.php:101
739
  msgid "Twitter (Twitter card)"
740
  msgstr ""
741
 
795
  #: inc/admin/metaboxes/admin-metaboxes-form.php:150
796
  #: inc/admin/migrate/MigrationTools.php:19
797
  #: inc/admin/settings/Titles.php:32
798
+ #: inc/functions/options-advanced-admin.php:793
799
  #: src/Helpers/ContentAnalysis.php:53
800
  #: app/react/components/Forms/MetaTitleDescription/index.js:149
801
  #: app/react/components/Forms/MetaTitleDescription/index.js:151
839
  #: src/Helpers/ContentAnalysis.php:13
840
  #: src/Helpers/Metas/RobotSettings.php:100
841
  #: app/react/layout/Main/components/Advanced/index.js:145
842
+ #: app/react/services/content-analysis/canonicalUrl.js:108
843
  msgid "Canonical URL"
844
  msgstr ""
845
 
846
  #: inc/admin/admin-pages/Tools.php:84
847
  #: inc/admin/admin-pages/Tools.php:130
848
+ #: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:36
849
+ #: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:37
850
+ #: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:41
851
  #: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:566
852
+ #: inc/functions/options-advanced-admin.php:802
853
  #: app/react/layout/Main/components/ContentAnalysis/index.js:365
854
  #: app/react/layout/Main/components/ContentAnalysis/index.js:367
855
  msgid "Target keywords"
975
  #: app/react/layout/Main/components/GoogleNews/index.js:42
976
  #: app/react/layout/Main/components/MainTitleDescription/index.js:33
977
  #: app/react/layout/Main/components/Redirection/index.js:181
978
+ #: app/react/layout/Main/components/SchemasManual/index.js:380
979
  #: app/react/layout/Main/components/Social/index.js:42
980
  #: app/react/layout/Main/components/VideoSitemap/index.js:205
981
  msgid "Your settings have been saved."
1032
  msgstr ""
1033
 
1034
  #: inc/admin/blocks/get-started.php:25
1035
+ #: seopress-functions.php:453
1036
  msgid "Dismiss"
1037
  msgstr ""
1038
 
1052
  msgid "SEO Tools"
1053
  msgstr ""
1054
 
1055
+ #: inc/admin/blocks/insights.php:112
1056
+ msgid "Sessions"
1057
  msgstr ""
1058
 
1059
+ #: inc/admin/blocks/insights.php:115
1060
+ msgid "Users"
1061
  msgstr ""
1062
 
1063
+ #: inc/admin/blocks/insights.php:118
1064
+ msgid "Page Views"
1065
  msgstr ""
1066
 
1067
+ #: inc/admin/blocks/insights.php:121
1068
+ msgid "Page view / session"
1069
  msgstr ""
1070
 
1071
+ #: inc/admin/blocks/insights.php:124
1072
+ msgid "Average session duration"
1073
  msgstr ""
1074
 
1075
+ #: inc/admin/blocks/insights.php:127
1076
+ msgid "Bounce rate"
1077
  msgstr ""
1078
 
1079
+ #: inc/admin/blocks/insights.php:130
1080
+ msgid "New sessions"
1081
  msgstr ""
1082
 
1083
+ #: inc/admin/blocks/insights.php:146
1084
+ msgid "No stats found"
1085
  msgstr ""
1086
 
1087
+ #: inc/admin/blocks/insights.php:155
1088
+ msgid "Connect Google Analytics"
1089
  msgstr ""
1090
 
1091
+ #: inc/admin/blocks/insights.php:167
1092
+ msgid "Google Page Speed Score"
1093
  msgstr ""
1094
 
1095
+ #: inc/admin/blocks/insights.php:168
1096
+ msgid "Learn how your site has performed, based on data from your actual users around the world."
1097
  msgstr ""
1098
 
1099
+ #: inc/admin/blocks/insights.php:175
1100
+ msgid "<span><span class=\"score red\"></span>0-49</span><span><span class=\"score yellow\"></span>50-89</span><span><span class=\"score green\"></span>90-100</span>"
1101
  msgstr ""
1102
 
1103
+ #: inc/admin/blocks/insights.php:188
1104
+ msgid "Core Web Vitals Assessment: "
1105
  msgstr ""
1106
 
1107
+ #: inc/admin/blocks/insights.php:191
1108
+ msgid "Passed"
1109
  msgstr ""
1110
 
1111
+ #: inc/admin/blocks/insights.php:193
1112
+ msgid "No data found"
1113
  msgstr ""
1114
 
1115
+ #: inc/admin/blocks/insights.php:195
1116
+ msgid "Failed"
1117
  msgstr ""
1118
 
1119
+ #: inc/admin/blocks/insights.php:198
1120
+ msgid "Computed from the %s Core Web Vitals metrics over the latest 28-day collection period."
1121
  msgstr ""
1122
 
1123
+ #: inc/admin/blocks/insights.php:202
1124
+ msgid "No data available."
1125
  msgstr ""
1126
 
1127
+ #: inc/admin/blocks/insights.php:207
1128
+ msgid "See full report"
1129
  msgstr ""
1130
 
1131
+ #: inc/admin/blocks/insights.php:219
1132
  msgid "Check websites setup on your server"
1133
  msgstr ""
1134
 
1135
+ #: inc/admin/blocks/insights.php:228
1136
  msgid "Not found"
1137
  msgstr ""
1138
 
1139
+ #: inc/admin/blocks/insights.php:233
1140
  msgid "No scrape."
1141
  msgstr ""
1142
 
1143
+ #: inc/admin/blocks/insights.php:238
1144
  msgid "No domain found."
1145
  msgstr ""
1146
 
1147
+ #: inc/admin/blocks/insights.php:249
1148
  msgid "Server IP Address: "
1149
  msgstr ""
1150
 
1151
+ #: inc/admin/blocks/insights.php:256
1152
  msgid "Last scrape: "
1153
  msgstr ""
1154
 
1155
+ #: inc/admin/blocks/insights.php:263
1156
  msgid "Number of websites on your server: "
1157
  msgstr ""
1158
 
1159
+ #: inc/admin/blocks/insights.php:284
1160
  msgid "Get list"
1161
  msgstr ""
1162
 
1177
  #: app/react/layout/Main/components/Advanced/index.js:244
1178
  #: app/react/layout/Main/components/GoogleNews/index.js:86
1179
  #: app/react/layout/Main/components/Redirection/index.js:149
1180
+ #: app/react/layout/Main/components/SchemasManual/index.js:343
1181
  #: app/react/layout/Main/components/Social/index.js:233
1182
  #: app/react/layout/Main/components/VideoSitemap/index.js:277
1183
  msgid "Save"
1344
  #: inc/admin/blocks/notifications-center.php:559
1345
  #: inc/admin/blocks/notifications-center.php:579
1346
  #: inc/admin/blocks/notifications-center.php:597
1347
+ #: inc/admin/callbacks/Analytics.php:605
1348
+ #: inc/admin/callbacks/Analytics.php:702
1349
+ #: inc/admin/callbacks/Analytics.php:730
1350
+ #: inc/admin/callbacks/Analytics.php:759
1351
+ #: inc/admin/callbacks/Analytics.php:787
1352
  msgid "Learn more"
1353
  msgstr ""
1354
 
1631
  msgstr ""
1632
 
1633
  #: inc/admin/callbacks/Advanced.php:60
1634
+ #: inc/admin/callbacks/Advanced.php:104
1635
+ #: inc/admin/wizard/admin-wizard.php:1244
1636
+ #: inc/admin/wizard/admin-wizard.php:1268
1637
  msgid "Remove <strong>%s</strong> in your permalinks"
1638
  msgstr ""
1639
 
1640
+ #: inc/admin/callbacks/Advanced.php:64
1641
+ msgid "e.g. \"https://example.com/category/my-post-category/\" => \"https://example.com/my-post-category/\""
1642
+ msgstr ""
1643
+
1644
+ #: inc/admin/callbacks/Advanced.php:69
1645
+ #: inc/admin/callbacks/Advanced.php:114
1646
  msgid "You have to flush your permalinks each time you change this setting."
1647
  msgstr ""
1648
 
1649
  #: inc/admin/callbacks/Advanced.php:109
1650
+ msgid "e.g. \"https://example.com/product-category/my-product-category/\" => \"https://example.com/my-product-category/\""
1651
+ msgstr ""
1652
+
1653
+ #: inc/admin/callbacks/Advanced.php:117
1654
+ msgid "Make sure you don't have identical URLs after activating this option to prevent conflicts."
1655
  msgstr ""
1656
 
1657
+ #: inc/admin/callbacks/Advanced.php:128
1658
  msgid "You need to enable <strong>WooCommerce</strong> to apply these settings."
1659
  msgstr ""
1660
 
1661
+ #: inc/admin/callbacks/Advanced.php:147
1662
  #: inc/admin/settings/Advanced.php:40
1663
  msgid "Disable trailing slash for metas"
1664
  msgstr ""
1665
 
1666
+ #: inc/admin/callbacks/Advanced.php:152
1667
  msgid "You must check this box if the structure of your permalinks <strong>DOES NOT</strong> contain a slash at the end (eg: /%postname%)"
1668
  msgstr ""
1669
 
1670
+ #: inc/admin/callbacks/Advanced.php:173
1671
  msgid "Remove WordPress meta generator in source code"
1672
  msgstr ""
1673
 
1674
+ #: inc/admin/callbacks/Advanced.php:193
1675
  msgid "Remove hentry post class to prevent Google from seeing this as structured data (schema)"
1676
  msgstr ""
1677
 
1678
+ #: inc/admin/callbacks/Advanced.php:213
1679
  msgid "Remove comment author URL in comments if the website is filled from profile page"
1680
  msgstr ""
1681
 
1682
+ #: inc/admin/callbacks/Advanced.php:233
1683
  msgid "Remove website field from comment form to reduce spam"
1684
  msgstr ""
1685
 
1686
+ #: inc/admin/callbacks/Advanced.php:253
1687
  msgid "Prevent search engines to follow / index the link to the comments form (<em>eg: https://www.example.com/my-blog-post/#respond</em>)"
1688
  msgstr ""
1689
 
1690
+ #: inc/admin/callbacks/Advanced.php:273
1691
  msgid "Remove WordPress shortlink meta tag in source code (eg:"
1692
  msgstr ""
1693
 
1694
+ #: inc/admin/callbacks/Advanced.php:296
1695
  msgid "Remove Windows Live Writer meta tag in source code (eg:"
1696
  msgstr ""
1697
 
1698
+ #: inc/admin/callbacks/Advanced.php:319
1699
  msgid "Remove Really Simple Discovery meta tag in source code (eg:"
1700
  msgstr ""
1701
 
1702
+ #: inc/admin/callbacks/Advanced.php:326
1703
  msgid "WordPress Site Health feature will return a HTTPS warning if you enable this option. This is a false positive of course."
1704
  msgstr ""
1705
 
1706
+ #: inc/admin/callbacks/Advanced.php:339
1707
  msgid "Enter Google meta value site verification"
1708
  msgstr ""
1709
 
1710
+ #: inc/admin/callbacks/Advanced.php:339
1711
+ #: inc/admin/settings/Advanced.php:120
1712
  msgid "Google site verification"
1713
  msgstr ""
1714
 
1715
+ #: inc/admin/callbacks/Advanced.php:343
1716
  msgid "If your site is already verified in <strong>Google Search Console</strong>, you can leave this field empty."
1717
  msgstr ""
1718
 
1719
+ #: inc/admin/callbacks/Advanced.php:354
1720
  msgid "Enter Bing meta value site verification"
1721
  msgstr ""
1722
 
1723
+ #: inc/admin/callbacks/Advanced.php:354
1724
+ #: inc/admin/settings/Advanced.php:128
1725
  msgid "Bing site verification"
1726
  msgstr ""
1727
 
1728
+ #: inc/admin/callbacks/Advanced.php:358
1729
  msgid "If your site is already verified in <strong>Bing Webmaster tools</strong>, you can leave this field empty."
1730
  msgstr ""
1731
 
1732
+ #: inc/admin/callbacks/Advanced.php:369
1733
  msgid "Enter Pinterest meta value site verification"
1734
  msgstr ""
1735
 
1736
+ #: inc/admin/callbacks/Advanced.php:369
1737
+ #: inc/admin/settings/Advanced.php:136
1738
  msgid "Pinterest site verification"
1739
  msgstr ""
1740
 
1741
+ #: inc/admin/callbacks/Advanced.php:379
1742
+ #: inc/admin/settings/Advanced.php:144
1743
  msgid "Yandex site verification"
1744
  msgstr ""
1745
 
1746
+ #: inc/admin/callbacks/Advanced.php:379
1747
  msgid "Enter Yandex meta value site verification"
1748
  msgstr ""
1749
 
1750
+ #: inc/admin/callbacks/Advanced.php:396
1751
  msgid "Remove SEO from Admin Bar in backend and frontend"
1752
  msgstr ""
1753
 
1754
+ #: inc/admin/callbacks/Advanced.php:416
1755
  msgid "Enable the universal SEO metabox for the Block Editor (Gutenberg)"
1756
  msgstr ""
1757
 
1758
+ #: inc/admin/callbacks/Advanced.php:445
1759
  msgid "Disable the universal SEO metabox"
1760
  msgstr ""
1761
 
1762
+ #: inc/admin/callbacks/Advanced.php:450
1763
  msgid "Learn more about how we interface with all page builders to optimize your productivity"
1764
  msgstr ""
1765
 
1766
+ #: inc/admin/callbacks/Advanced.php:472
1767
  msgid "Remove noindex item from Admin Bar in backend and frontend"
1768
  msgstr ""
1769
 
1770
+ #: inc/admin/callbacks/Advanced.php:490
1771
  msgid "High priority (top)"
1772
  msgstr ""
1773
 
1774
+ #: inc/admin/callbacks/Advanced.php:495
1775
  msgid "Normal priority (default)"
1776
  msgstr ""
1777
 
1778
+ #: inc/admin/callbacks/Advanced.php:500
1779
  msgid "Low priority"
1780
  msgstr ""
1781
 
1782
+ #: inc/admin/callbacks/Advanced.php:520
1783
  msgid "Automatic tab (default)"
1784
  msgstr ""
1785
 
1786
+ #: inc/admin/callbacks/Advanced.php:525
1787
  msgid "Manual tab"
1788
  msgstr ""
1789
 
1790
+ #: inc/admin/callbacks/Advanced.php:547
1791
  msgid "Hide Notifications Center in SEO Dashboard page"
1792
  msgstr ""
1793
 
1794
+ #: inc/admin/callbacks/Advanced.php:567
1795
  msgid "Hide SEO News in SEO Dashboard page"
1796
  msgstr ""
1797
 
1798
+ #: inc/admin/callbacks/Advanced.php:587
1799
  msgid "Hide Site Overview in SEO Dashboard page"
1800
  msgstr ""
1801
 
1802
+ #: inc/admin/callbacks/Advanced.php:606
1803
  msgid "Add title column"
1804
  msgstr ""
1805
 
1806
+ #: inc/admin/callbacks/Advanced.php:626
1807
  msgid "Add meta description column"
1808
  msgstr ""
1809
 
1810
+ #: inc/admin/callbacks/Advanced.php:646
1811
  msgid "Add redirection enable column"
1812
  msgstr ""
1813
 
1814
+ #: inc/admin/callbacks/Advanced.php:666
1815
  msgid "Add redirection URL column"
1816
  msgstr ""
1817
 
1818
+ #: inc/admin/callbacks/Advanced.php:686
1819
  msgid "Add canonical URL column"
1820
  msgstr ""
1821
 
1822
+ #: inc/admin/callbacks/Advanced.php:706
1823
  msgid "Add target keyword column"
1824
  msgstr ""
1825
 
1826
+ #: inc/admin/callbacks/Advanced.php:726
1827
  msgid "Display noindex status"
1828
  msgstr ""
1829
 
1830
+ #: inc/admin/callbacks/Advanced.php:746
1831
  msgid "Display nofollow status"
1832
  msgstr ""
1833
 
1834
+ #: inc/admin/callbacks/Advanced.php:766
1835
  msgid "Display total number of words in content"
1836
  msgstr ""
1837
 
1838
+ #: inc/admin/callbacks/Advanced.php:787
1839
  msgid "Display Page Speed column to check performances"
1840
  msgstr ""
1841
 
1842
+ #: inc/admin/callbacks/Advanced.php:808
1843
  msgid "Display SEO Insights column to check rankings"
1844
  msgstr ""
1845
 
1846
+ #: inc/admin/callbacks/Advanced.php:829
1847
  msgid "Display Content Analysis results column (\"Good\" or \"Should be improved\")"
1848
  msgstr ""
1849
 
1850
+ #: inc/admin/callbacks/Advanced.php:849
1851
+ #: inc/admin/settings/Advanced.php:334
1852
  msgid "Remove Content Analysis Metabox"
1853
  msgstr ""
1854
 
1855
+ #: inc/admin/callbacks/Advanced.php:869
1856
  msgid "Remove Genesis SEO Metabox"
1857
  msgstr ""
1858
 
1859
+ #: inc/admin/callbacks/Advanced.php:889
1860
  msgid "Remove Genesis SEO link in WP Admin Menu"
1861
  msgstr ""
1862
 
1863
+ #: inc/admin/callbacks/Advanced.php:909
1864
  msgid "Remove the advice if None schema selected"
1865
  msgstr ""
1866
 
1867
+ #: inc/admin/callbacks/Advanced.php:955
1868
+ #: inc/admin/callbacks/Advanced.php:996
1869
  msgid "Hook to filter structured data types metabox call by post type - new window"
1870
  msgstr ""
1871
 
1887
  msgid "Find your tracking ID"
1888
  msgstr ""
1889
 
1890
+ #: inc/admin/callbacks/Analytics.php:43
1891
+ msgid "<strong>Universal Analytics</strong> will stop working in <strong>June 2023</strong>. We invite you to use GA4 now or an alternative like Matomo."
1892
+ msgstr ""
1893
+
1894
+ #: inc/admin/callbacks/Analytics.php:54
1895
  msgid "Enter your measurement ID (G-XXXXXXXXXX)"
1896
  msgstr ""
1897
 
1898
+ #: inc/admin/callbacks/Analytics.php:54
1899
  msgid "Enter your measurement ID"
1900
  msgstr ""
1901
 
1902
+ #: inc/admin/callbacks/Analytics.php:61
1903
  msgid "Find your measurement ID"
1904
  msgstr ""
1905
 
1906
+ #: inc/admin/callbacks/Analytics.php:77
1907
  msgid "After the opening body tag (recommended)"
1908
  msgstr ""
1909
 
1910
+ #: inc/admin/callbacks/Analytics.php:82
1911
  msgid "Footer"
1912
  msgstr ""
1913
 
1914
+ #: inc/admin/callbacks/Analytics.php:87
1915
  msgid "Head (not recommended)"
1916
  msgstr ""
1917
 
1918
+ #: inc/admin/callbacks/Analytics.php:113
1919
  msgid "Request user's consent for analytics tracking (required by GDPR)"
1920
  msgstr ""
1921
 
1922
+ #: inc/admin/callbacks/Analytics.php:117
1923
  msgid "The user must click the <strong>Accept button</strong> to allow tracking."
1924
  msgstr ""
1925
 
1926
+ #: inc/admin/callbacks/Analytics.php:122
1927
  msgid "User roles excluded from tracking will not see the consent message."
1928
  msgstr ""
1929
 
1930
+ #: inc/admin/callbacks/Analytics.php:125
1931
  msgid "If you use a caching plugin, you have to exclude this JS file in your settings:"
1932
  msgstr ""
1933
 
1934
+ #: inc/admin/callbacks/Analytics.php:128
1935
  msgid "<strong>/wp-content/plugins/wp-seopress/assets/js/seopress-cookies-ajax.js</strong> and this cookie <strong>seopress-user-consent-accept</strong>"
1936
  msgstr ""
1937
 
1938
+ #: inc/admin/callbacks/Analytics.php:129
1939
  msgid "Hook to add custom tracking code with user consent - new window"
1940
  msgstr ""
1941
 
1942
+ #: inc/admin/callbacks/Analytics.php:148
1943
  msgid "Display and automatically accept the user‘s consent on page load (not fully GDPR)"
1944
  msgstr ""
1945
 
1946
+ #: inc/admin/callbacks/Analytics.php:152
1947
  msgid "The previous option must be checked to use this."
1948
  msgstr ""
1949
 
1950
+ #: inc/admin/callbacks/Analytics.php:172
1951
  msgid "Allow user to change its choice about cookies"
1952
  msgstr ""
1953
 
1954
+ #: inc/admin/callbacks/Analytics.php:186
1955
  msgid "Enter your message (HTML allowed)"
1956
  msgstr ""
1957
 
1958
+ #: inc/admin/callbacks/Analytics.php:186
1959
  msgid "This message will only appear if request user's consent is enabled."
1960
  msgstr ""
1961
 
1962
+ #: inc/admin/callbacks/Analytics.php:189
1963
  msgid "Hook to filter user consent message - new window"
1964
  msgstr ""
1965
 
1966
+ #: inc/admin/callbacks/Analytics.php:192
1967
  msgid "HTML tags allowed: strong, em, br, a href / target"
1968
  msgstr ""
1969
 
1970
+ #: inc/admin/callbacks/Analytics.php:195
1971
  msgid "Shortcode allowed to get the privacy page set in WordPress settings: [seopress_privacy_page]"
1972
  msgstr ""
1973
 
1974
+ #: inc/admin/callbacks/Analytics.php:206
1975
+ #: inc/functions/options-google-analytics.php:110
1976
  msgid "Accept"
1977
  msgstr ""
1978
 
1979
+ #: inc/admin/callbacks/Analytics.php:206
1980
  msgid "Change the button value"
1981
  msgstr ""
1982
 
1983
+ #: inc/admin/callbacks/Analytics.php:216
1984
  msgid "default: X"
1985
  msgstr ""
1986
 
1987
+ #: inc/admin/callbacks/Analytics.php:216
1988
  msgid "Change the close button value"
1989
  msgstr ""
1990
 
1991
+ #: inc/admin/callbacks/Analytics.php:226
1992
  msgid "default: Manage cookies"
1993
  msgstr ""
1994
 
1995
+ #: inc/admin/callbacks/Analytics.php:226
1996
  msgid "Change the edit button value"
1997
  msgstr ""
1998
 
1999
+ #: inc/admin/callbacks/Analytics.php:246
2000
  msgid "Default: 30 days before the cookie expiration."
2001
  msgstr ""
2002
 
2003
+ #: inc/admin/callbacks/Analytics.php:262
2004
  msgid "Bottom (default)"
2005
  msgstr ""
2006
 
2007
+ #: inc/admin/callbacks/Analytics.php:267
2008
  msgid "Middle"
2009
  msgstr ""
2010
 
2011
+ #: inc/admin/callbacks/Analytics.php:272
2012
  msgid "Top"
2013
  msgstr ""
2014
 
2015
+ #: inc/admin/callbacks/Analytics.php:291
2016
  msgid "Left"
2017
  msgstr ""
2018
 
2019
+ #: inc/admin/callbacks/Analytics.php:296
2020
  msgid "Center (default)"
2021
  msgstr ""
2022
 
2023
+ #: inc/admin/callbacks/Analytics.php:301
2024
  msgid "Right"
2025
  msgstr ""
2026
 
2027
+ #: inc/admin/callbacks/Analytics.php:316
2028
  msgid "Change the cookie bar width"
2029
  msgstr ""
2030
 
2031
+ #: inc/admin/callbacks/Analytics.php:320
2032
  msgid "Default unit is Pixels. Add % just after your custom value to use percentages (eg: 80%)."
2033
  msgstr ""
2034
 
2035
+ #: inc/admin/callbacks/Analytics.php:334
2036
  msgid "Backdrop"
2037
  msgstr ""
2038
 
2039
+ #: inc/admin/callbacks/Analytics.php:338
2040
  msgid "Customize the cookie bar <strong>backdrop</strong>."
2041
  msgstr ""
2042
 
2043
+ #: inc/admin/callbacks/Analytics.php:347
2044
  msgid "Display a backdrop with the cookie bar"
2045
  msgstr ""
2046
 
2047
+ #: inc/admin/callbacks/Analytics.php:360
2048
+ #: inc/admin/callbacks/Analytics.php:382
2049
+ #: inc/admin/callbacks/Analytics.php:437
2050
+ #: inc/admin/callbacks/Analytics.php:506
2051
  msgid "Background color: "
2052
  msgstr ""
2053
 
2054
+ #: inc/admin/callbacks/Analytics.php:364
2055
  msgid "Change the background color of the backdrop"
2056
  msgstr ""
2057
 
2058
+ #: inc/admin/callbacks/Analytics.php:374
2059
  msgid "Main settings"
2060
  msgstr ""
2061
 
2062
+ #: inc/admin/callbacks/Analytics.php:378
2063
  msgid "Customize the general settings of the <strong>cookie bar</strong>."
2064
  msgstr ""
2065
 
2066
+ #: inc/admin/callbacks/Analytics.php:387
2067
  msgid "Change the color of the cookie bar background"
2068
  msgstr ""
2069
 
2070
+ #: inc/admin/callbacks/Analytics.php:397
2071
+ #: inc/admin/callbacks/Analytics.php:466
2072
+ #: inc/admin/callbacks/Analytics.php:521
2073
  msgid "Text color: "
2074
  msgstr ""
2075
 
2076
+ #: inc/admin/callbacks/Analytics.php:402
2077
  msgid "Change the color of the cookie bar text"
2078
  msgstr ""
2079
 
2080
+ #: inc/admin/callbacks/Analytics.php:412
2081
  msgid "Link color: "
2082
  msgstr ""
2083
 
2084
+ #: inc/admin/callbacks/Analytics.php:417
2085
  msgid "Change the color of the cookie bar link"
2086
  msgstr ""
2087
 
2088
+ #: inc/admin/callbacks/Analytics.php:429
2089
  msgid "Primary button"
2090
  msgstr ""
2091
 
2092
+ #: inc/admin/callbacks/Analytics.php:433
2093
  msgid "Customize the <strong>Accept button</strong>."
2094
  msgstr ""
2095
 
2096
+ #: inc/admin/callbacks/Analytics.php:441
2097
  msgid "Change the color of the cookie bar button background"
2098
  msgstr ""
2099
 
2100
+ #: inc/admin/callbacks/Analytics.php:451
2101
+ #: inc/admin/callbacks/Analytics.php:536
2102
  msgid "Background color on hover: "
2103
  msgstr ""
2104
 
2105
+ #: inc/admin/callbacks/Analytics.php:456
2106
  msgid "Change the color of the cookie bar button hover background"
2107
  msgstr ""
2108
 
2109
+ #: inc/admin/callbacks/Analytics.php:471
2110
  msgid "Change the color of the cookie bar button"
2111
  msgstr ""
2112
 
2113
+ #: inc/admin/callbacks/Analytics.php:481
2114
+ #: inc/admin/callbacks/Analytics.php:551
2115
  msgid "Text color on hover: "
2116
  msgstr ""
2117
 
2118
+ #: inc/admin/callbacks/Analytics.php:486
2119
  msgid "Change the color of the cookie bar button hover"
2120
  msgstr ""
2121
 
2122
+ #: inc/admin/callbacks/Analytics.php:498
2123
  msgid "Secondary button"
2124
  msgstr ""
2125
 
2126
+ #: inc/admin/callbacks/Analytics.php:502
2127
  msgid "Customize the <strong>Close button</strong>."
2128
  msgstr ""
2129
 
2130
+ #: inc/admin/callbacks/Analytics.php:511
2131
  msgid "Change the color of the cookie bar secondary button background"
2132
  msgstr ""
2133
 
2134
+ #: inc/admin/callbacks/Analytics.php:526
2135
  msgid "Change the color of the cookie bar secondary button hover background"
2136
  msgstr ""
2137
 
2138
+ #: inc/admin/callbacks/Analytics.php:541
2139
  msgid "Change the color of the cookie bar secondary button"
2140
  msgstr ""
2141
 
2142
+ #: inc/admin/callbacks/Analytics.php:556
2143
  msgid "Change the color of the cookie bar secondary button hover"
2144
  msgstr ""
2145
 
2146
+ #: inc/admin/callbacks/Analytics.php:598
2147
  msgid "Enter your Google Optimize container ID"
2148
  msgstr ""
2149
 
2150
+ #: inc/admin/callbacks/Analytics.php:598
2151
  msgid "GTM-XXXXXXX"
2152
  msgstr ""
2153
 
2154
+ #: inc/admin/callbacks/Analytics.php:602
2155
  msgid "Google Optimize offers A/B testing, website testing & personalization tools."
2156
  msgstr ""
2157
 
2158
+ #: inc/admin/callbacks/Analytics.php:620
2159
  msgid "Enter your Google Ads conversion ID (eg: AW-123456789)"
2160
  msgstr ""
2161
 
2162
+ #: inc/admin/callbacks/Analytics.php:620
2163
  msgid "AW-XXXXXXXXX"
2164
  msgstr ""
2165
 
2166
+ #: inc/admin/callbacks/Analytics.php:624
2167
  msgid "Learn how to find your Google Ads Conversion ID"
2168
  msgstr ""
2169
 
2170
+ #: inc/admin/callbacks/Analytics.php:637
2171
  msgid "Paste your tracking code here like Google Tag Manager (head). Do NOT paste GA4 or Universal Analytics codes here. They are automatically added to your source code."
2172
  msgstr ""
2173
 
2174
+ #: inc/admin/callbacks/Analytics.php:637
2175
  msgid "Additional tracking code field"
2176
  msgstr ""
2177
 
2178
+ #: inc/admin/callbacks/Analytics.php:640
2179
  msgid "This code will be added in the head section of your page."
2180
  msgstr ""
2181
 
2182
+ #: inc/admin/callbacks/Analytics.php:651
2183
  msgid "Paste your tracking code here like Google Tag Manager (body)"
2184
  msgstr ""
2185
 
2186
+ #: inc/admin/callbacks/Analytics.php:651
2187
  msgid "Additional tracking code field added to body"
2188
  msgstr ""
2189
 
2190
+ #: inc/admin/callbacks/Analytics.php:653
2191
  msgid "This code will be added just after the opening body tag of your page."
2192
  msgstr ""
2193
 
2194
+ #: inc/admin/callbacks/Analytics.php:656
2195
  msgid "You don‘t see your code? Make sure to call <strong>wp_body_open();</strong> just after the opening body tag in your theme."
2196
  msgstr ""
2197
 
2198
+ #: inc/admin/callbacks/Analytics.php:663
2199
  msgid "Learn how to integrate Google Tag Manager"
2200
  msgstr ""
2201
 
2202
+ #: inc/admin/callbacks/Analytics.php:676
2203
  msgid "Paste your tracking code here (footer)"
2204
  msgstr ""
2205
 
2206
+ #: inc/admin/callbacks/Analytics.php:676
2207
  msgid "Additional tracking code field added to footer"
2208
  msgstr ""
2209
 
2210
+ #: inc/admin/callbacks/Analytics.php:680
2211
  msgid "This code will be added just after the closing body tag of your page."
2212
  msgstr ""
2213
 
2214
+ #: inc/admin/callbacks/Analytics.php:696
2215
  #: inc/admin/settings/Analytics.php:283
2216
  msgid "Enable remarketing, demographics, and interests reporting"
2217
  msgstr ""
2218
 
2219
+ #: inc/admin/callbacks/Analytics.php:700
2220
  msgid "A remarketing audience is a list of cookies or mobile-advertising IDs that represents a group of users you want to re-engage because of their likelihood to convert."
2221
  msgstr ""
2222
 
2223
+ #: inc/admin/callbacks/Analytics.php:723
2224
  #: inc/admin/settings/Analytics.php:291
2225
  msgid "Enable IP Anonymization"
2226
  msgstr ""
2227
 
2228
+ #: inc/admin/callbacks/Analytics.php:727
2229
  msgid "When a customer of Analytics requests IP address anonymization, Analytics anonymizes the address as soon as technically feasible at the earliest possible stage of the collection network."
2230
  msgstr ""
2231
 
2232
+ #: inc/admin/callbacks/Analytics.php:751
2233
  #: inc/admin/settings/Analytics.php:299
2234
  msgid "Enhanced Link Attribution"
2235
  msgstr ""
2236
 
2237
+ #: inc/admin/callbacks/Analytics.php:755
2238
  msgid "Enhanced Link Attribution improves the accuracy of your In-Page Analytics report by automatically differentiating between multiple links to the same URL on a single page by using link element IDs."
2239
  msgstr ""
2240
 
2241
+ #: inc/admin/callbacks/Analytics.php:780
2242
  #: inc/admin/settings/Analytics.php:307
2243
  msgid "Enable cross-domain tracking"
2244
  msgstr ""
2245
 
2246
+ #: inc/admin/callbacks/Analytics.php:784
2247
  msgid "Cross domain tracking makes it possible for Analytics to see sessions on two related sites (such as an ecommerce site and a separate shopping cart site) as a single session. This is sometimes called site linking."
2248
  msgstr ""
2249
 
2250
+ #: inc/admin/callbacks/Analytics.php:802
2251
+ #: inc/admin/callbacks/Analytics.php:1211
2252
  msgid "Enter your domains: seopress.org,sub.seopress.org,sub2.seopress.org"
2253
  msgstr ""
2254
 
2255
+ #: inc/admin/callbacks/Analytics.php:802
2256
+ #: inc/admin/callbacks/Analytics.php:1212
2257
  #: inc/admin/settings/Analytics.php:315
2258
  msgid "Cross domains"
2259
  msgstr ""
2260
 
2261
+ #: inc/admin/callbacks/Analytics.php:819
2262
  #: inc/admin/settings/Analytics.php:367
2263
  msgid "Enable external links tracking"
2264
  msgstr ""
2265
 
2266
+ #: inc/admin/callbacks/Analytics.php:839
2267
  msgid "Enable download tracking"
2268
  msgstr ""
2269
 
2270
+ #: inc/admin/callbacks/Analytics.php:852
2271
  msgid "pdf|docx|pptx|zip"
2272
  msgstr ""
2273
 
2274
+ #: inc/admin/callbacks/Analytics.php:852
2275
  #: inc/admin/settings/Analytics.php:383
2276
  msgid "Track downloads' clicks"
2277
  msgstr ""
2278
 
2279
+ #: inc/admin/callbacks/Analytics.php:856
2280
  msgid "Separate each file type extensions with a pipe \"|\""
2281
  msgstr ""
2282
 
2283
+ #: inc/admin/callbacks/Analytics.php:874
2284
  msgid "Enable affiliate/outbound tracking"
2285
  msgstr ""
2286
 
2287
+ #: inc/admin/callbacks/Analytics.php:888
2288
  msgid "aff|go|out"
2289
  msgstr ""
2290
 
2291
+ #: inc/admin/callbacks/Analytics.php:888
2292
  #: inc/admin/settings/Analytics.php:399
2293
  msgid "Track affiliate/outbound links"
2294
  msgstr ""
2295
 
2296
+ #: inc/admin/callbacks/Analytics.php:892
2297
  msgid "Separate each keyword with a pipe \"|\""
2298
  msgstr ""
2299
 
2300
+ #: inc/admin/callbacks/Analytics.php:906
2301
+ #: inc/admin/callbacks/Analytics.php:932
2302
+ #: inc/admin/callbacks/Analytics.php:959
2303
+ #: inc/admin/callbacks/Analytics.php:986
2304
+ #: inc/admin/callbacks/Analytics.php:1014
2305
  #: inc/admin/callbacks/InstantIndexing.php:220
2306
  #: inc/admin/callbacks/Social.php:175
2307
  msgid "None"
2308
  msgstr ""
2309
 
2310
+ #: inc/admin/callbacks/Analytics.php:913
2311
+ #: inc/admin/callbacks/Analytics.php:939
2312
+ #: inc/admin/callbacks/Analytics.php:966
2313
+ #: inc/admin/callbacks/Analytics.php:993
2314
+ #: inc/admin/callbacks/Analytics.php:1020
2315
  msgid "Custom Dimension #%d"
2316
  msgstr ""
2317
 
2318
+ #: inc/admin/callbacks/Analytics.php:1040
2319
  #: inc/admin/settings/Analytics.php:466
2320
  msgid "Enable Matomo tracking"
2321
  msgstr ""
2322
 
2323
+ #: inc/admin/callbacks/Analytics.php:1042
2324
  msgid "A Matomo Cloud account or a self hosted Matomo installation is required."
2325
  msgstr ""
2326
 
2327
+ #: inc/admin/callbacks/Analytics.php:1064
2328
  msgid "Yes, self-hosted installation"
2329
  msgstr ""
2330
 
2331
+ #: inc/admin/callbacks/Analytics.php:1066
2332
  msgid "If you use Matomo Cloud, uncheck this option."
2333
  msgstr ""
2334
 
2335
+ #: inc/admin/callbacks/Analytics.php:1070
2336
  msgid "Learn how to install Matomo On-Premise on your server."
2337
  msgstr ""
2338
 
2339
+ #: inc/admin/callbacks/Analytics.php:1086
2340
  msgid "Matomo URL (Cloud or Self-hosted)"
2341
  msgstr ""
2342
 
2343
+ #: inc/admin/callbacks/Analytics.php:1101
2344
  msgid "Enter your site ID here"
2345
  msgstr ""
2346
 
2347
+ #: inc/admin/callbacks/Analytics.php:1102
2348
  msgid "Matomo Site ID"
2349
  msgstr ""
2350
 
2351
+ #: inc/admin/callbacks/Analytics.php:1107
2352
  msgid "To find your site ID, go to your <strong>Matomo Cloud account, Websites, Manage page</strong>. Look at \"Site ID\" on the right part."
2353
  msgstr ""
2354
 
2355
+ #: inc/admin/callbacks/Analytics.php:1108
2356
  msgid "For self-hosted installations, go to your Matomo administration, Settings, Websites, Manage. From the list of your websites, find the ID line."
2357
  msgstr ""
2358
 
2359
+ #: inc/admin/callbacks/Analytics.php:1125
2360
  msgid "Tracking one domain and its subdomains in the same website"
2361
  msgstr ""
2362
 
2363
+ #: inc/admin/callbacks/Analytics.php:1129
2364
  msgid "If one visitor visits x.example.com and y.example.com, they will be counted as a unique visitor."
2365
  msgstr ""
2366
 
2367
+ #: inc/admin/callbacks/Analytics.php:1148
2368
  msgid "Prepend the site domain to the page title when tracking"
2369
  msgstr ""
2370
 
2371
+ #: inc/admin/callbacks/Analytics.php:1151
2372
  msgid "If someone visits the 'About' page on blog.example.com it will be recorded as 'blog / About'. This is the easiest way to get an overview of your traffic by sub-domain."
2373
  msgstr ""
2374
 
2375
+ #: inc/admin/callbacks/Analytics.php:1169
2376
  #: inc/admin/settings/Analytics.php:514
2377
  msgid "Track users with JavaScript disabled"
2378
  msgstr ""
2379
 
2380
+ #: inc/admin/callbacks/Analytics.php:1188
2381
  #: inc/admin/settings/Analytics.php:522
2382
  msgid "Enables cross domain linking"
2383
  msgstr ""
2384
 
2385
+ #: inc/admin/callbacks/Analytics.php:1192
2386
  msgid "By default, the visitor ID that identifies a unique visitor is stored in the browser's first party cookies which can only be accessed by pages on the same domain."
2387
  msgstr ""
2388
 
2389
+ #: inc/admin/callbacks/Analytics.php:1195
2390
  msgid "Enabling cross domain linking lets you track all the actions and pageviews of a specific visitor into the same visit even when they view pages on several domains."
2391
  msgstr ""
2392
 
2393
+ #: inc/admin/callbacks/Analytics.php:1198
2394
  msgid "Whenever a user clicks on a link to one of your website's alias URLs, it will append a URL parameter pk_vid forwarding the Visitor ID."
2395
  msgstr ""
2396
 
2397
+ #: inc/admin/callbacks/Analytics.php:1225
2398
  msgid "Enable client side DoNotTrack detection"
2399
  msgstr ""
2400
 
2401
+ #: inc/admin/callbacks/Analytics.php:1229
2402
  msgid "Tracking requests will not be sent if visitors do not wish to be tracked."
2403
  msgstr ""
2404
 
2405
+ #: inc/admin/callbacks/Analytics.php:1249
2406
  msgid "Disables all first party cookies. Existing Matomo cookies for this website will be deleted on the next page view."
2407
  msgstr ""
2408
 
2409
+ #: inc/admin/callbacks/Analytics.php:1268
2410
  msgid "Enabling Download & Outlink tracking"
2411
  msgstr ""
2412
 
2413
+ #: inc/admin/callbacks/Analytics.php:1272
2414
  msgid "By default, any file ending with one of these extensions will be considered a \"download\" in the Matomo interface: 7z|aac|arc|arj|apk|asf|asx|avi|bin|bz|bz2|csv|deb|dmg|doc|exe|flv|gif|gz|gzip|hqx|jar|jpg|jpeg|js|mp2|mp3|mp4|mpg|mpeg|mov|movie|msi|msp|odb|odf|odg|odp|ods|odt|ogg|ogv| pdf|phps|png|ppt|qt|qtm|ra|ram|rar|rpm|sea|sit|tar|tbz|tbz2|tgz|torrent|txt|wav|wma|wmv|wpd|xls|xml|z|zip"
2415
  msgstr ""
2416
 
2417
+ #: inc/admin/callbacks/Analytics.php:1291
2418
  msgid "Disabling all heatmaps and session recordings"
2419
  msgstr ""
2420
 
2421
+ #: inc/admin/callbacks/Analytics.php:1309
2422
  msgid "Add Microsoft Clarity code to your site"
2423
  msgstr ""
2424
 
2425
+ #: inc/admin/callbacks/Analytics.php:1323
2426
  msgid "Enter your Project ID"
2427
  msgstr ""
2428
 
2429
+ #: inc/admin/callbacks/Analytics.php:1330
2430
  msgid "Find your project ID"
2431
  msgstr ""
2432
 
2435
  msgstr ""
2436
 
2437
  #: inc/admin/callbacks/ImageSEO.php:36
2438
+ #: inc/admin/wizard/admin-wizard.php:1225
2439
  msgid "Redirect attachment pages to their file URL (https://www.example.com/my-image-file.jpg)"
2440
  msgstr ""
2441
 
2444
  msgstr ""
2445
 
2446
  #: inc/admin/callbacks/ImageSEO.php:60
2447
+ msgid "When send a media, remove accents, spaces, capital letters... and force UTF-8 encoding"
2448
+ msgstr ""
2449
+
2450
+ #: inc/admin/callbacks/ImageSEO.php:64
2451
+ msgid "e.g. \"ExãMple 1 cópy!.jpg\" => \"example-1-copy.jpg\""
2452
+ msgstr ""
2453
+
2454
+ #: inc/admin/callbacks/ImageSEO.php:84
2455
  msgid "When sending an image file, automatically set the title based on the filename"
2456
  msgstr ""
2457
 
2458
+ #: inc/admin/callbacks/ImageSEO.php:88
2459
+ msgid "We use the product title for WooCommerce products."
2460
+ msgstr ""
2461
+
2462
+ #: inc/admin/callbacks/ImageSEO.php:108
2463
  msgid "When sending an image file, automatically set the alternative text based on the filename"
2464
  msgstr ""
2465
 
2466
+ #: inc/admin/callbacks/ImageSEO.php:113
2467
  msgid "We recommend Image SEO plugin to optimize your image ALT texts and names for Search Engines using AI and Machine Learning. Starting from just €4.99."
2468
  msgstr ""
2469
 
2470
+ #: inc/admin/callbacks/ImageSEO.php:135
2471
  msgid "Use the target keywords if not alternative text set for the image"
2472
  msgstr ""
2473
 
2474
+ #: inc/admin/callbacks/ImageSEO.php:139
2475
  msgid "This setting will be applied to images without any alt text only on frontend. This setting is retroactive. If you turn it off, alt texts that were previously empty will be empty again."
2476
  msgstr ""
2477
 
2478
+ #: inc/admin/callbacks/ImageSEO.php:160
2479
  msgid "When sending an image file, automatically set the caption based on the filename"
2480
  msgstr ""
2481
 
2482
+ #: inc/admin/callbacks/ImageSEO.php:179
2483
  msgid "When sending an image file, automatically set the description based on the filename"
2484
  msgstr ""
2485
 
2626
  msgstr ""
2627
 
2628
  #: inc/admin/callbacks/Sitemaps.php:135
2629
+ #: inc/admin/sections/Sitemaps.php:139
2630
  msgid "Guide to enable a HTML Sitemap - new window"
2631
  msgstr ""
2632
 
2702
  #: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:286
2703
  #: inc/admin/wizard/admin-wizard.php:714
2704
  #: src/Helpers/Metas/RobotSettings.php:19
2705
+ #: assets/js/build/primary-category-select.js:1
2706
+ #: assets/js/src/primary-category-select.js:49
2707
  msgid "None (will disable this feature)"
2708
  msgstr ""
2709
 
2739
 
2740
  #: inc/admin/callbacks/Social.php:60
2741
  #: inc/admin/callbacks/Social.php:306
2742
+ #: inc/admin/callbacks/Social.php:384
2743
+ #: inc/admin/callbacks/Social.php:526
2744
  #: inc/admin/metaboxes/admin-metaboxes-form.php:430
2745
  #: inc/admin/metaboxes/admin-metaboxes-form.php:550
2746
  #: inc/admin/metaboxes/admin-metaboxes-form.php:905
2881
  msgstr ""
2882
 
2883
  #: inc/admin/callbacks/Social.php:297
2884
+ #: inc/admin/callbacks/Social.php:376
2885
  #: inc/admin/settings/Social.php:138
2886
  msgid "Select a default image"
2887
  msgstr ""
2888
 
2889
  #: inc/admin/callbacks/Social.php:298
2890
+ #: inc/admin/callbacks/Social.php:377
2891
+ #: inc/admin/callbacks/Social.php:523
2892
  #: inc/admin/metaboxes/admin-metaboxes-form.php:415
2893
  #: inc/admin/metaboxes/admin-metaboxes-form.php:535
2894
  #: src/Helpers/Metas/SocialSettings.php:46
2902
  msgid "Minimum size: 200x200px, ideal ratio 1.91:1, 8Mb max. (eg: 1640x856px or 3280x1712px for retina screens)"
2903
  msgstr ""
2904
 
2905
+ #: inc/admin/callbacks/Social.php:310
2906
+ msgid "If no default image is set, we‘ll use your site icon defined from the Customizer."
2907
+ msgstr ""
2908
+
2909
+ #: inc/admin/callbacks/Social.php:330
2910
  msgid "Override every <strong>og:image</strong> tag with this default image (except if a custom og:image has already been set from the SEO metabox)."
2911
  msgstr ""
2912
 
2913
+ #: inc/admin/callbacks/Social.php:337
2914
  msgid "Please define a <strong>default OG Image</strong> from the field above"
2915
  msgstr ""
2916
 
2917
+ #: inc/admin/callbacks/Social.php:361
2918
  msgid "WooCommerce Shop Page."
2919
  msgstr ""
2920
 
2921
+ #: inc/admin/callbacks/Social.php:394
2922
  msgid "No custom post type to configure."
2923
  msgstr ""
2924
 
2925
+ #: inc/admin/callbacks/Social.php:411
2926
  msgid "One or more Facebook Page IDs that are associated with a URL in order to enable link editing and instant article publishing."
2927
  msgstr ""
2928
 
2929
+ #: inc/admin/callbacks/Social.php:419
2930
  msgid "How do I find my Facebook Page ID?"
2931
  msgstr ""
2932
 
2933
+ #: inc/admin/callbacks/Social.php:436
2934
  msgid "The ID (or comma-separated list for properties that can accept multiple IDs) of an app, person using the app, or Page Graph API object."
2935
  msgstr ""
2936
 
2937
+ #: inc/admin/callbacks/Social.php:455
2938
  msgid "The Facebook app ID of the site's app. In order to use Facebook Insights you must add the app ID to your page. Insights lets you view analytics for traffic to your site from Facebook. Find the app ID in your App Dashboard. <a class=\"seopress-help\" href=\"https://developers.facebook.com/apps/redirect/dashboard\" target=\"_blank\">More info here</a> <span class=\"seopress-help dashicons dashicons-external\"></span>"
2939
  msgstr ""
2940
 
2941
+ #: inc/admin/callbacks/Social.php:463
2942
  msgid "How to create a Facebook App ID"
2943
  msgstr ""
2944
 
2945
+ #: inc/admin/callbacks/Social.php:482
2946
  msgid "Enable Twitter card"
2947
  msgstr ""
2948
 
2949
+ #: inc/admin/callbacks/Social.php:503
2950
  msgid "Use OG if no Twitter Cards"
2951
  msgstr ""
2952
 
2953
+ #: inc/admin/callbacks/Social.php:522
2954
  #: inc/admin/settings/Social.php:211
2955
  msgid "Default Twitter Image"
2956
  msgstr ""
2957
 
2958
+ #: inc/admin/callbacks/Social.php:529
2959
  #: inc/admin/metaboxes/admin-metaboxes-form.php:539
2960
  #: src/Helpers/Metas/SocialSettings.php:91
2961
  msgid "Minimum size: 144x144px (300x157px with large card enabled), ideal ratio 1:1 (2:1 with large card), 5Mb max."
2962
  msgstr ""
2963
 
2964
+ #: inc/admin/callbacks/Social.php:548
2965
  #: seopress.php:407
2966
  msgid "Default"
2967
  msgstr ""
2968
 
2969
+ #: inc/admin/callbacks/Social.php:553
2970
  msgid "Large"
2971
  msgstr ""
2972
 
2973
+ #: inc/admin/callbacks/Social.php:558
2974
  msgid "The Summary Card with <strong>Large Image</strong> features a large, full-width prominent image alongside a tweet. It is designed to give the reader a rich photo experience, and clicking on the image brings the user to your website."
2975
  msgstr ""
2976
 
2982
  #: inc/admin/callbacks/Titles.php:42
2983
  #: inc/admin/callbacks/Titles.php:224
2984
  #: inc/admin/callbacks/Titles.php:434
2985
+ #: inc/admin/callbacks/Titles.php:653
2986
+ #: inc/admin/callbacks/Titles.php:868
2987
+ #: inc/admin/callbacks/Titles.php:1011
2988
+ #: inc/admin/callbacks/Titles.php:1105
2989
+ #: inc/admin/callbacks/Titles.php:1199
2990
+ #: inc/admin/callbacks/Titles.php:1272
2991
  #: inc/admin/metaboxes/admin-metaboxes-form.php:136
2992
  #: inc/admin/page-builders/elementor/inc/controls/class-text-letter-counter-control.php:68
2993
  #: inc/admin/settings/Titles.php:16
3032
 
3033
  #: inc/admin/callbacks/Titles.php:170
3034
  #: inc/admin/callbacks/Titles.php:418
3035
+ #: inc/admin/callbacks/Titles.php:583
3036
+ #: inc/admin/callbacks/Titles.php:816
3037
+ #: inc/admin/callbacks/Titles.php:995
3038
+ #: inc/admin/callbacks/Titles.php:1089
3039
+ #: inc/admin/callbacks/Titles.php:1182
3040
+ #: inc/admin/callbacks/Titles.php:1256
3041
  msgid "Title template"
3042
  msgstr ""
3043
 
3044
  #: inc/admin/callbacks/Titles.php:241
3045
  #: inc/admin/callbacks/Titles.php:452
3046
+ #: inc/admin/callbacks/Titles.php:671
3047
+ #: inc/admin/callbacks/Titles.php:883
3048
+ #: inc/admin/callbacks/Titles.php:1027
3049
+ #: inc/admin/callbacks/Titles.php:1120
3050
+ #: inc/admin/callbacks/Titles.php:1214
3051
+ #: inc/admin/callbacks/Titles.php:1284
3052
  msgid "Meta description template"
3053
  msgstr ""
3054
 
3088
  msgid "Do not display BuddyPress groups in search engine results <strong>(noindex)</strong>"
3089
  msgstr ""
3090
 
3091
+ #: inc/admin/callbacks/Titles.php:523
3092
+ #: inc/admin/callbacks/Titles.php:534
3093
+ #: inc/admin/callbacks/Titles.php:539
3094
+ #: inc/admin/callbacks/Titles.php:548
3095
  msgid "Click to hide any SEO metaboxes for this taxonomy"
3096
  msgstr ""
3097
 
3098
+ #: inc/admin/callbacks/Titles.php:530
3099
+ #: inc/admin/callbacks/Titles.php:543
3100
+ #: inc/admin/callbacks/Titles.php:547
3101
  msgid "Click to display any SEO metaboxes for this taxonomy"
3102
  msgstr ""
3103
 
3104
+ #: inc/admin/callbacks/Titles.php:629
3105
  #: src/Tags/CategoryTitle.php:15
3106
  msgid "Category Title"
3107
  msgstr ""
3108
 
3109
+ #: inc/admin/callbacks/Titles.php:637
3110
  #: src/Tags/TagTitle.php:15
3111
  msgid "Tag Title"
3112
  msgstr ""
3113
 
3114
+ #: inc/admin/callbacks/Titles.php:645
3115
  #: inc/admin/metaboxes/admin-metaboxes-form.php:128
3116
  #: src/Tags/TermTitle.php:15
3117
  msgid "Term Title"
3118
  msgstr ""
3119
 
3120
+ #: inc/admin/callbacks/Titles.php:702
3121
  #: src/Tags/CategoryDescription.php:15
3122
  msgid "Category Description"
3123
  msgstr ""
3124
 
3125
+ #: inc/admin/callbacks/Titles.php:710
3126
  #: src/Tags/TagDescription.php:15
3127
  msgid "Tag Description"
3128
  msgstr ""
3129
 
3130
+ #: inc/admin/callbacks/Titles.php:718
3131
  #: src/Tags/TermDescription.php:15
3132
  msgid "Term Description"
3133
  msgstr ""
3134
 
3135
+ #: inc/admin/callbacks/Titles.php:740
3136
  msgid "Do not display this taxonomy archive in search engine results <strong>(noindex)</strong>"
3137
  msgstr ""
3138
 
3139
+ #: inc/admin/callbacks/Titles.php:748
3140
  msgid "This custom taxonomy is <strong>NOT</strong> excluded from your XML sitemaps despite the fact that it is set to <strong>NOINDEX</strong>. We recommend that you check this out."
3141
  msgstr ""
3142
 
3143
+ #: inc/admin/callbacks/Titles.php:778
3144
  msgid "Do not follow links for this taxonomy archive <strong>(nofollow)</strong>"
3145
  msgstr ""
3146
 
3147
+ #: inc/admin/callbacks/Titles.php:807
3148
  msgid "See archive"
3149
  msgstr ""
3150
 
3151
+ #: inc/admin/callbacks/Titles.php:863
3152
  msgid "Post Type Archive Name"
3153
  msgstr ""
3154
 
3155
+ #: inc/admin/callbacks/Titles.php:947
3156
  msgid "Do not display this post type archive in search engine results <strong>(noindex)</strong>"
3157
  msgstr ""
3158
 
3159
+ #: inc/admin/callbacks/Titles.php:974
3160
  msgid "Do not follow links for this post type archive <strong>(nofollow)</strong>"
3161
  msgstr ""
3162
 
3163
+ #: inc/admin/callbacks/Titles.php:991
3164
  msgid "Author archives"
3165
  msgstr ""
3166
 
3167
+ #: inc/admin/callbacks/Titles.php:1052
3168
+ #: inc/admin/wizard/admin-wizard.php:1212
3169
  msgid "Do not display author archives in search engine results <strong>(noindex)</strong>"
3170
  msgstr ""
3171
 
3172
+ #: inc/admin/callbacks/Titles.php:1073
3173
  msgid "Disable author archives"
3174
  msgstr ""
3175
 
3176
+ #: inc/admin/callbacks/Titles.php:1085
3177
+ #: inc/admin/callbacks/Titles.php:1101
3178
  msgid "Date archives"
3179
  msgstr ""
3180
 
3181
+ #: inc/admin/callbacks/Titles.php:1144
3182
  msgid "Do not display date archives in search engine results <strong>(noindex)</strong>"
3183
  msgstr ""
3184
 
3185
+ #: inc/admin/callbacks/Titles.php:1166
3186
  msgid "Disable date archives"
3187
  msgstr ""
3188
 
3189
+ #: inc/admin/callbacks/Titles.php:1178
3190
  msgid "Search archives"
3191
  msgstr ""
3192
 
3193
+ #: inc/admin/callbacks/Titles.php:1194
3194
  #: src/Tags/SearchKeywords.php:15
3195
  msgid "Search Keywords"
3196
  msgstr ""
3197
 
3198
+ #: inc/admin/callbacks/Titles.php:1240
3199
  msgid "Do not display search archives in search engine results <strong>(noindex)</strong>"
3200
  msgstr ""
3201
 
3202
+ #: inc/admin/callbacks/Titles.php:1252
3203
  msgid "404 archives"
3204
  msgstr ""
3205
 
3206
+ #: inc/admin/callbacks/Titles.php:1311
3207
  #: inc/admin/settings/Titles.php:243
3208
  msgid "noindex"
3209
  msgstr ""
3210
 
3211
+ #: inc/admin/callbacks/Titles.php:1315
3212
  msgid "Do not display all pages of the site in Google search results and do not display \"Cached\" links in search results."
3213
  msgstr ""
3214
 
3215
+ #: inc/admin/callbacks/Titles.php:1319
3216
  msgid "Check also the <strong>\"Search engine visibility\"</strong> setting from the <a href=\"%s\">WordPress Reading page</a>."
3217
  msgstr ""
3218
 
3219
+ #: inc/admin/callbacks/Titles.php:1341
3220
  #: inc/admin/settings/Titles.php:251
3221
  msgid "nofollow"
3222
  msgstr ""
3223
 
3224
+ #: inc/admin/callbacks/Titles.php:1345
3225
  msgid "Do not follow links for all pages."
3226
  msgstr ""
3227
 
3228
+ #: inc/admin/callbacks/Titles.php:1367
3229
  #: inc/admin/settings/Titles.php:259
3230
  msgid "noodp"
3231
  msgstr ""
3232
 
3233
+ #: inc/admin/callbacks/Titles.php:1371
3234
  msgid "Do not use Open Directory project metadata for titles or excerpts for all pages."
3235
  msgstr ""
3236
 
3237
+ #: inc/admin/callbacks/Titles.php:1393
3238
  #: inc/admin/settings/Titles.php:267
3239
  msgid "noimageindex"
3240
  msgstr ""
3241
 
3242
+ #: inc/admin/callbacks/Titles.php:1397
3243
  msgid "Do not index images from the entire site."
3244
  msgstr ""
3245
 
3246
+ #: inc/admin/callbacks/Titles.php:1418
3247
  #: inc/admin/settings/Titles.php:275
3248
  msgid "noarchive"
3249
  msgstr ""
3250
 
3251
+ #: inc/admin/callbacks/Titles.php:1422
3252
  msgid "Do not display a \"Cached\" link in the Google search results."
3253
  msgstr ""
3254
 
3255
+ #: inc/admin/callbacks/Titles.php:1444
3256
  #: inc/admin/settings/Titles.php:283
3257
  msgid "nosnippet"
3258
  msgstr ""
3259
 
3260
+ #: inc/admin/callbacks/Titles.php:1448
3261
  msgid "Do not display a description in the Google search results for all pages."
3262
  msgstr ""
3263
 
3264
+ #: inc/admin/callbacks/Titles.php:1470
3265
  #: inc/admin/settings/Titles.php:291
3266
  msgid "nositelinkssearchbox"
3267
  msgstr ""
3268
 
3269
+ #: inc/admin/callbacks/Titles.php:1474
3270
  msgid "Prevents Google to display a sitelinks searchbox in search results. Enable this option will remove the \"Website\" schema from your source code."
3271
  msgstr ""
3272
 
3273
+ #: inc/admin/callbacks/Titles.php:1496
3274
  msgid "Add rel next/prev link in head of paginated archive pages"
3275
  msgstr ""
3276
 
3277
+ #: inc/admin/callbacks/Titles.php:1518
3278
  msgid "Add a \"noindex\" meta robots for all paginated archive pages"
3279
  msgstr ""
3280
 
3281
+ #: inc/admin/callbacks/Titles.php:1522
3282
  msgid "eg: https://example.com/category/my-category/page/2/"
3283
  msgstr ""
3284
 
3285
+ #: inc/admin/callbacks/Titles.php:1544
3286
  msgid "Add a \"noindex\" meta robots for all attachment pages"
3287
  msgstr ""
3288
 
3289
+ #: inc/admin/callbacks/Titles.php:1548
3290
  msgid "eg: https://example.com/my-media-attachment-page"
3291
  msgstr ""
3292
 
3293
+ #: inc/admin/docs/DocsLinks.php:153
3294
  msgid "Installation of SEOPress"
3295
  msgstr ""
3296
 
3297
+ #: inc/admin/docs/DocsLinks.php:154
3298
  msgid "Activate your license key to receive automatic updates"
3299
  msgstr ""
3300
 
3301
+ #: inc/admin/docs/DocsLinks.php:155
3302
  msgid "Configure SEOPress in 5 minutes"
3303
  msgstr ""
3304
 
3305
+ #: inc/admin/docs/DocsLinks.php:156
3306
  msgid "Migrate your SEO metadata from other plugins"
3307
  msgstr ""
3308
 
3309
+ #: inc/admin/docs/DocsLinks.php:157
3310
  msgid "Promote the exploration of your WordPress site by search engine robots"
3311
  msgstr ""
3312
 
3313
+ #: inc/admin/docs/DocsLinks.php:158
3314
  msgid "Optimize content from A to Z with SEOPress"
3315
  msgstr ""
3316
 
3317
+ #: inc/admin/docs/DocsLinks.php:159
3318
  msgid "Measure your traffic with Google Analytics"
3319
  msgstr ""
3320
 
3321
+ #: inc/admin/docs/DocsLinks.php:160
3322
  msgid "Add your WordPress site to Google’s index"
3323
  msgstr ""
3324
 
3325
+ #: inc/admin/docs/DocsLinks.php:161
3326
  msgid "Optimize your click-through rate on social networks"
3327
  msgstr ""
3328
 
3329
+ #: inc/admin/docs/DocsLinks.php:162
3330
+ msgid "Free ebooks to learn SEO"
3331
+ msgstr ""
3332
+
3333
+ #: inc/admin/docs/DocsLinks.php:165
3334
+ msgid "Activate your SEOPress Insights license"
3335
+ msgstr ""
3336
+
3337
+ #: inc/admin/docs/DocsLinks.php:166
3338
+ msgid "Track your keyword rankings in Google with SEOPress Insights"
3339
+ msgstr ""
3340
+
3341
+ #: inc/admin/docs/DocsLinks.php:167
3342
+ msgid "Monitor and analyse your Backlinks with SEOPress Insights"
3343
+ msgstr ""
3344
+
3345
+ #: inc/admin/docs/DocsLinks.php:168
3346
+ msgid "Finding SEO keywords for your WordPress site"
3347
+ msgstr ""
3348
+
3349
+ #: inc/admin/docs/DocsLinks.php:169
3350
+ msgid "Optimize WordPress posts for a keyword"
3351
+ msgstr ""
3352
+
3353
+ #: inc/admin/docs/DocsLinks.php:170
3354
+ msgid "Audit the backlinks of your WordPress site (in WordPress)"
3355
+ msgstr ""
3356
+
3357
+ #: inc/admin/docs/DocsLinks.php:171
3358
+ msgid "The importance of backlinks"
3359
+ msgstr ""
3360
+
3361
  #: inc/admin/help-tabs/Analytics.php:11
3362
  msgid "Watch our video to learn how to connect your WordPress site with Google Analytics and get statistics right in your dashboard (PRO only)."
3363
  msgstr ""
3407
  msgid "Overview"
3408
  msgstr ""
3409
 
3410
+ #: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:18
3411
  #: app/react/constants/tabs.js:97
3412
  msgid "Inspect with Google"
3413
  msgstr ""
3414
 
3415
+ #: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:24
3416
  #: app/react/layout/Main/components/ContentAnalysis/index.js:340
3417
  msgid "Enter a few keywords for analysis to help you write optimized content."
3418
  msgstr ""
3419
 
3420
+ #: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:32
3421
  #: app/react/layout/Main/components/ContentAnalysis/index.js:356
3422
  msgid "Writing content for your users is the most important thing! If it doesn‘t feel natural, your visitors will leave your site, Google will know it and your ranking will be affected."
3423
  msgstr ""
3424
 
3425
+ #: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:37
3426
  #: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:568
3427
  #: app/react/layout/Main/components/ContentAnalysis/index.js:370
3428
  msgid "Separate target keywords with commas. Do not use spaces after the commas, unless you want to include them"
3429
  msgstr ""
3430
 
3431
+ #: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:40
3432
  #: app/react/layout/Main/components/ContentAnalysis/index.js:423
3433
  msgid "Enter your target keywords"
3434
  msgstr ""
3435
 
3436
+ #: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:48
3437
  msgid "Analyze my content"
3438
  msgstr ""
3439
 
3440
+ #: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:53
3441
  #: inc/admin/page-builders/elementor/inc/controls/class-content-analysis-control.php:46
3442
  #: app/react/layout/Main/components/ContentAnalysis/index.js:438
3443
  msgid "Refresh analysis"
3444
  msgstr ""
3445
 
3446
+ #: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:61
3447
  msgid "Track with Insights"
3448
  msgstr ""
3449
 
3450
+ #: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:67
3451
  #: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:592
3452
  #: app/react/layout/Main/components/ContentAnalysis/index.js:441
3453
  msgid "To get the most accurate analysis, save your post first. We analyze all of your source code as a search engine would."
3454
  msgstr ""
3455
 
3456
+ #: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:74
3457
+ #: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:75
3458
  #: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:579
3459
  #: inc/admin/page-builders/elementor/inc/controls/class-google-suggestions-control.php:50
3460
  #: inc/admin/page-builders/elementor/inc/controls/class-google-suggestions-control.php:51
3463
  msgid "Google suggestions"
3464
  msgstr ""
3465
 
3466
+ #: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:75
3467
  #: inc/admin/page-builders/elementor/inc/controls/class-google-suggestions-control.php:51
3468
  #: app/react/layout/Main/components/ContentAnalysis/index.js:456
3469
  msgid "Enter a keyword, or a phrase, to find the top 10 Google suggestions instantly. This is useful if you want to work with the long tail technique."
3470
  msgstr ""
3471
 
3472
+ #: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:78
3473
  #: inc/admin/page-builders/elementor/inc/controls/class-google-suggestions-control.php:52
3474
  #: app/react/layout/Main/components/ContentAnalysis/index.js:469
3475
  msgid "Get suggestions from Google"
3476
  msgstr ""
3477
 
3478
+ #: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:80
3479
  msgid "Click on a suggestion below to add it as a target keyword."
3480
  msgstr ""
3481
 
3482
+ #: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:84
3483
  #: inc/admin/page-builders/elementor/inc/controls/class-google-suggestions-control.php:53
3484
  #: app/react/layout/Main/components/ContentAnalysis/index.js:492
3485
  msgid "Get suggestions!"
3603
  msgstr ""
3604
 
3605
  #: inc/admin/metaboxes/admin-metaboxes-form.php:266
3606
+ #: inc/functions/options-advanced-admin.php:819
3607
  msgid "Do not display this page in search engine results / XML - HTML sitemaps <strong>(noindex)</strong>"
3608
  msgstr ""
3609
 
3617
  msgstr ""
3618
 
3619
  #: inc/admin/metaboxes/admin-metaboxes-form.php:277
3620
+ #: inc/functions/options-advanced-admin.php:827
3621
  msgid "Do not follow links for this page <strong>(nofollow)</strong>"
3622
  msgstr ""
3623
 
3696
  #: inc/admin/metaboxes/admin-metaboxes-form.php:334
3697
  #: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:293
3698
  #: src/Helpers/Metas/RobotSettings.php:109
3699
+ #: assets/js/build/primary-category-select.js:1
3700
+ #: assets/js/src/primary-category-select.js:61
3701
  msgid "Select a primary category"
3702
  msgstr ""
3703
 
4137
  msgid "Add video"
4138
  msgstr ""
4139
 
4140
+ #: inc/admin/metaboxes/admin-metaboxes.php:280
4141
+ #: inc/admin/metaboxes/admin-metaboxes.php:656
4142
+ #: inc/admin/metaboxes/admin-term-metaboxes.php:215
4143
  #: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:72
4144
  #: inc/admin/page-builders/elementor/inc/controls/class-content-analysis-control.php:35
4145
  msgid "Analysis in progress..."
4146
  msgstr ""
4147
 
4148
+ #: inc/admin/metaboxes/admin-metaboxes.php:637
4149
  #: src/Services/ContentAnalysis/RenderContentAnalysis.php:19
4150
  msgid "Content analysis"
4151
  msgstr ""
4427
  msgid "Your server uses NGINX. If XML Sitemaps doesn't work properly, you need to add this rule to your configuration:"
4428
  msgstr ""
4429
 
4430
+ #: inc/admin/sections/Sitemaps.php:71
4431
  msgid "<strong>Noindex content</strong> will not be displayed in Sitemaps."
4432
  msgstr ""
4433
 
4434
+ #: inc/admin/sections/Sitemaps.php:74
4435
  msgid "If you disable globally this feature (using the blue toggle from above), the native WordPress XML sitemaps will be re-activated."
4436
  msgstr ""
4437
 
4438
+ #: inc/admin/sections/Sitemaps.php:81
4439
  msgid "Blank sitemap?"
4440
  msgstr ""
4441
 
4442
+ #: inc/admin/sections/Sitemaps.php:86
4443
  msgid "404 error?"
4444
  msgstr ""
4445
 
4446
+ #: inc/admin/sections/Sitemaps.php:91
4447
  msgid "HTML error? Exclude XML and XSL from caching plugins!"
4448
  msgstr ""
4449
 
4450
+ #: inc/admin/sections/Sitemaps.php:95
4451
  msgid "Add your XML sitemaps to Google Search Console (video)"
4452
  msgstr ""
4453
 
4454
+ #: inc/admin/sections/Sitemaps.php:101
4455
  msgid "View your sitemap"
4456
  msgstr ""
4457
 
4458
+ #: inc/admin/sections/Sitemaps.php:106
4459
  msgid "Ping Google manually"
4460
  msgstr ""
4461
 
4462
+ #: inc/admin/sections/Sitemaps.php:110
4463
  msgid "Flush permalinks"
4464
  msgstr ""
4465
 
4466
+ #: inc/admin/sections/Sitemaps.php:129
4467
  msgid "Create an HTML Sitemap for your visitors and boost your SEO."
4468
  msgstr ""
4469
 
4470
+ #: inc/admin/sections/Sitemaps.php:132
4471
  msgid "Limited to 1,000 posts per post type. You can change the order and sorting criteria below."
4472
  msgstr ""
4473
 
4474
+ #: inc/admin/sections/Sitemaps.php:156
4475
  msgid "Include/Exclude Post Types."
4476
  msgstr ""
4477
 
4478
+ #: inc/admin/sections/Sitemaps.php:171
4479
  msgid "Include/Exclude Taxonomies."
4480
  msgstr ""
4481
 
4508
  msgstr ""
4509
 
4510
  #: inc/admin/sections/Social.php:66
4511
+ #: inc/admin/sections/Social.php:106
4512
  msgid "Manage Facebook Open Graph and Twitter Cards metas - new window"
4513
  msgstr ""
4514
 
4521
  msgstr ""
4522
 
4523
  #: inc/admin/sections/Social.php:79
4524
+ #: inc/admin/sections/Social.php:119
4525
  msgid "Post thumbnail / Product category thumbnail (Featured image)"
4526
  msgstr ""
4527
 
4528
  #: inc/admin/sections/Social.php:82
4529
+ #: inc/admin/sections/Social.php:122
4530
  msgid "First image of your post content"
4531
  msgstr ""
4532
 
4534
  msgid "Global OG Image set in SEO > Social > Open Graph"
4535
  msgstr ""
4536
 
4537
+ #: inc/admin/sections/Social.php:88
4538
+ msgid "Site icon from the Customizer"
4539
+ msgstr ""
4540
+
4541
+ #: inc/admin/sections/Social.php:105
4542
  msgid "Manage your Twitter card."
4543
  msgstr ""
4544
 
4545
+ #: inc/admin/sections/Social.php:111
4546
  msgid "We generate the <strong>twitter:image</strong> meta in this order:"
4547
  msgstr ""
4548
 
4549
+ #: inc/admin/sections/Social.php:116
4550
  msgid "Custom Twitter image from SEO metabox"
4551
  msgstr ""
4552
 
4553
+ #: inc/admin/sections/Social.php:125
4554
  msgid "Global Twitter:image set in SEO > Social > Twitter Card"
4555
  msgstr ""
4556
 
4595
  msgstr ""
4596
 
4597
  #: inc/admin/settings/Advanced.php:48
4598
+ msgid "Remove ?replytocom link to avoid duplicate content"
4599
  msgstr ""
4600
 
4601
  #: inc/admin/settings/Advanced.php:56
4602
+ msgid "Remove WordPress generator meta tag"
4603
  msgstr ""
4604
 
4605
  #: inc/admin/settings/Advanced.php:64
4606
+ msgid "Remove hentry post class"
4607
  msgstr ""
4608
 
4609
  #: inc/admin/settings/Advanced.php:72
4610
+ msgid "Remove author URL"
4611
  msgstr ""
4612
 
4613
  #: inc/admin/settings/Advanced.php:80
4614
+ msgid "Remove website field in comment form"
4615
  msgstr ""
4616
 
4617
  #: inc/admin/settings/Advanced.php:88
4618
+ msgid "Add \"nofollow noopener noreferrer\" rel attributes to the comments form link"
4619
  msgstr ""
4620
 
4621
  #: inc/admin/settings/Advanced.php:96
4622
+ msgid "Remove WordPress shortlink meta tag"
4623
  msgstr ""
4624
 
4625
  #: inc/admin/settings/Advanced.php:104
4626
+ msgid "Remove Windows Live Writer meta tag"
4627
+ msgstr ""
4628
+
4629
+ #: inc/admin/settings/Advanced.php:112
4630
  msgid "Remove RSD meta tag"
4631
  msgstr ""
4632
 
4633
+ #: inc/admin/settings/Advanced.php:161
4634
  msgid "SEO in admin bar"
4635
  msgstr ""
4636
 
4637
+ #: inc/admin/settings/Advanced.php:169
4638
  msgid "Universal Metabox (Gutenberg)"
4639
  msgstr ""
4640
 
4641
+ #: inc/admin/settings/Advanced.php:176
4642
  msgid "Disable Universal Metabox"
4643
  msgstr ""
4644
 
4645
+ #: inc/admin/settings/Advanced.php:184
4646
  msgid "Noindex in admin bar"
4647
  msgstr ""
4648
 
4649
+ #: inc/admin/settings/Advanced.php:192
4650
  msgid "Move SEO metabox's position"
4651
  msgstr ""
4652
 
4653
+ #: inc/admin/settings/Advanced.php:201
4654
  msgid "Set default tab for Structured data metabox"
4655
  msgstr ""
4656
 
4657
+ #: inc/admin/settings/Advanced.php:210
4658
  msgid "Hide Notifications Center"
4659
  msgstr ""
4660
 
4661
+ #: inc/admin/settings/Advanced.php:218
4662
  msgid "Hide SEO News"
4663
  msgstr ""
4664
 
4665
+ #: inc/admin/settings/Advanced.php:226
4666
  msgid "Hide Site Overview"
4667
  msgstr ""
4668
 
4669
+ #: inc/admin/settings/Advanced.php:234
4670
  msgid "Show Title tag column in post types"
4671
  msgstr ""
4672
 
4673
+ #: inc/admin/settings/Advanced.php:242
4674
  msgid "Show Meta description column in post types"
4675
  msgstr ""
4676
 
4677
+ #: inc/admin/settings/Advanced.php:250
4678
  msgid "Show Redirection Enable column in post types"
4679
  msgstr ""
4680
 
4681
+ #: inc/admin/settings/Advanced.php:258
4682
  msgid "Show Redirect URL column in post types"
4683
  msgstr ""
4684
 
4685
+ #: inc/admin/settings/Advanced.php:266
4686
  msgid "Show canonical URL column in post types"
4687
  msgstr ""
4688
 
4689
+ #: inc/admin/settings/Advanced.php:274
4690
  msgid "Show Target Keyword column in post types"
4691
  msgstr ""
4692
 
4693
+ #: inc/admin/settings/Advanced.php:282
4694
  msgid "Show noindex column in post types"
4695
  msgstr ""
4696
 
4697
+ #: inc/admin/settings/Advanced.php:290
4698
  msgid "Show nofollow column in post types"
4699
  msgstr ""
4700
 
4701
+ #: inc/admin/settings/Advanced.php:298
4702
  msgid "Show total number of words column in post types"
4703
  msgstr ""
4704
 
4705
+ #: inc/admin/settings/Advanced.php:307
4706
  msgid "Show Google Page Speed column in post types"
4707
  msgstr ""
4708
 
4709
+ #: inc/admin/settings/Advanced.php:317
4710
  msgid "Show Insights column in post types"
4711
  msgstr ""
4712
 
4713
+ #: inc/admin/settings/Advanced.php:326
4714
  msgid "Show content analysis score column in post types"
4715
  msgstr ""
4716
 
4717
+ #: inc/admin/settings/Advanced.php:342
4718
  msgid "Hide Genesis SEO Metabox"
4719
  msgstr ""
4720
 
4721
+ #: inc/admin/settings/Advanced.php:350
4722
  msgid "Hide Genesis SEO Settings link"
4723
  msgstr ""
4724
 
4725
+ #: inc/admin/settings/Advanced.php:358
4726
  msgid "Hide advice in Structured Data Types metabox"
4727
  msgstr ""
4728
 
4729
+ #: inc/admin/settings/Advanced.php:375
4730
  msgid "Block SEO metabox to user roles"
4731
  msgstr ""
4732
 
4733
+ #: inc/admin/settings/Advanced.php:391
4734
  msgid "Block Content analysis metabox to user roles"
4735
  msgstr ""
4736
 
4891
  msgstr ""
4892
 
4893
  #: inc/admin/settings/ImageSEO.php:32
4894
+ msgid "Cleaning media filename"
4895
  msgstr ""
4896
 
4897
  #: inc/admin/settings/ImageSEO.php:40
5073
  #: inc/admin/wizard/admin-wizard.php:218
5074
  #: inc/admin/wizard/admin-wizard.php:902
5075
  #: inc/admin/wizard/admin-wizard.php:993
5076
+ #: inc/admin/wizard/admin-wizard.php:1096
5077
  #: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:265
5078
  #: app/react/layout/Main/components/InspectUrl/index.js:429
5079
  msgid "Indexing"
5081
 
5082
  #: inc/admin/wizard/admin-wizard.php:230
5083
  #: inc/admin/wizard/admin-wizard.php:240
5084
+ #: inc/admin/wizard/admin-wizard.php:1195
5085
+ #: inc/admin/wizard/admin-wizard.php:1327
5086
  msgid "Advanced options"
5087
  msgstr ""
5088
 
5114
  msgstr ""
5115
 
5116
  #: inc/admin/wizard/admin-wizard.php:554
5117
+ #: inc/admin/wizard/admin-wizard.php:1546
5118
  msgid "Welcome to %s!"
5119
  msgstr ""
5120
 
5130
  #: inc/admin/wizard/admin-wizard.php:569
5131
  #: inc/admin/wizard/admin-wizard.php:637
5132
  #: inc/admin/wizard/admin-wizard.php:639
5133
+ #: inc/admin/wizard/admin-wizard.php:1543
5134
+ #: inc/admin/wizard/admin-wizard.php:1565
5135
  msgid "Next step"
5136
  msgstr ""
5137
 
5197
  #: inc/admin/wizard/admin-wizard.php:861
5198
  #: inc/admin/wizard/admin-wizard.php:947
5199
  #: inc/admin/wizard/admin-wizard.php:949
5200
+ #: inc/admin/wizard/admin-wizard.php:1049
5201
+ #: inc/admin/wizard/admin-wizard.php:1051
5202
+ #: inc/admin/wizard/admin-wizard.php:1143
5203
+ #: inc/admin/wizard/admin-wizard.php:1145
5204
+ #: inc/admin/wizard/admin-wizard.php:1278
5205
+ #: inc/admin/wizard/admin-wizard.php:1280
5206
+ #: inc/admin/wizard/admin-wizard.php:1375
5207
+ #: inc/admin/wizard/admin-wizard.php:1377
5208
  msgid "Save & Continue"
5209
  msgstr ""
5210
 
5236
  msgid "Do not display this post type archive in search engine results <strong>(noindex)</strong>"
5237
  msgstr ""
5238
 
5239
+ #: inc/admin/wizard/admin-wizard.php:1043
5240
+ msgid "You don‘t have any post type archives, you can continue to the next step."
5241
+ msgstr ""
5242
+
5243
+ #: inc/admin/wizard/admin-wizard.php:1109
5244
  msgid "For which taxonomy archives, should indexing be disabled?"
5245
  msgstr ""
5246
 
5247
+ #: inc/admin/wizard/admin-wizard.php:1131
5248
  msgid "Do not display this taxonomy archive in search engine results <strong>(noindex)</strong>"
5249
  msgstr ""
5250
 
5251
+ #: inc/admin/wizard/admin-wizard.php:1200
5252
  msgid "Almost done!"
5253
  msgstr ""
5254
 
5255
+ #: inc/admin/wizard/admin-wizard.php:1202
5256
  msgid "Final step before being ready to rank on search engines."
5257
  msgstr ""
5258
 
5259
+ #: inc/admin/wizard/admin-wizard.php:1216
5260
  msgid "You only have one author on your site? Check this option to avoid duplicate content."
5261
  msgstr ""
5262
 
5263
+ #: inc/admin/wizard/admin-wizard.php:1229
5264
  msgid "By default, SEOPress redirects your Attachment pages to the parent post. Optimize this by redirecting the user directly to the URL of the media file."
5265
  msgstr ""
5266
 
5267
+ #: inc/admin/wizard/admin-wizard.php:1248
5268
+ #: inc/admin/wizard/admin-wizard.php:1272
5269
  msgid "Shorten your URLs by removing %s and improve your SEO."
5270
  msgstr ""
5271
 
5272
+ #: inc/admin/wizard/admin-wizard.php:1335
5273
  msgid "Improve your workflow with the Universal SEO metabox"
5274
  msgstr ""
5275
 
5276
+ #: inc/admin/wizard/admin-wizard.php:1338
5277
  msgid "Edit your SEO metadata directly from your page or theme builder."
5278
  msgstr ""
5279
 
5280
+ #: inc/admin/wizard/admin-wizard.php:1353
5281
  msgid "No, I prefer to use the good old one SEO metabox"
5282
  msgstr ""
5283
 
5284
+ #: inc/admin/wizard/admin-wizard.php:1357
5285
+ #: inc/admin/wizard/admin-wizard.php:1369
5286
  msgid "You can change this setting at anytime from SEO, Advanced settings page, Appearance tab."
5287
  msgstr ""
5288
 
5289
+ #: inc/admin/wizard/admin-wizard.php:1365
5290
  msgid "Yes, enable the universal SEO metabox for the Block Editor too"
5291
  msgstr ""
5292
 
5293
+ #: inc/admin/wizard/admin-wizard.php:1422
5294
  msgid "SEOPress PRO"
5295
  msgstr ""
5296
 
5297
+ #: inc/admin/wizard/admin-wizard.php:1428
5298
  msgid "Premium SEO features to increase your rankings"
5299
  msgstr ""
5300
 
5301
+ #: inc/admin/wizard/admin-wizard.php:1431
5302
  msgid "Improve your business's presence in <strong>local search results</strong>."
5303
  msgstr ""
5304
 
5305
+ #: inc/admin/wizard/admin-wizard.php:1434
5306
  msgid "Optimize your SEO from your favorite e-commerce plugin: <strong>WooCommerce or Easy Digital Downloads</strong>."
5307
  msgstr ""
5308
 
5309
+ #: inc/admin/wizard/admin-wizard.php:1437
5310
  msgid "Add an infinity of <strong>Google structured data (schema)</strong> to your content to improve its visibility in search results."
5311
  msgstr ""
5312
 
5313
+ #: inc/admin/wizard/admin-wizard.php:1440
5314
  msgid "Add your custom <strong>breadcrumbs</strong>."
5315
  msgstr ""
5316
 
5317
+ #: inc/admin/wizard/admin-wizard.php:1443
5318
  msgid "Configure your <strong>robots.txt and .htaccess files</strong>."
5319
  msgstr ""
5320
 
5321
+ #: inc/admin/wizard/admin-wizard.php:1446
5322
  msgid "Observe the evolution of your site via <strong>Google Analytics stats</strong> directly from your WordPress Dashboard."
5323
  msgstr ""
5324
 
5325
+ #: inc/admin/wizard/admin-wizard.php:1450
5326
  msgid "And so many other features to increase your rankings, sales and productivity."
5327
  msgstr ""
5328
 
5329
+ #: inc/admin/wizard/admin-wizard.php:1459
5330
  msgid "Get SEOPress PRO"
5331
  msgstr ""
5332
 
5333
+ #: inc/admin/wizard/admin-wizard.php:1476
5334
  msgid "SEOPress Insights"
5335
  msgstr ""
5336
 
5337
+ #: inc/admin/wizard/admin-wizard.php:1482
5338
  msgid "Start monitoring your rankings and backlinks directly from your WordPress admin"
5339
  msgstr ""
5340
 
5341
+ #: inc/admin/wizard/admin-wizard.php:1485
5342
  msgid "Track your keyword positions from Google Search results daily."
5343
  msgstr ""
5344
 
5345
+ #: inc/admin/wizard/admin-wizard.php:1488
5346
  msgid "Monitor and analyse your top 1,000 Backlinks weekly."
5347
  msgstr ""
5348
 
5349
+ #: inc/admin/wizard/admin-wizard.php:1491
5350
  msgid "Export your data to CSV, PDF, Excel."
5351
  msgstr ""
5352
 
5353
+ #: inc/admin/wizard/admin-wizard.php:1494
5354
  msgid "Receive your rankings in your inbox."
5355
  msgstr ""
5356
 
5357
+ #: inc/admin/wizard/admin-wizard.php:1503
5358
  msgid "Get SEOPress Insights"
5359
  msgstr ""
5360
 
5361
+ #: inc/admin/wizard/admin-wizard.php:1532
5362
  msgid "Your site is now ready for search engines!"
5363
  msgstr ""
5364
 
5365
+ #: inc/admin/wizard/admin-wizard.php:1549
5366
  #: inc/functions/options-advanced-admin.php:25
5367
  msgid "Please activate your license to receive automatic updates and get premium support."
5368
  msgstr ""
5369
 
5370
+ #: inc/admin/wizard/admin-wizard.php:1556
5371
  #: inc/functions/options-advanced-admin.php:27
5372
  msgid "Activate License"
5373
  msgstr ""
5374
 
5375
+ #: inc/admin/wizard/admin-wizard.php:1567
5376
  msgid "Create your XML sitemaps"
5377
  msgstr ""
5378
 
5379
+ #: inc/admin/wizard/admin-wizard.php:1569
5380
  msgid "Build custom XML sitemaps to improve Google's crawling of your site."
5381
  msgstr ""
5382
 
5383
+ #: inc/admin/wizard/admin-wizard.php:1576
5384
  msgid "Configure your XML sitemaps"
5385
  msgstr ""
5386
 
5387
+ #: inc/admin/wizard/admin-wizard.php:1585
5388
  msgid "Follow us:"
5389
  msgstr ""
5390
 
5391
+ #: inc/admin/wizard/admin-wizard.php:1594
5392
  msgid "Like our Facebook page"
5393
  msgstr ""
5394
 
5395
+ #: inc/admin/wizard/admin-wizard.php:1601
5396
  msgid "Join our Facebook Community group"
5397
  msgstr ""
5398
 
5399
+ #: inc/admin/wizard/admin-wizard.php:1608
5400
  msgid "Watch our guided tour videos to learn more about SEOPress"
5401
  msgstr ""
5402
 
5403
+ #: inc/admin/wizard/admin-wizard.php:1615
5404
  msgid "Read our blog posts about SEO concepts, tutorials and more"
5405
  msgstr ""
5406
 
5407
+ #: inc/admin/wizard/admin-wizard.php:1622
5408
  msgid "Follow us on Twitter"
5409
  msgstr ""
5410
 
5411
+ #: inc/admin/wizard/admin-wizard.php:1629
5412
  msgid "The off side of SEOPress"
5413
  msgstr ""
5414
 
5415
+ #: inc/admin/wizard/admin-wizard.php:1639
5416
  msgid "You can also:"
5417
  msgstr ""
5418
 
5419
+ #: inc/admin/wizard/admin-wizard.php:1646
5420
  msgid "Visit Dashboard"
5421
  msgstr ""
5422
 
5423
+ #: inc/admin/wizard/admin-wizard.php:1650
5424
  msgid "Review Settings"
5425
  msgstr ""
5426
 
5427
+ #: inc/admin/wizard/admin-wizard.php:1656
5428
  msgid "Knowledge base"
5429
  msgstr ""
5430
 
5445
  msgid "URL rewriting is NOT enabled on your site. Select a permalink structure that is optimized for SEO (NOT Plain)."
5446
  msgstr ""
5447
 
5448
+ #: inc/functions/options-advanced-admin.php:452
5449
  msgid "Enable noindex"
5450
  msgstr ""
5451
 
5452
+ #: inc/functions/options-advanced-admin.php:489
5453
  msgid "%s post to noindex."
5454
  msgid_plural "%s posts to noindex."
5455
  msgstr[0] ""
5456
  msgstr[1] ""
5457
 
5458
+ #: inc/functions/options-advanced-admin.php:513
5459
  msgid "Enable index"
5460
  msgstr ""
5461
 
5462
+ #: inc/functions/options-advanced-admin.php:550
5463
  msgid "%s post to index."
5464
  msgid_plural "%s posts to index."
5465
  msgstr[0] ""
5466
  msgstr[1] ""
5467
 
5468
+ #: inc/functions/options-advanced-admin.php:572
5469
  msgid "Enable nofollow"
5470
  msgstr ""
5471
 
5472
+ #: inc/functions/options-advanced-admin.php:608
5473
  msgid "%s post to nofollow."
5474
  msgid_plural "%s posts to nofollow."
5475
  msgstr[0] ""
5476
  msgstr[1] ""
5477
 
5478
+ #: inc/functions/options-advanced-admin.php:630
5479
  msgid "Enable follow"
5480
  msgstr ""
5481
 
5482
+ #: inc/functions/options-advanced-admin.php:667
5483
  msgid "%s post to follow."
5484
  msgid_plural "%s posts to follow."
5485
  msgstr[0] ""
5486
  msgstr[1] ""
5487
 
5488
+ #: inc/functions/options-advanced-admin.php:683
5489
  msgid "Enable redirection"
5490
  msgstr ""
5491
 
5492
+ #: inc/functions/options-advanced-admin.php:712
5493
  msgid "%s redirections enabled."
5494
  msgid_plural "%s redirections enabled."
5495
  msgstr[0] ""
5496
  msgstr[1] ""
5497
 
5498
+ #: inc/functions/options-advanced-admin.php:728
5499
  msgid "Disable redirection"
5500
  msgstr ""
5501
 
5502
+ #: inc/functions/options-advanced-admin.php:756
5503
  msgid "%s redirection disabled."
5504
  msgid_plural "%s redirections disabled."
5505
  msgstr[0] ""
5506
  msgstr[1] ""
5507
 
5508
+ #: inc/functions/options-advanced-admin.php:785
5509
  #: src/Actions/Admin/ManageColumn.php:55
5510
  msgid "Title tag"
5511
  msgstr ""
5512
 
5513
+ #: inc/functions/options-advanced-admin.php:810
5514
  #: src/Actions/Admin/ManageColumn.php:67
5515
  msgid "Canonical"
5516
  msgstr ""
5517
 
5518
+ #: inc/functions/options-google-analytics.php:95
5519
  msgid "By visiting our site, you agree to our privacy policy regarding cookies, tracking statistics, etc.&nbsp;<a href=\"[seopress_privacy_page]\">Read more</a>"
5520
  msgstr ""
5521
 
5522
+ #: inc/functions/options-google-analytics.php:97
5523
  msgid "By visiting our site, you agree to our privacy policy regarding cookies, tracking statistics, etc."
5524
  msgstr ""
5525
 
5526
+ #: inc/functions/options-google-analytics.php:116
5527
  msgid "X"
5528
  msgstr ""
5529
 
5530
+ #: inc/functions/options-google-analytics.php:139
5531
  msgid "Manage cookies"
5532
  msgstr ""
5533
 
5534
+ #: inc/functions/options-google-analytics.php:736
5535
  #: inc/functions/options-matomo.php:234
5536
  msgid "Authors"
5537
  msgstr ""
5538
 
5539
+ #: inc/functions/options-google-analytics.php:755
5540
  #: inc/functions/options-matomo.php:248
5541
  msgid "Categories"
5542
  msgstr ""
5543
 
5544
+ #: inc/functions/options-google-analytics.php:781
5545
  #: inc/functions/options-matomo.php:268
5546
  msgid "Tags"
5547
  msgstr ""
5548
 
5549
+ #: inc/functions/options-google-analytics.php:795
5550
  #: inc/functions/options-matomo.php:277
5551
  msgid "Post types"
5552
  msgstr ""
5553
 
5554
+ #: inc/functions/options-google-analytics.php:809
5555
  #: inc/functions/options-matomo.php:286
5556
  msgid "Connected users"
5557
  msgstr ""
5558
 
5559
+ #: inc/functions/options-import-export.php:62
5560
  msgid "Please upload a valid .json file"
5561
  msgstr ""
5562
 
5563
+ #: inc/functions/options-import-export.php:67
5564
+ #: inc/functions/options-import-export.php:142
5565
  msgid "Please upload a file to import"
5566
  msgstr ""
5567
 
5568
+ #: inc/functions/options-import-export.php:138
5569
  msgid "Please upload a valid .csv file"
5570
  msgstr ""
5571
 
5572
+ #: inc/functions/options-import-export.php:146
5573
  msgid "Please choose a separator"
5574
  msgstr ""
5575
 
5615
  msgid "Page %d of %2$d"
5616
  msgstr ""
5617
 
5618
+ #: seopress-functions.php:236
5619
  msgid "Custom Post Types"
5620
  msgstr ""
5621
 
5622
+ #: seopress-functions.php:240
5623
  msgid "Custom Taxonomies"
5624
  msgstr ""
5625
 
5626
  #. translators: %s: "Custom Post Types" or "Custom Taxonomies" %s: "title" or "description"
5627
+ #: seopress-functions.php:280
5628
  msgid "Some <strong>%s</strong> have no <strong>meta %s</strong> set! We strongly encourage you to add one by filling in the fields below."
5629
  msgstr ""
5630
 
5656
  msgid "Color value"
5657
  msgstr ""
5658
 
5659
+ #: seopress.php:614
5660
  msgid "Docs"
5661
  msgstr ""
5662
 
5663
+ #: seopress.php:615
5664
  msgid "Configuration Wizard"
5665
  msgstr ""
5666
 
5667
+ #: seopress.php:617
5668
  msgid "GO PRO!"
5669
  msgstr ""
5670
 
5671
+ #: seopress.php:653
5672
+ msgid "Important changes related to XML sitemaps in version 5.8: <a href=\"%s\" target=\"_blank\">Learn more</a>."
5673
  msgstr ""
5674
 
5675
  #: src/Actions/Admin/ManageColumn.php:58
5722
  msgid "Should be improved"
5723
  msgstr ""
5724
 
5725
+ #: src/Actions/Options/Init.php:267
5726
  msgid "404 - Page not found"
5727
  msgstr ""
5728
 
5766
  msgstr ""
5767
 
5768
  #: src/Helpers/ContentAnalysis.php:68
5769
+ #: app/react/services/content-analysis/images.js:126
5770
  msgid "Alternative texts of images"
5771
  msgstr ""
5772
 
6296
  msgid "<strong>nositelinkssearchbox</strong> is off. Google will probably display a sitelinks searchbox in search results."
6297
  msgstr ""
6298
 
6299
+ #: src/Services/ContentAnalysis/GetContent.php:734
6300
  #: app/react/services/content-analysis/images.js:61
6301
  msgid "No alternative text found for these images. Alt tags are important for both SEO and accessibility. Edit your images using the media library or your favorite page builder and fill in alternative text fields."
6302
  msgstr ""
6303
 
6304
+ #: src/Services/ContentAnalysis/GetContent.php:745
6305
+ #: app/react/services/content-analysis/images.js:115
6306
  msgid "Note that we scan all your source code, it means, some missing alternative texts of images might be located in your header, sidebar or footer."
6307
  msgstr ""
6308
 
6309
+ #: src/Services/ContentAnalysis/GetContent.php:752
6310
  #: app/react/services/content-analysis/images.js:48
6311
  msgid "All alternative tags are filled in. Good work!"
6312
  msgstr ""
6313
 
6314
+ #: src/Services/ContentAnalysis/GetContent.php:755
6315
  #: app/react/services/content-analysis/images.js:32
6316
  msgid "We could not find any image in your content. Content with media is a plus for your SEO."
6317
  msgstr ""
6318
 
6319
+ #: src/Services/ContentAnalysis/GetContent.php:773
6320
  msgid "We found %d links with nofollow attribute in your page. Do not overuse nofollow attribute in links. Below, the list:"
6321
  msgstr ""
6322
 
6323
+ #: src/Services/ContentAnalysis/GetContent.php:784
6324
  #: app/react/services/content-analysis/noFollowLinks.js:53
6325
  msgid "This page doesn't have any nofollow links."
6326
  msgstr ""
6327
 
6328
+ #: src/Services/ContentAnalysis/GetContent.php:803
6329
  msgid "We found %s outbound links in your page. Below, the list:"
6330
  msgstr ""
6331
 
6332
+ #: src/Services/ContentAnalysis/GetContent.php:813
6333
  #: app/react/services/content-analysis/outboundLinks.js:31
6334
  msgid "This page doesn't have any outbound links."
6335
  msgstr ""
6336
 
6337
+ #: src/Services/ContentAnalysis/GetContent.php:833
6338
  msgid "We found %s internal links to this page."
6339
  msgstr ""
6340
 
6341
+ #: src/Services/ContentAnalysis/GetContent.php:840
6342
  msgid "edit %s"
6343
  msgstr ""
6344
 
6345
+ #: src/Services/ContentAnalysis/GetContent.php:847
6346
  #: app/react/services/content-analysis/internalLinks.js:31
6347
  msgid "This page doesn't have any internal links from other content. Links from archive pages are not considered internal links due to lack of context."
6348
  msgstr ""
6349
 
6350
+ #: src/Services/ContentAnalysis/GetContent.php:876
6351
+ #: app/react/services/content-analysis/canonicalUrl.js:96
 
 
 
 
6352
  msgid "You must fix this. Canonical URL duplication is bad for SEO."
6353
  msgstr ""
6354
 
6355
+ #: src/Services/ContentAnalysis/GetContent.php:881
6356
  #: app/react/services/content-analysis/canonicalUrl.js:49
6357
  msgid "This page doesn't have any canonical URL because your post is set to <strong>noindex</strong>. This is normal."
6358
  msgstr ""
6359
 
6360
+ #: src/Services/ContentAnalysis/GetContent.php:884
6361
  #: app/react/services/content-analysis/canonicalUrl.js:58
6362
  msgid "This page doesn't have any canonical URL."
6363
  msgstr ""
6368
 
6369
  #: src/Services/ContentAnalysis/RenderContentAnalysis.php:37
6370
  #: app/react/layout/Main/components/ContentAnalysis/index.js:554
6371
+ #: app/react/layout/Main/components/SchemasManual/index.js:252
6372
  msgid "Expand"
6373
  msgstr ""
6374
 
6375
  #: src/Services/ContentAnalysis/RenderContentAnalysis.php:37
6376
  #: app/react/layout/Main/components/ContentAnalysis/index.js:569
6377
+ #: app/react/layout/Main/components/SchemasManual/index.js:267
6378
  msgid "Close"
6379
  msgstr ""
6380
 
7111
  msgid "Delete schema"
7112
  msgstr ""
7113
 
7114
+ #: app/react/layout/Main/components/SchemasManual/index.js:334
7115
  msgid "Add a schema"
7116
  msgstr ""
7117
 
7245
  msgstr ""
7246
 
7247
  #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/build/index.js:1
7248
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/image-control.js:70
7249
+ msgid "To edit the background image, you need permission to upload media."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7250
  msgstr ""
7251
 
7252
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/build/index.js:1
7253
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/image-control.js:81
7254
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/image-control.js:96
7255
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/image-control.js:104
7256
+ msgid "Set Image"
7257
  msgstr ""
7258
 
7259
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/build/index.js:1
7260
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/image-control.js:115
7261
+ msgid "Remove Image"
7262
  msgstr ""
7263
 
7264
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/build/index.js:1
7265
  #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:198
7266
  msgctxt "Div tag List"
7267
  msgid "NONE"
7268
  msgstr ""
7269
 
7270
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/build/index.js:1
7271
  #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:209
7272
  msgctxt "Numbered List"
7273
  msgid "OL"
7274
  msgstr ""
7275
 
7276
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/build/index.js:1
7277
  #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:220
7278
  msgctxt "Unordered List"
7279
  msgid "UL"
7280
  msgstr ""
7281
 
7282
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/build/index.js:1
 
 
 
7283
  #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:236
7284
  msgctxt "H2 title tag"
7285
  msgid "H2"
7286
  msgstr ""
7287
 
7288
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/build/index.js:1
7289
  #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:247
7290
  msgctxt "H3 title tag"
7291
  msgid "H3"
7292
  msgstr ""
7293
 
7294
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/build/index.js:1
7295
  #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:258
7296
  msgctxt "H4 title tag"
7297
  msgid "H4"
7298
  msgstr ""
7299
 
7300
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/build/index.js:1
7301
  #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:269
7302
  msgctxt "H5 title tag"
7303
  msgid "H5"
7304
  msgstr ""
7305
 
7306
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/build/index.js:1
7307
  #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:280
7308
  msgctxt "H6 title tag"
7309
  msgid "H6"
7310
  msgstr ""
7311
 
7312
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/build/index.js:1
7313
  #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:291
7314
  msgctxt "P title tag"
7315
  msgid "P"
7316
  msgstr ""
7317
 
7318
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/build/index.js:1
7319
  #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:302
7320
  msgctxt "DIV title tag"
7321
  msgid "DIV"
7322
  msgstr ""
7323
 
7324
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/build/index.js:1
 
 
 
7325
  #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:318
7326
  msgctxt "Thubmnail Size"
7327
  msgid "S"
7328
  msgstr ""
7329
 
7330
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/build/index.js:1
7331
  #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:329
7332
  msgctxt "Medium Size"
7333
  msgid "M"
7334
  msgstr ""
7335
 
7336
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/build/index.js:1
7337
  #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:340
7338
  msgctxt "Large Size"
7339
  msgid "L"
7340
  msgstr ""
7341
 
7342
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/build/index.js:1
7343
  #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:351
7344
  msgctxt "Original Size"
7345
  msgid "XL"
7346
  msgstr ""
7347
 
7348
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/build/index.js:1
7349
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/index.js:8
7350
+ msgid "FAQ"
7351
  msgstr ""
7352
 
7353
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:32
7354
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:75
7355
+ msgid "Question..."
7356
  msgstr ""
7357
 
7358
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:49
7359
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:92
7360
+ msgid "Answer..."
7361
  msgstr ""
7362
 
7363
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:60
7364
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:63
7365
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:103
7366
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:106
7367
+ msgid "Remove"
7368
  msgstr ""
7369
 
7370
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:185
7371
+ msgid "FAQ Settings"
7372
  msgstr ""
7373
 
7374
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:186
7375
+ msgid "List Style"
 
 
7376
  msgstr ""
7377
 
7378
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:224
7379
+ msgid "Title Wrapper"
7380
+ msgstr ""
7381
+
7382
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:306
7383
+ msgid "Image Size"
7384
+ msgstr ""
7385
+
7386
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:357
7387
+ msgid "SEO Settings"
7388
+ msgstr ""
7389
+
7390
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:360
7391
+ msgid "Enable FAQ Schema"
7392
+ msgstr ""
7393
+
7394
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:374
7395
+ msgid "Enable accordion"
7396
+ msgstr ""
7397
+
7398
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:397
7399
+ #: inc/admin/page-builders/gutenberg/inc/blocks/faq-block/src/edit.js:404
7400
+ msgid "Add FAQ"
7401
  msgstr ""
public/metaboxe.js CHANGED
@@ -1,2 +1,2 @@
1
  /*! For license information please see metaboxe.js.LICENSE.txt */
2
- (()=>{var e,t,n={1983:(e,t,n)=>{"use strict";n(6266),n(990),n(911),n(4160),n(6197),n(6728),n(4039),n(3568),n(8051),n(8250),n(5434),n(4952),n(6337),n(5666)},919:(e,t,n)=>{n(1983)},4184:(e,t)=>{var n;!function(){"use strict";var r={}.hasOwnProperty;function o(){for(var e=[],t=0;t<arguments.length;t++){var n=arguments[t];if(n){var a=typeof n;if("string"===a||"number"===a)e.push(n);else if(Array.isArray(n)){if(n.length){var i=o.apply(null,n);i&&e.push(i)}}else if("object"===a)if(n.toString===Object.prototype.toString)for(var s in n)r.call(n,s)&&n[s]&&e.push(s);else e.push(n.toString())}}return e.join(" ")}e.exports?(o.default=o,e.exports=o):void 0===(n=function(){return o}.apply(t,[]))||(e.exports=n)}()},640:(e,t,n)=>{"use strict";var r=n(1742),o={"text/plain":"Text","text/html":"Url",default:"Text"};e.exports=function(e,t){var n,a,i,s,l,u,c=!1;t||(t={}),n=t.debug||!1;try{if(i=r(),s=document.createRange(),l=document.getSelection(),(u=document.createElement("span")).textContent=e,u.style.all="unset",u.style.position="fixed",u.style.top=0,u.style.clip="rect(0, 0, 0, 0)",u.style.whiteSpace="pre",u.style.webkitUserSelect="text",u.style.MozUserSelect="text",u.style.msUserSelect="text",u.style.userSelect="text",u.addEventListener("copy",(function(r){if(r.stopPropagation(),t.format)if(r.preventDefault(),void 0===r.clipboardData){n&&console.warn("unable to use e.clipboardData"),n&&console.warn("trying IE specific stuff"),window.clipboardData.clearData();var a=o[t.format]||o.default;window.clipboardData.setData(a,e)}else r.clipboardData.clearData(),r.clipboardData.setData(t.format,e);t.onCopy&&(r.preventDefault(),t.onCopy(r.clipboardData))})),document.body.appendChild(u),s.selectNodeContents(u),l.addRange(s),!document.execCommand("copy"))throw new Error("copy command was unsuccessful");c=!0}catch(r){n&&console.error("unable to copy using execCommand: ",r),n&&console.warn("trying IE specific stuff");try{window.clipboardData.setData(t.format||"text",e),t.onCopy&&t.onCopy(window.clipboardData),c=!0}catch(r){n&&console.error("unable to copy using clipboardData: ",r),n&&console.error("falling back to prompt"),a=function(e){var t=(/mac os x/i.test(navigator.userAgent)?"⌘":"Ctrl")+"+C";return e.replace(/#{\s*key\s*}/g,t)}("message"in t?t.message:"Copy to clipboard: #{key}, Enter"),window.prompt(a,e)}}finally{l&&("function"==typeof l.removeRange?l.removeRange(s):l.removeAllRanges()),u&&document.body.removeChild(u),i()}return c}},6266:(e,t,n)=>{n(5767),n(8132),n(8388),n(7470),n(4882),n(1520),n(7476),n(9622),n(9375),n(3533),n(4672),n(4157),n(5095),n(9892),n(5115),n(9176),n(8838),n(6253),n(9730),n(6059),n(8377),n(1084),n(4299),n(1246),n(726),n(1901),n(5972),n(3403),n(2516),n(9371),n(6479),n(1736),n(1889),n(5177),n(6943),n(6503),n(6786),n(932),n(7526),n(1591),n(9073),n(347),n(579),n(4669),n(7710),n(5789),n(3514),n(9978),n(8472),n(6946),n(5068),n(413),n(191),n(8306),n(4564),n(9115),n(9539),n(6620),n(2850),n(823),n(7732),n(856),n(703),n(1539),n(5292),n(6629),n(3694),n(7648),n(7795),n(4531),n(3605),n(6780),n(9937),n(511),n(1822),n(9977),n(1031),n(6331),n(1560),n(774),n(522),n(8295),n(7842),n(110),n(75),n(4336),n(1802),n(8837),n(6773),n(5745),n(3057),n(3750),n(3369),n(9564),n(2e3),n(8977),n(2310),n(4899),n(1842),n(6997),n(3946),n(8269),n(6108),n(6774),n(1466),n(9357),n(6142),n(1876),n(851),n(8416),n(8184),n(147),n(9192),n(142),n(1786),n(5368),n(6964),n(2152),n(4821),n(9103),n(1303),n(3318),n(162),n(3834),n(1572),n(2139),n(685),n(5535),n(7347),n(3049),n(6633),n(8989),n(8270),n(4510),n(3984),n(5769),n(55),n(6014),e.exports=n(5645)},911:(e,t,n)=>{n(1268),e.exports=n(5645).Array.flatMap},990:(e,t,n)=>{n(2773),e.exports=n(5645).Array.includes},5434:(e,t,n)=>{n(3276),e.exports=n(5645).Object.entries},8051:(e,t,n)=>{n(8351),e.exports=n(5645).Object.getOwnPropertyDescriptors},8250:(e,t,n)=>{n(6409),e.exports=n(5645).Object.values},4952:(e,t,n)=>{"use strict";n(851),n(9865),e.exports=n(5645).Promise.finally},6197:(e,t,n)=>{n(2770),e.exports=n(5645).String.padEnd},4160:(e,t,n)=>{n(1784),e.exports=n(5645).String.padStart},4039:(e,t,n)=>{n(4325),e.exports=n(5645).String.trimRight},6728:(e,t,n)=>{n(5869),e.exports=n(5645).String.trimLeft},3568:(e,t,n)=>{n(9665),e.exports=n(8787).f("asyncIterator")},4963:e=>{e.exports=function(e){if("function"!=typeof e)throw TypeError(e+" is not a function!");return e}},3365:(e,t,n)=>{var r=n(2032);e.exports=function(e,t){if("number"!=typeof e&&"Number"!=r(e))throw TypeError(t);return+e}},7722:(e,t,n)=>{var r=n(6314)("unscopables"),o=Array.prototype;null==o[r]&&n(7728)(o,r,{}),e.exports=function(e){o[r][e]=!0}},6793:(e,t,n)=>{"use strict";var r=n(4496)(!0);e.exports=function(e,t,n){return t+(n?r(e,t).length:1)}},3328:e=>{e.exports=function(e,t,n,r){if(!(e instanceof t)||void 0!==r&&r in e)throw TypeError(n+": incorrect invocation!");return e}},7007:(e,t,n)=>{var r=n(5286);e.exports=function(e){if(!r(e))throw TypeError(e+" is not an object!");return e}},5216:(e,t,n)=>{"use strict";var r=n(508),o=n(2337),a=n(875);e.exports=[].copyWithin||function(e,t){var n=r(this),i=a(n.length),s=o(e,i),l=o(t,i),u=arguments.length>2?arguments[2]:void 0,c=Math.min((void 0===u?i:o(u,i))-l,i-s),f=1;for(l<s&&s<l+c&&(f=-1,l+=c-1,s+=c-1);c-- >0;)l in n?n[s]=n[l]:delete n[s],s+=f,l+=f;return n}},6852:(e,t,n)=>{"use strict";var r=n(508),o=n(2337),a=n(875);e.exports=function(e){for(var t=r(this),n=a(t.length),i=arguments.length,s=o(i>1?arguments[1]:void 0,n),l=i>2?arguments[2]:void 0,u=void 0===l?n:o(l,n);u>s;)t[s++]=e;return t}},9315:(e,t,n)=>{var r=n(2110),o=n(875),a=n(2337);e.exports=function(e){return function(t,n,i){var s,l=r(t),u=o(l.length),c=a(i,u);if(e&&n!=n){for(;u>c;)if((s=l[c++])!=s)return!0}else for(;u>c;c++)if((e||c in l)&&l[c]===n)return e||c||0;return!e&&-1}}},50:(e,t,n)=>{var r=n(741),o=n(9797),a=n(508),i=n(875),s=n(6886);e.exports=function(e,t){var n=1==e,l=2==e,u=3==e,c=4==e,f=6==e,p=5==e||f,d=t||s;return function(t,s,h){for(var m,v,g=a(t),y=o(g),b=r(s,h,3),w=i(y.length),x=0,E=n?d(t,w):l?d(t,0):void 0;w>x;x++)if((p||x in y)&&(v=b(m=y[x],x,g),e))if(n)E[x]=v;else if(v)switch(e){case 3:return!0;case 5:return m;case 6:return x;case 2:E.push(m)}else if(c)return!1;return f?-1:u||c?c:E}}},7628:(e,t,n)=>{var r=n(4963),o=n(508),a=n(9797),i=n(875);e.exports=function(e,t,n,s,l){r(t);var u=o(e),c=a(u),f=i(u.length),p=l?f-1:0,d=l?-1:1;if(n<2)for(;;){if(p in c){s=c[p],p+=d;break}if(p+=d,l?p<0:f<=p)throw TypeError("Reduce of empty array with no initial value")}for(;l?p>=0:f>p;p+=d)p in c&&(s=t(s,c[p],p,u));return s}},2736:(e,t,n)=>{var r=n(5286),o=n(4302),a=n(6314)("species");e.exports=function(e){var t;return o(e)&&("function"!=typeof(t=e.constructor)||t!==Array&&!o(t.prototype)||(t=void 0),r(t)&&null===(t=t[a])&&(t=void 0)),void 0===t?Array:t}},6886:(e,t,n)=>{var r=n(2736);e.exports=function(e,t){return new(r(e))(t)}},4398:(e,t,n)=>{"use strict";var r=n(4963),o=n(5286),a=n(7242),i=[].slice,s={},l=function(e,t,n){if(!(t in s)){for(var r=[],o=0;o<t;o++)r[o]="a["+o+"]";s[t]=Function("F,a","return new F("+r.join(",")+")")}return s[t](e,n)};e.exports=Function.bind||function(e){var t=r(this),n=i.call(arguments,1),s=function(){var r=n.concat(i.call(arguments));return this instanceof s?l(t,r.length,r):a(t,r,e)};return o(t.prototype)&&(s.prototype=t.prototype),s}},1488:(e,t,n)=>{var r=n(2032),o=n(6314)("toStringTag"),a="Arguments"==r(function(){return arguments}());e.exports=function(e){var t,n,i;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(n=function(e,t){try{return e[t]}catch(e){}}(t=Object(e),o))?n:a?r(t):"Object"==(i=r(t))&&"function"==typeof t.callee?"Arguments":i}},2032:e=>{var t={}.toString;e.exports=function(e){return t.call(e).slice(8,-1)}},9824:(e,t,n)=>{"use strict";var r=n(9275).f,o=n(2503),a=n(4408),i=n(741),s=n(3328),l=n(3531),u=n(2923),c=n(5436),f=n(2974),p=n(7057),d=n(4728).fastKey,h=n(1616),m=p?"_s":"size",v=function(e,t){var n,r=d(t);if("F"!==r)return e._i[r];for(n=e._f;n;n=n.n)if(n.k==t)return n};e.exports={getConstructor:function(e,t,n,u){var c=e((function(e,r){s(e,c,t,"_i"),e._t=t,e._i=o(null),e._f=void 0,e._l=void 0,e[m]=0,null!=r&&l(r,n,e[u],e)}));return a(c.prototype,{clear:function(){for(var e=h(this,t),n=e._i,r=e._f;r;r=r.n)r.r=!0,r.p&&(r.p=r.p.n=void 0),delete n[r.i];e._f=e._l=void 0,e[m]=0},delete:function(e){var n=h(this,t),r=v(n,e);if(r){var o=r.n,a=r.p;delete n._i[r.i],r.r=!0,a&&(a.n=o),o&&(o.p=a),n._f==r&&(n._f=o),n._l==r&&(n._l=a),n[m]--}return!!r},forEach:function(e){h(this,t);for(var n,r=i(e,arguments.length>1?arguments[1]:void 0,3);n=n?n.n:this._f;)for(r(n.v,n.k,this);n&&n.r;)n=n.p},has:function(e){return!!v(h(this,t),e)}}),p&&r(c.prototype,"size",{get:function(){return h(this,t)[m]}}),c},def:function(e,t,n){var r,o,a=v(e,t);return a?a.v=n:(e._l=a={i:o=d(t,!0),k:t,v:n,p:r=e._l,n:void 0,r:!1},e._f||(e._f=a),r&&(r.n=a),e[m]++,"F"!==o&&(e._i[o]=a)),e},getEntry:v,setStrong:function(e,t,n){u(e,t,(function(e,n){this._t=h(e,t),this._k=n,this._l=void 0}),(function(){for(var e=this,t=e._k,n=e._l;n&&n.r;)n=n.p;return e._t&&(e._l=n=n?n.n:e._t._f)?c(0,"keys"==t?n.k:"values"==t?n.v:[n.k,n.v]):(e._t=void 0,c(1))}),n?"entries":"values",!n,!0),f(t)}}},3657:(e,t,n)=>{"use strict";var r=n(4408),o=n(4728).getWeak,a=n(7007),i=n(5286),s=n(3328),l=n(3531),u=n(50),c=n(9181),f=n(1616),p=u(5),d=u(6),h=0,m=function(e){return e._l||(e._l=new v)},v=function(){this.a=[]},g=function(e,t){return p(e.a,(function(e){return e[0]===t}))};v.prototype={get:function(e){var t=g(this,e);if(t)return t[1]},has:function(e){return!!g(this,e)},set:function(e,t){var n=g(this,e);n?n[1]=t:this.a.push([e,t])},delete:function(e){var t=d(this.a,(function(t){return t[0]===e}));return~t&&this.a.splice(t,1),!!~t}},e.exports={getConstructor:function(e,t,n,a){var u=e((function(e,r){s(e,u,t,"_i"),e._t=t,e._i=h++,e._l=void 0,null!=r&&l(r,n,e[a],e)}));return r(u.prototype,{delete:function(e){if(!i(e))return!1;var n=o(e);return!0===n?m(f(this,t)).delete(e):n&&c(n,this._i)&&delete n[this._i]},has:function(e){if(!i(e))return!1;var n=o(e);return!0===n?m(f(this,t)).has(e):n&&c(n,this._i)}}),u},def:function(e,t,n){var r=o(a(t),!0);return!0===r?m(e).set(t,n):r[e._i]=n,e},ufstore:m}},5795:(e,t,n)=>{"use strict";var r=n(3816),o=n(2985),a=n(7234),i=n(4408),s=n(4728),l=n(3531),u=n(3328),c=n(5286),f=n(4253),p=n(7462),d=n(2943),h=n(266);e.exports=function(e,t,n,m,v,g){var y=r[e],b=y,w=v?"set":"add",x=b&&b.prototype,E={},S=function(e){var t=x[e];a(x,e,"delete"==e||"has"==e?function(e){return!(g&&!c(e))&&t.call(this,0===e?0:e)}:"get"==e?function(e){return g&&!c(e)?void 0:t.call(this,0===e?0:e)}:"add"==e?function(e){return t.call(this,0===e?0:e),this}:function(e,n){return t.call(this,0===e?0:e,n),this})};if("function"==typeof b&&(g||x.forEach&&!f((function(){(new b).entries().next()})))){var k=new b,_=k[w](g?{}:-0,1)!=k,O=f((function(){k.has(1)})),C=p((function(e){new b(e)})),P=!g&&f((function(){for(var e=new b,t=5;t--;)e[w](t,t);return!e.has(-0)}));C||((b=t((function(t,n){u(t,b,e);var r=h(new y,t,b);return null!=n&&l(n,v,r[w],r),r}))).prototype=x,x.constructor=b),(O||P)&&(S("delete"),S("has"),v&&S("get")),(P||_)&&S(w),g&&x.clear&&delete x.clear}else b=m.getConstructor(t,e,v,w),i(b.prototype,n),s.NEED=!0;return d(b,e),E[e]=b,o(o.G+o.W+o.F*(b!=y),E),g||m.setStrong(b,e,v),b}},5645:e=>{var t=e.exports={version:"2.6.12"};"number"==typeof __e&&(__e=t)},2811:(e,t,n)=>{"use strict";var r=n(9275),o=n(681);e.exports=function(e,t,n){t in e?r.f(e,t,o(0,n)):e[t]=n}},741:(e,t,n)=>{var r=n(4963);e.exports=function(e,t,n){if(r(e),void 0===t)return e;switch(n){case 1:return function(n){return e.call(t,n)};case 2:return function(n,r){return e.call(t,n,r)};case 3:return function(n,r,o){return e.call(t,n,r,o)}}return function(){return e.apply(t,arguments)}}},3537:(e,t,n)=>{"use strict";var r=n(4253),o=Date.prototype.getTime,a=Date.prototype.toISOString,i=function(e){return e>9?e:"0"+e};e.exports=r((function(){return"0385-07-25T07:06:39.999Z"!=a.call(new Date(-50000000000001))}))||!r((function(){a.call(new Date(NaN))}))?function(){if(!isFinite(o.call(this)))throw RangeError("Invalid time value");var e=this,t=e.getUTCFullYear(),n=e.getUTCMilliseconds(),r=t<0?"-":t>9999?"+":"";return r+("00000"+Math.abs(t)).slice(r?-6:-4)+"-"+i(e.getUTCMonth()+1)+"-"+i(e.getUTCDate())+"T"+i(e.getUTCHours())+":"+i(e.getUTCMinutes())+":"+i(e.getUTCSeconds())+"."+(n>99?n:"0"+i(n))+"Z"}:a},870:(e,t,n)=>{"use strict";var r=n(7007),o=n(1689),a="number";e.exports=function(e){if("string"!==e&&e!==a&&"default"!==e)throw TypeError("Incorrect hint");return o(r(this),e!=a)}},1355:e=>{e.exports=function(e){if(null==e)throw TypeError("Can't call method on "+e);return e}},7057:(e,t,n)=>{e.exports=!n(4253)((function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a}))},2457:(e,t,n)=>{var r=n(5286),o=n(3816).document,a=r(o)&&r(o.createElement);e.exports=function(e){return a?o.createElement(e):{}}},4430:e=>{e.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},5541:(e,t,n)=>{var r=n(7184),o=n(4548),a=n(4682);e.exports=function(e){var t=r(e),n=o.f;if(n)for(var i,s=n(e),l=a.f,u=0;s.length>u;)l.call(e,i=s[u++])&&t.push(i);return t}},2985:(e,t,n)=>{var r=n(3816),o=n(5645),a=n(7728),i=n(7234),s=n(741),l=function(e,t,n){var u,c,f,p,d=e&l.F,h=e&l.G,m=e&l.S,v=e&l.P,g=e&l.B,y=h?r:m?r[t]||(r[t]={}):(r[t]||{}).prototype,b=h?o:o[t]||(o[t]={}),w=b.prototype||(b.prototype={});for(u in h&&(n=t),n)f=((c=!d&&y&&void 0!==y[u])?y:n)[u],p=g&&c?s(f,r):v&&"function"==typeof f?s(Function.call,f):f,y&&i(y,u,f,e&l.U),b[u]!=f&&a(b,u,p),v&&w[u]!=f&&(w[u]=f)};r.core=o,l.F=1,l.G=2,l.S=4,l.P=8,l.B=16,l.W=32,l.U=64,l.R=128,e.exports=l},8852:(e,t,n)=>{var r=n(6314)("match");e.exports=function(e){var t=/./;try{"/./"[e](t)}catch(n){try{return t[r]=!1,!"/./"[e](t)}catch(e){}}return!0}},4253:e=>{e.exports=function(e){try{return!!e()}catch(e){return!0}}},8082:(e,t,n)=>{"use strict";n(8269);var r=n(7234),o=n(7728),a=n(4253),i=n(1355),s=n(6314),l=n(1165),u=s("species"),c=!a((function(){var e=/./;return e.exec=function(){var e=[];return e.groups={a:"7"},e},"7"!=="".replace(e,"$<a>")})),f=function(){var e=/(?:)/,t=e.exec;e.exec=function(){return t.apply(this,arguments)};var n="ab".split(e);return 2===n.length&&"a"===n[0]&&"b"===n[1]}();e.exports=function(e,t,n){var p=s(e),d=!a((function(){var t={};return t[p]=function(){return 7},7!=""[e](t)})),h=d?!a((function(){var t=!1,n=/a/;return n.exec=function(){return t=!0,null},"split"===e&&(n.constructor={},n.constructor[u]=function(){return n}),n[p](""),!t})):void 0;if(!d||!h||"replace"===e&&!c||"split"===e&&!f){var m=/./[p],v=n(i,p,""[e],(function(e,t,n,r,o){return t.exec===l?d&&!o?{done:!0,value:m.call(t,n,r)}:{done:!0,value:e.call(n,t,r)}:{done:!1}})),g=v[0],y=v[1];r(String.prototype,e,g),o(RegExp.prototype,p,2==t?function(e,t){return y.call(e,this,t)}:function(e){return y.call(e,this)})}}},3218:(e,t,n)=>{"use strict";var r=n(7007);e.exports=function(){var e=r(this),t="";return e.global&&(t+="g"),e.ignoreCase&&(t+="i"),e.multiline&&(t+="m"),e.unicode&&(t+="u"),e.sticky&&(t+="y"),t}},3325:(e,t,n)=>{"use strict";var r=n(4302),o=n(5286),a=n(875),i=n(741),s=n(6314)("isConcatSpreadable");e.exports=function e(t,n,l,u,c,f,p,d){for(var h,m,v=c,g=0,y=!!p&&i(p,d,3);g<u;){if(g in l){if(h=y?y(l[g],g,n):l[g],m=!1,o(h)&&(m=void 0!==(m=h[s])?!!m:r(h)),m&&f>0)v=e(t,n,h,a(h.length),v,f-1)-1;else{if(v>=9007199254740991)throw TypeError();t[v]=h}v++}g++}return v}},3531:(e,t,n)=>{var r=n(741),o=n(8851),a=n(6555),i=n(7007),s=n(875),l=n(9002),u={},c={},f=e.exports=function(e,t,n,f,p){var d,h,m,v,g=p?function(){return e}:l(e),y=r(n,f,t?2:1),b=0;if("function"!=typeof g)throw TypeError(e+" is not iterable!");if(a(g)){for(d=s(e.length);d>b;b++)if((v=t?y(i(h=e[b])[0],h[1]):y(e[b]))===u||v===c)return v}else for(m=g.call(e);!(h=m.next()).done;)if((v=o(m,y,h.value,t))===u||v===c)return v};f.BREAK=u,f.RETURN=c},18:(e,t,n)=>{e.exports=n(3825)("native-function-to-string",Function.toString)},3816:e=>{var t=e.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=t)},9181:e=>{var t={}.hasOwnProperty;e.exports=function(e,n){return t.call(e,n)}},7728:(e,t,n)=>{var r=n(9275),o=n(681);e.exports=n(7057)?function(e,t,n){return r.f(e,t,o(1,n))}:function(e,t,n){return e[t]=n,e}},639:(e,t,n)=>{var r=n(3816).document;e.exports=r&&r.documentElement},1734:(e,t,n)=>{e.exports=!n(7057)&&!n(4253)((function(){return 7!=Object.defineProperty(n(2457)("div"),"a",{get:function(){return 7}}).a}))},266:(e,t,n)=>{var r=n(5286),o=n(7375).set;e.exports=function(e,t,n){var a,i=t.constructor;return i!==n&&"function"==typeof i&&(a=i.prototype)!==n.prototype&&r(a)&&o&&o(e,a),e}},7242:e=>{e.exports=function(e,t,n){var r=void 0===n;switch(t.length){case 0:return r?e():e.call(n);case 1:return r?e(t[0]):e.call(n,t[0]);case 2:return r?e(t[0],t[1]):e.call(n,t[0],t[1]);case 3:return r?e(t[0],t[1],t[2]):e.call(n,t[0],t[1],t[2]);case 4:return r?e(t[0],t[1],t[2],t[3]):e.call(n,t[0],t[1],t[2],t[3])}return e.apply(n,t)}},9797:(e,t,n)=>{var r=n(2032);e.exports=Object("z").propertyIsEnumerable(0)?Object:function(e){return"String"==r(e)?e.split(""):Object(e)}},6555:(e,t,n)=>{var r=n(2803),o=n(6314)("iterator"),a=Array.prototype;e.exports=function(e){return void 0!==e&&(r.Array===e||a[o]===e)}},4302:(e,t,n)=>{var r=n(2032);e.exports=Array.isArray||function(e){return"Array"==r(e)}},8367:(e,t,n)=>{var r=n(5286),o=Math.floor;e.exports=function(e){return!r(e)&&isFinite(e)&&o(e)===e}},5286:e=>{e.exports=function(e){return"object"==typeof e?null!==e:"function"==typeof e}},5364:(e,t,n)=>{var r=n(5286),o=n(2032),a=n(6314)("match");e.exports=function(e){var t;return r(e)&&(void 0!==(t=e[a])?!!t:"RegExp"==o(e))}},8851:(e,t,n)=>{var r=n(7007);e.exports=function(e,t,n,o){try{return o?t(r(n)[0],n[1]):t(n)}catch(t){var a=e.return;throw void 0!==a&&r(a.call(e)),t}}},9988:(e,t,n)=>{"use strict";var r=n(2503),o=n(681),a=n(2943),i={};n(7728)(i,n(6314)("iterator"),(function(){return this})),e.exports=function(e,t,n){e.prototype=r(i,{next:o(1,n)}),a(e,t+" Iterator")}},2923:(e,t,n)=>{"use strict";var r=n(4461),o=n(2985),a=n(7234),i=n(7728),s=n(2803),l=n(9988),u=n(2943),c=n(468),f=n(6314)("iterator"),p=!([].keys&&"next"in[].keys()),d="keys",h="values",m=function(){return this};e.exports=function(e,t,n,v,g,y,b){l(n,t,v);var w,x,E,S=function(e){if(!p&&e in C)return C[e];switch(e){case d:case h:return function(){return new n(this,e)}}return function(){return new n(this,e)}},k=t+" Iterator",_=g==h,O=!1,C=e.prototype,P=C[f]||C["@@iterator"]||g&&C[g],j=P||S(g),A=g?_?S("entries"):j:void 0,I="Array"==t&&C.entries||P;if(I&&(E=c(I.call(new e)))!==Object.prototype&&E.next&&(u(E,k,!0),r||"function"==typeof E[f]||i(E,f,m)),_&&P&&P.name!==h&&(O=!0,j=function(){return P.call(this)}),r&&!b||!p&&!O&&C[f]||i(C,f,j),s[t]=j,s[k]=m,g)if(w={values:_?j:S(h),keys:y?j:S(d),entries:A},b)for(x in w)x in C||a(C,x,w[x]);else o(o.P+o.F*(p||O),t,w);return w}},7462:(e,t,n)=>{var r=n(6314)("iterator"),o=!1;try{var a=[7][r]();a.return=function(){o=!0},Array.from(a,(function(){throw 2}))}catch(e){}e.exports=function(e,t){if(!t&&!o)return!1;var n=!1;try{var a=[7],i=a[r]();i.next=function(){return{done:n=!0}},a[r]=function(){return i},e(a)}catch(e){}return n}},5436:e=>{e.exports=function(e,t){return{value:t,done:!!e}}},2803:e=>{e.exports={}},4461:e=>{e.exports=!1},3086:e=>{var t=Math.expm1;e.exports=!t||t(10)>22025.465794806718||t(10)<22025.465794806718||-2e-17!=t(-2e-17)?function(e){return 0==(e=+e)?e:e>-1e-6&&e<1e-6?e+e*e/2:Math.exp(e)-1}:t},4934:(e,t,n)=>{var r=n(1801),o=Math.pow,a=o(2,-52),i=o(2,-23),s=o(2,127)*(2-i),l=o(2,-126);e.exports=Math.fround||function(e){var t,n,o=Math.abs(e),u=r(e);return o<l?u*(o/l/i+1/a-1/a)*l*i:(n=(t=(1+i/a)*o)-(t-o))>s||n!=n?u*(1/0):u*n}},6206:e=>{e.exports=Math.log1p||function(e){return(e=+e)>-1e-8&&e<1e-8?e-e*e/2:Math.log(1+e)}},1801:e=>{e.exports=Math.sign||function(e){return 0==(e=+e)||e!=e?e:e<0?-1:1}},4728:(e,t,n)=>{var r=n(3953)("meta"),o=n(5286),a=n(9181),i=n(9275).f,s=0,l=Object.isExtensible||function(){return!0},u=!n(4253)((function(){return l(Object.preventExtensions({}))})),c=function(e){i(e,r,{value:{i:"O"+ ++s,w:{}}})},f=e.exports={KEY:r,NEED:!1,fastKey:function(e,t){if(!o(e))return"symbol"==typeof e?e:("string"==typeof e?"S":"P")+e;if(!a(e,r)){if(!l(e))return"F";if(!t)return"E";c(e)}return e[r].i},getWeak:function(e,t){if(!a(e,r)){if(!l(e))return!0;if(!t)return!1;c(e)}return e[r].w},onFreeze:function(e){return u&&f.NEED&&l(e)&&!a(e,r)&&c(e),e}}},4351:(e,t,n)=>{var r=n(3816),o=n(4193).set,a=r.MutationObserver||r.WebKitMutationObserver,i=r.process,s=r.Promise,l="process"==n(2032)(i);e.exports=function(){var e,t,n,u=function(){var r,o;for(l&&(r=i.domain)&&r.exit();e;){o=e.fn,e=e.next;try{o()}catch(r){throw e?n():t=void 0,r}}t=void 0,r&&r.enter()};if(l)n=function(){i.nextTick(u)};else if(!a||r.navigator&&r.navigator.standalone)if(s&&s.resolve){var c=s.resolve(void 0);n=function(){c.then(u)}}else n=function(){o.call(r,u)};else{var f=!0,p=document.createTextNode("");new a(u).observe(p,{characterData:!0}),n=function(){p.data=f=!f}}return function(r){var o={fn:r,next:void 0};t&&(t.next=o),e||(e=o,n()),t=o}}},3499:(e,t,n)=>{"use strict";var r=n(4963);function o(e){var t,n;this.promise=new e((function(e,r){if(void 0!==t||void 0!==n)throw TypeError("Bad Promise constructor");t=e,n=r})),this.resolve=r(t),this.reject=r(n)}e.exports.f=function(e){return new o(e)}},5345:(e,t,n)=>{"use strict";var r=n(7057),o=n(7184),a=n(4548),i=n(4682),s=n(508),l=n(9797),u=Object.assign;e.exports=!u||n(4253)((function(){var e={},t={},n=Symbol(),r="abcdefghijklmnopqrst";return e[n]=7,r.split("").forEach((function(e){t[e]=e})),7!=u({},e)[n]||Object.keys(u({},t)).join("")!=r}))?function(e,t){for(var n=s(e),u=arguments.length,c=1,f=a.f,p=i.f;u>c;)for(var d,h=l(arguments[c++]),m=f?o(h).concat(f(h)):o(h),v=m.length,g=0;v>g;)d=m[g++],r&&!p.call(h,d)||(n[d]=h[d]);return n}:u},2503:(e,t,n)=>{var r=n(7007),o=n(5588),a=n(4430),i=n(9335)("IE_PROTO"),s=function(){},l=function(){var e,t=n(2457)("iframe"),r=a.length;for(t.style.display="none",n(639).appendChild(t),t.src="javascript:",(e=t.contentWindow.document).open(),e.write("<script>document.F=Object<\/script>"),e.close(),l=e.F;r--;)delete l.prototype[a[r]];return l()};e.exports=Object.create||function(e,t){var n;return null!==e?(s.prototype=r(e),n=new s,s.prototype=null,n[i]=e):n=l(),void 0===t?n:o(n,t)}},9275:(e,t,n)=>{var r=n(7007),o=n(1734),a=n(1689),i=Object.defineProperty;t.f=n(7057)?Object.defineProperty:function(e,t,n){if(r(e),t=a(t,!0),r(n),o)try{return i(e,t,n)}catch(e){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(e[t]=n.value),e}},5588:(e,t,n)=>{var r=n(9275),o=n(7007),a=n(7184);e.exports=n(7057)?Object.defineProperties:function(e,t){o(e);for(var n,i=a(t),s=i.length,l=0;s>l;)r.f(e,n=i[l++],t[n]);return e}},8693:(e,t,n)=>{var r=n(4682),o=n(681),a=n(2110),i=n(1689),s=n(9181),l=n(1734),u=Object.getOwnPropertyDescriptor;t.f=n(7057)?u:function(e,t){if(e=a(e),t=i(t,!0),l)try{return u(e,t)}catch(e){}if(s(e,t))return o(!r.f.call(e,t),e[t])}},9327:(e,t,n)=>{var r=n(2110),o=n(616).f,a={}.toString,i="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];e.exports.f=function(e){return i&&"[object Window]"==a.call(e)?function(e){try{return o(e)}catch(e){return i.slice()}}(e):o(r(e))}},616:(e,t,n)=>{var r=n(189),o=n(4430).concat("length","prototype");t.f=Object.getOwnPropertyNames||function(e){return r(e,o)}},4548:(e,t)=>{t.f=Object.getOwnPropertySymbols},468:(e,t,n)=>{var r=n(9181),o=n(508),a=n(9335)("IE_PROTO"),i=Object.prototype;e.exports=Object.getPrototypeOf||function(e){return e=o(e),r(e,a)?e[a]:"function"==typeof e.constructor&&e instanceof e.constructor?e.constructor.prototype:e instanceof Object?i:null}},189:(e,t,n)=>{var r=n(9181),o=n(2110),a=n(9315)(!1),i=n(9335)("IE_PROTO");e.exports=function(e,t){var n,s=o(e),l=0,u=[];for(n in s)n!=i&&r(s,n)&&u.push(n);for(;t.length>l;)r(s,n=t[l++])&&(~a(u,n)||u.push(n));return u}},7184:(e,t,n)=>{var r=n(189),o=n(4430);e.exports=Object.keys||function(e){return r(e,o)}},4682:(e,t)=>{t.f={}.propertyIsEnumerable},3160:(e,t,n)=>{var r=n(2985),o=n(5645),a=n(4253);e.exports=function(e,t){var n=(o.Object||{})[e]||Object[e],i={};i[e]=t(n),r(r.S+r.F*a((function(){n(1)})),"Object",i)}},1131:(e,t,n)=>{var r=n(7057),o=n(7184),a=n(2110),i=n(4682).f;e.exports=function(e){return function(t){for(var n,s=a(t),l=o(s),u=l.length,c=0,f=[];u>c;)n=l[c++],r&&!i.call(s,n)||f.push(e?[n,s[n]]:s[n]);return f}}},7643:(e,t,n)=>{var r=n(616),o=n(4548),a=n(7007),i=n(3816).Reflect;e.exports=i&&i.ownKeys||function(e){var t=r.f(a(e)),n=o.f;return n?t.concat(n(e)):t}},7743:(e,t,n)=>{var r=n(3816).parseFloat,o=n(9599).trim;e.exports=1/r(n(4644)+"-0")!=-1/0?function(e){var t=o(String(e),3),n=r(t);return 0===n&&"-"==t.charAt(0)?-0:n}:r},5960:(e,t,n)=>{var r=n(3816).parseInt,o=n(9599).trim,a=n(4644),i=/^[-+]?0[xX]/;e.exports=8!==r(a+"08")||22!==r(a+"0x16")?function(e,t){var n=o(String(e),3);return r(n,t>>>0||(i.test(n)?16:10))}:r},188:e=>{e.exports=function(e){try{return{e:!1,v:e()}}catch(e){return{e:!0,v:e}}}},94:(e,t,n)=>{var r=n(7007),o=n(5286),a=n(3499);e.exports=function(e,t){if(r(e),o(t)&&t.constructor===e)return t;var n=a.f(e);return(0,n.resolve)(t),n.promise}},681:e=>{e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},4408:(e,t,n)=>{var r=n(7234);e.exports=function(e,t,n){for(var o in t)r(e,o,t[o],n);return e}},7234:(e,t,n)=>{var r=n(3816),o=n(7728),a=n(9181),i=n(3953)("src"),s=n(18),l="toString",u=(""+s).split(l);n(5645).inspectSource=function(e){return s.call(e)},(e.exports=function(e,t,n,s){var l="function"==typeof n;l&&(a(n,"name")||o(n,"name",t)),e[t]!==n&&(l&&(a(n,i)||o(n,i,e[t]?""+e[t]:u.join(String(t)))),e===r?e[t]=n:s?e[t]?e[t]=n:o(e,t,n):(delete e[t],o(e,t,n)))})(Function.prototype,l,(function(){return"function"==typeof this&&this[i]||s.call(this)}))},7787:(e,t,n)=>{"use strict";var r=n(1488),o=RegExp.prototype.exec;e.exports=function(e,t){var n=e.exec;if("function"==typeof n){var a=n.call(e,t);if("object"!=typeof a)throw new TypeError("RegExp exec method returned something other than an Object or null");return a}if("RegExp"!==r(e))throw new TypeError("RegExp#exec called on incompatible receiver");return o.call(e,t)}},1165:(e,t,n)=>{"use strict";var r,o,a=n(3218),i=RegExp.prototype.exec,s=String.prototype.replace,l=i,u=(r=/a/,o=/b*/g,i.call(r,"a"),i.call(o,"a"),0!==r.lastIndex||0!==o.lastIndex),c=void 0!==/()??/.exec("")[1];(u||c)&&(l=function(e){var t,n,r,o,l=this;return c&&(n=new RegExp("^"+l.source+"$(?!\\s)",a.call(l))),u&&(t=l.lastIndex),r=i.call(l,e),u&&r&&(l.lastIndex=l.global?r.index+r[0].length:t),c&&r&&r.length>1&&s.call(r[0],n,(function(){for(o=1;o<arguments.length-2;o++)void 0===arguments[o]&&(r[o]=void 0)})),r}),e.exports=l},7195:e=>{e.exports=Object.is||function(e,t){return e===t?0!==e||1/e==1/t:e!=e&&t!=t}},7375:(e,t,n)=>{var r=n(5286),o=n(7007),a=function(e,t){if(o(e),!r(t)&&null!==t)throw TypeError(t+": can't set as prototype!")};e.exports={set:Object.setPrototypeOf||("__proto__"in{}?function(e,t,r){try{(r=n(741)(Function.call,n(8693).f(Object.prototype,"__proto__").set,2))(e,[]),t=!(e instanceof Array)}catch(e){t=!0}return function(e,n){return a(e,n),t?e.__proto__=n:r(e,n),e}}({},!1):void 0),check:a}},2974:(e,t,n)=>{"use strict";var r=n(3816),o=n(9275),a=n(7057),i=n(6314)("species");e.exports=function(e){var t=r[e];a&&t&&!t[i]&&o.f(t,i,{configurable:!0,get:function(){return this}})}},2943:(e,t,n)=>{var r=n(9275).f,o=n(9181),a=n(6314)("toStringTag");e.exports=function(e,t,n){e&&!o(e=n?e:e.prototype,a)&&r(e,a,{configurable:!0,value:t})}},9335:(e,t,n)=>{var r=n(3825)("keys"),o=n(3953);e.exports=function(e){return r[e]||(r[e]=o(e))}},3825:(e,t,n)=>{var r=n(5645),o=n(3816),a="__core-js_shared__",i=o[a]||(o[a]={});(e.exports=function(e,t){return i[e]||(i[e]=void 0!==t?t:{})})("versions",[]).push({version:r.version,mode:n(4461)?"pure":"global",copyright:"© 2020 Denis Pushkarev (zloirock.ru)"})},8364:(e,t,n)=>{var r=n(7007),o=n(4963),a=n(6314)("species");e.exports=function(e,t){var n,i=r(e).constructor;return void 0===i||null==(n=r(i)[a])?t:o(n)}},7717:(e,t,n)=>{"use strict";var r=n(4253);e.exports=function(e,t){return!!e&&r((function(){t?e.call(null,(function(){}),1):e.call(null)}))}},4496:(e,t,n)=>{var r=n(1467),o=n(1355);e.exports=function(e){return function(t,n){var a,i,s=String(o(t)),l=r(n),u=s.length;return l<0||l>=u?e?"":void 0:(a=s.charCodeAt(l))<55296||a>56319||l+1===u||(i=s.charCodeAt(l+1))<56320||i>57343?e?s.charAt(l):a:e?s.slice(l,l+2):i-56320+(a-55296<<10)+65536}}},2094:(e,t,n)=>{var r=n(5364),o=n(1355);e.exports=function(e,t,n){if(r(t))throw TypeError("String#"+n+" doesn't accept regex!");return String(o(e))}},9395:(e,t,n)=>{var r=n(2985),o=n(4253),a=n(1355),i=/"/g,s=function(e,t,n,r){var o=String(a(e)),s="<"+t;return""!==n&&(s+=" "+n+'="'+String(r).replace(i,"&quot;")+'"'),s+">"+o+"</"+t+">"};e.exports=function(e,t){var n={};n[e]=t(s),r(r.P+r.F*o((function(){var t=""[e]('"');return t!==t.toLowerCase()||t.split('"').length>3})),"String",n)}},5442:(e,t,n)=>{var r=n(875),o=n(8595),a=n(1355);e.exports=function(e,t,n,i){var s=String(a(e)),l=s.length,u=void 0===n?" ":String(n),c=r(t);if(c<=l||""==u)return s;var f=c-l,p=o.call(u,Math.ceil(f/u.length));return p.length>f&&(p=p.slice(0,f)),i?p+s:s+p}},8595:(e,t,n)=>{"use strict";var r=n(1467),o=n(1355);e.exports=function(e){var t=String(o(this)),n="",a=r(e);if(a<0||a==1/0)throw RangeError("Count can't be negative");for(;a>0;(a>>>=1)&&(t+=t))1&a&&(n+=t);return n}},9599:(e,t,n)=>{var r=n(2985),o=n(1355),a=n(4253),i=n(4644),s="["+i+"]",l=RegExp("^"+s+s+"*"),u=RegExp(s+s+"*$"),c=function(e,t,n){var o={},s=a((function(){return!!i[e]()||"​…"!="​…"[e]()})),l=o[e]=s?t(f):i[e];n&&(o[n]=l),r(r.P+r.F*s,"String",o)},f=c.trim=function(e,t){return e=String(o(e)),1&t&&(e=e.replace(l,"")),2&t&&(e=e.replace(u,"")),e};e.exports=c},4644:e=>{e.exports="\t\n\v\f\r   ᠎              \u2028\u2029\ufeff"},4193:(e,t,n)=>{var r,o,a,i=n(741),s=n(7242),l=n(639),u=n(2457),c=n(3816),f=c.process,p=c.setImmediate,d=c.clearImmediate,h=c.MessageChannel,m=c.Dispatch,v=0,g={},y=function(){var e=+this;if(g.hasOwnProperty(e)){var t=g[e];delete g[e],t()}},b=function(e){y.call(e.data)};p&&d||(p=function(e){for(var t=[],n=1;arguments.length>n;)t.push(arguments[n++]);return g[++v]=function(){s("function"==typeof e?e:Function(e),t)},r(v),v},d=function(e){delete g[e]},"process"==n(2032)(f)?r=function(e){f.nextTick(i(y,e,1))}:m&&m.now?r=function(e){m.now(i(y,e,1))}:h?(a=(o=new h).port2,o.port1.onmessage=b,r=i(a.postMessage,a,1)):c.addEventListener&&"function"==typeof postMessage&&!c.importScripts?(r=function(e){c.postMessage(e+"","*")},c.addEventListener("message",b,!1)):r="onreadystatechange"in u("script")?function(e){l.appendChild(u("script")).onreadystatechange=function(){l.removeChild(this),y.call(e)}}:function(e){setTimeout(i(y,e,1),0)}),e.exports={set:p,clear:d}},2337:(e,t,n)=>{var r=n(1467),o=Math.max,a=Math.min;e.exports=function(e,t){return(e=r(e))<0?o(e+t,0):a(e,t)}},4843:(e,t,n)=>{var r=n(1467),o=n(875);e.exports=function(e){if(void 0===e)return 0;var t=r(e),n=o(t);if(t!==n)throw RangeError("Wrong length!");return n}},1467:e=>{var t=Math.ceil,n=Math.floor;e.exports=function(e){return isNaN(e=+e)?0:(e>0?n:t)(e)}},2110:(e,t,n)=>{var r=n(9797),o=n(1355);e.exports=function(e){return r(o(e))}},875:(e,t,n)=>{var r=n(1467),o=Math.min;e.exports=function(e){return e>0?o(r(e),9007199254740991):0}},508:(e,t,n)=>{var r=n(1355);e.exports=function(e){return Object(r(e))}},1689:(e,t,n)=>{var r=n(5286);e.exports=function(e,t){if(!r(e))return e;var n,o;if(t&&"function"==typeof(n=e.toString)&&!r(o=n.call(e)))return o;if("function"==typeof(n=e.valueOf)&&!r(o=n.call(e)))return o;if(!t&&"function"==typeof(n=e.toString)&&!r(o=n.call(e)))return o;throw TypeError("Can't convert object to primitive value")}},8440:(e,t,n)=>{"use strict";if(n(7057)){var r=n(4461),o=n(3816),a=n(4253),i=n(2985),s=n(9383),l=n(1125),u=n(741),c=n(3328),f=n(681),p=n(7728),d=n(4408),h=n(1467),m=n(875),v=n(4843),g=n(2337),y=n(1689),b=n(9181),w=n(1488),x=n(5286),E=n(508),S=n(6555),k=n(2503),_=n(468),O=n(616).f,C=n(9002),P=n(3953),j=n(6314),A=n(50),I=n(9315),T=n(8364),R=n(6997),N=n(2803),M=n(7462),F=n(2974),L=n(6852),D=n(5216),z=n(9275),U=n(8693),V=z.f,B=U.f,W=o.RangeError,H=o.TypeError,$=o.Uint8Array,G="ArrayBuffer",Y="SharedArrayBuffer",q="BYTES_PER_ELEMENT",Q=Array.prototype,X=l.ArrayBuffer,K=l.DataView,J=A(0),Z=A(2),ee=A(3),te=A(4),ne=A(5),re=A(6),oe=I(!0),ae=I(!1),ie=R.values,se=R.keys,le=R.entries,ue=Q.lastIndexOf,ce=Q.reduce,fe=Q.reduceRight,pe=Q.join,de=Q.sort,he=Q.slice,me=Q.toString,ve=Q.toLocaleString,ge=j("iterator"),ye=j("toStringTag"),be=P("typed_constructor"),we=P("def_constructor"),xe=s.CONSTR,Ee=s.TYPED,Se=s.VIEW,ke="Wrong length!",_e=A(1,(function(e,t){return Ae(T(e,e[we]),t)})),Oe=a((function(){return 1===new $(new Uint16Array([1]).buffer)[0]})),Ce=!!$&&!!$.prototype.set&&a((function(){new $(1).set({})})),Pe=function(e,t){var n=h(e);if(n<0||n%t)throw W("Wrong offset!");return n},je=function(e){if(x(e)&&Ee in e)return e;throw H(e+" is not a typed array!")},Ae=function(e,t){if(!x(e)||!(be in e))throw H("It is not a typed array constructor!");return new e(t)},Ie=function(e,t){return Te(T(e,e[we]),t)},Te=function(e,t){for(var n=0,r=t.length,o=Ae(e,r);r>n;)o[n]=t[n++];return o},Re=function(e,t,n){V(e,t,{get:function(){return this._d[n]}})},Ne=function(e){var t,n,r,o,a,i,s=E(e),l=arguments.length,c=l>1?arguments[1]:void 0,f=void 0!==c,p=C(s);if(null!=p&&!S(p)){for(i=p.call(s),r=[],t=0;!(a=i.next()).done;t++)r.push(a.value);s=r}for(f&&l>2&&(c=u(c,arguments[2],2)),t=0,n=m(s.length),o=Ae(this,n);n>t;t++)o[t]=f?c(s[t],t):s[t];return o},Me=function(){for(var e=0,t=arguments.length,n=Ae(this,t);t>e;)n[e]=arguments[e++];return n},Fe=!!$&&a((function(){ve.call(new $(1))})),Le=function(){return ve.apply(Fe?he.call(je(this)):je(this),arguments)},De={copyWithin:function(e,t){return D.call(je(this),e,t,arguments.length>2?arguments[2]:void 0)},every:function(e){return te(je(this),e,arguments.length>1?arguments[1]:void 0)},fill:function(e){return L.apply(je(this),arguments)},filter:function(e){return Ie(this,Z(je(this),e,arguments.length>1?arguments[1]:void 0))},find:function(e){return ne(je(this),e,arguments.length>1?arguments[1]:void 0)},findIndex:function(e){return re(je(this),e,arguments.length>1?arguments[1]:void 0)},forEach:function(e){J(je(this),e,arguments.length>1?arguments[1]:void 0)},indexOf:function(e){return ae(je(this),e,arguments.length>1?arguments[1]:void 0)},includes:function(e){return oe(je(this),e,arguments.length>1?arguments[1]:void 0)},join:function(e){return pe.apply(je(this),arguments)},lastIndexOf:function(e){return ue.apply(je(this),arguments)},map:function(e){return _e(je(this),e,arguments.length>1?arguments[1]:void 0)},reduce:function(e){return ce.apply(je(this),arguments)},reduceRight:function(e){return fe.apply(je(this),arguments)},reverse:function(){for(var e,t=this,n=je(t).length,r=Math.floor(n/2),o=0;o<r;)e=t[o],t[o++]=t[--n],t[n]=e;return t},some:function(e){return ee(je(this),e,arguments.length>1?arguments[1]:void 0)},sort:function(e){return de.call(je(this),e)},subarray:function(e,t){var n=je(this),r=n.length,o=g(e,r);return new(T(n,n[we]))(n.buffer,n.byteOffset+o*n.BYTES_PER_ELEMENT,m((void 0===t?r:g(t,r))-o))}},ze=function(e,t){return Ie(this,he.call(je(this),e,t))},Ue=function(e){je(this);var t=Pe(arguments[1],1),n=this.length,r=E(e),o=m(r.length),a=0;if(o+t>n)throw W(ke);for(;a<o;)this[t+a]=r[a++]},Ve={entries:function(){return le.call(je(this))},keys:function(){return se.call(je(this))},values:function(){return ie.call(je(this))}},Be=function(e,t){return x(e)&&e[Ee]&&"symbol"!=typeof t&&t in e&&String(+t)==String(t)},We=function(e,t){return Be(e,t=y(t,!0))?f(2,e[t]):B(e,t)},He=function(e,t,n){return!(Be(e,t=y(t,!0))&&x(n)&&b(n,"value"))||b(n,"get")||b(n,"set")||n.configurable||b(n,"writable")&&!n.writable||b(n,"enumerable")&&!n.enumerable?V(e,t,n):(e[t]=n.value,e)};xe||(U.f=We,z.f=He),i(i.S+i.F*!xe,"Object",{getOwnPropertyDescriptor:We,defineProperty:He}),a((function(){me.call({})}))&&(me=ve=function(){return pe.call(this)});var $e=d({},De);d($e,Ve),p($e,ge,Ve.values),d($e,{slice:ze,set:Ue,constructor:function(){},toString:me,toLocaleString:Le}),Re($e,"buffer","b"),Re($e,"byteOffset","o"),Re($e,"byteLength","l"),Re($e,"length","e"),V($e,ye,{get:function(){return this[Ee]}}),e.exports=function(e,t,n,l){var u=e+((l=!!l)?"Clamped":"")+"Array",f="get"+e,d="set"+e,h=o[u],g=h||{},y=h&&_(h),b=!h||!s.ABV,E={},S=h&&h.prototype,C=function(e,n){V(e,n,{get:function(){return function(e,n){var r=e._d;return r.v[f](n*t+r.o,Oe)}(this,n)},set:function(e){return function(e,n,r){var o=e._d;l&&(r=(r=Math.round(r))<0?0:r>255?255:255&r),o.v[d](n*t+o.o,r,Oe)}(this,n,e)},enumerable:!0})};b?(h=n((function(e,n,r,o){c(e,h,u,"_d");var a,i,s,l,f=0,d=0;if(x(n)){if(!(n instanceof X||(l=w(n))==G||l==Y))return Ee in n?Te(h,n):Ne.call(h,n);a=n,d=Pe(r,t);var g=n.byteLength;if(void 0===o){if(g%t)throw W(ke);if((i=g-d)<0)throw W(ke)}else if((i=m(o)*t)+d>g)throw W(ke);s=i/t}else s=v(n),a=new X(i=s*t);for(p(e,"_d",{b:a,o:d,l:i,e:s,v:new K(a)});f<s;)C(e,f++)})),S=h.prototype=k($e),p(S,"constructor",h)):a((function(){h(1)}))&&a((function(){new h(-1)}))&&M((function(e){new h,new h(null),new h(1.5),new h(e)}),!0)||(h=n((function(e,n,r,o){var a;return c(e,h,u),x(n)?n instanceof X||(a=w(n))==G||a==Y?void 0!==o?new g(n,Pe(r,t),o):void 0!==r?new g(n,Pe(r,t)):new g(n):Ee in n?Te(h,n):Ne.call(h,n):new g(v(n))})),J(y!==Function.prototype?O(g).concat(O(y)):O(g),(function(e){e in h||p(h,e,g[e])})),h.prototype=S,r||(S.constructor=h));var P=S[ge],j=!!P&&("values"==P.name||null==P.name),A=Ve.values;p(h,be,!0),p(S,Ee,u),p(S,Se,!0),p(S,we,h),(l?new h(1)[ye]==u:ye in S)||V(S,ye,{get:function(){return u}}),E[u]=h,i(i.G+i.W+i.F*(h!=g),E),i(i.S,u,{BYTES_PER_ELEMENT:t}),i(i.S+i.F*a((function(){g.of.call(h,1)})),u,{from:Ne,of:Me}),q in S||p(S,q,t),i(i.P,u,De),F(u),i(i.P+i.F*Ce,u,{set:Ue}),i(i.P+i.F*!j,u,Ve),r||S.toString==me||(S.toString=me),i(i.P+i.F*a((function(){new h(1).slice()})),u,{slice:ze}),i(i.P+i.F*(a((function(){return[1,2].toLocaleString()!=new h([1,2]).toLocaleString()}))||!a((function(){S.toLocaleString.call([1,2])}))),u,{toLocaleString:Le}),N[u]=j?P:A,r||j||p(S,ge,A)}}else e.exports=function(){}},1125:(e,t,n)=>{"use strict";var r=n(3816),o=n(7057),a=n(4461),i=n(9383),s=n(7728),l=n(4408),u=n(4253),c=n(3328),f=n(1467),p=n(875),d=n(4843),h=n(616).f,m=n(9275).f,v=n(6852),g=n(2943),y="ArrayBuffer",b="DataView",w="Wrong index!",x=r.ArrayBuffer,E=r.DataView,S=r.Math,k=r.RangeError,_=r.Infinity,O=x,C=S.abs,P=S.pow,j=S.floor,A=S.log,I=S.LN2,T="buffer",R="byteLength",N="byteOffset",M=o?"_b":T,F=o?"_l":R,L=o?"_o":N;function D(e,t,n){var r,o,a,i=new Array(n),s=8*n-t-1,l=(1<<s)-1,u=l>>1,c=23===t?P(2,-24)-P(2,-77):0,f=0,p=e<0||0===e&&1/e<0?1:0;for((e=C(e))!=e||e===_?(o=e!=e?1:0,r=l):(r=j(A(e)/I),e*(a=P(2,-r))<1&&(r--,a*=2),(e+=r+u>=1?c/a:c*P(2,1-u))*a>=2&&(r++,a/=2),r+u>=l?(o=0,r=l):r+u>=1?(o=(e*a-1)*P(2,t),r+=u):(o=e*P(2,u-1)*P(2,t),r=0));t>=8;i[f++]=255&o,o/=256,t-=8);for(r=r<<t|o,s+=t;s>0;i[f++]=255&r,r/=256,s-=8);return i[--f]|=128*p,i}function z(e,t,n){var r,o=8*n-t-1,a=(1<<o)-1,i=a>>1,s=o-7,l=n-1,u=e[l--],c=127&u;for(u>>=7;s>0;c=256*c+e[l],l--,s-=8);for(r=c&(1<<-s)-1,c>>=-s,s+=t;s>0;r=256*r+e[l],l--,s-=8);if(0===c)c=1-i;else{if(c===a)return r?NaN:u?-_:_;r+=P(2,t),c-=i}return(u?-1:1)*r*P(2,c-t)}function U(e){return e[3]<<24|e[2]<<16|e[1]<<8|e[0]}function V(e){return[255&e]}function B(e){return[255&e,e>>8&255]}function W(e){return[255&e,e>>8&255,e>>16&255,e>>24&255]}function H(e){return D(e,52,8)}function $(e){return D(e,23,4)}function G(e,t,n){m(e.prototype,t,{get:function(){return this[n]}})}function Y(e,t,n,r){var o=d(+n);if(o+t>e[F])throw k(w);var a=e[M]._b,i=o+e[L],s=a.slice(i,i+t);return r?s:s.reverse()}function q(e,t,n,r,o,a){var i=d(+n);if(i+t>e[F])throw k(w);for(var s=e[M]._b,l=i+e[L],u=r(+o),c=0;c<t;c++)s[l+c]=u[a?c:t-c-1]}if(i.ABV){if(!u((function(){x(1)}))||!u((function(){new x(-1)}))||u((function(){return new x,new x(1.5),new x(NaN),x.name!=y}))){for(var Q,X=(x=function(e){return c(this,x),new O(d(e))}).prototype=O.prototype,K=h(O),J=0;K.length>J;)(Q=K[J++])in x||s(x,Q,O[Q]);a||(X.constructor=x)}var Z=new E(new x(2)),ee=E.prototype.setInt8;Z.setInt8(0,2147483648),Z.setInt8(1,2147483649),!Z.getInt8(0)&&Z.getInt8(1)||l(E.prototype,{setInt8:function(e,t){ee.call(this,e,t<<24>>24)},setUint8:function(e,t){ee.call(this,e,t<<24>>24)}},!0)}else x=function(e){c(this,x,y);var t=d(e);this._b=v.call(new Array(t),0),this[F]=t},E=function(e,t,n){c(this,E,b),c(e,x,b);var r=e[F],o=f(t);if(o<0||o>r)throw k("Wrong offset!");if(o+(n=void 0===n?r-o:p(n))>r)throw k("Wrong length!");this[M]=e,this[L]=o,this[F]=n},o&&(G(x,R,"_l"),G(E,T,"_b"),G(E,R,"_l"),G(E,N,"_o")),l(E.prototype,{getInt8:function(e){return Y(this,1,e)[0]<<24>>24},getUint8:function(e){return Y(this,1,e)[0]},getInt16:function(e){var t=Y(this,2,e,arguments[1]);return(t[1]<<8|t[0])<<16>>16},getUint16:function(e){var t=Y(this,2,e,arguments[1]);return t[1]<<8|t[0]},getInt32:function(e){return U(Y(this,4,e,arguments[1]))},getUint32:function(e){return U(Y(this,4,e,arguments[1]))>>>0},getFloat32:function(e){return z(Y(this,4,e,arguments[1]),23,4)},getFloat64:function(e){return z(Y(this,8,e,arguments[1]),52,8)},setInt8:function(e,t){q(this,1,e,V,t)},setUint8:function(e,t){q(this,1,e,V,t)},setInt16:function(e,t){q(this,2,e,B,t,arguments[2])},setUint16:function(e,t){q(this,2,e,B,t,arguments[2])},setInt32:function(e,t){q(this,4,e,W,t,arguments[2])},setUint32:function(e,t){q(this,4,e,W,t,arguments[2])},setFloat32:function(e,t){q(this,4,e,$,t,arguments[2])},setFloat64:function(e,t){q(this,8,e,H,t,arguments[2])}});g(x,y),g(E,b),s(E.prototype,i.VIEW,!0),t.ArrayBuffer=x,t.DataView=E},9383:(e,t,n)=>{for(var r,o=n(3816),a=n(7728),i=n(3953),s=i("typed_array"),l=i("view"),u=!(!o.ArrayBuffer||!o.DataView),c=u,f=0,p="Int8Array,Uint8Array,Uint8ClampedArray,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array".split(",");f<9;)(r=o[p[f++]])?(a(r.prototype,s,!0),a(r.prototype,l,!0)):c=!1;e.exports={ABV:u,CONSTR:c,TYPED:s,VIEW:l}},3953:e=>{var t=0,n=Math.random();e.exports=function(e){return"Symbol(".concat(void 0===e?"":e,")_",(++t+n).toString(36))}},575:(e,t,n)=>{var r=n(3816).navigator;e.exports=r&&r.userAgent||""},1616:(e,t,n)=>{var r=n(5286);e.exports=function(e,t){if(!r(e)||e._t!==t)throw TypeError("Incompatible receiver, "+t+" required!");return e}},6074:(e,t,n)=>{var r=n(3816),o=n(5645),a=n(4461),i=n(8787),s=n(9275).f;e.exports=function(e){var t=o.Symbol||(o.Symbol=a?{}:r.Symbol||{});"_"==e.charAt(0)||e in t||s(t,e,{value:i.f(e)})}},8787:(e,t,n)=>{t.f=n(6314)},6314:(e,t,n)=>{var r=n(3825)("wks"),o=n(3953),a=n(3816).Symbol,i="function"==typeof a;(e.exports=function(e){return r[e]||(r[e]=i&&a[e]||(i?a:o)("Symbol."+e))}).store=r},9002:(e,t,n)=>{var r=n(1488),o=n(6314)("iterator"),a=n(2803);e.exports=n(5645).getIteratorMethod=function(e){if(null!=e)return e[o]||e["@@iterator"]||a[r(e)]}},2e3:(e,t,n)=>{var r=n(2985);r(r.P,"Array",{copyWithin:n(5216)}),n(7722)("copyWithin")},5745:(e,t,n)=>{"use strict";var r=n(2985),o=n(50)(4);r(r.P+r.F*!n(7717)([].every,!0),"Array",{every:function(e){return o(this,e,arguments[1])}})},8977:(e,t,n)=>{var r=n(2985);r(r.P,"Array",{fill:n(6852)}),n(7722)("fill")},8837:(e,t,n)=>{"use strict";var r=n(2985),o=n(50)(2);r(r.P+r.F*!n(7717)([].filter,!0),"Array",{filter:function(e){return o(this,e,arguments[1])}})},4899:(e,t,n)=>{"use strict";var r=n(2985),o=n(50)(6),a="findIndex",i=!0;a in[]&&Array(1)[a]((function(){i=!1})),r(r.P+r.F*i,"Array",{findIndex:function(e){return o(this,e,arguments.length>1?arguments[1]:void 0)}}),n(7722)(a)},2310:(e,t,n)=>{"use strict";var r=n(2985),o=n(50)(5),a="find",i=!0;a in[]&&Array(1).find((function(){i=!1})),r(r.P+r.F*i,"Array",{find:function(e){return o(this,e,arguments.length>1?arguments[1]:void 0)}}),n(7722)(a)},4336:(e,t,n)=>{"use strict";var r=n(2985),o=n(50)(0),a=n(7717)([].forEach,!0);r(r.P+r.F*!a,"Array",{forEach:function(e){return o(this,e,arguments[1])}})},522:(e,t,n)=>{"use strict";var r=n(741),o=n(2985),a=n(508),i=n(8851),s=n(6555),l=n(875),u=n(2811),c=n(9002);o(o.S+o.F*!n(7462)((function(e){Array.from(e)})),"Array",{from:function(e){var t,n,o,f,p=a(e),d="function"==typeof this?this:Array,h=arguments.length,m=h>1?arguments[1]:void 0,v=void 0!==m,g=0,y=c(p);if(v&&(m=r(m,h>2?arguments[2]:void 0,2)),null==y||d==Array&&s(y))for(n=new d(t=l(p.length));t>g;g++)u(n,g,v?m(p[g],g):p[g]);else for(f=y.call(p),n=new d;!(o=f.next()).done;g++)u(n,g,v?i(f,m,[o.value,g],!0):o.value);return n.length=g,n}})},3369:(e,t,n)=>{"use strict";var r=n(2985),o=n(9315)(!1),a=[].indexOf,i=!!a&&1/[1].indexOf(1,-0)<0;r(r.P+r.F*(i||!n(7717)(a)),"Array",{indexOf:function(e){return i?a.apply(this,arguments)||0:o(this,e,arguments[1])}})},774:(e,t,n)=>{var r=n(2985);r(r.S,"Array",{isArray:n(4302)})},6997:(e,t,n)=>{"use strict";var r=n(7722),o=n(5436),a=n(2803),i=n(2110);e.exports=n(2923)(Array,"Array",(function(e,t){this._t=i(e),this._i=0,this._k=t}),(function(){var e=this._t,t=this._k,n=this._i++;return!e||n>=e.length?(this._t=void 0,o(1)):o(0,"keys"==t?n:"values"==t?e[n]:[n,e[n]])}),"values"),a.Arguments=a.Array,r("keys"),r("values"),r("entries")},7842:(e,t,n)=>{"use strict";var r=n(2985),o=n(2110),a=[].join;r(r.P+r.F*(n(9797)!=Object||!n(7717)(a)),"Array",{join:function(e){return a.call(o(this),void 0===e?",":e)}})},9564:(e,t,n)=>{"use strict";var r=n(2985),o=n(2110),a=n(1467),i=n(875),s=[].lastIndexOf,l=!!s&&1/[1].lastIndexOf(1,-0)<0;r(r.P+r.F*(l||!n(7717)(s)),"Array",{lastIndexOf:function(e){if(l)return s.apply(this,arguments)||0;var t=o(this),n=i(t.length),r=n-1;for(arguments.length>1&&(r=Math.min(r,a(arguments[1]))),r<0&&(r=n+r);r>=0;r--)if(r in t&&t[r]===e)return r||0;return-1}})},1802:(e,t,n)=>{"use strict";var r=n(2985),o=n(50)(1);r(r.P+r.F*!n(7717)([].map,!0),"Array",{map:function(e){return o(this,e,arguments[1])}})},8295:(e,t,n)=>{"use strict";var r=n(2985),o=n(2811);r(r.S+r.F*n(4253)((function(){function e(){}return!(Array.of.call(e)instanceof e)})),"Array",{of:function(){for(var e=0,t=arguments.length,n=new("function"==typeof this?this:Array)(t);t>e;)o(n,e,arguments[e++]);return n.length=t,n}})},3750:(e,t,n)=>{"use strict";var r=n(2985),o=n(7628);r(r.P+r.F*!n(7717)([].reduceRight,!0),"Array",{reduceRight:function(e){return o(this,e,arguments.length,arguments[1],!0)}})},3057:(e,t,n)=>{"use strict";var r=n(2985),o=n(7628);r(r.P+r.F*!n(7717)([].reduce,!0),"Array",{reduce:function(e){return o(this,e,arguments.length,arguments[1],!1)}})},110:(e,t,n)=>{"use strict";var r=n(2985),o=n(639),a=n(2032),i=n(2337),s=n(875),l=[].slice;r(r.P+r.F*n(4253)((function(){o&&l.call(o)})),"Array",{slice:function(e,t){var n=s(this.length),r=a(this);if(t=void 0===t?n:t,"Array"==r)return l.call(this,e,t);for(var o=i(e,n),u=i(t,n),c=s(u-o),f=new Array(c),p=0;p<c;p++)f[p]="String"==r?this.charAt(o+p):this[o+p];return f}})},6773:(e,t,n)=>{"use strict";var r=n(2985),o=n(50)(3);r(r.P+r.F*!n(7717)([].some,!0),"Array",{some:function(e){return o(this,e,arguments[1])}})},75:(e,t,n)=>{"use strict";var r=n(2985),o=n(4963),a=n(508),i=n(4253),s=[].sort,l=[1,2,3];r(r.P+r.F*(i((function(){l.sort(void 0)}))||!i((function(){l.sort(null)}))||!n(7717)(s)),"Array",{sort:function(e){return void 0===e?s.call(a(this)):s.call(a(this),o(e))}})},1842:(e,t,n)=>{n(2974)("Array")},1822:(e,t,n)=>{var r=n(2985);r(r.S,"Date",{now:function(){return(new Date).getTime()}})},1031:(e,t,n)=>{var r=n(2985),o=n(3537);r(r.P+r.F*(Date.prototype.toISOString!==o),"Date",{toISOString:o})},9977:(e,t,n)=>{"use strict";var r=n(2985),o=n(508),a=n(1689);r(r.P+r.F*n(4253)((function(){return null!==new Date(NaN).toJSON()||1!==Date.prototype.toJSON.call({toISOString:function(){return 1}})})),"Date",{toJSON:function(e){var t=o(this),n=a(t);return"number"!=typeof n||isFinite(n)?t.toISOString():null}})},1560:(e,t,n)=>{var r=n(6314)("toPrimitive"),o=Date.prototype;r in o||n(7728)(o,r,n(870))},6331:(e,t,n)=>{var r=Date.prototype,o="Invalid Date",a=r.toString,i=r.getTime;new Date(NaN)+""!=o&&n(7234)(r,"toString",(function(){var e=i.call(this);return e==e?a.call(this):o}))},9730:(e,t,n)=>{var r=n(2985);r(r.P,"Function",{bind:n(4398)})},8377:(e,t,n)=>{"use strict";var r=n(5286),o=n(468),a=n(6314)("hasInstance"),i=Function.prototype;a in i||n(9275).f(i,a,{value:function(e){if("function"!=typeof this||!r(e))return!1;if(!r(this.prototype))return e instanceof this;for(;e=o(e);)if(this.prototype===e)return!0;return!1}})},6059:(e,t,n)=>{var r=n(9275).f,o=Function.prototype,a=/^\s*function ([^ (]*)/,i="name";i in o||n(7057)&&r(o,i,{configurable:!0,get:function(){try{return(""+this).match(a)[1]}catch(e){return""}}})},8416:(e,t,n)=>{"use strict";var r=n(9824),o=n(1616),a="Map";e.exports=n(5795)(a,(function(e){return function(){return e(this,arguments.length>0?arguments[0]:void 0)}}),{get:function(e){var t=r.getEntry(o(this,a),e);return t&&t.v},set:function(e,t){return r.def(o(this,a),0===e?0:e,t)}},r,!0)},6503:(e,t,n)=>{var r=n(2985),o=n(6206),a=Math.sqrt,i=Math.acosh;r(r.S+r.F*!(i&&710==Math.floor(i(Number.MAX_VALUE))&&i(1/0)==1/0),"Math",{acosh:function(e){return(e=+e)<1?NaN:e>94906265.62425156?Math.log(e)+Math.LN2:o(e-1+a(e-1)*a(e+1))}})},6786:(e,t,n)=>{var r=n(2985),o=Math.asinh;r(r.S+r.F*!(o&&1/o(0)>0),"Math",{asinh:function e(t){return isFinite(t=+t)&&0!=t?t<0?-e(-t):Math.log(t+Math.sqrt(t*t+1)):t}})},932:(e,t,n)=>{var r=n(2985),o=Math.atanh;r(r.S+r.F*!(o&&1/o(-0)<0),"Math",{atanh:function(e){return 0==(e=+e)?e:Math.log((1+e)/(1-e))/2}})},7526:(e,t,n)=>{var r=n(2985),o=n(1801);r(r.S,"Math",{cbrt:function(e){return o(e=+e)*Math.pow(Math.abs(e),1/3)}})},1591:(e,t,n)=>{var r=n(2985);r(r.S,"Math",{clz32:function(e){return(e>>>=0)?31-Math.floor(Math.log(e+.5)*Math.LOG2E):32}})},9073:(e,t,n)=>{var r=n(2985),o=Math.exp;r(r.S,"Math",{cosh:function(e){return(o(e=+e)+o(-e))/2}})},347:(e,t,n)=>{var r=n(2985),o=n(3086);r(r.S+r.F*(o!=Math.expm1),"Math",{expm1:o})},579:(e,t,n)=>{var r=n(2985);r(r.S,"Math",{fround:n(4934)})},4669:(e,t,n)=>{var r=n(2985),o=Math.abs;r(r.S,"Math",{hypot:function(e,t){for(var n,r,a=0,i=0,s=arguments.length,l=0;i<s;)l<(n=o(arguments[i++]))?(a=a*(r=l/n)*r+1,l=n):a+=n>0?(r=n/l)*r:n;return l===1/0?1/0:l*Math.sqrt(a)}})},7710:(e,t,n)=>{var r=n(2985),o=Math.imul;r(r.S+r.F*n(4253)((function(){return-5!=o(4294967295,5)||2!=o.length})),"Math",{imul:function(e,t){var n=65535,r=+e,o=+t,a=n&r,i=n&o;return 0|a*i+((n&r>>>16)*i+a*(n&o>>>16)<<16>>>0)}})},5789:(e,t,n)=>{var r=n(2985);r(r.S,"Math",{log10:function(e){return Math.log(e)*Math.LOG10E}})},3514:(e,t,n)=>{var r=n(2985);r(r.S,"Math",{log1p:n(6206)})},9978:(e,t,n)=>{var r=n(2985);r(r.S,"Math",{log2:function(e){return Math.log(e)/Math.LN2}})},8472:(e,t,n)=>{var r=n(2985);r(r.S,"Math",{sign:n(1801)})},6946:(e,t,n)=>{var r=n(2985),o=n(3086),a=Math.exp;r(r.S+r.F*n(4253)((function(){return-2e-17!=!Math.sinh(-2e-17)})),"Math",{sinh:function(e){return Math.abs(e=+e)<1?(o(e)-o(-e))/2:(a(e-1)-a(-e-1))*(Math.E/2)}})},5068:(e,t,n)=>{var r=n(2985),o=n(3086),a=Math.exp;r(r.S,"Math",{tanh:function(e){var t=o(e=+e),n=o(-e);return t==1/0?1:n==1/0?-1:(t-n)/(a(e)+a(-e))}})},413:(e,t,n)=>{var r=n(2985);r(r.S,"Math",{trunc:function(e){return(e>0?Math.floor:Math.ceil)(e)}})},1246:(e,t,n)=>{"use strict";var r=n(3816),o=n(9181),a=n(2032),i=n(266),s=n(1689),l=n(4253),u=n(616).f,c=n(8693).f,f=n(9275).f,p=n(9599).trim,d="Number",h=r.Number,m=h,v=h.prototype,g=a(n(2503)(v))==d,y="trim"in String.prototype,b=function(e){var t=s(e,!1);if("string"==typeof t&&t.length>2){var n,r,o,a=(t=y?t.trim():p(t,3)).charCodeAt(0);if(43===a||45===a){if(88===(n=t.charCodeAt(2))||120===n)return NaN}else if(48===a){switch(t.charCodeAt(1)){case 66:case 98:r=2,o=49;break;case 79:case 111:r=8,o=55;break;default:return+t}for(var i,l=t.slice(2),u=0,c=l.length;u<c;u++)if((i=l.charCodeAt(u))<48||i>o)return NaN;return parseInt(l,r)}}return+t};if(!h(" 0o1")||!h("0b1")||h("+0x1")){h=function(e){var t=arguments.length<1?0:e,n=this;return n instanceof h&&(g?l((function(){v.valueOf.call(n)})):a(n)!=d)?i(new m(b(t)),n,h):b(t)};for(var w,x=n(7057)?u(m):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger".split(","),E=0;x.length>E;E++)o(m,w=x[E])&&!o(h,w)&&f(h,w,c(m,w));h.prototype=v,v.constructor=h,n(7234)(r,d,h)}},5972:(e,t,n)=>{var r=n(2985);r(r.S,"Number",{EPSILON:Math.pow(2,-52)})},3403:(e,t,n)=>{var r=n(2985),o=n(3816).isFinite;r(r.S,"Number",{isFinite:function(e){return"number"==typeof e&&o(e)}})},2516:(e,t,n)=>{var r=n(2985);r(r.S,"Number",{isInteger:n(8367)})},9371:(e,t,n)=>{var r=n(2985);r(r.S,"Number",{isNaN:function(e){return e!=e}})},6479:(e,t,n)=>{var r=n(2985),o=n(8367),a=Math.abs;r(r.S,"Number",{isSafeInteger:function(e){return o(e)&&a(e)<=9007199254740991}})},1736:(e,t,n)=>{var r=n(2985);r(r.S,"Number",{MAX_SAFE_INTEGER:9007199254740991})},1889:(e,t,n)=>{var r=n(2985);r(r.S,"Number",{MIN_SAFE_INTEGER:-9007199254740991})},5177:(e,t,n)=>{var r=n(2985),o=n(7743);r(r.S+r.F*(Number.parseFloat!=o),"Number",{parseFloat:o})},6943:(e,t,n)=>{var r=n(2985),o=n(5960);r(r.S+r.F*(Number.parseInt!=o),"Number",{parseInt:o})},726:(e,t,n)=>{"use strict";var r=n(2985),o=n(1467),a=n(3365),i=n(8595),s=1..toFixed,l=Math.floor,u=[0,0,0,0,0,0],c="Number.toFixed: incorrect invocation!",f="0",p=function(e,t){for(var n=-1,r=t;++n<6;)r+=e*u[n],u[n]=r%1e7,r=l(r/1e7)},d=function(e){for(var t=6,n=0;--t>=0;)n+=u[t],u[t]=l(n/e),n=n%e*1e7},h=function(){for(var e=6,t="";--e>=0;)if(""!==t||0===e||0!==u[e]){var n=String(u[e]);t=""===t?n:t+i.call(f,7-n.length)+n}return t},m=function(e,t,n){return 0===t?n:t%2==1?m(e,t-1,n*e):m(e*e,t/2,n)};r(r.P+r.F*(!!s&&("0.000"!==8e-5.toFixed(3)||"1"!==.9.toFixed(0)||"1.25"!==1.255.toFixed(2)||"1000000000000000128"!==(0xde0b6b3a7640080).toFixed(0))||!n(4253)((function(){s.call({})}))),"Number",{toFixed:function(e){var t,n,r,s,l=a(this,c),u=o(e),v="",g=f;if(u<0||u>20)throw RangeError(c);if(l!=l)return"NaN";if(l<=-1e21||l>=1e21)return String(l);if(l<0&&(v="-",l=-l),l>1e-21)if(t=function(e){for(var t=0,n=e;n>=4096;)t+=12,n/=4096;for(;n>=2;)t+=1,n/=2;return t}(l*m(2,69,1))-69,n=t<0?l*m(2,-t,1):l/m(2,t,1),n*=4503599627370496,(t=52-t)>0){for(p(0,n),r=u;r>=7;)p(1e7,0),r-=7;for(p(m(10,r,1),0),r=t-1;r>=23;)d(1<<23),r-=23;d(1<<r),p(1,1),d(2),g=h()}else p(0,n),p(1<<-t,0),g=h()+i.call(f,u);return u>0?v+((s=g.length)<=u?"0."+i.call(f,u-s)+g:g.slice(0,s-u)+"."+g.slice(s-u)):v+g}})},1901:(e,t,n)=>{"use strict";var r=n(2985),o=n(4253),a=n(3365),i=1..toPrecision;r(r.P+r.F*(o((function(){return"1"!==i.call(1,void 0)}))||!o((function(){i.call({})}))),"Number",{toPrecision:function(e){var t=a(this,"Number#toPrecision: incorrect invocation!");return void 0===e?i.call(t):i.call(t,e)}})},5115:(e,t,n)=>{var r=n(2985);r(r.S+r.F,"Object",{assign:n(5345)})},8132:(e,t,n)=>{var r=n(2985);r(r.S,"Object",{create:n(2503)})},7470:(e,t,n)=>{var r=n(2985);r(r.S+r.F*!n(7057),"Object",{defineProperties:n(5588)})},8388:(e,t,n)=>{var r=n(2985);r(r.S+r.F*!n(7057),"Object",{defineProperty:n(9275).f})},9375:(e,t,n)=>{var r=n(5286),o=n(4728).onFreeze;n(3160)("freeze",(function(e){return function(t){return e&&r(t)?e(o(t)):t}}))},4882:(e,t,n)=>{var r=n(2110),o=n(8693).f;n(3160)("getOwnPropertyDescriptor",(function(){return function(e,t){return o(r(e),t)}}))},9622:(e,t,n)=>{n(3160)("getOwnPropertyNames",(function(){return n(9327).f}))},1520:(e,t,n)=>{var r=n(508),o=n(468);n(3160)("getPrototypeOf",(function(){return function(e){return o(r(e))}}))},9892:(e,t,n)=>{var r=n(5286);n(3160)("isExtensible",(function(e){return function(t){return!!r(t)&&(!e||e(t))}}))},4157:(e,t,n)=>{var r=n(5286);n(3160)("isFrozen",(function(e){return function(t){return!r(t)||!!e&&e(t)}}))},5095:(e,t,n)=>{var r=n(5286);n(3160)("isSealed",(function(e){return function(t){return!r(t)||!!e&&e(t)}}))},9176:(e,t,n)=>{var r=n(2985);r(r.S,"Object",{is:n(7195)})},7476:(e,t,n)=>{var r=n(508),o=n(7184);n(3160)("keys",(function(){return function(e){return o(r(e))}}))},4672:(e,t,n)=>{var r=n(5286),o=n(4728).onFreeze;n(3160)("preventExtensions",(function(e){return function(t){return e&&r(t)?e(o(t)):t}}))},3533:(e,t,n)=>{var r=n(5286),o=n(4728).onFreeze;n(3160)("seal",(function(e){return function(t){return e&&r(t)?e(o(t)):t}}))},8838:(e,t,n)=>{var r=n(2985);r(r.S,"Object",{setPrototypeOf:n(7375).set})},6253:(e,t,n)=>{"use strict";var r=n(1488),o={};o[n(6314)("toStringTag")]="z",o+""!="[object z]"&&n(7234)(Object.prototype,"toString",(function(){return"[object "+r(this)+"]"}),!0)},4299:(e,t,n)=>{var r=n(2985),o=n(7743);r(r.G+r.F*(parseFloat!=o),{parseFloat:o})},1084:(e,t,n)=>{var r=n(2985),o=n(5960);r(r.G+r.F*(parseInt!=o),{parseInt:o})},851:(e,t,n)=>{"use strict";var r,o,a,i,s=n(4461),l=n(3816),u=n(741),c=n(1488),f=n(2985),p=n(5286),d=n(4963),h=n(3328),m=n(3531),v=n(8364),g=n(4193).set,y=n(4351)(),b=n(3499),w=n(188),x=n(575),E=n(94),S="Promise",k=l.TypeError,_=l.process,O=_&&_.versions,C=O&&O.v8||"",P=l.Promise,j="process"==c(_),A=function(){},I=o=b.f,T=!!function(){try{var e=P.resolve(1),t=(e.constructor={})[n(6314)("species")]=function(e){e(A,A)};return(j||"function"==typeof PromiseRejectionEvent)&&e.then(A)instanceof t&&0!==C.indexOf("6.6")&&-1===x.indexOf("Chrome/66")}catch(e){}}(),R=function(e){var t;return!(!p(e)||"function"!=typeof(t=e.then))&&t},N=function(e,t){if(!e._n){e._n=!0;var n=e._c;y((function(){for(var r=e._v,o=1==e._s,a=0,i=function(t){var n,a,i,s=o?t.ok:t.fail,l=t.resolve,u=t.reject,c=t.domain;try{s?(o||(2==e._h&&L(e),e._h=1),!0===s?n=r:(c&&c.enter(),n=s(r),c&&(c.exit(),i=!0)),n===t.promise?u(k("Promise-chain cycle")):(a=R(n))?a.call(n,l,u):l(n)):u(r)}catch(e){c&&!i&&c.exit(),u(e)}};n.length>a;)i(n[a++]);e._c=[],e._n=!1,t&&!e._h&&M(e)}))}},M=function(e){g.call(l,(function(){var t,n,r,o=e._v,a=F(e);if(a&&(t=w((function(){j?_.emit("unhandledRejection",o,e):(n=l.onunhandledrejection)?n({promise:e,reason:o}):(r=l.console)&&r.error&&r.error("Unhandled promise rejection",o)})),e._h=j||F(e)?2:1),e._a=void 0,a&&t.e)throw t.v}))},F=function(e){return 1!==e._h&&0===(e._a||e._c).length},L=function(e){g.call(l,(function(){var t;j?_.emit("rejectionHandled",e):(t=l.onrejectionhandled)&&t({promise:e,reason:e._v})}))},D=function(e){var t=this;t._d||(t._d=!0,(t=t._w||t)._v=e,t._s=2,t._a||(t._a=t._c.slice()),N(t,!0))},z=function(e){var t,n=this;if(!n._d){n._d=!0,n=n._w||n;try{if(n===e)throw k("Promise can't be resolved itself");(t=R(e))?y((function(){var r={_w:n,_d:!1};try{t.call(e,u(z,r,1),u(D,r,1))}catch(e){D.call(r,e)}})):(n._v=e,n._s=1,N(n,!1))}catch(e){D.call({_w:n,_d:!1},e)}}};T||(P=function(e){h(this,P,S,"_h"),d(e),r.call(this);try{e(u(z,this,1),u(D,this,1))}catch(e){D.call(this,e)}},(r=function(e){this._c=[],this._a=void 0,this._s=0,this._d=!1,this._v=void 0,this._h=0,this._n=!1}).prototype=n(4408)(P.prototype,{then:function(e,t){var n=I(v(this,P));return n.ok="function"!=typeof e||e,n.fail="function"==typeof t&&t,n.domain=j?_.domain:void 0,this._c.push(n),this._a&&this._a.push(n),this._s&&N(this,!1),n.promise},catch:function(e){return this.then(void 0,e)}}),a=function(){var e=new r;this.promise=e,this.resolve=u(z,e,1),this.reject=u(D,e,1)},b.f=I=function(e){return e===P||e===i?new a(e):o(e)}),f(f.G+f.W+f.F*!T,{Promise:P}),n(2943)(P,S),n(2974)(S),i=n(5645).Promise,f(f.S+f.F*!T,S,{reject:function(e){var t=I(this);return(0,t.reject)(e),t.promise}}),f(f.S+f.F*(s||!T),S,{resolve:function(e){return E(s&&this===i?P:this,e)}}),f(f.S+f.F*!(T&&n(7462)((function(e){P.all(e).catch(A)}))),S,{all:function(e){var t=this,n=I(t),r=n.resolve,o=n.reject,a=w((function(){var n=[],a=0,i=1;m(e,!1,(function(e){var s=a++,l=!1;n.push(void 0),i++,t.resolve(e).then((function(e){l||(l=!0,n[s]=e,--i||r(n))}),o)})),--i||r(n)}));return a.e&&o(a.v),n.promise},race:function(e){var t=this,n=I(t),r=n.reject,o=w((function(){m(e,!1,(function(e){t.resolve(e).then(n.resolve,r)}))}));return o.e&&r(o.v),n.promise}})},1572:(e,t,n)=>{var r=n(2985),o=n(4963),a=n(7007),i=(n(3816).Reflect||{}).apply,s=Function.apply;r(r.S+r.F*!n(4253)((function(){i((function(){}))})),"Reflect",{apply:function(e,t,n){var r=o(e),l=a(n);return i?i(r,t,l):s.call(r,t,l)}})},2139:(e,t,n)=>{var r=n(2985),o=n(2503),a=n(4963),i=n(7007),s=n(5286),l=n(4253),u=n(4398),c=(n(3816).Reflect||{}).construct,f=l((function(){function e(){}return!(c((function(){}),[],e)instanceof e)})),p=!l((function(){c((function(){}))}));r(r.S+r.F*(f||p),"Reflect",{construct:function(e,t){a(e),i(t);var n=arguments.length<3?e:a(arguments[2]);if(p&&!f)return c(e,t,n);if(e==n){switch(t.length){case 0:return new e;case 1:return new e(t[0]);case 2:return new e(t[0],t[1]);case 3:return new e(t[0],t[1],t[2]);case 4:return new e(t[0],t[1],t[2],t[3])}var r=[null];return r.push.apply(r,t),new(u.apply(e,r))}var l=n.prototype,d=o(s(l)?l:Object.prototype),h=Function.apply.call(e,d,t);return s(h)?h:d}})},685:(e,t,n)=>{var r=n(9275),o=n(2985),a=n(7007),i=n(1689);o(o.S+o.F*n(4253)((function(){Reflect.defineProperty(r.f({},1,{value:1}),1,{value:2})})),"Reflect",{defineProperty:function(e,t,n){a(e),t=i(t,!0),a(n);try{return r.f(e,t,n),!0}catch(e){return!1}}})},5535:(e,t,n)=>{var r=n(2985),o=n(8693).f,a=n(7007);r(r.S,"Reflect",{deleteProperty:function(e,t){var n=o(a(e),t);return!(n&&!n.configurable)&&delete e[t]}})},7347:(e,t,n)=>{"use strict";var r=n(2985),o=n(7007),a=function(e){this._t=o(e),this._i=0;var t,n=this._k=[];for(t in e)n.push(t)};n(9988)(a,"Object",(function(){var e,t=this,n=t._k;do{if(t._i>=n.length)return{value:void 0,done:!0}}while(!((e=n[t._i++])in t._t));return{value:e,done:!1}})),r(r.S,"Reflect",{enumerate:function(e){return new a(e)}})},6633:(e,t,n)=>{var r=n(8693),o=n(2985),a=n(7007);o(o.S,"Reflect",{getOwnPropertyDescriptor:function(e,t){return r.f(a(e),t)}})},8989:(e,t,n)=>{var r=n(2985),o=n(468),a=n(7007);r(r.S,"Reflect",{getPrototypeOf:function(e){return o(a(e))}})},3049:(e,t,n)=>{var r=n(8693),o=n(468),a=n(9181),i=n(2985),s=n(5286),l=n(7007);i(i.S,"Reflect",{get:function e(t,n){var i,u,c=arguments.length<3?t:arguments[2];return l(t)===c?t[n]:(i=r.f(t,n))?a(i,"value")?i.value:void 0!==i.get?i.get.call(c):void 0:s(u=o(t))?e(u,n,c):void 0}})},8270:(e,t,n)=>{var r=n(2985);r(r.S,"Reflect",{has:function(e,t){return t in e}})},4510:(e,t,n)=>{var r=n(2985),o=n(7007),a=Object.isExtensible;r(r.S,"Reflect",{isExtensible:function(e){return o(e),!a||a(e)}})},3984:(e,t,n)=>{var r=n(2985);r(r.S,"Reflect",{ownKeys:n(7643)})},5769:(e,t,n)=>{var r=n(2985),o=n(7007),a=Object.preventExtensions;r(r.S,"Reflect",{preventExtensions:function(e){o(e);try{return a&&a(e),!0}catch(e){return!1}}})},6014:(e,t,n)=>{var r=n(2985),o=n(7375);o&&r(r.S,"Reflect",{setPrototypeOf:function(e,t){o.check(e,t);try{return o.set(e,t),!0}catch(e){return!1}}})},55:(e,t,n)=>{var r=n(9275),o=n(8693),a=n(468),i=n(9181),s=n(2985),l=n(681),u=n(7007),c=n(5286);s(s.S,"Reflect",{set:function e(t,n,s){var f,p,d=arguments.length<4?t:arguments[3],h=o.f(u(t),n);if(!h){if(c(p=a(t)))return e(p,n,s,d);h=l(0)}if(i(h,"value")){if(!1===h.writable||!c(d))return!1;if(f=o.f(d,n)){if(f.get||f.set||!1===f.writable)return!1;f.value=s,r.f(d,n,f)}else r.f(d,n,l(0,s));return!0}return void 0!==h.set&&(h.set.call(d,s),!0)}})},3946:(e,t,n)=>{var r=n(3816),o=n(266),a=n(9275).f,i=n(616).f,s=n(5364),l=n(3218),u=r.RegExp,c=u,f=u.prototype,p=/a/g,d=/a/g,h=new u(p)!==p;if(n(7057)&&(!h||n(4253)((function(){return d[n(6314)("match")]=!1,u(p)!=p||u(d)==d||"/a/i"!=u(p,"i")})))){u=function(e,t){var n=this instanceof u,r=s(e),a=void 0===t;return!n&&r&&e.constructor===u&&a?e:o(h?new c(r&&!a?e.source:e,t):c((r=e instanceof u)?e.source:e,r&&a?l.call(e):t),n?this:f,u)};for(var m=function(e){e in u||a(u,e,{configurable:!0,get:function(){return c[e]},set:function(t){c[e]=t}})},v=i(c),g=0;v.length>g;)m(v[g++]);f.constructor=u,u.prototype=f,n(7234)(r,"RegExp",u)}n(2974)("RegExp")},8269:(e,t,n)=>{"use strict";var r=n(1165);n(2985)({target:"RegExp",proto:!0,forced:r!==/./.exec},{exec:r})},6774:(e,t,n)=>{n(7057)&&"g"!=/./g.flags&&n(9275).f(RegExp.prototype,"flags",{configurable:!0,get:n(3218)})},1466:(e,t,n)=>{"use strict";var r=n(7007),o=n(875),a=n(6793),i=n(7787);n(8082)("match",1,(function(e,t,n,s){return[function(n){var r=e(this),o=null==n?void 0:n[t];return void 0!==o?o.call(n,r):new RegExp(n)[t](String(r))},function(e){var t=s(n,e,this);if(t.done)return t.value;var l=r(e),u=String(this);if(!l.global)return i(l,u);var c=l.unicode;l.lastIndex=0;for(var f,p=[],d=0;null!==(f=i(l,u));){var h=String(f[0]);p[d]=h,""===h&&(l.lastIndex=a(u,o(l.lastIndex),c)),d++}return 0===d?null:p}]}))},9357:(e,t,n)=>{"use strict";var r=n(7007),o=n(508),a=n(875),i=n(1467),s=n(6793),l=n(7787),u=Math.max,c=Math.min,f=Math.floor,p=/\$([$&`']|\d\d?|<[^>]*>)/g,d=/\$([$&`']|\d\d?)/g;n(8082)("replace",2,(function(e,t,n,h){return[function(r,o){var a=e(this),i=null==r?void 0:r[t];return void 0!==i?i.call(r,a,o):n.call(String(a),r,o)},function(e,t){var o=h(n,e,this,t);if(o.done)return o.value;var f=r(e),p=String(this),d="function"==typeof t;d||(t=String(t));var v=f.global;if(v){var g=f.unicode;f.lastIndex=0}for(var y=[];;){var b=l(f,p);if(null===b)break;if(y.push(b),!v)break;""===String(b[0])&&(f.lastIndex=s(p,a(f.lastIndex),g))}for(var w,x="",E=0,S=0;S<y.length;S++){b=y[S];for(var k=String(b[0]),_=u(c(i(b.index),p.length),0),O=[],C=1;C<b.length;C++)O.push(void 0===(w=b[C])?w:String(w));var P=b.groups;if(d){var j=[k].concat(O,_,p);void 0!==P&&j.push(P);var A=String(t.apply(void 0,j))}else A=m(k,p,_,O,P,t);_>=E&&(x+=p.slice(E,_)+A,E=_+k.length)}return x+p.slice(E)}];function m(e,t,r,a,i,s){var l=r+e.length,u=a.length,c=d;return void 0!==i&&(i=o(i),c=p),n.call(s,c,(function(n,o){var s;switch(o.charAt(0)){case"$":return"$";case"&":return e;case"`":return t.slice(0,r);case"'":return t.slice(l);case"<":s=i[o.slice(1,-1)];break;default:var c=+o;if(0===c)return n;if(c>u){var p=f(c/10);return 0===p?n:p<=u?void 0===a[p-1]?o.charAt(1):a[p-1]+o.charAt(1):n}s=a[c-1]}return void 0===s?"":s}))}}))},6142:(e,t,n)=>{"use strict";var r=n(7007),o=n(7195),a=n(7787);n(8082)("search",1,(function(e,t,n,i){return[function(n){var r=e(this),o=null==n?void 0:n[t];return void 0!==o?o.call(n,r):new RegExp(n)[t](String(r))},function(e){var t=i(n,e,this);if(t.done)return t.value;var s=r(e),l=String(this),u=s.lastIndex;o(u,0)||(s.lastIndex=0);var c=a(s,l);return o(s.lastIndex,u)||(s.lastIndex=u),null===c?-1:c.index}]}))},1876:(e,t,n)=>{"use strict";var r=n(5364),o=n(7007),a=n(8364),i=n(6793),s=n(875),l=n(7787),u=n(1165),c=n(4253),f=Math.min,p=[].push,d=4294967295,h=!c((function(){RegExp(d,"y")}));n(8082)("split",2,(function(e,t,n,c){var m;return m="c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1).length||2!="ab".split(/(?:ab)*/).length||4!=".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length?function(e,t){var o=String(this);if(void 0===e&&0===t)return[];if(!r(e))return n.call(o,e,t);for(var a,i,s,l=[],c=(e.ignoreCase?"i":"")+(e.multiline?"m":"")+(e.unicode?"u":"")+(e.sticky?"y":""),f=0,h=void 0===t?d:t>>>0,m=new RegExp(e.source,c+"g");(a=u.call(m,o))&&!((i=m.lastIndex)>f&&(l.push(o.slice(f,a.index)),a.length>1&&a.index<o.length&&p.apply(l,a.slice(1)),s=a[0].length,f=i,l.length>=h));)m.lastIndex===a.index&&m.lastIndex++;return f===o.length?!s&&m.test("")||l.push(""):l.push(o.slice(f)),l.length>h?l.slice(0,h):l}:"0".split(void 0,0).length?function(e,t){return void 0===e&&0===t?[]:n.call(this,e,t)}:n,[function(n,r){var o=e(this),a=null==n?void 0:n[t];return void 0!==a?a.call(n,o,r):m.call(String(o),n,r)},function(e,t){var r=c(m,e,this,t,m!==n);if(r.done)return r.value;var u=o(e),p=String(this),v=a(u,RegExp),g=u.unicode,y=(u.ignoreCase?"i":"")+(u.multiline?"m":"")+(u.unicode?"u":"")+(h?"y":"g"),b=new v(h?u:"^(?:"+u.source+")",y),w=void 0===t?d:t>>>0;if(0===w)return[];if(0===p.length)return null===l(b,p)?[p]:[];for(var x=0,E=0,S=[];E<p.length;){b.lastIndex=h?E:0;var k,_=l(b,h?p:p.slice(E));if(null===_||(k=f(s(b.lastIndex+(h?0:E)),p.length))===x)E=i(p,E,g);else{if(S.push(p.slice(x,E)),S.length===w)return S;for(var O=1;O<=_.length-1;O++)if(S.push(_[O]),S.length===w)return S;E=x=k}}return S.push(p.slice(x)),S}]}))},6108:(e,t,n)=>{"use strict";n(6774);var r=n(7007),o=n(3218),a=n(7057),i="toString",s=/./.toString,l=function(e){n(7234)(RegExp.prototype,i,e,!0)};n(4253)((function(){return"/a/b"!=s.call({source:"a",flags:"b"})}))?l((function(){var e=r(this);return"/".concat(e.source,"/","flags"in e?e.flags:!a&&e instanceof RegExp?o.call(e):void 0)})):s.name!=i&&l((function(){return s.call(this)}))},8184:(e,t,n)=>{"use strict";var r=n(9824),o=n(1616);e.exports=n(5795)("Set",(function(e){return function(){return e(this,arguments.length>0?arguments[0]:void 0)}}),{add:function(e){return r.def(o(this,"Set"),e=0===e?0:e,e)}},r)},856:(e,t,n)=>{"use strict";n(9395)("anchor",(function(e){return function(t){return e(this,"a","name",t)}}))},703:(e,t,n)=>{"use strict";n(9395)("big",(function(e){return function(){return e(this,"big","","")}}))},1539:(e,t,n)=>{"use strict";n(9395)("blink",(function(e){return function(){return e(this,"blink","","")}}))},5292:(e,t,n)=>{"use strict";n(9395)("bold",(function(e){return function(){return e(this,"b","","")}}))},9539:(e,t,n)=>{"use strict";var r=n(2985),o=n(4496)(!1);r(r.P,"String",{codePointAt:function(e){return o(this,e)}})},6620:(e,t,n)=>{"use strict";var r=n(2985),o=n(875),a=n(2094),i="endsWith",s="".endsWith;r(r.P+r.F*n(8852)(i),"String",{endsWith:function(e){var t=a(this,e,i),n=arguments.length>1?arguments[1]:void 0,r=o(t.length),l=void 0===n?r:Math.min(o(n),r),u=String(e);return s?s.call(t,u,l):t.slice(l-u.length,l)===u}})},6629:(e,t,n)=>{"use strict";n(9395)("fixed",(function(e){return function(){return e(this,"tt","","")}}))},3694:(e,t,n)=>{"use strict";n(9395)("fontcolor",(function(e){return function(t){return e(this,"font","color",t)}}))},7648:(e,t,n)=>{"use strict";n(9395)("fontsize",(function(e){return function(t){return e(this,"font","size",t)}}))},191:(e,t,n)=>{var r=n(2985),o=n(2337),a=String.fromCharCode,i=String.fromCodePoint;r(r.S+r.F*(!!i&&1!=i.length),"String",{fromCodePoint:function(e){for(var t,n=[],r=arguments.length,i=0;r>i;){if(t=+arguments[i++],o(t,1114111)!==t)throw RangeError(t+" is not a valid code point");n.push(t<65536?a(t):a(55296+((t-=65536)>>10),t%1024+56320))}return n.join("")}})},2850:(e,t,n)=>{"use strict";var r=n(2985),o=n(2094),a="includes";r(r.P+r.F*n(8852)(a),"String",{includes:function(e){return!!~o(this,e,a).indexOf(e,arguments.length>1?arguments[1]:void 0)}})},7795:(e,t,n)=>{"use strict";n(9395)("italics",(function(e){return function(){return e(this,"i","","")}}))},9115:(e,t,n)=>{"use strict";var r=n(4496)(!0);n(2923)(String,"String",(function(e){this._t=String(e),this._i=0}),(function(){var e,t=this._t,n=this._i;return n>=t.length?{value:void 0,done:!0}:(e=r(t,n),this._i+=e.length,{value:e,done:!1})}))},4531:(e,t,n)=>{"use strict";n(9395)("link",(function(e){return function(t){return e(this,"a","href",t)}}))},8306:(e,t,n)=>{var r=n(2985),o=n(2110),a=n(875);r(r.S,"String",{raw:function(e){for(var t=o(e.raw),n=a(t.length),r=arguments.length,i=[],s=0;n>s;)i.push(String(t[s++])),s<r&&i.push(String(arguments[s]));return i.join("")}})},823:(e,t,n)=>{var r=n(2985);r(r.P,"String",{repeat:n(8595)})},3605:(e,t,n)=>{"use strict";n(9395)("small",(function(e){return function(){return e(this,"small","","")}}))},7732:(e,t,n)=>{"use strict";var r=n(2985),o=n(875),a=n(2094),i="startsWith",s="".startsWith;r(r.P+r.F*n(8852)(i),"String",{startsWith:function(e){var t=a(this,e,i),n=o(Math.min(arguments.length>1?arguments[1]:void 0,t.length)),r=String(e);return s?s.call(t,r,n):t.slice(n,n+r.length)===r}})},6780:(e,t,n)=>{"use strict";n(9395)("strike",(function(e){return function(){return e(this,"strike","","")}}))},9937:(e,t,n)=>{"use strict";n(9395)("sub",(function(e){return function(){return e(this,"sub","","")}}))},511:(e,t,n)=>{"use strict";n(9395)("sup",(function(e){return function(){return e(this,"sup","","")}}))},4564:(e,t,n)=>{"use strict";n(9599)("trim",(function(e){return function(){return e(this,3)}}))},5767:(e,t,n)=>{"use strict";var r=n(3816),o=n(9181),a=n(7057),i=n(2985),s=n(7234),l=n(4728).KEY,u=n(4253),c=n(3825),f=n(2943),p=n(3953),d=n(6314),h=n(8787),m=n(6074),v=n(5541),g=n(4302),y=n(7007),b=n(5286),w=n(508),x=n(2110),E=n(1689),S=n(681),k=n(2503),_=n(9327),O=n(8693),C=n(4548),P=n(9275),j=n(7184),A=O.f,I=P.f,T=_.f,R=r.Symbol,N=r.JSON,M=N&&N.stringify,F=d("_hidden"),L=d("toPrimitive"),D={}.propertyIsEnumerable,z=c("symbol-registry"),U=c("symbols"),V=c("op-symbols"),B=Object.prototype,W="function"==typeof R&&!!C.f,H=r.QObject,$=!H||!H.prototype||!H.prototype.findChild,G=a&&u((function(){return 7!=k(I({},"a",{get:function(){return I(this,"a",{value:7}).a}})).a}))?function(e,t,n){var r=A(B,t);r&&delete B[t],I(e,t,n),r&&e!==B&&I(B,t,r)}:I,Y=function(e){var t=U[e]=k(R.prototype);return t._k=e,t},q=W&&"symbol"==typeof R.iterator?function(e){return"symbol"==typeof e}:function(e){return e instanceof R},Q=function(e,t,n){return e===B&&Q(V,t,n),y(e),t=E(t,!0),y(n),o(U,t)?(n.enumerable?(o(e,F)&&e[F][t]&&(e[F][t]=!1),n=k(n,{enumerable:S(0,!1)})):(o(e,F)||I(e,F,S(1,{})),e[F][t]=!0),G(e,t,n)):I(e,t,n)},X=function(e,t){y(e);for(var n,r=v(t=x(t)),o=0,a=r.length;a>o;)Q(e,n=r[o++],t[n]);return e},K=function(e){var t=D.call(this,e=E(e,!0));return!(this===B&&o(U,e)&&!o(V,e))&&(!(t||!o(this,e)||!o(U,e)||o(this,F)&&this[F][e])||t)},J=function(e,t){if(e=x(e),t=E(t,!0),e!==B||!o(U,t)||o(V,t)){var n=A(e,t);return!n||!o(U,t)||o(e,F)&&e[F][t]||(n.enumerable=!0),n}},Z=function(e){for(var t,n=T(x(e)),r=[],a=0;n.length>a;)o(U,t=n[a++])||t==F||t==l||r.push(t);return r},ee=function(e){for(var t,n=e===B,r=T(n?V:x(e)),a=[],i=0;r.length>i;)!o(U,t=r[i++])||n&&!o(B,t)||a.push(U[t]);return a};W||(s((R=function(){if(this instanceof R)throw TypeError("Symbol is not a constructor!");var e=p(arguments.length>0?arguments[0]:void 0),t=function(n){this===B&&t.call(V,n),o(this,F)&&o(this[F],e)&&(this[F][e]=!1),G(this,e,S(1,n))};return a&&$&&G(B,e,{configurable:!0,set:t}),Y(e)}).prototype,"toString",(function(){return this._k})),O.f=J,P.f=Q,n(616).f=_.f=Z,n(4682).f=K,C.f=ee,a&&!n(4461)&&s(B,"propertyIsEnumerable",K,!0),h.f=function(e){return Y(d(e))}),i(i.G+i.W+i.F*!W,{Symbol:R});for(var te="hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),ne=0;te.length>ne;)d(te[ne++]);for(var re=j(d.store),oe=0;re.length>oe;)m(re[oe++]);i(i.S+i.F*!W,"Symbol",{for:function(e){return o(z,e+="")?z[e]:z[e]=R(e)},keyFor:function(e){if(!q(e))throw TypeError(e+" is not a symbol!");for(var t in z)if(z[t]===e)return t},useSetter:function(){$=!0},useSimple:function(){$=!1}}),i(i.S+i.F*!W,"Object",{create:function(e,t){return void 0===t?k(e):X(k(e),t)},defineProperty:Q,defineProperties:X,getOwnPropertyDescriptor:J,getOwnPropertyNames:Z,getOwnPropertySymbols:ee});var ae=u((function(){C.f(1)}));i(i.S+i.F*ae,"Object",{getOwnPropertySymbols:function(e){return C.f(w(e))}}),N&&i(i.S+i.F*(!W||u((function(){var e=R();return"[null]"!=M([e])||"{}"!=M({a:e})||"{}"!=M(Object(e))}))),"JSON",{stringify:function(e){for(var t,n,r=[e],o=1;arguments.length>o;)r.push(arguments[o++]);if(n=t=r[1],(b(t)||void 0!==e)&&!q(e))return g(t)||(t=function(e,t){if("function"==typeof n&&(t=n.call(this,e,t)),!q(t))return t}),r[1]=t,M.apply(N,r)}}),R.prototype[L]||n(7728)(R.prototype,L,R.prototype.valueOf),f(R,"Symbol"),f(Math,"Math",!0),f(r.JSON,"JSON",!0)},142:(e,t,n)=>{"use strict";var r=n(2985),o=n(9383),a=n(1125),i=n(7007),s=n(2337),l=n(875),u=n(5286),c=n(3816).ArrayBuffer,f=n(8364),p=a.ArrayBuffer,d=a.DataView,h=o.ABV&&c.isView,m=p.prototype.slice,v=o.VIEW,g="ArrayBuffer";r(r.G+r.W+r.F*(c!==p),{ArrayBuffer:p}),r(r.S+r.F*!o.CONSTR,g,{isView:function(e){return h&&h(e)||u(e)&&v in e}}),r(r.P+r.U+r.F*n(4253)((function(){return!new p(2).slice(1,void 0).byteLength})),g,{slice:function(e,t){if(void 0!==m&&void 0===t)return m.call(i(this),e);for(var n=i(this).byteLength,r=s(e,n),o=s(void 0===t?n:t,n),a=new(f(this,p))(l(o-r)),u=new d(this),c=new d(a),h=0;r<o;)c.setUint8(h++,u.getUint8(r++));return a}}),n(2974)(g)},1786:(e,t,n)=>{var r=n(2985);r(r.G+r.W+r.F*!n(9383).ABV,{DataView:n(1125).DataView})},162:(e,t,n)=>{n(8440)("Float32",4,(function(e){return function(t,n,r){return e(this,t,n,r)}}))},3834:(e,t,n)=>{n(8440)("Float64",8,(function(e){return function(t,n,r){return e(this,t,n,r)}}))},4821:(e,t,n)=>{n(8440)("Int16",2,(function(e){return function(t,n,r){return e(this,t,n,r)}}))},1303:(e,t,n)=>{n(8440)("Int32",4,(function(e){return function(t,n,r){return e(this,t,n,r)}}))},5368:(e,t,n)=>{n(8440)("Int8",1,(function(e){return function(t,n,r){return e(this,t,n,r)}}))},9103:(e,t,n)=>{n(8440)("Uint16",2,(function(e){return function(t,n,r){return e(this,t,n,r)}}))},3318:(e,t,n)=>{n(8440)("Uint32",4,(function(e){return function(t,n,r){return e(this,t,n,r)}}))},6964:(e,t,n)=>{n(8440)("Uint8",1,(function(e){return function(t,n,r){return e(this,t,n,r)}}))},2152:(e,t,n)=>{n(8440)("Uint8",1,(function(e){return function(t,n,r){return e(this,t,n,r)}}),!0)},147:(e,t,n)=>{"use strict";var r,o=n(3816),a=n(50)(0),i=n(7234),s=n(4728),l=n(5345),u=n(3657),c=n(5286),f=n(1616),p=n(1616),d=!o.ActiveXObject&&"ActiveXObject"in o,h="WeakMap",m=s.getWeak,v=Object.isExtensible,g=u.ufstore,y=function(e){return function(){return e(this,arguments.length>0?arguments[0]:void 0)}},b={get:function(e){if(c(e)){var t=m(e);return!0===t?g(f(this,h)).get(e):t?t[this._i]:void 0}},set:function(e,t){return u.def(f(this,h),e,t)}},w=e.exports=n(5795)(h,y,b,u,!0,!0);p&&d&&(l((r=u.getConstructor(y,h)).prototype,b),s.NEED=!0,a(["delete","has","get","set"],(function(e){var t=w.prototype,n=t[e];i(t,e,(function(t,o){if(c(t)&&!v(t)){this._f||(this._f=new r);var a=this._f[e](t,o);return"set"==e?this:a}return n.call(this,t,o)}))})))},9192:(e,t,n)=>{"use strict";var r=n(3657),o=n(1616),a="WeakSet";n(5795)(a,(function(e){return function(){return e(this,arguments.length>0?arguments[0]:void 0)}}),{add:function(e){return r.def(o(this,a),e,!0)}},r,!1,!0)},1268:(e,t,n)=>{"use strict";var r=n(2985),o=n(3325),a=n(508),i=n(875),s=n(4963),l=n(6886);r(r.P,"Array",{flatMap:function(e){var t,n,r=a(this);return s(e),t=i(r.length),n=l(r,0),o(n,r,r,t,0,1,e,arguments[1]),n}}),n(7722)("flatMap")},2773:(e,t,n)=>{"use strict";var r=n(2985),o=n(9315)(!0);r(r.P,"Array",{includes:function(e){return o(this,e,arguments.length>1?arguments[1]:void 0)}}),n(7722)("includes")},3276:(e,t,n)=>{var r=n(2985),o=n(1131)(!0);r(r.S,"Object",{entries:function(e){return o(e)}})},8351:(e,t,n)=>{var r=n(2985),o=n(7643),a=n(2110),i=n(8693),s=n(2811);r(r.S,"Object",{getOwnPropertyDescriptors:function(e){for(var t,n,r=a(e),l=i.f,u=o(r),c={},f=0;u.length>f;)void 0!==(n=l(r,t=u[f++]))&&s(c,t,n);return c}})},6409:(e,t,n)=>{var r=n(2985),o=n(1131)(!1);r(r.S,"Object",{values:function(e){return o(e)}})},9865:(e,t,n)=>{"use strict";var r=n(2985),o=n(5645),a=n(3816),i=n(8364),s=n(94);r(r.P+r.R,"Promise",{finally:function(e){var t=i(this,o.Promise||a.Promise),n="function"==typeof e;return this.then(n?function(n){return s(t,e()).then((function(){return n}))}:e,n?function(n){return s(t,e()).then((function(){throw n}))}:e)}})},2770:(e,t,n)=>{"use strict";var r=n(2985),o=n(5442),a=n(575),i=/Version\/10\.\d+(\.\d+)?( Mobile\/\w+)? Safari\//.test(a);r(r.P+r.F*i,"String",{padEnd:function(e){return o(this,e,arguments.length>1?arguments[1]:void 0,!1)}})},1784:(e,t,n)=>{"use strict";var r=n(2985),o=n(5442),a=n(575),i=/Version\/10\.\d+(\.\d+)?( Mobile\/\w+)? Safari\//.test(a);r(r.P+r.F*i,"String",{padStart:function(e){return o(this,e,arguments.length>1?arguments[1]:void 0,!0)}})},5869:(e,t,n)=>{"use strict";n(9599)("trimLeft",(function(e){return function(){return e(this,1)}}),"trimStart")},4325:(e,t,n)=>{"use strict";n(9599)("trimRight",(function(e){return function(){return e(this,2)}}),"trimEnd")},9665:(e,t,n)=>{n(6074)("asyncIterator")},1181:(e,t,n)=>{for(var r=n(6997),o=n(7184),a=n(7234),i=n(3816),s=n(7728),l=n(2803),u=n(6314),c=u("iterator"),f=u("toStringTag"),p=l.Array,d={CSSRuleList:!0,CSSStyleDeclaration:!1,CSSValueList:!1,ClientRectList:!1,DOMRectList:!1,DOMStringList:!1,DOMTokenList:!0,DataTransferItemList:!1,FileList:!1,HTMLAllCollection:!1,HTMLCollection:!1,HTMLFormElement:!1,HTMLSelectElement:!1,MediaList:!0,MimeTypeArray:!1,NamedNodeMap:!1,NodeList:!0,PaintRequestList:!1,Plugin:!1,PluginArray:!1,SVGLengthList:!1,SVGNumberList:!1,SVGPathSegList:!1,SVGPointList:!1,SVGStringList:!1,SVGTransformList:!1,SourceBufferList:!1,StyleSheetList:!0,TextTrackCueList:!1,TextTrackList:!1,TouchList:!1},h=o(d),m=0;m<h.length;m++){var v,g=h[m],y=d[g],b=i[g],w=b&&b.prototype;if(w&&(w[c]||s(w,c,p),w[f]||s(w,f,g),l[g]=p,y))for(v in r)w[v]||a(w,v,r[v],!0)}},4633:(e,t,n)=>{var r=n(2985),o=n(4193);r(r.G+r.B,{setImmediate:o.set,clearImmediate:o.clear})},2564:(e,t,n)=>{var r=n(3816),o=n(2985),a=n(575),i=[].slice,s=/MSIE .\./.test(a),l=function(e){return function(t,n){var r=arguments.length>2,o=!!r&&i.call(arguments,2);return e(r?function(){("function"==typeof t?t:Function(t)).apply(this,o)}:t,n)}};o(o.G+o.B+o.F*s,{setTimeout:l(r.setTimeout),setInterval:l(r.setInterval)})},6337:(e,t,n)=>{n(2564),n(4633),n(1181),e.exports=n(5645)},8679:(e,t,n)=>{"use strict";var r=n(1296),o={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},a={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},i={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},s={};function l(e){return r.isMemo(e)?i:s[e.$$typeof]||o}s[r.ForwardRef]={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},s[r.Memo]=i;var u=Object.defineProperty,c=Object.getOwnPropertyNames,f=Object.getOwnPropertySymbols,p=Object.getOwnPropertyDescriptor,d=Object.getPrototypeOf,h=Object.prototype;e.exports=function e(t,n,r){if("string"!=typeof n){if(h){var o=d(n);o&&o!==h&&e(t,o,r)}var i=c(n);f&&(i=i.concat(f(n)));for(var s=l(t),m=l(n),v=0;v<i.length;++v){var g=i[v];if(!(a[g]||r&&r[g]||m&&m[g]||s&&s[g])){var y=p(n,g);try{u(t,g,y)}catch(e){}}}}return t}},6103:(e,t)=>{"use strict";var n="function"==typeof Symbol&&Symbol.for,r=n?Symbol.for("react.element"):60103,o=n?Symbol.for("react.portal"):60106,a=n?Symbol.for("react.fragment"):60107,i=n?Symbol.for("react.strict_mode"):60108,s=n?Symbol.for("react.profiler"):60114,l=n?Symbol.for("react.provider"):60109,u=n?Symbol.for("react.context"):60110,c=n?Symbol.for("react.async_mode"):60111,f=n?Symbol.for("react.concurrent_mode"):60111,p=n?Symbol.for("react.forward_ref"):60112,d=n?Symbol.for("react.suspense"):60113,h=n?Symbol.for("react.suspense_list"):60120,m=n?Symbol.for("react.memo"):60115,v=n?Symbol.for("react.lazy"):60116,g=n?Symbol.for("react.block"):60121,y=n?Symbol.for("react.fundamental"):60117,b=n?Symbol.for("react.responder"):60118,w=n?Symbol.for("react.scope"):60119;function x(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case r:switch(e=e.type){case c:case f:case a:case s:case i:case d:return e;default:switch(e=e&&e.$$typeof){case u:case p:case v:case m:case l:return e;default:return t}}case o:return t}}}function E(e){return x(e)===f}t.AsyncMode=c,t.ConcurrentMode=f,t.ContextConsumer=u,t.ContextProvider=l,t.Element=r,t.ForwardRef=p,t.Fragment=a,t.Lazy=v,t.Memo=m,t.Portal=o,t.Profiler=s,t.StrictMode=i,t.Suspense=d,t.isAsyncMode=function(e){return E(e)||x(e)===c},t.isConcurrentMode=E,t.isContextConsumer=function(e){return x(e)===u},t.isContextProvider=function(e){return x(e)===l},t.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===r},t.isForwardRef=function(e){return x(e)===p},t.isFragment=function(e){return x(e)===a},t.isLazy=function(e){return x(e)===v},t.isMemo=function(e){return x(e)===m},t.isPortal=function(e){return x(e)===o},t.isProfiler=function(e){return x(e)===s},t.isStrictMode=function(e){return x(e)===i},t.isSuspense=function(e){return x(e)===d},t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===a||e===f||e===s||e===i||e===d||e===h||"object"==typeof e&&null!==e&&(e.$$typeof===v||e.$$typeof===m||e.$$typeof===l||e.$$typeof===u||e.$$typeof===p||e.$$typeof===y||e.$$typeof===b||e.$$typeof===w||e.$$typeof===g)},t.typeOf=x},1296:(e,t,n)=>{"use strict";e.exports=n(6103)},8552:(e,t,n)=>{var r=n(852)(n(5639),"DataView");e.exports=r},1989:(e,t,n)=>{var r=n(1789),o=n(401),a=n(7667),i=n(1327),s=n(1866);function l(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}l.prototype.clear=r,l.prototype.delete=o,l.prototype.get=a,l.prototype.has=i,l.prototype.set=s,e.exports=l},8407:(e,t,n)=>{var r=n(7040),o=n(4125),a=n(2117),i=n(7518),s=n(4705);function l(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}l.prototype.clear=r,l.prototype.delete=o,l.prototype.get=a,l.prototype.has=i,l.prototype.set=s,e.exports=l},7071:(e,t,n)=>{var r=n(852)(n(5639),"Map");e.exports=r},886:(e,t,n)=>{var r=n(4785),o=n(1285),a=n(6e3),i=n(9916),s=n(5265);function l(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}l.prototype.clear=r,l.prototype.delete=o,l.prototype.get=a,l.prototype.has=i,l.prototype.set=s,e.exports=l},3818:(e,t,n)=>{var r=n(852)(n(5639),"Promise");e.exports=r},8525:(e,t,n)=>{var r=n(852)(n(5639),"Set");e.exports=r},8668:(e,t,n)=>{var r=n(886),o=n(619),a=n(2385);function i(e){var t=-1,n=null==e?0:e.length;for(this.__data__=new r;++t<n;)this.add(e[t])}i.prototype.add=i.prototype.push=o,i.prototype.has=a,e.exports=i},6384:(e,t,n)=>{var r=n(8407),o=n(7465),a=n(3779),i=n(7599),s=n(4758),l=n(4309);function u(e){var t=this.__data__=new r(e);this.size=t.size}u.prototype.clear=o,u.prototype.delete=a,u.prototype.get=i,u.prototype.has=s,u.prototype.set=l,e.exports=u},2705:(e,t,n)=>{var r=n(5639).Symbol;e.exports=r},1149:(e,t,n)=>{var r=n(5639).Uint8Array;e.exports=r},577:(e,t,n)=>{var r=n(852)(n(5639),"WeakMap");e.exports=r},4174:e=>{e.exports=function(e,t,n,r){for(var o=-1,a=null==e?0:e.length;++o<a;){var i=e[o];t(r,i,n(i),e)}return r}},196:e=>{e.exports=function(e,t){for(var n=-1,r=null==e?0:e.length,o=0,a=[];++n<r;){var i=e[n];t(i,n,e)&&(a[o++]=i)}return a}},4636:(e,t,n)=>{var r=n(2545),o=n(5694),a=n(1469),i=n(4144),s=n(5776),l=n(6719),u=Object.prototype.hasOwnProperty;e.exports=function(e,t){var n=a(e),c=!n&&o(e),f=!n&&!c&&i(e),p=!n&&!c&&!f&&l(e),d=n||c||f||p,h=d?r(e.length,String):[],m=h.length;for(var v in e)!t&&!u.call(e,v)||d&&("length"==v||f&&("offset"==v||"parent"==v)||p&&("buffer"==v||"byteLength"==v||"byteOffset"==v)||s(v,m))||h.push(v);return h}},9932:e=>{e.exports=function(e,t){for(var n=-1,r=null==e?0:e.length,o=Array(r);++n<r;)o[n]=t(e[n],n,e);return o}},2488:e=>{e.exports=function(e,t){for(var n=-1,r=t.length,o=e.length;++n<r;)e[o+n]=t[n];return e}},2908:e=>{e.exports=function(e,t){for(var n=-1,r=null==e?0:e.length;++n<r;)if(t(e[n],n,e))return!0;return!1}},8983:(e,t,n)=>{var r=n(371)("length");e.exports=r},4286:e=>{e.exports=function(e){return e.split("")}},8470:(e,t,n)=>{var r=n(7813);e.exports=function(e,t){for(var n=e.length;n--;)if(r(e[n][0],t))return n;return-1}},1119:(e,t,n)=>{var r=n(9881);e.exports=function(e,t,n,o){return r(e,(function(e,r,a){t(o,e,n(e),a)})),o}},9465:(e,t,n)=>{var r=n(8777);e.exports=function(e,t,n){"__proto__"==t&&r?r(e,t,{configurable:!0,enumerable:!0,value:n,writable:!0}):e[t]=n}},9881:(e,t,n)=>{var r=n(7816),o=n(9291)(r);e.exports=o},760:(e,t,n)=>{var r=n(9881);e.exports=function(e,t){var n=[];return r(e,(function(e,r,o){t(e,r,o)&&n.push(e)})),n}},1848:e=>{e.exports=function(e,t,n,r){for(var o=e.length,a=n+(r?1:-1);r?a--:++a<o;)if(t(e[a],a,e))return a;return-1}},8483:(e,t,n)=>{var r=n(5063)();e.exports=r},7816:(e,t,n)=>{var r=n(8483),o=n(3674);e.exports=function(e,t){return e&&r(e,t,o)}},7786:(e,t,n)=>{var r=n(1811),o=n(327);e.exports=function(e,t){for(var n=0,a=(t=r(t,e)).length;null!=e&&n<a;)e=e[o(t[n++])];return n&&n==a?e:void 0}},8866:(e,t,n)=>{var r=n(2488),o=n(1469);e.exports=function(e,t,n){var a=t(e);return o(e)?a:r(a,n(e))}},4239:(e,t,n)=>{var r=n(2705),o=n(9607),a=n(2333),i=r?r.toStringTag:void 0;e.exports=function(e){return null==e?void 0===e?"[object Undefined]":"[object Null]":i&&i in Object(e)?o(e):a(e)}},8565:e=>{var t=Object.prototype.hasOwnProperty;e.exports=function(e,n){return null!=e&&t.call(e,n)}},13:e=>{e.exports=function(e,t){return null!=e&&t in Object(e)}},9454:(e,t,n)=>{var r=n(4239),o=n(7005);e.exports=function(e){return o(e)&&"[object Arguments]"==r(e)}},939:(e,t,n)=>{var r=n(2492),o=n(7005);e.exports=function e(t,n,a,i,s){return t===n||(null==t||null==n||!o(t)&&!o(n)?t!=t&&n!=n:r(t,n,a,i,e,s))}},2492:(e,t,n)=>{var r=n(6384),o=n(7114),a=n(1974),i=n(6096),s=n(8882),l=n(1469),u=n(4144),c=n(6719),f="[object Arguments]",p="[object Array]",d="[object Object]",h=Object.prototype.hasOwnProperty;e.exports=function(e,t,n,m,v,g){var y=l(e),b=l(t),w=y?p:s(e),x=b?p:s(t),E=(w=w==f?d:w)==d,S=(x=x==f?d:x)==d,k=w==x;if(k&&u(e)){if(!u(t))return!1;y=!0,E=!1}if(k&&!E)return g||(g=new r),y||c(e)?o(e,t,n,m,v,g):a(e,t,w,n,m,v,g);if(!(1&n)){var _=E&&h.call(e,"__wrapped__"),O=S&&h.call(t,"__wrapped__");if(_||O){var C=_?e.value():e,P=O?t.value():t;return g||(g=new r),v(C,P,n,m,g)}}return!!k&&(g||(g=new r),i(e,t,n,m,v,g))}},2958:(e,t,n)=>{var r=n(6384),o=n(939);e.exports=function(e,t,n,a){var i=n.length,s=i,l=!a;if(null==e)return!s;for(e=Object(e);i--;){var u=n[i];if(l&&u[2]?u[1]!==e[u[0]]:!(u[0]in e))return!1}for(;++i<s;){var c=(u=n[i])[0],f=e[c],p=u[1];if(l&&u[2]){if(void 0===f&&!(c in e))return!1}else{var d=new r;if(a)var h=a(f,p,c,e,t,d);if(!(void 0===h?o(p,f,3,a,d):h))return!1}}return!0}},8458:(e,t,n)=>{var r=n(3560),o=n(5346),a=n(9152),i=n(346),s=/^\[object .+?Constructor\]$/,l=Function.prototype,u=Object.prototype,c=l.toString,f=u.hasOwnProperty,p=RegExp("^"+c.call(f).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");e.exports=function(e){return!(!a(e)||o(e))&&(r(e)?p:s).test(i(e))}},3933:(e,t,n)=>{var r=n(4239),o=n(7005);e.exports=function(e){return o(e)&&"[object RegExp]"==r(e)}},8749:(e,t,n)=>{var r=n(4239),o=n(1780),a=n(7005),i={};i["[object Float32Array]"]=i["[object Float64Array]"]=i["[object Int8Array]"]=i["[object Int16Array]"]=i["[object Int32Array]"]=i["[object Uint8Array]"]=i["[object Uint8ClampedArray]"]=i["[object Uint16Array]"]=i["[object Uint32Array]"]=!0,i["[object Arguments]"]=i["[object Array]"]=i["[object ArrayBuffer]"]=i["[object Boolean]"]=i["[object DataView]"]=i["[object Date]"]=i["[object Error]"]=i["[object Function]"]=i["[object Map]"]=i["[object Number]"]=i["[object Object]"]=i["[object RegExp]"]=i["[object Set]"]=i["[object String]"]=i["[object WeakMap]"]=!1,e.exports=function(e){return a(e)&&o(e.length)&&!!i[r(e)]}},7206:(e,t,n)=>{var r=n(1573),o=n(6432),a=n(6557),i=n(1469),s=n(9601);e.exports=function(e){return"function"==typeof e?e:null==e?a:"object"==typeof e?i(e)?o(e[0],e[1]):r(e):s(e)}},280:(e,t,n)=>{var r=n(5726),o=n(6916),a=Object.prototype.hasOwnProperty;e.exports=function(e){if(!r(e))return o(e);var t=[];for(var n in Object(e))a.call(e,n)&&"constructor"!=n&&t.push(n);return t}},1573:(e,t,n)=>{var r=n(2958),o=n(1499),a=n(2634);e.exports=function(e){var t=o(e);return 1==t.length&&t[0][2]?a(t[0][0],t[0][1]):function(n){return n===e||r(n,e,t)}}},6432:(e,t,n)=>{var r=n(939),o=n(7361),a=n(9095),i=n(5403),s=n(9162),l=n(2634),u=n(327);e.exports=function(e,t){return i(e)&&s(t)?l(u(e),t):function(n){var i=o(n,e);return void 0===i&&i===t?a(n,e):r(t,i,3)}}},371:e=>{e.exports=function(e){return function(t){return null==t?void 0:t[e]}}},6374:(e,t,n)=>{var r=n(7786);e.exports=function(e){return function(t){return r(t,e)}}},4259:e=>{e.exports=function(e,t,n){var r=-1,o=e.length;t<0&&(t=-t>o?0:o+t),(n=n>o?o:n)<0&&(n+=o),o=t>n?0:n-t>>>0,t>>>=0;for(var a=Array(o);++r<o;)a[r]=e[r+t];return a}},2545:e=>{e.exports=function(e,t){for(var n=-1,r=Array(e);++n<e;)r[n]=t(n);return r}},531:(e,t,n)=>{var r=n(2705),o=n(9932),a=n(1469),i=n(3448),s=r?r.prototype:void 0,l=s?s.toString:void 0;e.exports=function e(t){if("string"==typeof t)return t;if(a(t))return o(t,e)+"";if(i(t))return l?l.call(t):"";var n=t+"";return"0"==n&&1/t==-1/0?"-0":n}},7561:(e,t,n)=>{var r=n(7990),o=/^\s+/;e.exports=function(e){return e?e.slice(0,r(e)+1).replace(o,""):e}},1717:e=>{e.exports=function(e){return function(t){return e(t)}}},4757:e=>{e.exports=function(e,t){return e.has(t)}},1811:(e,t,n)=>{var r=n(1469),o=n(5403),a=n(5514),i=n(9833);e.exports=function(e,t){return r(e)?e:o(e,t)?[e]:a(i(e))}},180:(e,t,n)=>{var r=n(4259);e.exports=function(e,t,n){var o=e.length;return n=void 0===n?o:n,!t&&n>=o?e:r(e,t,n)}},4429:(e,t,n)=>{var r=n(5639)["__core-js_shared__"];e.exports=r},5189:(e,t,n)=>{var r=n(4174),o=n(1119),a=n(7206),i=n(1469);e.exports=function(e,t){return function(n,s){var l=i(n)?r:o,u=t?t():{};return l(n,e,a(s,2),u)}}},9291:(e,t,n)=>{var r=n(8612);e.exports=function(e,t){return function(n,o){if(null==n)return n;if(!r(n))return e(n,o);for(var a=n.length,i=t?a:-1,s=Object(n);(t?i--:++i<a)&&!1!==o(s[i],i,s););return n}}},5063:e=>{e.exports=function(e){return function(t,n,r){for(var o=-1,a=Object(t),i=r(t),s=i.length;s--;){var l=i[e?s:++o];if(!1===n(a[l],l,a))break}return t}}},7740:(e,t,n)=>{var r=n(7206),o=n(8612),a=n(3674);e.exports=function(e){return function(t,n,i){var s=Object(t);if(!o(t)){var l=r(n,3);t=a(t),n=function(e){return l(s[e],e,s)}}var u=e(t,n,i);return u>-1?s[l?t[u]:u]:void 0}}},8777:(e,t,n)=>{var r=n(852),o=function(){try{var e=r(Object,"defineProperty");return e({},"",{}),e}catch(e){}}();e.exports=o},7114:(e,t,n)=>{var r=n(8668),o=n(2908),a=n(4757);e.exports=function(e,t,n,i,s,l){var u=1&n,c=e.length,f=t.length;if(c!=f&&!(u&&f>c))return!1;var p=l.get(e),d=l.get(t);if(p&&d)return p==t&&d==e;var h=-1,m=!0,v=2&n?new r:void 0;for(l.set(e,t),l.set(t,e);++h<c;){var g=e[h],y=t[h];if(i)var b=u?i(y,g,h,t,e,l):i(g,y,h,e,t,l);if(void 0!==b){if(b)continue;m=!1;break}if(v){if(!o(t,(function(e,t){if(!a(v,t)&&(g===e||s(g,e,n,i,l)))return v.push(t)}))){m=!1;break}}else if(g!==y&&!s(g,y,n,i,l)){m=!1;break}}return l.delete(e),l.delete(t),m}},1974:(e,t,n)=>{var r=n(2705),o=n(1149),a=n(7813),i=n(7114),s=n(8776),l=n(1814),u=r?r.prototype:void 0,c=u?u.valueOf:void 0;e.exports=function(e,t,n,r,u,f,p){switch(n){case"[object DataView]":if(e.byteLength!=t.byteLength||e.byteOffset!=t.byteOffset)return!1;e=e.buffer,t=t.buffer;case"[object ArrayBuffer]":return!(e.byteLength!=t.byteLength||!f(new o(e),new o(t)));case"[object Boolean]":case"[object Date]":case"[object Number]":return a(+e,+t);case"[object Error]":return e.name==t.name&&e.message==t.message;case"[object RegExp]":case"[object String]":return e==t+"";case"[object Map]":var d=s;case"[object Set]":var h=1&r;if(d||(d=l),e.size!=t.size&&!h)return!1;var m=p.get(e);if(m)return m==t;r|=2,p.set(e,t);var v=i(d(e),d(t),r,u,f,p);return p.delete(e),v;case"[object Symbol]":if(c)return c.call(e)==c.call(t)}return!1}},6096:(e,t,n)=>{var r=n(8234),o=Object.prototype.hasOwnProperty;e.exports=function(e,t,n,a,i,s){var l=1&n,u=r(e),c=u.length;if(c!=r(t).length&&!l)return!1;for(var f=c;f--;){var p=u[f];if(!(l?p in t:o.call(t,p)))return!1}var d=s.get(e),h=s.get(t);if(d&&h)return d==t&&h==e;var m=!0;s.set(e,t),s.set(t,e);for(var v=l;++f<c;){var g=e[p=u[f]],y=t[p];if(a)var b=l?a(y,g,p,t,e,s):a(g,y,p,e,t,s);if(!(void 0===b?g===y||i(g,y,n,a,s):b)){m=!1;break}v||(v="constructor"==p)}if(m&&!v){var w=e.constructor,x=t.constructor;w==x||!("constructor"in e)||!("constructor"in t)||"function"==typeof w&&w instanceof w&&"function"==typeof x&&x instanceof x||(m=!1)}return s.delete(e),s.delete(t),m}},1957:(e,t,n)=>{var r="object"==typeof n.g&&n.g&&n.g.Object===Object&&n.g;e.exports=r},8234:(e,t,n)=>{var r=n(8866),o=n(9551),a=n(3674);e.exports=function(e){return r(e,a,o)}},5050:(e,t,n)=>{var r=n(7019);e.exports=function(e,t){var n=e.__data__;return r(t)?n["string"==typeof t?"string":"hash"]:n.map}},1499:(e,t,n)=>{var r=n(9162),o=n(3674);e.exports=function(e){for(var t=o(e),n=t.length;n--;){var a=t[n],i=e[a];t[n]=[a,i,r(i)]}return t}},852:(e,t,n)=>{var r=n(8458),o=n(7801);e.exports=function(e,t){var n=o(e,t);return r(n)?n:void 0}},9607:(e,t,n)=>{var r=n(2705),o=Object.prototype,a=o.hasOwnProperty,i=o.toString,s=r?r.toStringTag:void 0;e.exports=function(e){var t=a.call(e,s),n=e[s];try{e[s]=void 0;var r=!0}catch(e){}var o=i.call(e);return r&&(t?e[s]=n:delete e[s]),o}},9551:(e,t,n)=>{var r=n(196),o=n(479),a=Object.prototype.propertyIsEnumerable,i=Object.getOwnPropertySymbols,s=i?function(e){return null==e?[]:(e=Object(e),r(i(e),(function(t){return a.call(e,t)})))}:o;e.exports=s},8882:(e,t,n)=>{var r=n(8552),o=n(7071),a=n(3818),i=n(8525),s=n(577),l=n(4239),u=n(346),c="[object Map]",f="[object Promise]",p="[object Set]",d="[object WeakMap]",h="[object DataView]",m=u(r),v=u(o),g=u(a),y=u(i),b=u(s),w=l;(r&&w(new r(new ArrayBuffer(1)))!=h||o&&w(new o)!=c||a&&w(a.resolve())!=f||i&&w(new i)!=p||s&&w(new s)!=d)&&(w=function(e){var t=l(e),n="[object Object]"==t?e.constructor:void 0,r=n?u(n):"";if(r)switch(r){case m:return h;case v:return c;case g:return f;case y:return p;case b:return d}return t}),e.exports=w},7801:e=>{e.exports=function(e,t){return null==e?void 0:e[t]}},222:(e,t,n)=>{var r=n(1811),o=n(5694),a=n(1469),i=n(5776),s=n(1780),l=n(327);e.exports=function(e,t,n){for(var u=-1,c=(t=r(t,e)).length,f=!1;++u<c;){var p=l(t[u]);if(!(f=null!=e&&n(e,p)))break;e=e[p]}return f||++u!=c?f:!!(c=null==e?0:e.length)&&s(c)&&i(p,c)&&(a(e)||o(e))}},2689:e=>{var t=RegExp("[\\u200d\\ud800-\\udfff\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff\\ufe0e\\ufe0f]");e.exports=function(e){return t.test(e)}},1789:(e,t,n)=>{var r=n(4536);e.exports=function(){this.__data__=r?r(null):{},this.size=0}},401:e=>{e.exports=function(e){var t=this.has(e)&&delete this.__data__[e];return this.size-=t?1:0,t}},7667:(e,t,n)=>{var r=n(4536),o=Object.prototype.hasOwnProperty;e.exports=function(e){var t=this.__data__;if(r){var n=t[e];return"__lodash_hash_undefined__"===n?void 0:n}return o.call(t,e)?t[e]:void 0}},1327:(e,t,n)=>{var r=n(4536),o=Object.prototype.hasOwnProperty;e.exports=function(e){var t=this.__data__;return r?void 0!==t[e]:o.call(t,e)}},1866:(e,t,n)=>{var r=n(4536);e.exports=function(e,t){var n=this.__data__;return this.size+=this.has(e)?0:1,n[e]=r&&void 0===t?"__lodash_hash_undefined__":t,this}},5776:e=>{var t=/^(?:0|[1-9]\d*)$/;e.exports=function(e,n){var r=typeof e;return!!(n=null==n?9007199254740991:n)&&("number"==r||"symbol"!=r&&t.test(e))&&e>-1&&e%1==0&&e<n}},5403:(e,t,n)=>{var r=n(1469),o=n(3448),a=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,i=/^\w*$/;e.exports=function(e,t){if(r(e))return!1;var n=typeof e;return!("number"!=n&&"symbol"!=n&&"boolean"!=n&&null!=e&&!o(e))||i.test(e)||!a.test(e)||null!=t&&e in Object(t)}},7019:e=>{e.exports=function(e){var t=typeof e;return"string"==t||"number"==t||"symbol"==t||"boolean"==t?"__proto__"!==e:null===e}},5346:(e,t,n)=>{var r,o=n(4429),a=(r=/[^.]+$/.exec(o&&o.keys&&o.keys.IE_PROTO||""))?"Symbol(src)_1."+r:"";e.exports=function(e){return!!a&&a in e}},5726:e=>{var t=Object.prototype;e.exports=function(e){var n=e&&e.constructor;return e===("function"==typeof n&&n.prototype||t)}},9162:(e,t,n)=>{var r=n(9152);e.exports=function(e){return e==e&&!r(e)}},7040:e=>{e.exports=function(){this.__data__=[],this.size=0}},4125:(e,t,n)=>{var r=n(8470),o=Array.prototype.splice;e.exports=function(e){var t=this.__data__,n=r(t,e);return!(n<0||(n==t.length-1?t.pop():o.call(t,n,1),--this.size,0))}},2117:(e,t,n)=>{var r=n(8470);e.exports=function(e){var t=this.__data__,n=r(t,e);return n<0?void 0:t[n][1]}},7518:(e,t,n)=>{var r=n(8470);e.exports=function(e){return r(this.__data__,e)>-1}},4705:(e,t,n)=>{var r=n(8470);e.exports=function(e,t){var n=this.__data__,o=r(n,e);return o<0?(++this.size,n.push([e,t])):n[o][1]=t,this}},4785:(e,t,n)=>{var r=n(1989),o=n(8407),a=n(7071);e.exports=function(){this.size=0,this.__data__={hash:new r,map:new(a||o),string:new r}}},1285:(e,t,n)=>{var r=n(5050);e.exports=function(e){var t=r(this,e).delete(e);return this.size-=t?1:0,t}},6e3:(e,t,n)=>{var r=n(5050);e.exports=function(e){return r(this,e).get(e)}},9916:(e,t,n)=>{var r=n(5050);e.exports=function(e){return r(this,e).has(e)}},5265:(e,t,n)=>{var r=n(5050);e.exports=function(e,t){var n=r(this,e),o=n.size;return n.set(e,t),this.size+=n.size==o?0:1,this}},8776:e=>{e.exports=function(e){var t=-1,n=Array(e.size);return e.forEach((function(e,r){n[++t]=[r,e]})),n}},2634:e=>{e.exports=function(e,t){return function(n){return null!=n&&n[e]===t&&(void 0!==t||e in Object(n))}}},4523:(e,t,n)=>{var r=n(5644);e.exports=function(e){var t=r(e,(function(e){return 500===n.size&&n.clear(),e})),n=t.cache;return t}},4536:(e,t,n)=>{var r=n(852)(Object,"create");e.exports=r},6916:(e,t,n)=>{var r=n(5569)(Object.keys,Object);e.exports=r},1167:(e,t,n)=>{e=n.nmd(e);var r=n(1957),o=t&&!t.nodeType&&t,a=o&&e&&!e.nodeType&&e,i=a&&a.exports===o&&r.process,s=function(){try{return a&&a.require&&a.require("util").types||i&&i.binding&&i.binding("util")}catch(e){}}();e.exports=s},2333:e=>{var t=Object.prototype.toString;e.exports=function(e){return t.call(e)}},5569:e=>{e.exports=function(e,t){return function(n){return e(t(n))}}},5639:(e,t,n)=>{var r=n(1957),o="object"==typeof self&&self&&self.Object===Object&&self,a=r||o||Function("return this")();e.exports=a},619:e=>{e.exports=function(e){return this.__data__.set(e,"__lodash_hash_undefined__"),this}},2385:e=>{e.exports=function(e){return this.__data__.has(e)}},1814:e=>{e.exports=function(e){var t=-1,n=Array(e.size);return e.forEach((function(e){n[++t]=e})),n}},7465:(e,t,n)=>{var r=n(8407);e.exports=function(){this.__data__=new r,this.size=0}},3779:e=>{e.exports=function(e){var t=this.__data__,n=t.delete(e);return this.size=t.size,n}},7599:e=>{e.exports=function(e){return this.__data__.get(e)}},4758:e=>{e.exports=function(e){return this.__data__.has(e)}},4309:(e,t,n)=>{var r=n(8407),o=n(7071),a=n(886);e.exports=function(e,t){var n=this.__data__;if(n instanceof r){var i=n.__data__;if(!o||i.length<199)return i.push([e,t]),this.size=++n.size,this;n=this.__data__=new a(i)}return n.set(e,t),this.size=n.size,this}},8016:(e,t,n)=>{var r=n(8983),o=n(2689),a=n(1903);e.exports=function(e){return o(e)?a(e):r(e)}},3140:(e,t,n)=>{var r=n(4286),o=n(2689),a=n(676);e.exports=function(e){return o(e)?a(e):r(e)}},5514:(e,t,n)=>{var r=n(4523),o=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,a=/\\(\\)?/g,i=r((function(e){var t=[];return 46===e.charCodeAt(0)&&t.push(""),e.replace(o,(function(e,n,r,o){t.push(r?o.replace(a,"$1"):n||e)})),t}));e.exports=i},327:(e,t,n)=>{var r=n(3448);e.exports=function(e){if("string"==typeof e||r(e))return e;var t=e+"";return"0"==t&&1/e==-1/0?"-0":t}},346:e=>{var t=Function.prototype.toString;e.exports=function(e){if(null!=e){try{return t.call(e)}catch(e){}try{return e+""}catch(e){}}return""}},7990:e=>{var t=/\s/;e.exports=function(e){for(var n=e.length;n--&&t.test(e.charAt(n)););return n}},1903:e=>{var t="[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]",n="\\ud83c[\\udffb-\\udfff]",r="[^\\ud800-\\udfff]",o="(?:\\ud83c[\\udde6-\\uddff]){2}",a="[\\ud800-\\udbff][\\udc00-\\udfff]",i="(?:"+t+"|"+n+")?",s="[\\ufe0e\\ufe0f]?",l=s+i+"(?:\\u200d(?:"+[r,o,a].join("|")+")"+s+i+")*",u="(?:"+[r+t+"?",t,o,a,"[\\ud800-\\udfff]"].join("|")+")",c=RegExp(n+"(?="+n+")|"+u+l,"g");e.exports=function(e){for(var t=c.lastIndex=0;c.test(e);)++t;return t}},676:e=>{var t="[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]",n="\\ud83c[\\udffb-\\udfff]",r="[^\\ud800-\\udfff]",o="(?:\\ud83c[\\udde6-\\uddff]){2}",a="[\\ud800-\\udbff][\\udc00-\\udfff]",i="(?:"+t+"|"+n+")?",s="[\\ufe0e\\ufe0f]?",l=s+i+"(?:\\u200d(?:"+[r,o,a].join("|")+")"+s+i+")*",u="(?:"+[r+t+"?",t,o,a,"[\\ud800-\\udfff]"].join("|")+")",c=RegExp(n+"(?="+n+")|"+u+l,"g");e.exports=function(e){return e.match(c)||[]}},9995:(e,t,n)=>{var r=n(9465),o=n(5189),a=Object.prototype.hasOwnProperty,i=o((function(e,t,n){a.call(e,n)?++e[n]:r(e,n,1)}));e.exports=i},3279:(e,t,n)=>{var r=n(9152),o=n(7771),a=n(4841),i=Math.max,s=Math.min;e.exports=function(e,t,n){var l,u,c,f,p,d,h=0,m=!1,v=!1,g=!0;if("function"!=typeof e)throw new TypeError("Expected a function");function y(t){var n=l,r=u;return l=u=void 0,h=t,f=e.apply(r,n)}function b(e){return h=e,p=setTimeout(x,t),m?y(e):f}function w(e){var n=e-d;return void 0===d||n>=t||n<0||v&&e-h>=c}function x(){var e=o();if(w(e))return E(e);p=setTimeout(x,function(e){var n=t-(e-d);return v?s(n,c-(e-h)):n}(e))}function E(e){return p=void 0,g&&l?y(e):(l=u=void 0,f)}function S(){var e=o(),n=w(e);if(l=arguments,u=this,d=e,n){if(void 0===p)return b(d);if(v)return clearTimeout(p),p=setTimeout(x,t),y(d)}return void 0===p&&(p=setTimeout(x,t)),f}return t=a(t)||0,r(n)&&(m=!!n.leading,c=(v="maxWait"in n)?i(a(n.maxWait)||0,t):c,g="trailing"in n?!!n.trailing:g),S.cancel=function(){void 0!==p&&clearTimeout(p),h=0,l=d=u=p=void 0},S.flush=function(){return void 0===p?f:E(o())},S}},7813:e=>{e.exports=function(e,t){return e===t||e!=e&&t!=t}},3105:(e,t,n)=>{var r=n(196),o=n(760),a=n(7206),i=n(1469);e.exports=function(e,t){return(i(e)?r:o)(e,a(t,3))}},3311:(e,t,n)=>{var r=n(7740)(n(998));e.exports=r},998:(e,t,n)=>{var r=n(1848),o=n(7206),a=n(554),i=Math.max;e.exports=function(e,t,n){var s=null==e?0:e.length;if(!s)return-1;var l=null==n?0:a(n);return l<0&&(l=i(s+l,0)),r(e,o(t,3),l)}},8804:(e,t,n)=>{e.exports=n(1175)},7361:(e,t,n)=>{var r=n(7786);e.exports=function(e,t,n){var o=null==e?void 0:r(e,t);return void 0===o?n:o}},7739:(e,t,n)=>{var r=n(9465),o=n(5189),a=Object.prototype.hasOwnProperty,i=o((function(e,t,n){a.call(e,n)?e[n].push(t):r(e,n,[t])}));e.exports=i},8721:(e,t,n)=>{var r=n(8565),o=n(222);e.exports=function(e,t){return null!=e&&o(e,t,r)}},9095:(e,t,n)=>{var r=n(13),o=n(222);e.exports=function(e,t){return null!=e&&o(e,t,r)}},1175:e=>{e.exports=function(e){return e&&e.length?e[0]:void 0}},6557:e=>{e.exports=function(e){return e}},5694:(e,t,n)=>{var r=n(9454),o=n(7005),a=Object.prototype,i=a.hasOwnProperty,s=a.propertyIsEnumerable,l=r(function(){return arguments}())?r:function(e){return o(e)&&i.call(e,"callee")&&!s.call(e,"callee")};e.exports=l},1469:e=>{var t=Array.isArray;e.exports=t},8612:(e,t,n)=>{var r=n(3560),o=n(1780);e.exports=function(e){return null!=e&&o(e.length)&&!r(e)}},4144:(e,t,n)=>{e=n.nmd(e);var r=n(5639),o=n(5062),a=t&&!t.nodeType&&t,i=a&&e&&!e.nodeType&&e,s=i&&i.exports===a?r.Buffer:void 0,l=(s?s.isBuffer:void 0)||o;e.exports=l},1609:(e,t,n)=>{var r=n(280),o=n(8882),a=n(5694),i=n(1469),s=n(8612),l=n(4144),u=n(5726),c=n(6719),f=Object.prototype.hasOwnProperty;e.exports=function(e){if(null==e)return!0;if(s(e)&&(i(e)||"string"==typeof e||"function"==typeof e.splice||l(e)||c(e)||a(e)))return!e.length;var t=o(e);if("[object Map]"==t||"[object Set]"==t)return!e.size;if(u(e))return!r(e).length;for(var n in e)if(f.call(e,n))return!1;return!0}},3560:(e,t,n)=>{var r=n(4239),o=n(9152);e.exports=function(e){if(!o(e))return!1;var t=r(e);return"[object Function]"==t||"[object GeneratorFunction]"==t||"[object AsyncFunction]"==t||"[object Proxy]"==t}},1780:e=>{e.exports=function(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=9007199254740991}},4293:e=>{e.exports=function(e){return null==e}},9152:e=>{e.exports=function(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}},7005:e=>{e.exports=function(e){return null!=e&&"object"==typeof e}},6347:(e,t,n)=>{var r=n(3933),o=n(1717),a=n(1167),i=a&&a.isRegExp,s=i?o(i):r;e.exports=s},3448:(e,t,n)=>{var r=n(4239),o=n(7005);e.exports=function(e){return"symbol"==typeof e||o(e)&&"[object Symbol]"==r(e)}},6719:(e,t,n)=>{var r=n(8749),o=n(1717),a=n(1167),i=a&&a.isTypedArray,s=i?o(i):r;e.exports=s},4350:(e,t,n)=>{var r=n(9465),o=n(5189)((function(e,t,n){r(e,n,t)}));e.exports=o},3674:(e,t,n)=>{var r=n(4636),o=n(280),a=n(8612);e.exports=function(e){return a(e)?r(e):o(e)}},6604:(e,t,n)=>{var r=n(9465),o=n(7816),a=n(7206);e.exports=function(e,t){var n={};return t=a(t,3),o(e,(function(e,o,a){r(n,o,t(e,o,a))})),n}},5644:(e,t,n)=>{var r=n(886);function o(e,t){if("function"!=typeof e||null!=t&&"function"!=typeof t)throw new TypeError("Expected a function");var n=function(){var r=arguments,o=t?t.apply(this,r):r[0],a=n.cache;if(a.has(o))return a.get(o);var i=e.apply(this,r);return n.cache=a.set(o,i)||a,i};return n.cache=new(o.Cache||r),n}o.Cache=r,e.exports=o},7771:(e,t,n)=>{var r=n(5639);e.exports=function(){return r.Date.now()}},9601:(e,t,n)=>{var r=n(371),o=n(6374),a=n(5403),i=n(327);e.exports=function(e){return a(e)?r(i(e)):o(e)}},479:e=>{e.exports=function(){return[]}},5062:e=>{e.exports=function(){return!1}},8601:(e,t,n)=>{var r=n(4841);e.exports=function(e){return e?Infinity===(e=r(e))||e===-1/0?17976931348623157e292*(e<0?-1:1):e==e?e:0:0===e?e:0}},554:(e,t,n)=>{var r=n(8601);e.exports=function(e){var t=r(e),n=t%1;return t==t?n?t-n:t:0}},4841:(e,t,n)=>{var r=n(7561),o=n(9152),a=n(3448),i=/^[-+]0x[0-9a-f]+$/i,s=/^0b[01]+$/i,l=/^0o[0-7]+$/i,u=parseInt;e.exports=function(e){if("number"==typeof e)return e;if(a(e))return NaN;if(o(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=o(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=r(e);var n=s.test(e);return n||l.test(e)?u(e.slice(2),n?2:8):i.test(e)?NaN:+e}},9833:(e,t,n)=>{var r=n(531);e.exports=function(e){return null==e?"":r(e)}},9138:(e,t,n)=>{var r=n(531),o=n(180),a=n(2689),i=n(9152),s=n(6347),l=n(8016),u=n(3140),c=n(554),f=n(9833),p=/\w*$/;e.exports=function(e,t){var n=30,d="...";if(i(t)){var h="separator"in t?t.separator:h;n="length"in t?c(t.length):n,d="omission"in t?r(t.omission):d}var m=(e=f(e)).length;if(a(e)){var v=u(e);m=v.length}if(n>=m)return e;var g=n-l(d);if(g<1)return d;var y=v?o(v,0,g).join(""):e.slice(0,g);if(void 0===h)return y+d;if(v&&(g+=y.length-g),s(h)){if(e.slice(g).search(h)){var b,w=y;for(h.global||(h=RegExp(h.source,f(p.exec(h))+"g")),h.lastIndex=0;b=h.exec(w);)var x=b.index;y=y.slice(0,void 0===x?g:x)}}else if(e.indexOf(r(h),g)!=g){var E=y.lastIndexOf(h);E>-1&&(y=y.slice(0,E))}return y+d}},4300:(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},r(e)}Object.defineProperty(t,"__esModule",{value:!0}),t.CopyToClipboard=void 0;var o=s(n(7294)),a=s(n(640)),i=["text","onCopy","options","children"];function s(e){return e&&e.__esModule?e:{default:e}}function l(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function u(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?l(Object(n),!0).forEach((function(t){v(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):l(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function c(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function f(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function p(e,t){return p=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},p(e,t)}function d(e,t){if(t&&("object"===r(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return h(e)}function h(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function m(e){return m=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},m(e)}function v(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var g=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&p(e,t)}(g,e);var t,n,r,s,l=(r=g,s=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}}(),function(){var e,t=m(r);if(s){var n=m(this).constructor;e=Reflect.construct(t,arguments,n)}else e=t.apply(this,arguments);return d(this,e)});function g(){var e;c(this,g);for(var t=arguments.length,n=new Array(t),r=0;r<t;r++)n[r]=arguments[r];return v(h(e=l.call.apply(l,[this].concat(n))),"onClick",(function(t){var n=e.props,r=n.text,i=n.onCopy,s=n.children,l=n.options,u=o.default.Children.only(s),c=(0,a.default)(r,l);i&&i(r,c),u&&u.props&&"function"==typeof u.props.onClick&&u.props.onClick(t)})),e}return t=g,(n=[{key:"render",value:function(){var e=this.props,t=(e.text,e.onCopy,e.options,e.children),n=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(e,i),r=o.default.Children.only(t);return o.default.cloneElement(r,u(u({},n),{},{onClick:this.onClick}))}}])&&f(t.prototype,n),Object.defineProperty(t,"prototype",{writable:!1}),g}(o.default.PureComponent);t.CopyToClipboard=g,v(g,"defaultProps",{onCopy:void 0,options:void 0})},4855:(e,t,n)=>{"use strict";var r=n(4300).CopyToClipboard;r.CopyToClipboard=r,e.exports=r},4448:(e,t,n)=>{"use strict";var r=n(7294),o=n(3840);function a(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n<arguments.length;n++)t+="&args[]="+encodeURIComponent(arguments[n]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var i=new Set,s={};function l(e,t){u(e,t),u(e+"Capture",t)}function u(e,t){for(s[e]=t,e=0;e<t.length;e++)i.add(t[e])}var c=!("undefined"==typeof window||void 0===window.document||void 0===window.document.createElement),f=Object.prototype.hasOwnProperty,p=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,d={},h={};function m(e,t,n,r,o,a,i){this.acceptsBooleans=2===t||3===t||4===t,this.attributeName=r,this.attributeNamespace=o,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=a,this.removeEmptyString=i}var v={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach((function(e){v[e]=new m(e,0,!1,e,null,!1,!1)})),[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach((function(e){var t=e[0];v[t]=new m(t,1,!1,e[1],null,!1,!1)})),["contentEditable","draggable","spellCheck","value"].forEach((function(e){v[e]=new m(e,2,!1,e.toLowerCase(),null,!1,!1)})),["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach((function(e){v[e]=new m(e,2,!1,e,null,!1,!1)})),"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach((function(e){v[e]=new m(e,3,!1,e.toLowerCase(),null,!1,!1)})),["checked","multiple","muted","selected"].forEach((function(e){v[e]=new m(e,3,!0,e,null,!1,!1)})),["capture","download"].forEach((function(e){v[e]=new m(e,4,!1,e,null,!1,!1)})),["cols","rows","size","span"].forEach((function(e){v[e]=new m(e,6,!1,e,null,!1,!1)})),["rowSpan","start"].forEach((function(e){v[e]=new m(e,5,!1,e.toLowerCase(),null,!1,!1)}));var g=/[\-:]([a-z])/g;function y(e){return e[1].toUpperCase()}function b(e,t,n,r){var o=v.hasOwnProperty(t)?v[t]:null;(null!==o?0!==o.type:r||!(2<t.length)||"o"!==t[0]&&"O"!==t[0]||"n"!==t[1]&&"N"!==t[1])&&(function(e,t,n,r){if(null==t||function(e,t,n,r){if(null!==n&&0===n.type)return!1;switch(typeof t){case"function":case"symbol":return!0;case"boolean":return!r&&(null!==n?!n.acceptsBooleans:"data-"!==(e=e.toLowerCase().slice(0,5))&&"aria-"!==e);default:return!1}}(e,t,n,r))return!0;if(r)return!1;if(null!==n)switch(n.type){case 3:return!t;case 4:return!1===t;case 5:return isNaN(t);case 6:return isNaN(t)||1>t}return!1}(t,n,o,r)&&(n=null),r||null===o?function(e){return!!f.call(h,e)||!f.call(d,e)&&(p.test(e)?h[e]=!0:(d[e]=!0,!1))}(t)&&(null===n?e.removeAttribute(t):e.setAttribute(t,""+n)):o.mustUseProperty?e[o.propertyName]=null===n?3!==o.type&&"":n:(t=o.attributeName,r=o.attributeNamespace,null===n?e.removeAttribute(t):(n=3===(o=o.type)||4===o&&!0===n?"":""+n,r?e.setAttributeNS(r,t,n):e.setAttribute(t,n))))}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach((function(e){var t=e.replace(g,y);v[t]=new m(t,1,!1,e,null,!1,!1)})),"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach((function(e){var t=e.replace(g,y);v[t]=new m(t,1,!1,e,"http://www.w3.org/1999/xlink",!1,!1)})),["xml:base","xml:lang","xml:space"].forEach((function(e){var t=e.replace(g,y);v[t]=new m(t,1,!1,e,"http://www.w3.org/XML/1998/namespace",!1,!1)})),["tabIndex","crossOrigin"].forEach((function(e){v[e]=new m(e,1,!1,e.toLowerCase(),null,!1,!1)})),v.xlinkHref=new m("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1),["src","href","action","formAction"].forEach((function(e){v[e]=new m(e,1,!1,e.toLowerCase(),null,!0,!0)}));var w=r.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,x=Symbol.for("react.element"),E=Symbol.for("react.portal"),S=Symbol.for("react.fragment"),k=Symbol.for("react.strict_mode"),_=Symbol.for("react.profiler"),O=Symbol.for("react.provider"),C=Symbol.for("react.context"),P=Symbol.for("react.forward_ref"),j=Symbol.for("react.suspense"),A=Symbol.for("react.suspense_list"),I=Symbol.for("react.memo"),T=Symbol.for("react.lazy");Symbol.for("react.scope"),Symbol.for("react.debug_trace_mode");var R=Symbol.for("react.offscreen");Symbol.for("react.legacy_hidden"),Symbol.for("react.cache"),Symbol.for("react.tracing_marker");var N=Symbol.iterator;function M(e){return null===e||"object"!=typeof e?null:"function"==typeof(e=N&&e[N]||e["@@iterator"])?e:null}var F,L=Object.assign;function D(e){if(void 0===F)try{throw Error()}catch(e){var t=e.stack.trim().match(/\n( *(at )?)/);F=t&&t[1]||""}return"\n"+F+e}var z=!1;function U(e,t){if(!e||z)return"";z=!0;var n=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{if(t)if(t=function(){throw Error()},Object.defineProperty(t.prototype,"props",{set:function(){throw Error()}}),"object"==typeof Reflect&&Reflect.construct){try{Reflect.construct(t,[])}catch(e){var r=e}Reflect.construct(e,[],t)}else{try{t.call()}catch(e){r=e}e.call(t.prototype)}else{try{throw Error()}catch(e){r=e}e()}}catch(t){if(t&&r&&"string"==typeof t.stack){for(var o=t.stack.split("\n"),a=r.stack.split("\n"),i=o.length-1,s=a.length-1;1<=i&&0<=s&&o[i]!==a[s];)s--;for(;1<=i&&0<=s;i--,s--)if(o[i]!==a[s]){if(1!==i||1!==s)do{if(i--,0>--s||o[i]!==a[s]){var l="\n"+o[i].replace(" at new "," at ");return e.displayName&&l.includes("<anonymous>")&&(l=l.replace("<anonymous>",e.displayName)),l}}while(1<=i&&0<=s);break}}}finally{z=!1,Error.prepareStackTrace=n}return(e=e?e.displayName||e.name:"")?D(e):""}function V(e){switch(e.tag){case 5:return D(e.type);case 16:return D("Lazy");case 13:return D("Suspense");case 19:return D("SuspenseList");case 0:case 2:case 15:return U(e.type,!1);case 11:return U(e.type.render,!1);case 1:return U(e.type,!0);default:return""}}function B(e){if(null==e)return null;if("function"==typeof e)return e.displayName||e.name||null;if("string"==typeof e)return e;switch(e){case S:return"Fragment";case E:return"Portal";case _:return"Profiler";case k:return"StrictMode";case j:return"Suspense";case A:return"SuspenseList"}if("object"==typeof e)switch(e.$$typeof){case C:return(e.displayName||"Context")+".Consumer";case O:return(e._context.displayName||"Context")+".Provider";case P:var t=e.render;return(e=e.displayName)||(e=""!==(e=t.displayName||t.name||"")?"ForwardRef("+e+")":"ForwardRef"),e;case I:return null!==(t=e.displayName||null)?t:B(e.type)||"Memo";case T:t=e._payload,e=e._init;try{return B(e(t))}catch(e){}}return null}function W(e){var t=e.type;switch(e.tag){case 24:return"Cache";case 9:return(t.displayName||"Context")+".Consumer";case 10:return(t._context.displayName||"Context")+".Provider";case 18:return"DehydratedFragment";case 11:return e=(e=t.render).displayName||e.name||"",t.displayName||(""!==e?"ForwardRef("+e+")":"ForwardRef");case 7:return"Fragment";case 5:return t;case 4:return"Portal";case 3:return"Root";case 6:return"Text";case 16:return B(t);case 8:return t===k?"StrictMode":"Mode";case 22:return"Offscreen";case 12:return"Profiler";case 21:return"Scope";case 13:return"Suspense";case 19:return"SuspenseList";case 25:return"TracingMarker";case 1:case 0:case 17:case 2:case 14:case 15:if("function"==typeof t)return t.displayName||t.name||null;if("string"==typeof t)return t}return null}function H(e){switch(typeof e){case"boolean":case"number":case"string":case"undefined":case"object":return e;default:return""}}function $(e){var t=e.type;return(e=e.nodeName)&&"input"===e.toLowerCase()&&("checkbox"===t||"radio"===t)}function G(e){e._valueTracker||(e._valueTracker=function(e){var t=$(e)?"checked":"value",n=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),r=""+e[t];if(!e.hasOwnProperty(t)&&void 0!==n&&"function"==typeof n.get&&"function"==typeof n.set){var o=n.get,a=n.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return o.call(this)},set:function(e){r=""+e,a.call(this,e)}}),Object.defineProperty(e,t,{enumerable:n.enumerable}),{getValue:function(){return r},setValue:function(e){r=""+e},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}(e))}function Y(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),r="";return e&&(r=$(e)?e.checked?"true":"false":e.value),(e=r)!==n&&(t.setValue(e),!0)}function q(e){if(void 0===(e=e||("undefined"!=typeof document?document:void 0)))return null;try{return e.activeElement||e.body}catch(t){return e.body}}function Q(e,t){var n=t.checked;return L({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:null!=n?n:e._wrapperState.initialChecked})}function X(e,t){var n=null==t.defaultValue?"":t.defaultValue,r=null!=t.checked?t.checked:t.defaultChecked;n=H(null!=t.value?t.value:n),e._wrapperState={initialChecked:r,initialValue:n,controlled:"checkbox"===t.type||"radio"===t.type?null!=t.checked:null!=t.value}}function K(e,t){null!=(t=t.checked)&&b(e,"checked",t,!1)}function J(e,t){K(e,t);var n=H(t.value),r=t.type;if(null!=n)"number"===r?(0===n&&""===e.value||e.value!=n)&&(e.value=""+n):e.value!==""+n&&(e.value=""+n);else if("submit"===r||"reset"===r)return void e.removeAttribute("value");t.hasOwnProperty("value")?ee(e,t.type,n):t.hasOwnProperty("defaultValue")&&ee(e,t.type,H(t.defaultValue)),null==t.checked&&null!=t.defaultChecked&&(e.defaultChecked=!!t.defaultChecked)}function Z(e,t,n){if(t.hasOwnProperty("value")||t.hasOwnProperty("defaultValue")){var r=t.type;if(!("submit"!==r&&"reset"!==r||void 0!==t.value&&null!==t.value))return;t=""+e._wrapperState.initialValue,n||t===e.value||(e.value=t),e.defaultValue=t}""!==(n=e.name)&&(e.name=""),e.defaultChecked=!!e._wrapperState.initialChecked,""!==n&&(e.name=n)}function ee(e,t,n){"number"===t&&q(e.ownerDocument)===e||(null==n?e.defaultValue=""+e._wrapperState.initialValue:e.defaultValue!==""+n&&(e.defaultValue=""+n))}var te=Array.isArray;function ne(e,t,n,r){if(e=e.options,t){t={};for(var o=0;o<n.length;o++)t["$"+n[o]]=!0;for(n=0;n<e.length;n++)o=t.hasOwnProperty("$"+e[n].value),e[n].selected!==o&&(e[n].selected=o),o&&r&&(e[n].defaultSelected=!0)}else{for(n=""+H(n),t=null,o=0;o<e.length;o++){if(e[o].value===n)return e[o].selected=!0,void(r&&(e[o].defaultSelected=!0));null!==t||e[o].disabled||(t=e[o])}null!==t&&(t.selected=!0)}}function re(e,t){if(null!=t.dangerouslySetInnerHTML)throw Error(a(91));return L({},t,{value:void 0,defaultValue:void 0,children:""+e._wrapperState.initialValue})}function oe(e,t){var n=t.value;if(null==n){if(n=t.children,t=t.defaultValue,null!=n){if(null!=t)throw Error(a(92));if(te(n)){if(1<n.length)throw Error(a(93));n=n[0]}t=n}null==t&&(t=""),n=t}e._wrapperState={initialValue:H(n)}}function ae(e,t){var n=H(t.value),r=H(t.defaultValue);null!=n&&((n=""+n)!==e.value&&(e.value=n),null==t.defaultValue&&e.defaultValue!==n&&(e.defaultValue=n)),null!=r&&(e.defaultValue=""+r)}function ie(e){var t=e.textContent;t===e._wrapperState.initialValue&&""!==t&&null!==t&&(e.value=t)}function se(e){switch(e){case"svg":return"http://www.w3.org/2000/svg";case"math":return"http://www.w3.org/1998/Math/MathML";default:return"http://www.w3.org/1999/xhtml"}}function le(e,t){return null==e||"http://www.w3.org/1999/xhtml"===e?se(t):"http://www.w3.org/2000/svg"===e&&"foreignObject"===t?"http://www.w3.org/1999/xhtml":e}var ue,ce,fe=(ce=function(e,t){if("http://www.w3.org/2000/svg"!==e.namespaceURI||"innerHTML"in e)e.innerHTML=t;else{for((ue=ue||document.createElement("div")).innerHTML="<svg>"+t.valueOf().toString()+"</svg>",t=ue.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}},"undefined"!=typeof MSApp&&MSApp.execUnsafeLocalFunction?function(e,t,n,r){MSApp.execUnsafeLocalFunction((function(){return ce(e,t)}))}:ce);function pe(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&3===n.nodeType)return void(n.nodeValue=t)}e.textContent=t}var de={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},he=["Webkit","ms","Moz","O"];function me(e,t,n){return null==t||"boolean"==typeof t||""===t?"":n||"number"!=typeof t||0===t||de.hasOwnProperty(e)&&de[e]?(""+t).trim():t+"px"}function ve(e,t){for(var n in e=e.style,t)if(t.hasOwnProperty(n)){var r=0===n.indexOf("--"),o=me(n,t[n],r);"float"===n&&(n="cssFloat"),r?e.setProperty(n,o):e[n]=o}}Object.keys(de).forEach((function(e){he.forEach((function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),de[t]=de[e]}))}));var ge=L({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function ye(e,t){if(t){if(ge[e]&&(null!=t.children||null!=t.dangerouslySetInnerHTML))throw Error(a(137,e));if(null!=t.dangerouslySetInnerHTML){if(null!=t.children)throw Error(a(60));if("object"!=typeof t.dangerouslySetInnerHTML||!("__html"in t.dangerouslySetInnerHTML))throw Error(a(61))}if(null!=t.style&&"object"!=typeof t.style)throw Error(a(62))}}function be(e,t){if(-1===e.indexOf("-"))return"string"==typeof t.is;switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}var we=null;function xe(e){return(e=e.target||e.srcElement||window).correspondingUseElement&&(e=e.correspondingUseElement),3===e.nodeType?e.parentNode:e}var Ee=null,Se=null,ke=null;function _e(e){if(e=wo(e)){if("function"!=typeof Ee)throw Error(a(280));var t=e.stateNode;t&&(t=Eo(t),Ee(e.stateNode,e.type,t))}}function Oe(e){Se?ke?ke.push(e):ke=[e]:Se=e}function Ce(){if(Se){var e=Se,t=ke;if(ke=Se=null,_e(e),t)for(e=0;e<t.length;e++)_e(t[e])}}function Pe(e,t){return e(t)}function je(){}var Ae=!1;function Ie(e,t,n){if(Ae)return e(t,n);Ae=!0;try{return Pe(e,t,n)}finally{Ae=!1,(null!==Se||null!==ke)&&(je(),Ce())}}function Te(e,t){var n=e.stateNode;if(null===n)return null;var r=Eo(n);if(null===r)return null;n=r[t];e:switch(t){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":case"onMouseEnter":(r=!r.disabled)||(r=!("button"===(e=e.type)||"input"===e||"select"===e||"textarea"===e)),e=!r;break e;default:e=!1}if(e)return null;if(n&&"function"!=typeof n)throw Error(a(231,t,typeof n));return n}var Re=!1;if(c)try{var Ne={};Object.defineProperty(Ne,"passive",{get:function(){Re=!0}}),window.addEventListener("test",Ne,Ne),window.removeEventListener("test",Ne,Ne)}catch(ce){Re=!1}function Me(e,t,n,r,o,a,i,s,l){var u=Array.prototype.slice.call(arguments,3);try{t.apply(n,u)}catch(e){this.onError(e)}}var Fe=!1,Le=null,De=!1,ze=null,Ue={onError:function(e){Fe=!0,Le=e}};function Ve(e,t,n,r,o,a,i,s,l){Fe=!1,Le=null,Me.apply(Ue,arguments)}function Be(e){var t=e,n=e;if(e.alternate)for(;t.return;)t=t.return;else{e=t;do{0!=(4098&(t=e).flags)&&(n=t.return),e=t.return}while(e)}return 3===t.tag?n:null}function We(e){if(13===e.tag){var t=e.memoizedState;if(null===t&&null!==(e=e.alternate)&&(t=e.memoizedState),null!==t)return t.dehydrated}return null}function He(e){if(Be(e)!==e)throw Error(a(188))}function $e(e){return null!==(e=function(e){var t=e.alternate;if(!t){if(null===(t=Be(e)))throw Error(a(188));return t!==e?null:e}for(var n=e,r=t;;){var o=n.return;if(null===o)break;var i=o.alternate;if(null===i){if(null!==(r=o.return)){n=r;continue}break}if(o.child===i.child){for(i=o.child;i;){if(i===n)return He(o),e;if(i===r)return He(o),t;i=i.sibling}throw Error(a(188))}if(n.return!==r.return)n=o,r=i;else{for(var s=!1,l=o.child;l;){if(l===n){s=!0,n=o,r=i;break}if(l===r){s=!0,r=o,n=i;break}l=l.sibling}if(!s){for(l=i.child;l;){if(l===n){s=!0,n=i,r=o;break}if(l===r){s=!0,r=i,n=o;break}l=l.sibling}if(!s)throw Error(a(189))}}if(n.alternate!==r)throw Error(a(190))}if(3!==n.tag)throw Error(a(188));return n.stateNode.current===n?e:t}(e))?Ge(e):null}function Ge(e){if(5===e.tag||6===e.tag)return e;for(e=e.child;null!==e;){var t=Ge(e);if(null!==t)return t;e=e.sibling}return null}var Ye=o.unstable_scheduleCallback,qe=o.unstable_cancelCallback,Qe=o.unstable_shouldYield,Xe=o.unstable_requestPaint,Ke=o.unstable_now,Je=o.unstable_getCurrentPriorityLevel,Ze=o.unstable_ImmediatePriority,et=o.unstable_UserBlockingPriority,tt=o.unstable_NormalPriority,nt=o.unstable_LowPriority,rt=o.unstable_IdlePriority,ot=null,at=null,it=Math.clz32?Math.clz32:function(e){return 0==(e>>>=0)?32:31-(st(e)/lt|0)|0},st=Math.log,lt=Math.LN2,ut=64,ct=4194304;function ft(e){switch(e&-e){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return 4194240&e;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return 130023424&e;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return e}}function pt(e,t){var n=e.pendingLanes;if(0===n)return 0;var r=0,o=e.suspendedLanes,a=e.pingedLanes,i=268435455&n;if(0!==i){var s=i&~o;0!==s?r=ft(s):0!=(a&=i)&&(r=ft(a))}else 0!=(i=n&~o)?r=ft(i):0!==a&&(r=ft(a));if(0===r)return 0;if(0!==t&&t!==r&&0==(t&o)&&((o=r&-r)>=(a=t&-t)||16===o&&0!=(4194240&a)))return t;if(0!=(4&r)&&(r|=16&n),0!==(t=e.entangledLanes))for(e=e.entanglements,t&=r;0<t;)o=1<<(n=31-it(t)),r|=e[n],t&=~o;return r}function dt(e,t){switch(e){case 1:case 2:case 4:return t+250;case 8:case 16:case 32:case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return t+5e3;default:return-1}}function ht(e){return 0!=(e=-1073741825&e.pendingLanes)?e:1073741824&e?1073741824:0}function mt(){var e=ut;return 0==(4194240&(ut<<=1))&&(ut=64),e}function vt(e){for(var t=[],n=0;31>n;n++)t.push(e);return t}function gt(e,t,n){e.pendingLanes|=t,536870912!==t&&(e.suspendedLanes=0,e.pingedLanes=0),(e=e.eventTimes)[t=31-it(t)]=n}function yt(e,t){var n=e.entangledLanes|=t;for(e=e.entanglements;n;){var r=31-it(n),o=1<<r;o&t|e[r]&t&&(e[r]|=t),n&=~o}}var bt=0;function wt(e){return 1<(e&=-e)?4<e?0!=(268435455&e)?16:536870912:4:1}var xt,Et,St,kt,_t,Ot=!1,Ct=[],Pt=null,jt=null,At=null,It=new Map,Tt=new Map,Rt=[],Nt="mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset submit".split(" ");function Mt(e,t){switch(e){case"focusin":case"focusout":Pt=null;break;case"dragenter":case"dragleave":jt=null;break;case"mouseover":case"mouseout":At=null;break;case"pointerover":case"pointerout":It.delete(t.pointerId);break;case"gotpointercapture":case"lostpointercapture":Tt.delete(t.pointerId)}}function Ft(e,t,n,r,o,a){return null===e||e.nativeEvent!==a?(e={blockedOn:t,domEventName:n,eventSystemFlags:r,nativeEvent:a,targetContainers:[o]},null!==t&&null!==(t=wo(t))&&Et(t),e):(e.eventSystemFlags|=r,t=e.targetContainers,null!==o&&-1===t.indexOf(o)&&t.push(o),e)}function Lt(e){var t=bo(e.target);if(null!==t){var n=Be(t);if(null!==n)if(13===(t=n.tag)){if(null!==(t=We(n)))return e.blockedOn=t,void _t(e.priority,(function(){St(n)}))}else if(3===t&&n.stateNode.current.memoizedState.isDehydrated)return void(e.blockedOn=3===n.tag?n.stateNode.containerInfo:null)}e.blockedOn=null}function Dt(e){if(null!==e.blockedOn)return!1;for(var t=e.targetContainers;0<t.length;){var n=Qt(e.domEventName,e.eventSystemFlags,t[0],e.nativeEvent);if(null!==n)return null!==(t=wo(n))&&Et(t),e.blockedOn=n,!1;var r=new(n=e.nativeEvent).constructor(n.type,n);we=r,n.target.dispatchEvent(r),we=null,t.shift()}return!0}function zt(e,t,n){Dt(e)&&n.delete(t)}function Ut(){Ot=!1,null!==Pt&&Dt(Pt)&&(Pt=null),null!==jt&&Dt(jt)&&(jt=null),null!==At&&Dt(At)&&(At=null),It.forEach(zt),Tt.forEach(zt)}function Vt(e,t){e.blockedOn===t&&(e.blockedOn=null,Ot||(Ot=!0,o.unstable_scheduleCallback(o.unstable_NormalPriority,Ut)))}function Bt(e){function t(t){return Vt(t,e)}if(0<Ct.length){Vt(Ct[0],e);for(var n=1;n<Ct.length;n++){var r=Ct[n];r.blockedOn===e&&(r.blockedOn=null)}}for(null!==Pt&&Vt(Pt,e),null!==jt&&Vt(jt,e),null!==At&&Vt(At,e),It.forEach(t),Tt.forEach(t),n=0;n<Rt.length;n++)(r=Rt[n]).blockedOn===e&&(r.blockedOn=null);for(;0<Rt.length&&null===(n=Rt[0]).blockedOn;)Lt(n),null===n.blockedOn&&Rt.shift()}var Wt=w.ReactCurrentBatchConfig,Ht=!0;function $t(e,t,n,r){var o=bt,a=Wt.transition;Wt.transition=null;try{bt=1,Yt(e,t,n,r)}finally{bt=o,Wt.transition=a}}function Gt(e,t,n,r){var o=bt,a=Wt.transition;Wt.transition=null;try{bt=4,Yt(e,t,n,r)}finally{bt=o,Wt.transition=a}}function Yt(e,t,n,r){if(Ht){var o=Qt(e,t,n,r);if(null===o)Hr(e,t,r,qt,n),Mt(e,r);else if(function(e,t,n,r,o){switch(t){case"focusin":return Pt=Ft(Pt,e,t,n,r,o),!0;case"dragenter":return jt=Ft(jt,e,t,n,r,o),!0;case"mouseover":return At=Ft(At,e,t,n,r,o),!0;case"pointerover":var a=o.pointerId;return It.set(a,Ft(It.get(a)||null,e,t,n,r,o)),!0;case"gotpointercapture":return a=o.pointerId,Tt.set(a,Ft(Tt.get(a)||null,e,t,n,r,o)),!0}return!1}(o,e,t,n,r))r.stopPropagation();else if(Mt(e,r),4&t&&-1<Nt.indexOf(e)){for(;null!==o;){var a=wo(o);if(null!==a&&xt(a),null===(a=Qt(e,t,n,r))&&Hr(e,t,r,qt,n),a===o)break;o=a}null!==o&&r.stopPropagation()}else Hr(e,t,r,null,n)}}var qt=null;function Qt(e,t,n,r){if(qt=null,null!==(e=bo(e=xe(r))))if(null===(t=Be(e)))e=null;else if(13===(n=t.tag)){if(null!==(e=We(t)))return e;e=null}else if(3===n){if(t.stateNode.current.memoizedState.isDehydrated)return 3===t.tag?t.stateNode.containerInfo:null;e=null}else t!==e&&(e=null);return qt=e,null}function Xt(e){switch(e){case"cancel":case"click":case"close":case"contextmenu":case"copy":case"cut":case"auxclick":case"dblclick":case"dragend":case"dragstart":case"drop":case"focusin":case"focusout":case"input":case"invalid":case"keydown":case"keypress":case"keyup":case"mousedown":case"mouseup":case"paste":case"pause":case"play":case"pointercancel":case"pointerdown":case"pointerup":case"ratechange":case"reset":case"resize":case"seeked":case"submit":case"touchcancel":case"touchend":case"touchstart":case"volumechange":case"change":case"selectionchange":case"textInput":case"compositionstart":case"compositionend":case"compositionupdate":case"beforeblur":case"afterblur":case"beforeinput":case"blur":case"fullscreenchange":case"focus":case"hashchange":case"popstate":case"select":case"selectstart":return 1;case"drag":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"mousemove":case"mouseout":case"mouseover":case"pointermove":case"pointerout":case"pointerover":case"scroll":case"toggle":case"touchmove":case"wheel":case"mouseenter":case"mouseleave":case"pointerenter":case"pointerleave":return 4;case"message":switch(Je()){case Ze:return 1;case et:return 4;case tt:case nt:return 16;case rt:return 536870912;default:return 16}default:return 16}}var Kt=null,Jt=null,Zt=null;function en(){if(Zt)return Zt;var e,t,n=Jt,r=n.length,o="value"in Kt?Kt.value:Kt.textContent,a=o.length;for(e=0;e<r&&n[e]===o[e];e++);var i=r-e;for(t=1;t<=i&&n[r-t]===o[a-t];t++);return Zt=o.slice(e,1<t?1-t:void 0)}function tn(e){var t=e.keyCode;return"charCode"in e?0===(e=e.charCode)&&13===t&&(e=13):e=t,10===e&&(e=13),32<=e||13===e?e:0}function nn(){return!0}function rn(){return!1}function on(e){function t(t,n,r,o,a){for(var i in this._reactName=t,this._targetInst=r,this.type=n,this.nativeEvent=o,this.target=a,this.currentTarget=null,e)e.hasOwnProperty(i)&&(t=e[i],this[i]=t?t(o):o[i]);return this.isDefaultPrevented=(null!=o.defaultPrevented?o.defaultPrevented:!1===o.returnValue)?nn:rn,this.isPropagationStopped=rn,this}return L(t.prototype,{preventDefault:function(){this.defaultPrevented=!0;var e=this.nativeEvent;e&&(e.preventDefault?e.preventDefault():"unknown"!=typeof e.returnValue&&(e.returnValue=!1),this.isDefaultPrevented=nn)},stopPropagation:function(){var e=this.nativeEvent;e&&(e.stopPropagation?e.stopPropagation():"unknown"!=typeof e.cancelBubble&&(e.cancelBubble=!0),this.isPropagationStopped=nn)},persist:function(){},isPersistent:nn}),t}var an,sn,ln,un={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},cn=on(un),fn=L({},un,{view:0,detail:0}),pn=on(fn),dn=L({},fn,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:_n,button:0,buttons:0,relatedTarget:function(e){return void 0===e.relatedTarget?e.fromElement===e.srcElement?e.toElement:e.fromElement:e.relatedTarget},movementX:function(e){return"movementX"in e?e.movementX:(e!==ln&&(ln&&"mousemove"===e.type?(an=e.screenX-ln.screenX,sn=e.screenY-ln.screenY):sn=an=0,ln=e),an)},movementY:function(e){return"movementY"in e?e.movementY:sn}}),hn=on(dn),mn=on(L({},dn,{dataTransfer:0})),vn=on(L({},fn,{relatedTarget:0})),gn=on(L({},un,{animationName:0,elapsedTime:0,pseudoElement:0})),yn=L({},un,{clipboardData:function(e){return"clipboardData"in e?e.clipboardData:window.clipboardData}}),bn=on(yn),wn=on(L({},un,{data:0})),xn={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},En={8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",45:"Insert",46:"Delete",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"NumLock",145:"ScrollLock",224:"Meta"},Sn={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function kn(e){var t=this.nativeEvent;return t.getModifierState?t.getModifierState(e):!!(e=Sn[e])&&!!t[e]}function _n(){return kn}var On=L({},fn,{key:function(e){if(e.key){var t=xn[e.key]||e.key;if("Unidentified"!==t)return t}return"keypress"===e.type?13===(e=tn(e))?"Enter":String.fromCharCode(e):"keydown"===e.type||"keyup"===e.type?En[e.keyCode]||"Unidentified":""},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:_n,charCode:function(e){return"keypress"===e.type?tn(e):0},keyCode:function(e){return"keydown"===e.type||"keyup"===e.type?e.keyCode:0},which:function(e){return"keypress"===e.type?tn(e):"keydown"===e.type||"keyup"===e.type?e.keyCode:0}}),Cn=on(On),Pn=on(L({},dn,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0})),jn=on(L({},fn,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:_n})),An=on(L({},un,{propertyName:0,elapsedTime:0,pseudoElement:0})),In=L({},dn,{deltaX:function(e){return"deltaX"in e?e.deltaX:"wheelDeltaX"in e?-e.wheelDeltaX:0},deltaY:function(e){return"deltaY"in e?e.deltaY:"wheelDeltaY"in e?-e.wheelDeltaY:"wheelDelta"in e?-e.wheelDelta:0},deltaZ:0,deltaMode:0}),Tn=on(In),Rn=[9,13,27,32],Nn=c&&"CompositionEvent"in window,Mn=null;c&&"documentMode"in document&&(Mn=document.documentMode);var Fn=c&&"TextEvent"in window&&!Mn,Ln=c&&(!Nn||Mn&&8<Mn&&11>=Mn),Dn=String.fromCharCode(32),zn=!1;function Un(e,t){switch(e){case"keyup":return-1!==Rn.indexOf(t.keyCode);case"keydown":return 229!==t.keyCode;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function Vn(e){return"object"==typeof(e=e.detail)&&"data"in e?e.data:null}var Bn=!1,Wn={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function Hn(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return"input"===t?!!Wn[e.type]:"textarea"===t}function $n(e,t,n,r){Oe(r),0<(t=Gr(t,"onChange")).length&&(n=new cn("onChange","change",null,n,r),e.push({event:n,listeners:t}))}var Gn=null,Yn=null;function qn(e){Dr(e,0)}function Qn(e){if(Y(xo(e)))return e}function Xn(e,t){if("change"===e)return t}var Kn=!1;if(c){var Jn;if(c){var Zn="oninput"in document;if(!Zn){var er=document.createElement("div");er.setAttribute("oninput","return;"),Zn="function"==typeof er.oninput}Jn=Zn}else Jn=!1;Kn=Jn&&(!document.documentMode||9<document.documentMode)}function tr(){Gn&&(Gn.detachEvent("onpropertychange",nr),Yn=Gn=null)}function nr(e){if("value"===e.propertyName&&Qn(Yn)){var t=[];$n(t,Yn,e,xe(e)),Ie(qn,t)}}function rr(e,t,n){"focusin"===e?(tr(),Yn=n,(Gn=t).attachEvent("onpropertychange",nr)):"focusout"===e&&tr()}function or(e){if("selectionchange"===e||"keyup"===e||"keydown"===e)return Qn(Yn)}function ar(e,t){if("click"===e)return Qn(t)}function ir(e,t){if("input"===e||"change"===e)return Qn(t)}var sr="function"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t};function lr(e,t){if(sr(e,t))return!0;if("object"!=typeof e||null===e||"object"!=typeof t||null===t)return!1;var n=Object.keys(e),r=Object.keys(t);if(n.length!==r.length)return!1;for(r=0;r<n.length;r++){var o=n[r];if(!f.call(t,o)||!sr(e[o],t[o]))return!1}return!0}function ur(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function cr(e,t){var n,r=ur(e);for(e=0;r;){if(3===r.nodeType){if(n=e+r.textContent.length,e<=t&&n>=t)return{node:r,offset:t-e};e=n}e:{for(;r;){if(r.nextSibling){r=r.nextSibling;break e}r=r.parentNode}r=void 0}r=ur(r)}}function fr(e,t){return!(!e||!t)&&(e===t||(!e||3!==e.nodeType)&&(t&&3===t.nodeType?fr(e,t.parentNode):"contains"in e?e.contains(t):!!e.compareDocumentPosition&&!!(16&e.compareDocumentPosition(t))))}function pr(){for(var e=window,t=q();t instanceof e.HTMLIFrameElement;){try{var n="string"==typeof t.contentWindow.location.href}catch(e){n=!1}if(!n)break;t=q((e=t.contentWindow).document)}return t}function dr(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&("input"===t&&("text"===e.type||"search"===e.type||"tel"===e.type||"url"===e.type||"password"===e.type)||"textarea"===t||"true"===e.contentEditable)}function hr(e){var t=pr(),n=e.focusedElem,r=e.selectionRange;if(t!==n&&n&&n.ownerDocument&&fr(n.ownerDocument.documentElement,n)){if(null!==r&&dr(n))if(t=r.start,void 0===(e=r.end)&&(e=t),"selectionStart"in n)n.selectionStart=t,n.selectionEnd=Math.min(e,n.value.length);else if((e=(t=n.ownerDocument||document)&&t.defaultView||window).getSelection){e=e.getSelection();var o=n.textContent.length,a=Math.min(r.start,o);r=void 0===r.end?a:Math.min(r.end,o),!e.extend&&a>r&&(o=r,r=a,a=o),o=cr(n,a);var i=cr(n,r);o&&i&&(1!==e.rangeCount||e.anchorNode!==o.node||e.anchorOffset!==o.offset||e.focusNode!==i.node||e.focusOffset!==i.offset)&&((t=t.createRange()).setStart(o.node,o.offset),e.removeAllRanges(),a>r?(e.addRange(t),e.extend(i.node,i.offset)):(t.setEnd(i.node,i.offset),e.addRange(t)))}for(t=[],e=n;e=e.parentNode;)1===e.nodeType&&t.push({element:e,left:e.scrollLeft,top:e.scrollTop});for("function"==typeof n.focus&&n.focus(),n=0;n<t.length;n++)(e=t[n]).element.scrollLeft=e.left,e.element.scrollTop=e.top}}var mr=c&&"documentMode"in document&&11>=document.documentMode,vr=null,gr=null,yr=null,br=!1;function wr(e,t,n){var r=n.window===n?n.document:9===n.nodeType?n:n.ownerDocument;br||null==vr||vr!==q(r)||(r="selectionStart"in(r=vr)&&dr(r)?{start:r.selectionStart,end:r.selectionEnd}:{anchorNode:(r=(r.ownerDocument&&r.ownerDocument.defaultView||window).getSelection()).anchorNode,anchorOffset:r.anchorOffset,focusNode:r.focusNode,focusOffset:r.focusOffset},yr&&lr(yr,r)||(yr=r,0<(r=Gr(gr,"onSelect")).length&&(t=new cn("onSelect","select",null,t,n),e.push({event:t,listeners:r}),t.target=vr)))}function xr(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n["Webkit"+e]="webkit"+t,n["Moz"+e]="moz"+t,n}var Er={animationend:xr("Animation","AnimationEnd"),animationiteration:xr("Animation","AnimationIteration"),animationstart:xr("Animation","AnimationStart"),transitionend:xr("Transition","TransitionEnd")},Sr={},kr={};function _r(e){if(Sr[e])return Sr[e];if(!Er[e])return e;var t,n=Er[e];for(t in n)if(n.hasOwnProperty(t)&&t in kr)return Sr[e]=n[t];return e}c&&(kr=document.createElement("div").style,"AnimationEvent"in window||(delete Er.animationend.animation,delete Er.animationiteration.animation,delete Er.animationstart.animation),"TransitionEvent"in window||delete Er.transitionend.transition);var Or=_r("animationend"),Cr=_r("animationiteration"),Pr=_r("animationstart"),jr=_r("transitionend"),Ar=new Map,Ir="abort auxClick cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll toggle touchMove waiting wheel".split(" ");function Tr(e,t){Ar.set(e,t),l(t,[e])}for(var Rr=0;Rr<Ir.length;Rr++){var Nr=Ir[Rr];Tr(Nr.toLowerCase(),"on"+(Nr[0].toUpperCase()+Nr.slice(1)))}Tr(Or,"onAnimationEnd"),Tr(Cr,"onAnimationIteration"),Tr(Pr,"onAnimationStart"),Tr("dblclick","onDoubleClick"),Tr("focusin","onFocus"),Tr("focusout","onBlur"),Tr(jr,"onTransitionEnd"),u("onMouseEnter",["mouseout","mouseover"]),u("onMouseLeave",["mouseout","mouseover"]),u("onPointerEnter",["pointerout","pointerover"]),u("onPointerLeave",["pointerout","pointerover"]),l("onChange","change click focusin focusout input keydown keyup selectionchange".split(" ")),l("onSelect","focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange".split(" ")),l("onBeforeInput",["compositionend","keypress","textInput","paste"]),l("onCompositionEnd","compositionend focusout keydown keypress keyup mousedown".split(" ")),l("onCompositionStart","compositionstart focusout keydown keypress keyup mousedown".split(" ")),l("onCompositionUpdate","compositionupdate focusout keydown keypress keyup mousedown".split(" "));var Mr="abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange resize seeked seeking stalled suspend timeupdate volumechange waiting".split(" "),Fr=new Set("cancel close invalid load scroll toggle".split(" ").concat(Mr));function Lr(e,t,n){var r=e.type||"unknown-event";e.currentTarget=n,function(e,t,n,r,o,i,s,l,u){if(Ve.apply(this,arguments),Fe){if(!Fe)throw Error(a(198));var c=Le;Fe=!1,Le=null,De||(De=!0,ze=c)}}(r,t,void 0,e),e.currentTarget=null}function Dr(e,t){t=0!=(4&t);for(var n=0;n<e.length;n++){var r=e[n],o=r.event;r=r.listeners;e:{var a=void 0;if(t)for(var i=r.length-1;0<=i;i--){var s=r[i],l=s.instance,u=s.currentTarget;if(s=s.listener,l!==a&&o.isPropagationStopped())break e;Lr(o,s,u),a=l}else for(i=0;i<r.length;i++){if(l=(s=r[i]).instance,u=s.currentTarget,s=s.listener,l!==a&&o.isPropagationStopped())break e;Lr(o,s,u),a=l}}}if(De)throw e=ze,De=!1,ze=null,e}function zr(e,t){var n=t[vo];void 0===n&&(n=t[vo]=new Set);var r=e+"__bubble";n.has(r)||(Wr(t,e,2,!1),n.add(r))}function Ur(e,t,n){var r=0;t&&(r|=4),Wr(n,e,r,t)}var Vr="_reactListening"+Math.random().toString(36).slice(2);function Br(e){if(!e[Vr]){e[Vr]=!0,i.forEach((function(t){"selectionchange"!==t&&(Fr.has(t)||Ur(t,!1,e),Ur(t,!0,e))}));var t=9===e.nodeType?e:e.ownerDocument;null===t||t[Vr]||(t[Vr]=!0,Ur("selectionchange",!1,t))}}function Wr(e,t,n,r){switch(Xt(t)){case 1:var o=$t;break;case 4:o=Gt;break;default:o=Yt}n=o.bind(null,t,n,e),o=void 0,!Re||"touchstart"!==t&&"touchmove"!==t&&"wheel"!==t||(o=!0),r?void 0!==o?e.addEventListener(t,n,{capture:!0,passive:o}):e.addEventListener(t,n,!0):void 0!==o?e.addEventListener(t,n,{passive:o}):e.addEventListener(t,n,!1)}function Hr(e,t,n,r,o){var a=r;if(0==(1&t)&&0==(2&t)&&null!==r)e:for(;;){if(null===r)return;var i=r.tag;if(3===i||4===i){var s=r.stateNode.containerInfo;if(s===o||8===s.nodeType&&s.parentNode===o)break;if(4===i)for(i=r.return;null!==i;){var l=i.tag;if((3===l||4===l)&&((l=i.stateNode.containerInfo)===o||8===l.nodeType&&l.parentNode===o))return;i=i.return}for(;null!==s;){if(null===(i=bo(s)))return;if(5===(l=i.tag)||6===l){r=a=i;continue e}s=s.parentNode}}r=r.return}Ie((function(){var r=a,o=xe(n),i=[];e:{var s=Ar.get(e);if(void 0!==s){var l=cn,u=e;switch(e){case"keypress":if(0===tn(n))break e;case"keydown":case"keyup":l=Cn;break;case"focusin":u="focus",l=vn;break;case"focusout":u="blur",l=vn;break;case"beforeblur":case"afterblur":l=vn;break;case"click":if(2===n.button)break e;case"auxclick":case"dblclick":case"mousedown":case"mousemove":case"mouseup":case"mouseout":case"mouseover":case"contextmenu":l=hn;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":l=mn;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":l=jn;break;case Or:case Cr:case Pr:l=gn;break;case jr:l=An;break;case"scroll":l=pn;break;case"wheel":l=Tn;break;case"copy":case"cut":case"paste":l=bn;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":l=Pn}var c=0!=(4&t),f=!c&&"scroll"===e,p=c?null!==s?s+"Capture":null:s;c=[];for(var d,h=r;null!==h;){var m=(d=h).stateNode;if(5===d.tag&&null!==m&&(d=m,null!==p&&null!=(m=Te(h,p))&&c.push($r(h,m,d))),f)break;h=h.return}0<c.length&&(s=new l(s,u,null,n,o),i.push({event:s,listeners:c}))}}if(0==(7&t)){if(l="mouseout"===e||"pointerout"===e,(!(s="mouseover"===e||"pointerover"===e)||n===we||!(u=n.relatedTarget||n.fromElement)||!bo(u)&&!u[mo])&&(l||s)&&(s=o.window===o?o:(s=o.ownerDocument)?s.defaultView||s.parentWindow:window,l?(l=r,null!==(u=(u=n.relatedTarget||n.toElement)?bo(u):null)&&(u!==(f=Be(u))||5!==u.tag&&6!==u.tag)&&(u=null)):(l=null,u=r),l!==u)){if(c=hn,m="onMouseLeave",p="onMouseEnter",h="mouse","pointerout"!==e&&"pointerover"!==e||(c=Pn,m="onPointerLeave",p="onPointerEnter",h="pointer"),f=null==l?s:xo(l),d=null==u?s:xo(u),(s=new c(m,h+"leave",l,n,o)).target=f,s.relatedTarget=d,m=null,bo(o)===r&&((c=new c(p,h+"enter",u,n,o)).target=d,c.relatedTarget=f,m=c),f=m,l&&u)e:{for(p=u,h=0,d=c=l;d;d=Yr(d))h++;for(d=0,m=p;m;m=Yr(m))d++;for(;0<h-d;)c=Yr(c),h--;for(;0<d-h;)p=Yr(p),d--;for(;h--;){if(c===p||null!==p&&c===p.alternate)break e;c=Yr(c),p=Yr(p)}c=null}else c=null;null!==l&&qr(i,s,l,c,!1),null!==u&&null!==f&&qr(i,f,u,c,!0)}if("select"===(l=(s=r?xo(r):window).nodeName&&s.nodeName.toLowerCase())||"input"===l&&"file"===s.type)var v=Xn;else if(Hn(s))if(Kn)v=ir;else{v=or;var g=rr}else(l=s.nodeName)&&"input"===l.toLowerCase()&&("checkbox"===s.type||"radio"===s.type)&&(v=ar);switch(v&&(v=v(e,r))?$n(i,v,n,o):(g&&g(e,s,r),"focusout"===e&&(g=s._wrapperState)&&g.controlled&&"number"===s.type&&ee(s,"number",s.value)),g=r?xo(r):window,e){case"focusin":(Hn(g)||"true"===g.contentEditable)&&(vr=g,gr=r,yr=null);break;case"focusout":yr=gr=vr=null;break;case"mousedown":br=!0;break;case"contextmenu":case"mouseup":case"dragend":br=!1,wr(i,n,o);break;case"selectionchange":if(mr)break;case"keydown":case"keyup":wr(i,n,o)}var y;if(Nn)e:{switch(e){case"compositionstart":var b="onCompositionStart";break e;case"compositionend":b="onCompositionEnd";break e;case"compositionupdate":b="onCompositionUpdate";break e}b=void 0}else Bn?Un(e,n)&&(b="onCompositionEnd"):"keydown"===e&&229===n.keyCode&&(b="onCompositionStart");b&&(Ln&&"ko"!==n.locale&&(Bn||"onCompositionStart"!==b?"onCompositionEnd"===b&&Bn&&(y=en()):(Jt="value"in(Kt=o)?Kt.value:Kt.textContent,Bn=!0)),0<(g=Gr(r,b)).length&&(b=new wn(b,e,null,n,o),i.push({event:b,listeners:g}),(y||null!==(y=Vn(n)))&&(b.data=y))),(y=Fn?function(e,t){switch(e){case"compositionend":return Vn(t);case"keypress":return 32!==t.which?null:(zn=!0,Dn);case"textInput":return(e=t.data)===Dn&&zn?null:e;default:return null}}(e,n):function(e,t){if(Bn)return"compositionend"===e||!Nn&&Un(e,t)?(e=en(),Zt=Jt=Kt=null,Bn=!1,e):null;switch(e){case"paste":default:return null;case"keypress":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1<t.char.length)return t.char;if(t.which)return String.fromCharCode(t.which)}return null;case"compositionend":return Ln&&"ko"!==t.locale?null:t.data}}(e,n))&&0<(r=Gr(r,"onBeforeInput")).length&&(o=new wn("onBeforeInput","beforeinput",null,n,o),i.push({event:o,listeners:r}),o.data=y)}Dr(i,t)}))}function $r(e,t,n){return{instance:e,listener:t,currentTarget:n}}function Gr(e,t){for(var n=t+"Capture",r=[];null!==e;){var o=e,a=o.stateNode;5===o.tag&&null!==a&&(o=a,null!=(a=Te(e,n))&&r.unshift($r(e,a,o)),null!=(a=Te(e,t))&&r.push($r(e,a,o))),e=e.return}return r}function Yr(e){if(null===e)return null;do{e=e.return}while(e&&5!==e.tag);return e||null}function qr(e,t,n,r,o){for(var a=t._reactName,i=[];null!==n&&n!==r;){var s=n,l=s.alternate,u=s.stateNode;if(null!==l&&l===r)break;5===s.tag&&null!==u&&(s=u,o?null!=(l=Te(n,a))&&i.unshift($r(n,l,s)):o||null!=(l=Te(n,a))&&i.push($r(n,l,s))),n=n.return}0!==i.length&&e.push({event:t,listeners:i})}var Qr=/\r\n?/g,Xr=/\u0000|\uFFFD/g;function Kr(e){return("string"==typeof e?e:""+e).replace(Qr,"\n").replace(Xr,"")}function Jr(e,t,n){if(t=Kr(t),Kr(e)!==t&&n)throw Error(a(425))}function Zr(){}var eo=null,to=null;function no(e,t){return"textarea"===e||"noscript"===e||"string"==typeof t.children||"number"==typeof t.children||"object"==typeof t.dangerouslySetInnerHTML&&null!==t.dangerouslySetInnerHTML&&null!=t.dangerouslySetInnerHTML.__html}var ro="function"==typeof setTimeout?setTimeout:void 0,oo="function"==typeof clearTimeout?clearTimeout:void 0,ao="function"==typeof Promise?Promise:void 0,io="function"==typeof queueMicrotask?queueMicrotask:void 0!==ao?function(e){return ao.resolve(null).then(e).catch(so)}:ro;function so(e){setTimeout((function(){throw e}))}function lo(e,t){var n=t,r=0;do{var o=n.nextSibling;if(e.removeChild(n),o&&8===o.nodeType)if("/$"===(n=o.data)){if(0===r)return e.removeChild(o),void Bt(t);r--}else"$"!==n&&"$?"!==n&&"$!"!==n||r++;n=o}while(n);Bt(t)}function uo(e){for(;null!=e;e=e.nextSibling){var t=e.nodeType;if(1===t||3===t)break;if(8===t){if("$"===(t=e.data)||"$!"===t||"$?"===t)break;if("/$"===t)return null}}return e}function co(e){e=e.previousSibling;for(var t=0;e;){if(8===e.nodeType){var n=e.data;if("$"===n||"$!"===n||"$?"===n){if(0===t)return e;t--}else"/$"===n&&t++}e=e.previousSibling}return null}var fo=Math.random().toString(36).slice(2),po="__reactFiber$"+fo,ho="__reactProps$"+fo,mo="__reactContainer$"+fo,vo="__reactEvents$"+fo,go="__reactListeners$"+fo,yo="__reactHandles$"+fo;function bo(e){var t=e[po];if(t)return t;for(var n=e.parentNode;n;){if(t=n[mo]||n[po]){if(n=t.alternate,null!==t.child||null!==n&&null!==n.child)for(e=co(e);null!==e;){if(n=e[po])return n;e=co(e)}return t}n=(e=n).parentNode}return null}function wo(e){return!(e=e[po]||e[mo])||5!==e.tag&&6!==e.tag&&13!==e.tag&&3!==e.tag?null:e}function xo(e){if(5===e.tag||6===e.tag)return e.stateNode;throw Error(a(33))}function Eo(e){return e[ho]||null}var So=[],ko=-1;function _o(e){return{current:e}}function Oo(e){0>ko||(e.current=So[ko],So[ko]=null,ko--)}function Co(e,t){ko++,So[ko]=e.current,e.current=t}var Po={},jo=_o(Po),Ao=_o(!1),Io=Po;function To(e,t){var n=e.type.contextTypes;if(!n)return Po;var r=e.stateNode;if(r&&r.__reactInternalMemoizedUnmaskedChildContext===t)return r.__reactInternalMemoizedMaskedChildContext;var o,a={};for(o in n)a[o]=t[o];return r&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=a),a}function Ro(e){return null!=e.childContextTypes}function No(){Oo(Ao),Oo(jo)}function Mo(e,t,n){if(jo.current!==Po)throw Error(a(168));Co(jo,t),Co(Ao,n)}function Fo(e,t,n){var r=e.stateNode;if(t=t.childContextTypes,"function"!=typeof r.getChildContext)return n;for(var o in r=r.getChildContext())if(!(o in t))throw Error(a(108,W(e)||"Unknown",o));return L({},n,r)}function Lo(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||Po,Io=jo.current,Co(jo,e),Co(Ao,Ao.current),!0}function Do(e,t,n){var r=e.stateNode;if(!r)throw Error(a(169));n?(e=Fo(e,t,Io),r.__reactInternalMemoizedMergedChildContext=e,Oo(Ao),Oo(jo),Co(jo,e)):Oo(Ao),Co(Ao,n)}var zo=null,Uo=!1,Vo=!1;function Bo(e){null===zo?zo=[e]:zo.push(e)}function Wo(){if(!Vo&&null!==zo){Vo=!0;var e=0,t=bt;try{var n=zo;for(bt=1;e<n.length;e++){var r=n[e];do{r=r(!0)}while(null!==r)}zo=null,Uo=!1}catch(t){throw null!==zo&&(zo=zo.slice(e+1)),Ye(Ze,Wo),t}finally{bt=t,Vo=!1}}return null}var Ho=w.ReactCurrentBatchConfig;function $o(e,t){if(e&&e.defaultProps){for(var n in t=L({},t),e=e.defaultProps)void 0===t[n]&&(t[n]=e[n]);return t}return t}var Go=_o(null),Yo=null,qo=null,Qo=null;function Xo(){Qo=qo=Yo=null}function Ko(e){var t=Go.current;Oo(Go),e._currentValue=t}function Jo(e,t,n){for(;null!==e;){var r=e.alternate;if((e.childLanes&t)!==t?(e.childLanes|=t,null!==r&&(r.childLanes|=t)):null!==r&&(r.childLanes&t)!==t&&(r.childLanes|=t),e===n)break;e=e.return}}function Zo(e,t){Yo=e,Qo=qo=null,null!==(e=e.dependencies)&&null!==e.firstContext&&(0!=(e.lanes&t)&&(xs=!0),e.firstContext=null)}function ea(e){var t=e._currentValue;if(Qo!==e)if(e={context:e,memoizedValue:t,next:null},null===qo){if(null===Yo)throw Error(a(308));qo=e,Yo.dependencies={lanes:0,firstContext:e}}else qo=qo.next=e;return t}var ta=null,na=!1;function ra(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,interleaved:null,lanes:0},effects:null}}function oa(e,t){e=e.updateQueue,t.updateQueue===e&&(t.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,effects:e.effects})}function aa(e,t){return{eventTime:e,lane:t,tag:0,payload:null,callback:null,next:null}}function ia(e,t){var n=e.updateQueue;null!==n&&(n=n.shared,tu(e)?(null===(e=n.interleaved)?(t.next=t,null===ta?ta=[n]:ta.push(n)):(t.next=e.next,e.next=t),n.interleaved=t):(null===(e=n.pending)?t.next=t:(t.next=e.next,e.next=t),n.pending=t))}function sa(e,t,n){if(null!==(t=t.updateQueue)&&(t=t.shared,0!=(4194240&n))){var r=t.lanes;n|=r&=e.pendingLanes,t.lanes=n,yt(e,n)}}function la(e,t){var n=e.updateQueue,r=e.alternate;if(null!==r&&n===(r=r.updateQueue)){var o=null,a=null;if(null!==(n=n.firstBaseUpdate)){do{var i={eventTime:n.eventTime,lane:n.lane,tag:n.tag,payload:n.payload,callback:n.callback,next:null};null===a?o=a=i:a=a.next=i,n=n.next}while(null!==n);null===a?o=a=t:a=a.next=t}else o=a=t;return n={baseState:r.baseState,firstBaseUpdate:o,lastBaseUpdate:a,shared:r.shared,effects:r.effects},void(e.updateQueue=n)}null===(e=n.lastBaseUpdate)?n.firstBaseUpdate=t:e.next=t,n.lastBaseUpdate=t}function ua(e,t,n,r){var o=e.updateQueue;na=!1;var a=o.firstBaseUpdate,i=o.lastBaseUpdate,s=o.shared.pending;if(null!==s){o.shared.pending=null;var l=s,u=l.next;l.next=null,null===i?a=u:i.next=u,i=l;var c=e.alternate;null!==c&&(s=(c=c.updateQueue).lastBaseUpdate)!==i&&(null===s?c.firstBaseUpdate=u:s.next=u,c.lastBaseUpdate=l)}if(null!==a){var f=o.baseState;for(i=0,c=u=l=null,s=a;;){var p=s.lane,d=s.eventTime;if((r&p)===p){null!==c&&(c=c.next={eventTime:d,lane:0,tag:s.tag,payload:s.payload,callback:s.callback,next:null});e:{var h=e,m=s;switch(p=t,d=n,m.tag){case 1:if("function"==typeof(h=m.payload)){f=h.call(d,f,p);break e}f=h;break e;case 3:h.flags=-65537&h.flags|128;case 0:if(null==(p="function"==typeof(h=m.payload)?h.call(d,f,p):h))break e;f=L({},f,p);break e;case 2:na=!0}}null!==s.callback&&0!==s.lane&&(e.flags|=64,null===(p=o.effects)?o.effects=[s]:p.push(s))}else d={eventTime:d,lane:p,tag:s.tag,payload:s.payload,callback:s.callback,next:null},null===c?(u=c=d,l=f):c=c.next=d,i|=p;if(null===(s=s.next)){if(null===(s=o.shared.pending))break;s=(p=s).next,p.next=null,o.lastBaseUpdate=p,o.shared.pending=null}}if(null===c&&(l=f),o.baseState=l,o.firstBaseUpdate=u,o.lastBaseUpdate=c,null!==(t=o.shared.interleaved)){o=t;do{i|=o.lane,o=o.next}while(o!==t)}else null===a&&(o.shared.lanes=0);Rl|=i,e.lanes=i,e.memoizedState=f}}function ca(e,t,n){if(e=t.effects,t.effects=null,null!==e)for(t=0;t<e.length;t++){var r=e[t],o=r.callback;if(null!==o){if(r.callback=null,r=n,"function"!=typeof o)throw Error(a(191,o));o.call(r)}}}var fa=(new r.Component).refs;function pa(e,t,n,r){n=null==(n=n(r,t=e.memoizedState))?t:L({},t,n),e.memoizedState=n,0===e.lanes&&(e.updateQueue.baseState=n)}var da={isMounted:function(e){return!!(e=e._reactInternals)&&Be(e)===e},enqueueSetState:function(e,t,n){e=e._reactInternals;var r=Kl(),o=Jl(e),a=aa(r,o);a.payload=t,null!=n&&(a.callback=n),ia(e,a),null!==(t=Zl(e,o,r))&&sa(t,e,o)},enqueueReplaceState:function(e,t,n){e=e._reactInternals;var r=Kl(),o=Jl(e),a=aa(r,o);a.tag=1,a.payload=t,null!=n&&(a.callback=n),ia(e,a),null!==(t=Zl(e,o,r))&&sa(t,e,o)},enqueueForceUpdate:function(e,t){e=e._reactInternals;var n=Kl(),r=Jl(e),o=aa(n,r);o.tag=2,null!=t&&(o.callback=t),ia(e,o),null!==(t=Zl(e,r,n))&&sa(t,e,r)}};function ha(e,t,n,r,o,a,i){return"function"==typeof(e=e.stateNode).shouldComponentUpdate?e.shouldComponentUpdate(r,a,i):!(t.prototype&&t.prototype.isPureReactComponent&&lr(n,r)&&lr(o,a))}function ma(e,t,n){var r=!1,o=Po,a=t.contextType;return"object"==typeof a&&null!==a?a=ea(a):(o=Ro(t)?Io:jo.current,a=(r=null!=(r=t.contextTypes))?To(e,o):Po),t=new t(n,a),e.memoizedState=null!==t.state&&void 0!==t.state?t.state:null,t.updater=da,e.stateNode=t,t._reactInternals=e,r&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=o,e.__reactInternalMemoizedMaskedChildContext=a),t}function va(e,t,n,r){e=t.state,"function"==typeof t.componentWillReceiveProps&&t.componentWillReceiveProps(n,r),"function"==typeof t.UNSAFE_componentWillReceiveProps&&t.UNSAFE_componentWillReceiveProps(n,r),t.state!==e&&da.enqueueReplaceState(t,t.state,null)}function ga(e,t,n,r){var o=e.stateNode;o.props=n,o.state=e.memoizedState,o.refs=fa,ra(e);var a=t.contextType;"object"==typeof a&&null!==a?o.context=ea(a):(a=Ro(t)?Io:jo.current,o.context=To(e,a)),o.state=e.memoizedState,"function"==typeof(a=t.getDerivedStateFromProps)&&(pa(e,t,a,n),o.state=e.memoizedState),"function"==typeof t.getDerivedStateFromProps||"function"==typeof o.getSnapshotBeforeUpdate||"function"!=typeof o.UNSAFE_componentWillMount&&"function"!=typeof o.componentWillMount||(t=o.state,"function"==typeof o.componentWillMount&&o.componentWillMount(),"function"==typeof o.UNSAFE_componentWillMount&&o.UNSAFE_componentWillMount(),t!==o.state&&da.enqueueReplaceState(o,o.state,null),ua(e,n,o,r),o.state=e.memoizedState),"function"==typeof o.componentDidMount&&(e.flags|=4194308)}var ya=[],ba=0,wa=null,xa=0,Ea=[],Sa=0,ka=null,_a=1,Oa="";function Ca(e,t){ya[ba++]=xa,ya[ba++]=wa,wa=e,xa=t}function Pa(e,t,n){Ea[Sa++]=_a,Ea[Sa++]=Oa,Ea[Sa++]=ka,ka=e;var r=_a;e=Oa;var o=32-it(r)-1;r&=~(1<<o),n+=1;var a=32-it(t)+o;if(30<a){var i=o-o%5;a=(r&(1<<i)-1).toString(32),r>>=i,o-=i,_a=1<<32-it(t)+o|n<<o|r,Oa=a+e}else _a=1<<a|n<<o|r,Oa=e}function ja(e){null!==e.return&&(Ca(e,1),Pa(e,1,0))}function Aa(e){for(;e===wa;)wa=ya[--ba],ya[ba]=null,xa=ya[--ba],ya[ba]=null;for(;e===ka;)ka=Ea[--Sa],Ea[Sa]=null,Oa=Ea[--Sa],Ea[Sa]=null,_a=Ea[--Sa],Ea[Sa]=null}var Ia=null,Ta=null,Ra=!1,Na=null;function Ma(e,t){var n=Au(5,null,null,0);n.elementType="DELETED",n.stateNode=t,n.return=e,null===(t=e.deletions)?(e.deletions=[n],e.flags|=16):t.push(n)}function Fa(e,t){switch(e.tag){case 5:var n=e.type;return null!==(t=1!==t.nodeType||n.toLowerCase()!==t.nodeName.toLowerCase()?null:t)&&(e.stateNode=t,Ia=e,Ta=uo(t.firstChild),!0);case 6:return null!==(t=""===e.pendingProps||3!==t.nodeType?null:t)&&(e.stateNode=t,Ia=e,Ta=null,!0);case 13:return null!==(t=8!==t.nodeType?null:t)&&(n=null!==ka?{id:_a,overflow:Oa}:null,e.memoizedState={dehydrated:t,treeContext:n,retryLane:1073741824},(n=Au(18,null,null,0)).stateNode=t,n.return=e,e.child=n,Ia=e,Ta=null,!0);default:return!1}}function La(e){return 0!=(1&e.mode)&&0==(128&e.flags)}function Da(e){if(Ra){var t=Ta;if(t){var n=t;if(!Fa(e,t)){if(La(e))throw Error(a(418));t=uo(n.nextSibling);var r=Ia;t&&Fa(e,t)?Ma(r,n):(e.flags=-4097&e.flags|2,Ra=!1,Ia=e)}}else{if(La(e))throw Error(a(418));e.flags=-4097&e.flags|2,Ra=!1,Ia=e}}}function za(e){for(e=e.return;null!==e&&5!==e.tag&&3!==e.tag&&13!==e.tag;)e=e.return;Ia=e}function Ua(e){if(e!==Ia)return!1;if(!Ra)return za(e),Ra=!0,!1;var t;if((t=3!==e.tag)&&!(t=5!==e.tag)&&(t="head"!==(t=e.type)&&"body"!==t&&!no(e.type,e.memoizedProps)),t&&(t=Ta)){if(La(e)){for(e=Ta;e;)e=uo(e.nextSibling);throw Error(a(418))}for(;t;)Ma(e,t),t=uo(t.nextSibling)}if(za(e),13===e.tag){if(!(e=null!==(e=e.memoizedState)?e.dehydrated:null))throw Error(a(317));e:{for(e=e.nextSibling,t=0;e;){if(8===e.nodeType){var n=e.data;if("/$"===n){if(0===t){Ta=uo(e.nextSibling);break e}t--}else"$"!==n&&"$!"!==n&&"$?"!==n||t++}e=e.nextSibling}Ta=null}}else Ta=Ia?uo(e.stateNode.nextSibling):null;return!0}function Va(){Ta=Ia=null,Ra=!1}function Ba(e){null===Na?Na=[e]:Na.push(e)}function Wa(e,t,n){if(null!==(e=n.ref)&&"function"!=typeof e&&"object"!=typeof e){if(n._owner){if(n=n._owner){if(1!==n.tag)throw Error(a(309));var r=n.stateNode}if(!r)throw Error(a(147,e));var o=r,i=""+e;return null!==t&&null!==t.ref&&"function"==typeof t.ref&&t.ref._stringRef===i?t.ref:(t=function(e){var t=o.refs;t===fa&&(t=o.refs={}),null===e?delete t[i]:t[i]=e},t._stringRef=i,t)}if("string"!=typeof e)throw Error(a(284));if(!n._owner)throw Error(a(290,e))}return e}function Ha(e,t){throw e=Object.prototype.toString.call(t),Error(a(31,"[object Object]"===e?"object with keys {"+Object.keys(t).join(", ")+"}":e))}function $a(e){return(0,e._init)(e._payload)}function Ga(e){function t(t,n){if(e){var r=t.deletions;null===r?(t.deletions=[n],t.flags|=16):r.push(n)}}function n(n,r){if(!e)return null;for(;null!==r;)t(n,r),r=r.sibling;return null}function r(e,t){for(e=new Map;null!==t;)null!==t.key?e.set(t.key,t):e.set(t.index,t),t=t.sibling;return e}function o(e,t){return(e=Tu(e,t)).index=0,e.sibling=null,e}function i(t,n,r){return t.index=r,e?null!==(r=t.alternate)?(r=r.index)<n?(t.flags|=2,n):r:(t.flags|=2,n):(t.flags|=1048576,n)}function s(t){return e&&null===t.alternate&&(t.flags|=2),t}function l(e,t,n,r){return null===t||6!==t.tag?((t=Fu(n,e.mode,r)).return=e,t):((t=o(t,n)).return=e,t)}function u(e,t,n,r){var a=n.type;return a===S?f(e,t,n.props.children,r,n.key):null!==t&&(t.elementType===a||"object"==typeof a&&null!==a&&a.$$typeof===T&&$a(a)===t.type)?((r=o(t,n.props)).ref=Wa(e,t,n),r.return=e,r):((r=Ru(n.type,n.key,n.props,null,e.mode,r)).ref=Wa(e,t,n),r.return=e,r)}function c(e,t,n,r){return null===t||4!==t.tag||t.stateNode.containerInfo!==n.containerInfo||t.stateNode.implementation!==n.implementation?((t=Lu(n,e.mode,r)).return=e,t):((t=o(t,n.children||[])).return=e,t)}function f(e,t,n,r,a){return null===t||7!==t.tag?((t=Nu(n,e.mode,r,a)).return=e,t):((t=o(t,n)).return=e,t)}function p(e,t,n){if("string"==typeof t&&""!==t||"number"==typeof t)return(t=Fu(""+t,e.mode,n)).return=e,t;if("object"==typeof t&&null!==t){switch(t.$$typeof){case x:return(n=Ru(t.type,t.key,t.props,null,e.mode,n)).ref=Wa(e,null,t),n.return=e,n;case E:return(t=Lu(t,e.mode,n)).return=e,t;case T:return p(e,(0,t._init)(t._payload),n)}if(te(t)||M(t))return(t=Nu(t,e.mode,n,null)).return=e,t;Ha(e,t)}return null}function d(e,t,n,r){var o=null!==t?t.key:null;if("string"==typeof n&&""!==n||"number"==typeof n)return null!==o?null:l(e,t,""+n,r);if("object"==typeof n&&null!==n){switch(n.$$typeof){case x:return n.key===o?u(e,t,n,r):null;case E:return n.key===o?c(e,t,n,r):null;case T:return d(e,t,(o=n._init)(n._payload),r)}if(te(n)||M(n))return null!==o?null:f(e,t,n,r,null);Ha(e,n)}return null}function h(e,t,n,r,o){if("string"==typeof r&&""!==r||"number"==typeof r)return l(t,e=e.get(n)||null,""+r,o);if("object"==typeof r&&null!==r){switch(r.$$typeof){case x:return u(t,e=e.get(null===r.key?n:r.key)||null,r,o);case E:return c(t,e=e.get(null===r.key?n:r.key)||null,r,o);case T:return h(e,t,n,(0,r._init)(r._payload),o)}if(te(r)||M(r))return f(t,e=e.get(n)||null,r,o,null);Ha(t,r)}return null}function m(o,a,s,l){for(var u=null,c=null,f=a,m=a=0,v=null;null!==f&&m<s.length;m++){f.index>m?(v=f,f=null):v=f.sibling;var g=d(o,f,s[m],l);if(null===g){null===f&&(f=v);break}e&&f&&null===g.alternate&&t(o,f),a=i(g,a,m),null===c?u=g:c.sibling=g,c=g,f=v}if(m===s.length)return n(o,f),Ra&&Ca(o,m),u;if(null===f){for(;m<s.length;m++)null!==(f=p(o,s[m],l))&&(a=i(f,a,m),null===c?u=f:c.sibling=f,c=f);return Ra&&Ca(o,m),u}for(f=r(o,f);m<s.length;m++)null!==(v=h(f,o,m,s[m],l))&&(e&&null!==v.alternate&&f.delete(null===v.key?m:v.key),a=i(v,a,m),null===c?u=v:c.sibling=v,c=v);return e&&f.forEach((function(e){return t(o,e)})),Ra&&Ca(o,m),u}function v(o,s,l,u){var c=M(l);if("function"!=typeof c)throw Error(a(150));if(null==(l=c.call(l)))throw Error(a(151));for(var f=c=null,m=s,v=s=0,g=null,y=l.next();null!==m&&!y.done;v++,y=l.next()){m.index>v?(g=m,m=null):g=m.sibling;var b=d(o,m,y.value,u);if(null===b){null===m&&(m=g);break}e&&m&&null===b.alternate&&t(o,m),s=i(b,s,v),null===f?c=b:f.sibling=b,f=b,m=g}if(y.done)return n(o,m),Ra&&Ca(o,v),c;if(null===m){for(;!y.done;v++,y=l.next())null!==(y=p(o,y.value,u))&&(s=i(y,s,v),null===f?c=y:f.sibling=y,f=y);return Ra&&Ca(o,v),c}for(m=r(o,m);!y.done;v++,y=l.next())null!==(y=h(m,o,v,y.value,u))&&(e&&null!==y.alternate&&m.delete(null===y.key?v:y.key),s=i(y,s,v),null===f?c=y:f.sibling=y,f=y);return e&&m.forEach((function(e){return t(o,e)})),Ra&&Ca(o,v),c}return function e(r,a,i,l){if("object"==typeof i&&null!==i&&i.type===S&&null===i.key&&(i=i.props.children),"object"==typeof i&&null!==i){switch(i.$$typeof){case x:e:{for(var u=i.key,c=a;null!==c;){if(c.key===u){if((u=i.type)===S){if(7===c.tag){n(r,c.sibling),(a=o(c,i.props.children)).return=r,r=a;break e}}else if(c.elementType===u||"object"==typeof u&&null!==u&&u.$$typeof===T&&$a(u)===c.type){n(r,c.sibling),(a=o(c,i.props)).ref=Wa(r,c,i),a.return=r,r=a;break e}n(r,c);break}t(r,c),c=c.sibling}i.type===S?((a=Nu(i.props.children,r.mode,l,i.key)).return=r,r=a):((l=Ru(i.type,i.key,i.props,null,r.mode,l)).ref=Wa(r,a,i),l.return=r,r=l)}return s(r);case E:e:{for(c=i.key;null!==a;){if(a.key===c){if(4===a.tag&&a.stateNode.containerInfo===i.containerInfo&&a.stateNode.implementation===i.implementation){n(r,a.sibling),(a=o(a,i.children||[])).return=r,r=a;break e}n(r,a);break}t(r,a),a=a.sibling}(a=Lu(i,r.mode,l)).return=r,r=a}return s(r);case T:return e(r,a,(c=i._init)(i._payload),l)}if(te(i))return m(r,a,i,l);if(M(i))return v(r,a,i,l);Ha(r,i)}return"string"==typeof i&&""!==i||"number"==typeof i?(i=""+i,null!==a&&6===a.tag?(n(r,a.sibling),(a=o(a,i)).return=r,r=a):(n(r,a),(a=Fu(i,r.mode,l)).return=r,r=a),s(r)):n(r,a)}}var Ya=Ga(!0),qa=Ga(!1),Qa={},Xa=_o(Qa),Ka=_o(Qa),Ja=_o(Qa);function Za(e){if(e===Qa)throw Error(a(174));return e}function ei(e,t){switch(Co(Ja,t),Co(Ka,e),Co(Xa,Qa),e=t.nodeType){case 9:case 11:t=(t=t.documentElement)?t.namespaceURI:le(null,"");break;default:t=le(t=(e=8===e?t.parentNode:t).namespaceURI||null,e=e.tagName)}Oo(Xa),Co(Xa,t)}function ti(){Oo(Xa),Oo(Ka),Oo(Ja)}function ni(e){Za(Ja.current);var t=Za(Xa.current),n=le(t,e.type);t!==n&&(Co(Ka,e),Co(Xa,n))}function ri(e){Ka.current===e&&(Oo(Xa),Oo(Ka))}var oi=_o(0);function ai(e){for(var t=e;null!==t;){if(13===t.tag){var n=t.memoizedState;if(null!==n&&(null===(n=n.dehydrated)||"$?"===n.data||"$!"===n.data))return t}else if(19===t.tag&&void 0!==t.memoizedProps.revealOrder){if(0!=(128&t.flags))return t}else if(null!==t.child){t.child.return=t,t=t.child;continue}if(t===e)break;for(;null===t.sibling;){if(null===t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}var ii=[];function si(){for(var e=0;e<ii.length;e++)ii[e]._workInProgressVersionPrimary=null;ii.length=0}var li=w.ReactCurrentDispatcher,ui=w.ReactCurrentBatchConfig,ci=0,fi=null,pi=null,di=null,hi=!1,mi=!1,vi=0,gi=0;function yi(){throw Error(a(321))}function bi(e,t){if(null===t)return!1;for(var n=0;n<t.length&&n<e.length;n++)if(!sr(e[n],t[n]))return!1;return!0}function wi(e,t,n,r,o,i){if(ci=i,fi=t,t.memoizedState=null,t.updateQueue=null,t.lanes=0,li.current=null===e||null===e.memoizedState?rs:os,e=n(r,o),mi){i=0;do{if(mi=!1,vi=0,25<=i)throw Error(a(301));i+=1,di=pi=null,t.updateQueue=null,li.current=as,e=n(r,o)}while(mi)}if(li.current=ns,t=null!==pi&&null!==pi.next,ci=0,di=pi=fi=null,hi=!1,t)throw Error(a(300));return e}function xi(){var e=0!==vi;return vi=0,e}function Ei(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return null===di?fi.memoizedState=di=e:di=di.next=e,di}function Si(){if(null===pi){var e=fi.alternate;e=null!==e?e.memoizedState:null}else e=pi.next;var t=null===di?fi.memoizedState:di.next;if(null!==t)di=t,pi=e;else{if(null===e)throw Error(a(310));e={memoizedState:(pi=e).memoizedState,baseState:pi.baseState,baseQueue:pi.baseQueue,queue:pi.queue,next:null},null===di?fi.memoizedState=di=e:di=di.next=e}return di}function ki(e,t){return"function"==typeof t?t(e):t}function _i(e){var t=Si(),n=t.queue;if(null===n)throw Error(a(311));n.lastRenderedReducer=e;var r=pi,o=r.baseQueue,i=n.pending;if(null!==i){if(null!==o){var s=o.next;o.next=i.next,i.next=s}r.baseQueue=o=i,n.pending=null}if(null!==o){i=o.next,r=r.baseState;var l=s=null,u=null,c=i;do{var f=c.lane;if((ci&f)===f)null!==u&&(u=u.next={lane:0,action:c.action,hasEagerState:c.hasEagerState,eagerState:c.eagerState,next:null}),r=c.hasEagerState?c.eagerState:e(r,c.action);else{var p={lane:f,action:c.action,hasEagerState:c.hasEagerState,eagerState:c.eagerState,next:null};null===u?(l=u=p,s=r):u=u.next=p,fi.lanes|=f,Rl|=f}c=c.next}while(null!==c&&c!==i);null===u?s=r:u.next=l,sr(r,t.memoizedState)||(xs=!0),t.memoizedState=r,t.baseState=s,t.baseQueue=u,n.lastRenderedState=r}if(null!==(e=n.interleaved)){o=e;do{i=o.lane,fi.lanes|=i,Rl|=i,o=o.next}while(o!==e)}else null===o&&(n.lanes=0);return[t.memoizedState,n.dispatch]}function Oi(e){var t=Si(),n=t.queue;if(null===n)throw Error(a(311));n.lastRenderedReducer=e;var r=n.dispatch,o=n.pending,i=t.memoizedState;if(null!==o){n.pending=null;var s=o=o.next;do{i=e(i,s.action),s=s.next}while(s!==o);sr(i,t.memoizedState)||(xs=!0),t.memoizedState=i,null===t.baseQueue&&(t.baseState=i),n.lastRenderedState=i}return[i,r]}function Ci(){}function Pi(e,t){var n=fi,r=Si(),o=t(),i=!sr(r.memoizedState,o);if(i&&(r.memoizedState=o,xs=!0),r=r.queue,zi(Ii.bind(null,n,r,e),[e]),r.getSnapshot!==t||i||null!==di&&1&di.memoizedState.tag){if(n.flags|=2048,Ni(9,Ai.bind(null,n,r,o,t),void 0,null),null===Ol)throw Error(a(349));0!=(30&ci)||ji(n,t,o)}return o}function ji(e,t,n){e.flags|=16384,e={getSnapshot:t,value:n},null===(t=fi.updateQueue)?(t={lastEffect:null,stores:null},fi.updateQueue=t,t.stores=[e]):null===(n=t.stores)?t.stores=[e]:n.push(e)}function Ai(e,t,n,r){t.value=n,t.getSnapshot=r,Ti(t)&&Zl(e,1,-1)}function Ii(e,t,n){return n((function(){Ti(t)&&Zl(e,1,-1)}))}function Ti(e){var t=e.getSnapshot;e=e.value;try{var n=t();return!sr(e,n)}catch(e){return!0}}function Ri(e){var t=Ei();return"function"==typeof e&&(e=e()),t.memoizedState=t.baseState=e,e={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:ki,lastRenderedState:e},t.queue=e,e=e.dispatch=Ki.bind(null,fi,e),[t.memoizedState,e]}function Ni(e,t,n,r){return e={tag:e,create:t,destroy:n,deps:r,next:null},null===(t=fi.updateQueue)?(t={lastEffect:null,stores:null},fi.updateQueue=t,t.lastEffect=e.next=e):null===(n=t.lastEffect)?t.lastEffect=e.next=e:(r=n.next,n.next=e,e.next=r,t.lastEffect=e),e}function Mi(){return Si().memoizedState}function Fi(e,t,n,r){var o=Ei();fi.flags|=e,o.memoizedState=Ni(1|t,n,void 0,void 0===r?null:r)}function Li(e,t,n,r){var o=Si();r=void 0===r?null:r;var a=void 0;if(null!==pi){var i=pi.memoizedState;if(a=i.destroy,null!==r&&bi(r,i.deps))return void(o.memoizedState=Ni(t,n,a,r))}fi.flags|=e,o.memoizedState=Ni(1|t,n,a,r)}function Di(e,t){return Fi(8390656,8,e,t)}function zi(e,t){return Li(2048,8,e,t)}function Ui(e,t){return Li(4,2,e,t)}function Vi(e,t){return Li(4,4,e,t)}function Bi(e,t){return"function"==typeof t?(e=e(),t(e),function(){t(null)}):null!=t?(e=e(),t.current=e,function(){t.current=null}):void 0}function Wi(e,t,n){return n=null!=n?n.concat([e]):null,Li(4,4,Bi.bind(null,t,e),n)}function Hi(){}function $i(e,t){var n=Si();t=void 0===t?null:t;var r=n.memoizedState;return null!==r&&null!==t&&bi(t,r[1])?r[0]:(n.memoizedState=[e,t],e)}function Gi(e,t){var n=Si();t=void 0===t?null:t;var r=n.memoizedState;return null!==r&&null!==t&&bi(t,r[1])?r[0]:(e=e(),n.memoizedState=[e,t],e)}function Yi(e,t,n){return 0==(21&ci)?(e.baseState&&(e.baseState=!1,xs=!0),e.memoizedState=n):(sr(n,t)||(n=mt(),fi.lanes|=n,Rl|=n,e.baseState=!0),t)}function qi(e,t){var n=bt;bt=0!==n&&4>n?n:4,e(!0);var r=ui.transition;ui.transition={};try{e(!1),t()}finally{bt=n,ui.transition=r}}function Qi(){return Si().memoizedState}function Xi(e,t,n){var r=Jl(e);n={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null},Ji(e)?Zi(t,n):(es(e,t,n),null!==(e=Zl(e,r,n=Kl()))&&ts(e,t,r))}function Ki(e,t,n){var r=Jl(e),o={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null};if(Ji(e))Zi(t,o);else{es(e,t,o);var a=e.alternate;if(0===e.lanes&&(null===a||0===a.lanes)&&null!==(a=t.lastRenderedReducer))try{var i=t.lastRenderedState,s=a(i,n);if(o.hasEagerState=!0,o.eagerState=s,sr(s,i))return}catch(e){}null!==(e=Zl(e,r,n=Kl()))&&ts(e,t,r)}}function Ji(e){var t=e.alternate;return e===fi||null!==t&&t===fi}function Zi(e,t){mi=hi=!0;var n=e.pending;null===n?t.next=t:(t.next=n.next,n.next=t),e.pending=t}function es(e,t,n){tu(e)?(null===(e=t.interleaved)?(n.next=n,null===ta?ta=[t]:ta.push(t)):(n.next=e.next,e.next=n),t.interleaved=n):(null===(e=t.pending)?n.next=n:(n.next=e.next,e.next=n),t.pending=n)}function ts(e,t,n){if(0!=(4194240&n)){var r=t.lanes;n|=r&=e.pendingLanes,t.lanes=n,yt(e,n)}}var ns={readContext:ea,useCallback:yi,useContext:yi,useEffect:yi,useImperativeHandle:yi,useInsertionEffect:yi,useLayoutEffect:yi,useMemo:yi,useReducer:yi,useRef:yi,useState:yi,useDebugValue:yi,useDeferredValue:yi,useTransition:yi,useMutableSource:yi,useSyncExternalStore:yi,useId:yi,unstable_isNewReconciler:!1},rs={readContext:ea,useCallback:function(e,t){return Ei().memoizedState=[e,void 0===t?null:t],e},useContext:ea,useEffect:Di,useImperativeHandle:function(e,t,n){return n=null!=n?n.concat([e]):null,Fi(4194308,4,Bi.bind(null,t,e),n)},useLayoutEffect:function(e,t){return Fi(4194308,4,e,t)},useInsertionEffect:function(e,t){return Fi(4,2,e,t)},useMemo:function(e,t){var n=Ei();return t=void 0===t?null:t,e=e(),n.memoizedState=[e,t],e},useReducer:function(e,t,n){var r=Ei();return t=void 0!==n?n(t):t,r.memoizedState=r.baseState=t,e={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:e,lastRenderedState:t},r.queue=e,e=e.dispatch=Xi.bind(null,fi,e),[r.memoizedState,e]},useRef:function(e){return e={current:e},Ei().memoizedState=e},useState:Ri,useDebugValue:Hi,useDeferredValue:function(e){return Ei().memoizedState=e},useTransition:function(){var e=Ri(!1),t=e[0];return e=qi.bind(null,e[1]),Ei().memoizedState=e,[t,e]},useMutableSource:function(){},useSyncExternalStore:function(e,t,n){var r=fi,o=Ei();if(Ra){if(void 0===n)throw Error(a(407));n=n()}else{if(n=t(),null===Ol)throw Error(a(349));0!=(30&ci)||ji(r,t,n)}o.memoizedState=n;var i={value:n,getSnapshot:t};return o.queue=i,Di(Ii.bind(null,r,i,e),[e]),r.flags|=2048,Ni(9,Ai.bind(null,r,i,n,t),void 0,null),n},useId:function(){var e=Ei(),t=Ol.identifierPrefix;if(Ra){var n=Oa;t=":"+t+"R"+(n=(_a&~(1<<32-it(_a)-1)).toString(32)+n),0<(n=vi++)&&(t+="H"+n.toString(32)),t+=":"}else t=":"+t+"r"+(n=gi++).toString(32)+":";return e.memoizedState=t},unstable_isNewReconciler:!1},os={readContext:ea,useCallback:$i,useContext:ea,useEffect:zi,useImperativeHandle:Wi,useInsertionEffect:Ui,useLayoutEffect:Vi,useMemo:Gi,useReducer:_i,useRef:Mi,useState:function(){return _i(ki)},useDebugValue:Hi,useDeferredValue:function(e){return Yi(Si(),pi.memoizedState,e)},useTransition:function(){return[_i(ki)[0],Si().memoizedState]},useMutableSource:Ci,useSyncExternalStore:Pi,useId:Qi,unstable_isNewReconciler:!1},as={readContext:ea,useCallback:$i,useContext:ea,useEffect:zi,useImperativeHandle:Wi,useInsertionEffect:Ui,useLayoutEffect:Vi,useMemo:Gi,useReducer:Oi,useRef:Mi,useState:function(){return Oi(ki)},useDebugValue:Hi,useDeferredValue:function(e){var t=Si();return null===pi?t.memoizedState=e:Yi(t,pi.memoizedState,e)},useTransition:function(){return[Oi(ki)[0],Si().memoizedState]},useMutableSource:Ci,useSyncExternalStore:Pi,useId:Qi,unstable_isNewReconciler:!1};function is(e,t){try{var n="",r=t;do{n+=V(r),r=r.return}while(r);var o=n}catch(e){o="\nError generating stack: "+e.message+"\n"+e.stack}return{value:e,source:t,stack:o}}function ss(e,t){try{console.error(t.value)}catch(e){setTimeout((function(){throw e}))}}var ls,us,cs,fs="function"==typeof WeakMap?WeakMap:Map;function ps(e,t,n){(n=aa(-1,n)).tag=3,n.payload={element:null};var r=t.value;return n.callback=function(){Vl||(Vl=!0,Bl=r),ss(0,t)},n}function ds(e,t,n){(n=aa(-1,n)).tag=3;var r=e.type.getDerivedStateFromError;if("function"==typeof r){var o=t.value;n.payload=function(){return r(o)},n.callback=function(){ss(0,t)}}var a=e.stateNode;return null!==a&&"function"==typeof a.componentDidCatch&&(n.callback=function(){ss(0,t),"function"!=typeof r&&(null===Wl?Wl=new Set([this]):Wl.add(this));var e=t.stack;this.componentDidCatch(t.value,{componentStack:null!==e?e:""})}),n}function hs(e,t,n){var r=e.pingCache;if(null===r){r=e.pingCache=new fs;var o=new Set;r.set(t,o)}else void 0===(o=r.get(t))&&(o=new Set,r.set(t,o));o.has(n)||(o.add(n),e=ku.bind(null,e,t,n),t.then(e,e))}function ms(e){do{var t;if((t=13===e.tag)&&(t=null===(t=e.memoizedState)||null!==t.dehydrated),t)return e;e=e.return}while(null!==e);return null}function vs(e,t,n,r,o){return 0==(1&e.mode)?(e===t?e.flags|=65536:(e.flags|=128,n.flags|=131072,n.flags&=-52805,1===n.tag&&(null===n.alternate?n.tag=17:((t=aa(-1,1)).tag=2,ia(n,t))),n.lanes|=1),e):(e.flags|=65536,e.lanes=o,e)}function gs(e,t){if(!Ra)switch(e.tailMode){case"hidden":t=e.tail;for(var n=null;null!==t;)null!==t.alternate&&(n=t),t=t.sibling;null===n?e.tail=null:n.sibling=null;break;case"collapsed":n=e.tail;for(var r=null;null!==n;)null!==n.alternate&&(r=n),n=n.sibling;null===r?t||null===e.tail?e.tail=null:e.tail.sibling=null:r.sibling=null}}function ys(e){var t=null!==e.alternate&&e.alternate.child===e.child,n=0,r=0;if(t)for(var o=e.child;null!==o;)n|=o.lanes|o.childLanes,r|=14680064&o.subtreeFlags,r|=14680064&o.flags,o.return=e,o=o.sibling;else for(o=e.child;null!==o;)n|=o.lanes|o.childLanes,r|=o.subtreeFlags,r|=o.flags,o.return=e,o=o.sibling;return e.subtreeFlags|=r,e.childLanes=n,t}function bs(e,t,n){var r=t.pendingProps;switch(Aa(t),t.tag){case 2:case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return ys(t),null;case 1:case 17:return Ro(t.type)&&No(),ys(t),null;case 3:return r=t.stateNode,ti(),Oo(Ao),Oo(jo),si(),r.pendingContext&&(r.context=r.pendingContext,r.pendingContext=null),null!==e&&null!==e.child||(Ua(t)?t.flags|=4:null===e||e.memoizedState.isDehydrated&&0==(256&t.flags)||(t.flags|=1024,null!==Na&&(au(Na),Na=null))),ys(t),null;case 5:ri(t);var o=Za(Ja.current);if(n=t.type,null!==e&&null!=t.stateNode)us(e,t,n,r),e.ref!==t.ref&&(t.flags|=512,t.flags|=2097152);else{if(!r){if(null===t.stateNode)throw Error(a(166));return ys(t),null}if(e=Za(Xa.current),Ua(t)){r=t.stateNode,n=t.type;var i=t.memoizedProps;switch(r[po]=t,r[ho]=i,e=0!=(1&t.mode),n){case"dialog":zr("cancel",r),zr("close",r);break;case"iframe":case"object":case"embed":zr("load",r);break;case"video":case"audio":for(o=0;o<Mr.length;o++)zr(Mr[o],r);break;case"source":zr("error",r);break;case"img":case"image":case"link":zr("error",r),zr("load",r);break;case"details":zr("toggle",r);break;case"input":X(r,i),zr("invalid",r);break;case"select":r._wrapperState={wasMultiple:!!i.multiple},zr("invalid",r);break;case"textarea":oe(r,i),zr("invalid",r)}for(var l in ye(n,i),o=null,i)if(i.hasOwnProperty(l)){var u=i[l];"children"===l?"string"==typeof u?r.textContent!==u&&(!0!==i.suppressHydrationWarning&&Jr(r.textContent,u,e),o=["children",u]):"number"==typeof u&&r.textContent!==""+u&&(!0!==i.suppressHydrationWarning&&Jr(r.textContent,u,e),o=["children",""+u]):s.hasOwnProperty(l)&&null!=u&&"onScroll"===l&&zr("scroll",r)}switch(n){case"input":G(r),Z(r,i,!0);break;case"textarea":G(r),ie(r);break;case"select":case"option":break;default:"function"==typeof i.onClick&&(r.onclick=Zr)}r=o,t.updateQueue=r,null!==r&&(t.flags|=4)}else{l=9===o.nodeType?o:o.ownerDocument,"http://www.w3.org/1999/xhtml"===e&&(e=se(n)),"http://www.w3.org/1999/xhtml"===e?"script"===n?((e=l.createElement("div")).innerHTML="<script><\/script>",e=e.removeChild(e.firstChild)):"string"==typeof r.is?e=l.createElement(n,{is:r.is}):(e=l.createElement(n),"select"===n&&(l=e,r.multiple?l.multiple=!0:r.size&&(l.size=r.size))):e=l.createElementNS(e,n),e[po]=t,e[ho]=r,ls(e,t),t.stateNode=e;e:{switch(l=be(n,r),n){case"dialog":zr("cancel",e),zr("close",e),o=r;break;case"iframe":case"object":case"embed":zr("load",e),o=r;break;case"video":case"audio":for(o=0;o<Mr.length;o++)zr(Mr[o],e);o=r;break;case"source":zr("error",e),o=r;break;case"img":case"image":case"link":zr("error",e),zr("load",e),o=r;break;case"details":zr("toggle",e),o=r;break;case"input":X(e,r),o=Q(e,r),zr("invalid",e);break;case"option":default:o=r;break;case"select":e._wrapperState={wasMultiple:!!r.multiple},o=L({},r,{value:void 0}),zr("invalid",e);break;case"textarea":oe(e,r),o=re(e,r),zr("invalid",e)}for(i in ye(n,o),u=o)if(u.hasOwnProperty(i)){var c=u[i];"style"===i?ve(e,c):"dangerouslySetInnerHTML"===i?null!=(c=c?c.__html:void 0)&&fe(e,c):"children"===i?"string"==typeof c?("textarea"!==n||""!==c)&&pe(e,c):"number"==typeof c&&pe(e,""+c):"suppressContentEditableWarning"!==i&&"suppressHydrationWarning"!==i&&"autoFocus"!==i&&(s.hasOwnProperty(i)?null!=c&&"onScroll"===i&&zr("scroll",e):null!=c&&b(e,i,c,l))}switch(n){case"input":G(e),Z(e,r,!1);break;case"textarea":G(e),ie(e);break;case"option":null!=r.value&&e.setAttribute("value",""+H(r.value));break;case"select":e.multiple=!!r.multiple,null!=(i=r.value)?ne(e,!!r.multiple,i,!1):null!=r.defaultValue&&ne(e,!!r.multiple,r.defaultValue,!0);break;default:"function"==typeof o.onClick&&(e.onclick=Zr)}switch(n){case"button":case"input":case"select":case"textarea":r=!!r.autoFocus;break e;case"img":r=!0;break e;default:r=!1}}r&&(t.flags|=4)}null!==t.ref&&(t.flags|=512,t.flags|=2097152)}return ys(t),null;case 6:if(e&&null!=t.stateNode)cs(0,t,e.memoizedProps,r);else{if("string"!=typeof r&&null===t.stateNode)throw Error(a(166));if(n=Za(Ja.current),Za(Xa.current),Ua(t)){if(r=t.stateNode,n=t.memoizedProps,r[po]=t,(i=r.nodeValue!==n)&&null!==(e=Ia))switch(e.tag){case 3:Jr(r.nodeValue,n,0!=(1&e.mode));break;case 5:!0!==e.memoizedProps.suppressHydrationWarning&&Jr(r.nodeValue,n,0!=(1&e.mode))}i&&(t.flags|=4)}else(r=(9===n.nodeType?n:n.ownerDocument).createTextNode(r))[po]=t,t.stateNode=r}return ys(t),null;case 13:if(Oo(oi),r=t.memoizedState,Ra&&null!==Ta&&0!=(1&t.mode)&&0==(128&t.flags)){for(r=Ta;r;)r=uo(r.nextSibling);return Va(),t.flags|=98560,t}if(null!==r&&null!==r.dehydrated){if(r=Ua(t),null===e){if(!r)throw Error(a(318));if(!(r=null!==(r=t.memoizedState)?r.dehydrated:null))throw Error(a(317));r[po]=t}else Va(),0==(128&t.flags)&&(t.memoizedState=null),t.flags|=4;return ys(t),null}return null!==Na&&(au(Na),Na=null),0!=(128&t.flags)?(t.lanes=n,t):(r=null!==r,n=!1,null===e?Ua(t):n=null!==e.memoizedState,r!==n&&r&&(t.child.flags|=8192,0!=(1&t.mode)&&(null===e||0!=(1&oi.current)?0===Il&&(Il=3):hu())),null!==t.updateQueue&&(t.flags|=4),ys(t),null);case 4:return ti(),null===e&&Br(t.stateNode.containerInfo),ys(t),null;case 10:return Ko(t.type._context),ys(t),null;case 19:if(Oo(oi),null===(i=t.memoizedState))return ys(t),null;if(r=0!=(128&t.flags),null===(l=i.rendering))if(r)gs(i,!1);else{if(0!==Il||null!==e&&0!=(128&e.flags))for(e=t.child;null!==e;){if(null!==(l=ai(e))){for(t.flags|=128,gs(i,!1),null!==(r=l.updateQueue)&&(t.updateQueue=r,t.flags|=4),t.subtreeFlags=0,r=n,n=t.child;null!==n;)e=r,(i=n).flags&=14680066,null===(l=i.alternate)?(i.childLanes=0,i.lanes=e,i.child=null,i.subtreeFlags=0,i.memoizedProps=null,i.memoizedState=null,i.updateQueue=null,i.dependencies=null,i.stateNode=null):(i.childLanes=l.childLanes,i.lanes=l.lanes,i.child=l.child,i.subtreeFlags=0,i.deletions=null,i.memoizedProps=l.memoizedProps,i.memoizedState=l.memoizedState,i.updateQueue=l.updateQueue,i.type=l.type,e=l.dependencies,i.dependencies=null===e?null:{lanes:e.lanes,firstContext:e.firstContext}),n=n.sibling;return Co(oi,1&oi.current|2),t.child}e=e.sibling}null!==i.tail&&Ke()>zl&&(t.flags|=128,r=!0,gs(i,!1),t.lanes=4194304)}else{if(!r)if(null!==(e=ai(l))){if(t.flags|=128,r=!0,null!==(n=e.updateQueue)&&(t.updateQueue=n,t.flags|=4),gs(i,!0),null===i.tail&&"hidden"===i.tailMode&&!l.alternate&&!Ra)return ys(t),null}else 2*Ke()-i.renderingStartTime>zl&&1073741824!==n&&(t.flags|=128,r=!0,gs(i,!1),t.lanes=4194304);i.isBackwards?(l.sibling=t.child,t.child=l):(null!==(n=i.last)?n.sibling=l:t.child=l,i.last=l)}return null!==i.tail?(t=i.tail,i.rendering=t,i.tail=t.sibling,i.renderingStartTime=Ke(),t.sibling=null,n=oi.current,Co(oi,r?1&n|2:1&n),t):(ys(t),null);case 22:case 23:return cu(),r=null!==t.memoizedState,null!==e&&null!==e.memoizedState!==r&&(t.flags|=8192),r&&0!=(1&t.mode)?0!=(1073741824&jl)&&(ys(t),6&t.subtreeFlags&&(t.flags|=8192)):ys(t),null;case 24:case 25:return null}throw Error(a(156,t.tag))}ls=function(e,t){for(var n=t.child;null!==n;){if(5===n.tag||6===n.tag)e.appendChild(n.stateNode);else if(4!==n.tag&&null!==n.child){n.child.return=n,n=n.child;continue}if(n===t)break;for(;null===n.sibling;){if(null===n.return||n.return===t)return;n=n.return}n.sibling.return=n.return,n=n.sibling}},us=function(e,t,n,r){var o=e.memoizedProps;if(o!==r){e=t.stateNode,Za(Xa.current);var a,i=null;switch(n){case"input":o=Q(e,o),r=Q(e,r),i=[];break;case"select":o=L({},o,{value:void 0}),r=L({},r,{value:void 0}),i=[];break;case"textarea":o=re(e,o),r=re(e,r),i=[];break;default:"function"!=typeof o.onClick&&"function"==typeof r.onClick&&(e.onclick=Zr)}for(c in ye(n,r),n=null,o)if(!r.hasOwnProperty(c)&&o.hasOwnProperty(c)&&null!=o[c])if("style"===c){var l=o[c];for(a in l)l.hasOwnProperty(a)&&(n||(n={}),n[a]="")}else"dangerouslySetInnerHTML"!==c&&"children"!==c&&"suppressContentEditableWarning"!==c&&"suppressHydrationWarning"!==c&&"autoFocus"!==c&&(s.hasOwnProperty(c)?i||(i=[]):(i=i||[]).push(c,null));for(c in r){var u=r[c];if(l=null!=o?o[c]:void 0,r.hasOwnProperty(c)&&u!==l&&(null!=u||null!=l))if("style"===c)if(l){for(a in l)!l.hasOwnProperty(a)||u&&u.hasOwnProperty(a)||(n||(n={}),n[a]="");for(a in u)u.hasOwnProperty(a)&&l[a]!==u[a]&&(n||(n={}),n[a]=u[a])}else n||(i||(i=[]),i.push(c,n)),n=u;else"dangerouslySetInnerHTML"===c?(u=u?u.__html:void 0,l=l?l.__html:void 0,null!=u&&l!==u&&(i=i||[]).push(c,u)):"children"===c?"string"!=typeof u&&"number"!=typeof u||(i=i||[]).push(c,""+u):"suppressContentEditableWarning"!==c&&"suppressHydrationWarning"!==c&&(s.hasOwnProperty(c)?(null!=u&&"onScroll"===c&&zr("scroll",e),i||l===u||(i=[])):(i=i||[]).push(c,u))}n&&(i=i||[]).push("style",n);var c=i;(t.updateQueue=c)&&(t.flags|=4)}},cs=function(e,t,n,r){n!==r&&(t.flags|=4)};var ws=w.ReactCurrentOwner,xs=!1;function Es(e,t,n,r){t.child=null===e?qa(t,null,n,r):Ya(t,e.child,n,r)}function Ss(e,t,n,r,o){n=n.render;var a=t.ref;return Zo(t,o),r=wi(e,t,n,r,a,o),n=xi(),null===e||xs?(Ra&&n&&ja(t),t.flags|=1,Es(e,t,r,o),t.child):(t.updateQueue=e.updateQueue,t.flags&=-2053,e.lanes&=~o,Hs(e,t,o))}function ks(e,t,n,r,o){if(null===e){var a=n.type;return"function"!=typeof a||Iu(a)||void 0!==a.defaultProps||null!==n.compare||void 0!==n.defaultProps?((e=Ru(n.type,null,r,t,t.mode,o)).ref=t.ref,e.return=t,t.child=e):(t.tag=15,t.type=a,_s(e,t,a,r,o))}if(a=e.child,0==(e.lanes&o)){var i=a.memoizedProps;if((n=null!==(n=n.compare)?n:lr)(i,r)&&e.ref===t.ref)return Hs(e,t,o)}return t.flags|=1,(e=Tu(a,r)).ref=t.ref,e.return=t,t.child=e}function _s(e,t,n,r,o){if(null!==e){var a=e.memoizedProps;if(lr(a,r)&&e.ref===t.ref){if(xs=!1,t.pendingProps=r=a,0==(e.lanes&o))return t.lanes=e.lanes,Hs(e,t,o);0!=(131072&e.flags)&&(xs=!0)}}return Ps(e,t,n,r,o)}function Os(e,t,n){var r=t.pendingProps,o=r.children,a=null!==e?e.memoizedState:null;if("hidden"===r.mode)if(0==(1&t.mode))t.memoizedState={baseLanes:0,cachePool:null,transitions:null},Co(Al,jl),jl|=n;else{if(0==(1073741824&n))return e=null!==a?a.baseLanes|n:n,t.lanes=t.childLanes=1073741824,t.memoizedState={baseLanes:e,cachePool:null,transitions:null},t.updateQueue=null,Co(Al,jl),jl|=e,null;t.memoizedState={baseLanes:0,cachePool:null,transitions:null},r=null!==a?a.baseLanes:n,Co(Al,jl),jl|=r}else null!==a?(r=a.baseLanes|n,t.memoizedState=null):r=n,Co(Al,jl),jl|=r;return Es(e,t,o,n),t.child}function Cs(e,t){var n=t.ref;(null===e&&null!==n||null!==e&&e.ref!==n)&&(t.flags|=512,t.flags|=2097152)}function Ps(e,t,n,r,o){var a=Ro(n)?Io:jo.current;return a=To(t,a),Zo(t,o),n=wi(e,t,n,r,a,o),r=xi(),null===e||xs?(Ra&&r&&ja(t),t.flags|=1,Es(e,t,n,o),t.child):(t.updateQueue=e.updateQueue,t.flags&=-2053,e.lanes&=~o,Hs(e,t,o))}function js(e,t,n,r,o){if(Ro(n)){var a=!0;Lo(t)}else a=!1;if(Zo(t,o),null===t.stateNode)null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),ma(t,n,r),ga(t,n,r,o),r=!0;else if(null===e){var i=t.stateNode,s=t.memoizedProps;i.props=s;var l=i.context,u=n.contextType;u="object"==typeof u&&null!==u?ea(u):To(t,u=Ro(n)?Io:jo.current);var c=n.getDerivedStateFromProps,f="function"==typeof c||"function"==typeof i.getSnapshotBeforeUpdate;f||"function"!=typeof i.UNSAFE_componentWillReceiveProps&&"function"!=typeof i.componentWillReceiveProps||(s!==r||l!==u)&&va(t,i,r,u),na=!1;var p=t.memoizedState;i.state=p,ua(t,r,i,o),l=t.memoizedState,s!==r||p!==l||Ao.current||na?("function"==typeof c&&(pa(t,n,c,r),l=t.memoizedState),(s=na||ha(t,n,s,r,p,l,u))?(f||"function"!=typeof i.UNSAFE_componentWillMount&&"function"!=typeof i.componentWillMount||("function"==typeof i.componentWillMount&&i.componentWillMount(),"function"==typeof i.UNSAFE_componentWillMount&&i.UNSAFE_componentWillMount()),"function"==typeof i.componentDidMount&&(t.flags|=4194308)):("function"==typeof i.componentDidMount&&(t.flags|=4194308),t.memoizedProps=r,t.memoizedState=l),i.props=r,i.state=l,i.context=u,r=s):("function"==typeof i.componentDidMount&&(t.flags|=4194308),r=!1)}else{i=t.stateNode,oa(e,t),s=t.memoizedProps,u=t.type===t.elementType?s:$o(t.type,s),i.props=u,f=t.pendingProps,p=i.context,l="object"==typeof(l=n.contextType)&&null!==l?ea(l):To(t,l=Ro(n)?Io:jo.current);var d=n.getDerivedStateFromProps;(c="function"==typeof d||"function"==typeof i.getSnapshotBeforeUpdate)||"function"!=typeof i.UNSAFE_componentWillReceiveProps&&"function"!=typeof i.componentWillReceiveProps||(s!==f||p!==l)&&va(t,i,r,l),na=!1,p=t.memoizedState,i.state=p,ua(t,r,i,o);var h=t.memoizedState;s!==f||p!==h||Ao.current||na?("function"==typeof d&&(pa(t,n,d,r),h=t.memoizedState),(u=na||ha(t,n,u,r,p,h,l)||!1)?(c||"function"!=typeof i.UNSAFE_componentWillUpdate&&"function"!=typeof i.componentWillUpdate||("function"==typeof i.componentWillUpdate&&i.componentWillUpdate(r,h,l),"function"==typeof i.UNSAFE_componentWillUpdate&&i.UNSAFE_componentWillUpdate(r,h,l)),"function"==typeof i.componentDidUpdate&&(t.flags|=4),"function"==typeof i.getSnapshotBeforeUpdate&&(t.flags|=1024)):("function"!=typeof i.componentDidUpdate||s===e.memoizedProps&&p===e.memoizedState||(t.flags|=4),"function"!=typeof i.getSnapshotBeforeUpdate||s===e.memoizedProps&&p===e.memoizedState||(t.flags|=1024),t.memoizedProps=r,t.memoizedState=h),i.props=r,i.state=h,i.context=l,r=u):("function"!=typeof i.componentDidUpdate||s===e.memoizedProps&&p===e.memoizedState||(t.flags|=4),"function"!=typeof i.getSnapshotBeforeUpdate||s===e.memoizedProps&&p===e.memoizedState||(t.flags|=1024),r=!1)}return As(e,t,n,r,a,o)}function As(e,t,n,r,o,a){Cs(e,t);var i=0!=(128&t.flags);if(!r&&!i)return o&&Do(t,n,!1),Hs(e,t,a);r=t.stateNode,ws.current=t;var s=i&&"function"!=typeof n.getDerivedStateFromError?null:r.render();return t.flags|=1,null!==e&&i?(t.child=Ya(t,e.child,null,a),t.child=Ya(t,null,s,a)):Es(e,t,s,a),t.memoizedState=r.state,o&&Do(t,n,!0),t.child}function Is(e){var t=e.stateNode;t.pendingContext?Mo(0,t.pendingContext,t.pendingContext!==t.context):t.context&&Mo(0,t.context,!1),ei(e,t.containerInfo)}function Ts(e,t,n,r,o){return Va(),Ba(o),t.flags|=256,Es(e,t,n,r),t.child}var Rs={dehydrated:null,treeContext:null,retryLane:0};function Ns(e){return{baseLanes:e,cachePool:null,transitions:null}}function Ms(e,t){return{baseLanes:e.baseLanes|t,cachePool:null,transitions:e.transitions}}function Fs(e,t,n){var r,o=t.pendingProps,i=oi.current,s=!1,l=0!=(128&t.flags);if((r=l)||(r=(null===e||null!==e.memoizedState)&&0!=(2&i)),r?(s=!0,t.flags&=-129):null!==e&&null===e.memoizedState||(i|=1),Co(oi,1&i),null===e)return Da(t),null!==(e=t.memoizedState)&&null!==(e=e.dehydrated)?(0==(1&t.mode)?t.lanes=1:"$!"===e.data?t.lanes=8:t.lanes=1073741824,null):(i=o.children,e=o.fallback,s?(o=t.mode,s=t.child,i={mode:"hidden",children:i},0==(1&o)&&null!==s?(s.childLanes=0,s.pendingProps=i):s=Mu(i,o,0,null),e=Nu(e,o,n,null),s.return=t,e.return=t,s.sibling=e,t.child=s,t.child.memoizedState=Ns(n),t.memoizedState=Rs,e):Ls(t,i));if(null!==(i=e.memoizedState)){if(null!==(r=i.dehydrated)){if(l)return 256&t.flags?(t.flags&=-257,Us(e,t,n,Error(a(422)))):null!==t.memoizedState?(t.child=e.child,t.flags|=128,null):(s=o.fallback,i=t.mode,o=Mu({mode:"visible",children:o.children},i,0,null),(s=Nu(s,i,n,null)).flags|=2,o.return=t,s.return=t,o.sibling=s,t.child=o,0!=(1&t.mode)&&Ya(t,e.child,null,n),t.child.memoizedState=Ns(n),t.memoizedState=Rs,s);if(0==(1&t.mode))t=Us(e,t,n,null);else if("$!"===r.data)t=Us(e,t,n,Error(a(419)));else if(o=0!=(n&e.childLanes),xs||o){if(null!==(o=Ol)){switch(n&-n){case 4:s=2;break;case 16:s=8;break;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:s=32;break;case 536870912:s=268435456;break;default:s=0}0!==(o=0!=(s&(o.suspendedLanes|n))?0:s)&&o!==i.retryLane&&(i.retryLane=o,Zl(e,o,-1))}hu(),t=Us(e,t,n,Error(a(421)))}else"$?"===r.data?(t.flags|=128,t.child=e.child,t=Ou.bind(null,e),r._reactRetry=t,t=null):(n=i.treeContext,Ta=uo(r.nextSibling),Ia=t,Ra=!0,Na=null,null!==n&&(Ea[Sa++]=_a,Ea[Sa++]=Oa,Ea[Sa++]=ka,_a=n.id,Oa=n.overflow,ka=t),(t=Ls(t,t.pendingProps.children)).flags|=4096);return t}return s?(o=zs(e,t,o.children,o.fallback,n),s=t.child,i=e.child.memoizedState,s.memoizedState=null===i?Ns(n):Ms(i,n),s.childLanes=e.childLanes&~n,t.memoizedState=Rs,o):(n=Ds(e,t,o.children,n),t.memoizedState=null,n)}return s?(o=zs(e,t,o.children,o.fallback,n),s=t.child,i=e.child.memoizedState,s.memoizedState=null===i?Ns(n):Ms(i,n),s.childLanes=e.childLanes&~n,t.memoizedState=Rs,o):(n=Ds(e,t,o.children,n),t.memoizedState=null,n)}function Ls(e,t){return(t=Mu({mode:"visible",children:t},e.mode,0,null)).return=e,e.child=t}function Ds(e,t,n,r){var o=e.child;return e=o.sibling,n=Tu(o,{mode:"visible",children:n}),0==(1&t.mode)&&(n.lanes=r),n.return=t,n.sibling=null,null!==e&&(null===(r=t.deletions)?(t.deletions=[e],t.flags|=16):r.push(e)),t.child=n}function zs(e,t,n,r,o){var a=t.mode,i=(e=e.child).sibling,s={mode:"hidden",children:n};return 0==(1&a)&&t.child!==e?((n=t.child).childLanes=0,n.pendingProps=s,t.deletions=null):(n=Tu(e,s)).subtreeFlags=14680064&e.subtreeFlags,null!==i?r=Tu(i,r):(r=Nu(r,a,o,null)).flags|=2,r.return=t,n.return=t,n.sibling=r,t.child=n,r}function Us(e,t,n,r){return null!==r&&Ba(r),Ya(t,e.child,null,n),(e=Ls(t,t.pendingProps.children)).flags|=2,t.memoizedState=null,e}function Vs(e,t,n){e.lanes|=t;var r=e.alternate;null!==r&&(r.lanes|=t),Jo(e.return,t,n)}function Bs(e,t,n,r,o){var a=e.memoizedState;null===a?e.memoizedState={isBackwards:t,rendering:null,renderingStartTime:0,last:r,tail:n,tailMode:o}:(a.isBackwards=t,a.rendering=null,a.renderingStartTime=0,a.last=r,a.tail=n,a.tailMode=o)}function Ws(e,t,n){var r=t.pendingProps,o=r.revealOrder,a=r.tail;if(Es(e,t,r.children,n),0!=(2&(r=oi.current)))r=1&r|2,t.flags|=128;else{if(null!==e&&0!=(128&e.flags))e:for(e=t.child;null!==e;){if(13===e.tag)null!==e.memoizedState&&Vs(e,n,t);else if(19===e.tag)Vs(e,n,t);else if(null!==e.child){e.child.return=e,e=e.child;continue}if(e===t)break e;for(;null===e.sibling;){if(null===e.return||e.return===t)break e;e=e.return}e.sibling.return=e.return,e=e.sibling}r&=1}if(Co(oi,r),0==(1&t.mode))t.memoizedState=null;else switch(o){case"forwards":for(n=t.child,o=null;null!==n;)null!==(e=n.alternate)&&null===ai(e)&&(o=n),n=n.sibling;null===(n=o)?(o=t.child,t.child=null):(o=n.sibling,n.sibling=null),Bs(t,!1,o,n,a);break;case"backwards":for(n=null,o=t.child,t.child=null;null!==o;){if(null!==(e=o.alternate)&&null===ai(e)){t.child=o;break}e=o.sibling,o.sibling=n,n=o,o=e}Bs(t,!0,n,null,a);break;case"together":Bs(t,!1,null,null,void 0);break;default:t.memoizedState=null}return t.child}function Hs(e,t,n){if(null!==e&&(t.dependencies=e.dependencies),Rl|=t.lanes,0==(n&t.childLanes))return null;if(null!==e&&t.child!==e.child)throw Error(a(153));if(null!==t.child){for(n=Tu(e=t.child,e.pendingProps),t.child=n,n.return=t;null!==e.sibling;)e=e.sibling,(n=n.sibling=Tu(e,e.pendingProps)).return=t;n.sibling=null}return t.child}function $s(e,t){switch(Aa(t),t.tag){case 1:return Ro(t.type)&&No(),65536&(e=t.flags)?(t.flags=-65537&e|128,t):null;case 3:return ti(),Oo(Ao),Oo(jo),si(),0!=(65536&(e=t.flags))&&0==(128&e)?(t.flags=-65537&e|128,t):null;case 5:return ri(t),null;case 13:if(Oo(oi),null!==(e=t.memoizedState)&&null!==e.dehydrated){if(null===t.alternate)throw Error(a(340));Va()}return 65536&(e=t.flags)?(t.flags=-65537&e|128,t):null;case 19:return Oo(oi),null;case 4:return ti(),null;case 10:return Ko(t.type._context),null;case 22:case 23:return cu(),null;default:return null}}var Gs=!1,Ys=!1,qs="function"==typeof WeakSet?WeakSet:Set,Qs=null;function Xs(e,t){var n=e.ref;if(null!==n)if("function"==typeof n)try{n(null)}catch(n){Su(e,t,n)}else n.current=null}function Ks(e,t,n){try{n()}catch(n){Su(e,t,n)}}var Js=!1;function Zs(e,t,n){var r=t.updateQueue;if(null!==(r=null!==r?r.lastEffect:null)){var o=r=r.next;do{if((o.tag&e)===e){var a=o.destroy;o.destroy=void 0,void 0!==a&&Ks(t,n,a)}o=o.next}while(o!==r)}}function el(e,t){if(null!==(t=null!==(t=t.updateQueue)?t.lastEffect:null)){var n=t=t.next;do{if((n.tag&e)===e){var r=n.create;n.destroy=r()}n=n.next}while(n!==t)}}function tl(e){var t=e.ref;if(null!==t){var n=e.stateNode;e.tag,e=n,"function"==typeof t?t(e):t.current=e}}function nl(e){var t=e.alternate;null!==t&&(e.alternate=null,nl(t)),e.child=null,e.deletions=null,e.sibling=null,5===e.tag&&null!==(t=e.stateNode)&&(delete t[po],delete t[ho],delete t[vo],delete t[go],delete t[yo]),e.stateNode=null,e.return=null,e.dependencies=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.stateNode=null,e.updateQueue=null}function rl(e){return 5===e.tag||3===e.tag||4===e.tag}function ol(e){e:for(;;){for(;null===e.sibling;){if(null===e.return||rl(e.return))return null;e=e.return}for(e.sibling.return=e.return,e=e.sibling;5!==e.tag&&6!==e.tag&&18!==e.tag;){if(2&e.flags)continue e;if(null===e.child||4===e.tag)continue e;e.child.return=e,e=e.child}if(!(2&e.flags))return e.stateNode}}function al(e,t,n){var r=e.tag;if(5===r||6===r)e=e.stateNode,t?8===n.nodeType?n.parentNode.insertBefore(e,t):n.insertBefore(e,t):(8===n.nodeType?(t=n.parentNode).insertBefore(e,n):(t=n).appendChild(e),null!=(n=n._reactRootContainer)||null!==t.onclick||(t.onclick=Zr));else if(4!==r&&null!==(e=e.child))for(al(e,t,n),e=e.sibling;null!==e;)al(e,t,n),e=e.sibling}function il(e,t,n){var r=e.tag;if(5===r||6===r)e=e.stateNode,t?n.insertBefore(e,t):n.appendChild(e);else if(4!==r&&null!==(e=e.child))for(il(e,t,n),e=e.sibling;null!==e;)il(e,t,n),e=e.sibling}var sl=null,ll=!1;function ul(e,t,n){for(n=n.child;null!==n;)cl(e,t,n),n=n.sibling}function cl(e,t,n){if(at&&"function"==typeof at.onCommitFiberUnmount)try{at.onCommitFiberUnmount(ot,n)}catch(e){}switch(n.tag){case 5:Ys||Xs(n,t);case 6:var r=sl,o=ll;sl=null,ul(e,t,n),ll=o,null!==(sl=r)&&(ll?(e=sl,n=n.stateNode,8===e.nodeType?e.parentNode.removeChild(n):e.removeChild(n)):sl.removeChild(n.stateNode));break;case 18:null!==sl&&(ll?(e=sl,n=n.stateNode,8===e.nodeType?lo(e.parentNode,n):1===e.nodeType&&lo(e,n),Bt(e)):lo(sl,n.stateNode));break;case 4:r=sl,o=ll,sl=n.stateNode.containerInfo,ll=!0,ul(e,t,n),sl=r,ll=o;break;case 0:case 11:case 14:case 15:if(!Ys&&null!==(r=n.updateQueue)&&null!==(r=r.lastEffect)){o=r=r.next;do{var a=o,i=a.destroy;a=a.tag,void 0!==i&&(0!=(2&a)||0!=(4&a))&&Ks(n,t,i),o=o.next}while(o!==r)}ul(e,t,n);break;case 1:if(!Ys&&(Xs(n,t),"function"==typeof(r=n.stateNode).componentWillUnmount))try{r.props=n.memoizedProps,r.state=n.memoizedState,r.componentWillUnmount()}catch(e){Su(n,t,e)}ul(e,t,n);break;case 21:ul(e,t,n);break;case 22:1&n.mode?(Ys=(r=Ys)||null!==n.memoizedState,ul(e,t,n),Ys=r):ul(e,t,n);break;default:ul(e,t,n)}}function fl(e){var t=e.updateQueue;if(null!==t){e.updateQueue=null;var n=e.stateNode;null===n&&(n=e.stateNode=new qs),t.forEach((function(t){var r=Cu.bind(null,e,t);n.has(t)||(n.add(t),t.then(r,r))}))}}function pl(e,t){var n=t.deletions;if(null!==n)for(var r=0;r<n.length;r++){var o=n[r];try{var i=e,s=t,l=s;e:for(;null!==l;){switch(l.tag){case 5:sl=l.stateNode,ll=!1;break e;case 3:case 4:sl=l.stateNode.containerInfo,ll=!0;break e}l=l.return}if(null===sl)throw Error(a(160));cl(i,s,o),sl=null,ll=!1;var u=o.alternate;null!==u&&(u.return=null),o.return=null}catch(e){Su(o,t,e)}}if(12854&t.subtreeFlags)for(t=t.child;null!==t;)dl(t,e),t=t.sibling}function dl(e,t){var n=e.alternate,r=e.flags;switch(e.tag){case 0:case 11:case 14:case 15:if(pl(t,e),hl(e),4&r){try{Zs(3,e,e.return),el(3,e)}catch(t){Su(e,e.return,t)}try{Zs(5,e,e.return)}catch(t){Su(e,e.return,t)}}break;case 1:pl(t,e),hl(e),512&r&&null!==n&&Xs(n,n.return);break;case 5:if(pl(t,e),hl(e),512&r&&null!==n&&Xs(n,n.return),32&e.flags){var o=e.stateNode;try{pe(o,"")}catch(t){Su(e,e.return,t)}}if(4&r&&null!=(o=e.stateNode)){var i=e.memoizedProps,s=null!==n?n.memoizedProps:i,l=e.type,u=e.updateQueue;if(e.updateQueue=null,null!==u)try{"input"===l&&"radio"===i.type&&null!=i.name&&K(o,i),be(l,s);var c=be(l,i);for(s=0;s<u.length;s+=2){var f=u[s],p=u[s+1];"style"===f?ve(o,p):"dangerouslySetInnerHTML"===f?fe(o,p):"children"===f?pe(o,p):b(o,f,p,c)}switch(l){case"input":J(o,i);break;case"textarea":ae(o,i);break;case"select":var d=o._wrapperState.wasMultiple;o._wrapperState.wasMultiple=!!i.multiple;var h=i.value;null!=h?ne(o,!!i.multiple,h,!1):d!==!!i.multiple&&(null!=i.defaultValue?ne(o,!!i.multiple,i.defaultValue,!0):ne(o,!!i.multiple,i.multiple?[]:"",!1))}o[ho]=i}catch(t){Su(e,e.return,t)}}break;case 6:if(pl(t,e),hl(e),4&r){if(null===e.stateNode)throw Error(a(162));c=e.stateNode,f=e.memoizedProps;try{c.nodeValue=f}catch(t){Su(e,e.return,t)}}break;case 3:if(pl(t,e),hl(e),4&r&&null!==n&&n.memoizedState.isDehydrated)try{Bt(t.containerInfo)}catch(t){Su(e,e.return,t)}break;case 4:default:pl(t,e),hl(e);break;case 13:pl(t,e),hl(e),8192&(c=e.child).flags&&null!==c.memoizedState&&(null===c.alternate||null===c.alternate.memoizedState)&&(Dl=Ke()),4&r&&fl(e);break;case 22:if(c=null!==n&&null!==n.memoizedState,1&e.mode?(Ys=(f=Ys)||c,pl(t,e),Ys=f):pl(t,e),hl(e),8192&r){f=null!==e.memoizedState;e:for(p=null,d=e;;){if(5===d.tag){if(null===p){p=d;try{o=d.stateNode,f?"function"==typeof(i=o.style).setProperty?i.setProperty("display","none","important"):i.display="none":(l=d.stateNode,s=null!=(u=d.memoizedProps.style)&&u.hasOwnProperty("display")?u.display:null,l.style.display=me("display",s))}catch(t){Su(e,e.return,t)}}}else if(6===d.tag){if(null===p)try{d.stateNode.nodeValue=f?"":d.memoizedProps}catch(t){Su(e,e.return,t)}}else if((22!==d.tag&&23!==d.tag||null===d.memoizedState||d===e)&&null!==d.child){d.child.return=d,d=d.child;continue}if(d===e)break e;for(;null===d.sibling;){if(null===d.return||d.return===e)break e;p===d&&(p=null),d=d.return}p===d&&(p=null),d.sibling.return=d.return,d=d.sibling}if(f&&!c&&0!=(1&e.mode))for(Qs=e,e=e.child;null!==e;){for(c=Qs=e;null!==Qs;){switch(p=(f=Qs).child,f.tag){case 0:case 11:case 14:case 15:Zs(4,f,f.return);break;case 1:if(Xs(f,f.return),"function"==typeof(i=f.stateNode).componentWillUnmount){d=f,h=f.return;try{o=d,i.props=o.memoizedProps,i.state=o.memoizedState,i.componentWillUnmount()}catch(e){Su(d,h,e)}}break;case 5:Xs(f,f.return);break;case 22:if(null!==f.memoizedState){yl(c);continue}}null!==p?(p.return=f,Qs=p):yl(c)}e=e.sibling}}break;case 19:pl(t,e),hl(e),4&r&&fl(e);case 21:}}function hl(e){var t=e.flags;if(2&t){try{e:{for(var n=e.return;null!==n;){if(rl(n)){var r=n;break e}n=n.return}throw Error(a(160))}switch(r.tag){case 5:var o=r.stateNode;32&r.flags&&(pe(o,""),r.flags&=-33),il(e,ol(e),o);break;case 3:case 4:var i=r.stateNode.containerInfo;al(e,ol(e),i);break;default:throw Error(a(161))}}catch(t){Su(e,e.return,t)}e.flags&=-3}4096&t&&(e.flags&=-4097)}function ml(e,t,n){Qs=e,vl(e,t,n)}function vl(e,t,n){for(var r=0!=(1&e.mode);null!==Qs;){var o=Qs,a=o.child;if(22===o.tag&&r){var i=null!==o.memoizedState||Gs;if(!i){var s=o.alternate,l=null!==s&&null!==s.memoizedState||Ys;s=Gs;var u=Ys;if(Gs=i,(Ys=l)&&!u)for(Qs=o;null!==Qs;)l=(i=Qs).child,22===i.tag&&null!==i.memoizedState?bl(o):null!==l?(l.return=i,Qs=l):bl(o);for(;null!==a;)Qs=a,vl(a,t,n),a=a.sibling;Qs=o,Gs=s,Ys=u}gl(e)}else 0!=(8772&o.subtreeFlags)&&null!==a?(a.return=o,Qs=a):gl(e)}}function gl(e){for(;null!==Qs;){var t=Qs;if(0!=(8772&t.flags)){var n=t.alternate;try{if(0!=(8772&t.flags))switch(t.tag){case 0:case 11:case 15:Ys||el(5,t);break;case 1:var r=t.stateNode;if(4&t.flags&&!Ys)if(null===n)r.componentDidMount();else{var o=t.elementType===t.type?n.memoizedProps:$o(t.type,n.memoizedProps);r.componentDidUpdate(o,n.memoizedState,r.__reactInternalSnapshotBeforeUpdate)}var i=t.updateQueue;null!==i&&ca(t,i,r);break;case 3:var s=t.updateQueue;if(null!==s){if(n=null,null!==t.child)switch(t.child.tag){case 5:case 1:n=t.child.stateNode}ca(t,s,n)}break;case 5:var l=t.stateNode;if(null===n&&4&t.flags){n=l;var u=t.memoizedProps;switch(t.type){case"button":case"input":case"select":case"textarea":u.autoFocus&&n.focus();break;case"img":u.src&&(n.src=u.src)}}break;case 6:case 4:case 12:case 19:case 17:case 21:case 22:case 23:break;case 13:if(null===t.memoizedState){var c=t.alternate;if(null!==c){var f=c.memoizedState;if(null!==f){var p=f.dehydrated;null!==p&&Bt(p)}}}break;default:throw Error(a(163))}Ys||512&t.flags&&tl(t)}catch(e){Su(t,t.return,e)}}if(t===e){Qs=null;break}if(null!==(n=t.sibling)){n.return=t.return,Qs=n;break}Qs=t.return}}function yl(e){for(;null!==Qs;){var t=Qs;if(t===e){Qs=null;break}var n=t.sibling;if(null!==n){n.return=t.return,Qs=n;break}Qs=t.return}}function bl(e){for(;null!==Qs;){var t=Qs;try{switch(t.tag){case 0:case 11:case 15:var n=t.return;try{el(4,t)}catch(e){Su(t,n,e)}break;case 1:var r=t.stateNode;if("function"==typeof r.componentDidMount){var o=t.return;try{r.componentDidMount()}catch(e){Su(t,o,e)}}var a=t.return;try{tl(t)}catch(e){Su(t,a,e)}break;case 5:var i=t.return;try{tl(t)}catch(e){Su(t,i,e)}}}catch(e){Su(t,t.return,e)}if(t===e){Qs=null;break}var s=t.sibling;if(null!==s){s.return=t.return,Qs=s;break}Qs=t.return}}var wl,xl=Math.ceil,El=w.ReactCurrentDispatcher,Sl=w.ReactCurrentOwner,kl=w.ReactCurrentBatchConfig,_l=0,Ol=null,Cl=null,Pl=0,jl=0,Al=_o(0),Il=0,Tl=null,Rl=0,Nl=0,Ml=0,Fl=null,Ll=null,Dl=0,zl=1/0,Ul=null,Vl=!1,Bl=null,Wl=null,Hl=!1,$l=null,Gl=0,Yl=0,ql=null,Ql=-1,Xl=0;function Kl(){return 0!=(6&_l)?Ke():-1!==Ql?Ql:Ql=Ke()}function Jl(e){return 0==(1&e.mode)?1:0!=(2&_l)&&0!==Pl?Pl&-Pl:null!==Ho.transition?(0===Xl&&(Xl=mt()),Xl):0!==(e=bt)?e:e=void 0===(e=window.event)?16:Xt(e.type)}function Zl(e,t,n){if(50<Yl)throw Yl=0,ql=null,Error(a(185));var r=eu(e,t);return null===r?null:(gt(r,t,n),0!=(2&_l)&&r===Ol||(r===Ol&&(0==(2&_l)&&(Nl|=t),4===Il&&iu(r,Pl)),nu(r,n),1===t&&0===_l&&0==(1&e.mode)&&(zl=Ke()+500,Uo&&Wo())),r)}function eu(e,t){e.lanes|=t;var n=e.alternate;for(null!==n&&(n.lanes|=t),n=e,e=e.return;null!==e;)e.childLanes|=t,null!==(n=e.alternate)&&(n.childLanes|=t),n=e,e=e.return;return 3===n.tag?n.stateNode:null}function tu(e){return(null!==Ol||null!==ta)&&0!=(1&e.mode)&&0==(2&_l)}function nu(e,t){var n=e.callbackNode;!function(e,t){for(var n=e.suspendedLanes,r=e.pingedLanes,o=e.expirationTimes,a=e.pendingLanes;0<a;){var i=31-it(a),s=1<<i,l=o[i];-1===l?0!=(s&n)&&0==(s&r)||(o[i]=dt(s,t)):l<=t&&(e.expiredLanes|=s),a&=~s}}(e,t);var r=pt(e,e===Ol?Pl:0);if(0===r)null!==n&&qe(n),e.callbackNode=null,e.callbackPriority=0;else if(t=r&-r,e.callbackPriority!==t){if(null!=n&&qe(n),1===t)0===e.tag?function(e){Uo=!0,Bo(e)}(su.bind(null,e)):Bo(su.bind(null,e)),io((function(){0===_l&&Wo()})),n=null;else{switch(wt(r)){case 1:n=Ze;break;case 4:n=et;break;case 16:default:n=tt;break;case 536870912:n=rt}n=Pu(n,ru.bind(null,e))}e.callbackPriority=t,e.callbackNode=n}}function ru(e,t){if(Ql=-1,Xl=0,0!=(6&_l))throw Error(a(327));var n=e.callbackNode;if(xu()&&e.callbackNode!==n)return null;var r=pt(e,e===Ol?Pl:0);if(0===r)return null;if(0!=(30&r)||0!=(r&e.expiredLanes)||t)t=mu(e,r);else{t=r;var o=_l;_l|=2;var i=du();for(Ol===e&&Pl===t||(Ul=null,zl=Ke()+500,fu(e,t));;)try{gu();break}catch(t){pu(e,t)}Xo(),El.current=i,_l=o,null!==Cl?t=0:(Ol=null,Pl=0,t=Il)}if(0!==t){if(2===t&&0!==(o=ht(e))&&(r=o,t=ou(e,o)),1===t)throw n=Tl,fu(e,0),iu(e,r),nu(e,Ke()),n;if(6===t)iu(e,r);else{if(o=e.current.alternate,0==(30&r)&&!function(e){for(var t=e;;){if(16384&t.flags){var n=t.updateQueue;if(null!==n&&null!==(n=n.stores))for(var r=0;r<n.length;r++){var o=n[r],a=o.getSnapshot;o=o.value;try{if(!sr(a(),o))return!1}catch(e){return!1}}}if(n=t.child,16384&t.subtreeFlags&&null!==n)n.return=t,t=n;else{if(t===e)break;for(;null===t.sibling;){if(null===t.return||t.return===e)return!0;t=t.return}t.sibling.return=t.return,t=t.sibling}}return!0}(o)&&(2===(t=mu(e,r))&&0!==(i=ht(e))&&(r=i,t=ou(e,i)),1===t))throw n=Tl,fu(e,0),iu(e,r),nu(e,Ke()),n;switch(e.finishedWork=o,e.finishedLanes=r,t){case 0:case 1:throw Error(a(345));case 2:case 5:wu(e,Ll,Ul);break;case 3:if(iu(e,r),(130023424&r)===r&&10<(t=Dl+500-Ke())){if(0!==pt(e,0))break;if(((o=e.suspendedLanes)&r)!==r){Kl(),e.pingedLanes|=e.suspendedLanes&o;break}e.timeoutHandle=ro(wu.bind(null,e,Ll,Ul),t);break}wu(e,Ll,Ul);break;case 4:if(iu(e,r),(4194240&r)===r)break;for(t=e.eventTimes,o=-1;0<r;){var s=31-it(r);i=1<<s,(s=t[s])>o&&(o=s),r&=~i}if(r=o,10<(r=(120>(r=Ke()-r)?120:480>r?480:1080>r?1080:1920>r?1920:3e3>r?3e3:4320>r?4320:1960*xl(r/1960))-r)){e.timeoutHandle=ro(wu.bind(null,e,Ll,Ul),r);break}wu(e,Ll,Ul);break;default:throw Error(a(329))}}}return nu(e,Ke()),e.callbackNode===n?ru.bind(null,e):null}function ou(e,t){var n=Fl;return e.current.memoizedState.isDehydrated&&(fu(e,t).flags|=256),2!==(e=mu(e,t))&&(t=Ll,Ll=n,null!==t&&au(t)),e}function au(e){null===Ll?Ll=e:Ll.push.apply(Ll,e)}function iu(e,t){for(t&=~Ml,t&=~Nl,e.suspendedLanes|=t,e.pingedLanes&=~t,e=e.expirationTimes;0<t;){var n=31-it(t),r=1<<n;e[n]=-1,t&=~r}}function su(e){if(0!=(6&_l))throw Error(a(327));xu();var t=pt(e,0);if(0==(1&t))return nu(e,Ke()),null;var n=mu(e,t);if(0!==e.tag&&2===n){var r=ht(e);0!==r&&(t=r,n=ou(e,r))}if(1===n)throw n=Tl,fu(e,0),iu(e,t),nu(e,Ke()),n;if(6===n)throw Error(a(345));return e.finishedWork=e.current.alternate,e.finishedLanes=t,wu(e,Ll,Ul),nu(e,Ke()),null}function lu(e,t){var n=_l;_l|=1;try{return e(t)}finally{0===(_l=n)&&(zl=Ke()+500,Uo&&Wo())}}function uu(e){null!==$l&&0===$l.tag&&0==(6&_l)&&xu();var t=_l;_l|=1;var n=kl.transition,r=bt;try{if(kl.transition=null,bt=1,e)return e()}finally{bt=r,kl.transition=n,0==(6&(_l=t))&&Wo()}}function cu(){jl=Al.current,Oo(Al)}function fu(e,t){e.finishedWork=null,e.finishedLanes=0;var n=e.timeoutHandle;if(-1!==n&&(e.timeoutHandle=-1,oo(n)),null!==Cl)for(n=Cl.return;null!==n;){var r=n;switch(Aa(r),r.tag){case 1:null!=(r=r.type.childContextTypes)&&No();break;case 3:ti(),Oo(Ao),Oo(jo),si();break;case 5:ri(r);break;case 4:ti();break;case 13:case 19:Oo(oi);break;case 10:Ko(r.type._context);break;case 22:case 23:cu()}n=n.return}if(Ol=e,Cl=e=Tu(e.current,null),Pl=jl=t,Il=0,Tl=null,Ml=Nl=Rl=0,Ll=Fl=null,null!==ta){for(t=0;t<ta.length;t++)if(null!==(r=(n=ta[t]).interleaved)){n.interleaved=null;var o=r.next,a=n.pending;if(null!==a){var i=a.next;a.next=o,r.next=i}n.pending=r}ta=null}return e}function pu(e,t){for(;;){var n=Cl;try{if(Xo(),li.current=ns,hi){for(var r=fi.memoizedState;null!==r;){var o=r.queue;null!==o&&(o.pending=null),r=r.next}hi=!1}if(ci=0,di=pi=fi=null,mi=!1,vi=0,Sl.current=null,null===n||null===n.return){Il=1,Tl=t,Cl=null;break}e:{var i=e,s=n.return,l=n,u=t;if(t=Pl,l.flags|=32768,null!==u&&"object"==typeof u&&"function"==typeof u.then){var c=u,f=l,p=f.tag;if(0==(1&f.mode)&&(0===p||11===p||15===p)){var d=f.alternate;d?(f.updateQueue=d.updateQueue,f.memoizedState=d.memoizedState,f.lanes=d.lanes):(f.updateQueue=null,f.memoizedState=null)}var h=ms(s);if(null!==h){h.flags&=-257,vs(h,s,l,0,t),1&h.mode&&hs(i,c,t),u=c;var m=(t=h).updateQueue;if(null===m){var v=new Set;v.add(u),t.updateQueue=v}else m.add(u);break e}if(0==(1&t)){hs(i,c,t),hu();break e}u=Error(a(426))}else if(Ra&&1&l.mode){var g=ms(s);if(null!==g){0==(65536&g.flags)&&(g.flags|=256),vs(g,s,l,0,t),Ba(u);break e}}i=u,4!==Il&&(Il=2),null===Fl?Fl=[i]:Fl.push(i),u=is(u,l),l=s;do{switch(l.tag){case 3:l.flags|=65536,t&=-t,l.lanes|=t,la(l,ps(0,u,t));break e;case 1:i=u;var y=l.type,b=l.stateNode;if(0==(128&l.flags)&&("function"==typeof y.getDerivedStateFromError||null!==b&&"function"==typeof b.componentDidCatch&&(null===Wl||!Wl.has(b)))){l.flags|=65536,t&=-t,l.lanes|=t,la(l,ds(l,i,t));break e}}l=l.return}while(null!==l)}bu(n)}catch(e){t=e,Cl===n&&null!==n&&(Cl=n=n.return);continue}break}}function du(){var e=El.current;return El.current=ns,null===e?ns:e}function hu(){0!==Il&&3!==Il&&2!==Il||(Il=4),null===Ol||0==(268435455&Rl)&&0==(268435455&Nl)||iu(Ol,Pl)}function mu(e,t){var n=_l;_l|=2;var r=du();for(Ol===e&&Pl===t||(Ul=null,fu(e,t));;)try{vu();break}catch(t){pu(e,t)}if(Xo(),_l=n,El.current=r,null!==Cl)throw Error(a(261));return Ol=null,Pl=0,Il}function vu(){for(;null!==Cl;)yu(Cl)}function gu(){for(;null!==Cl&&!Qe();)yu(Cl)}function yu(e){var t=wl(e.alternate,e,jl);e.memoizedProps=e.pendingProps,null===t?bu(e):Cl=t,Sl.current=null}function bu(e){var t=e;do{var n=t.alternate;if(e=t.return,0==(32768&t.flags)){if(null!==(n=bs(n,t,jl)))return void(Cl=n)}else{if(null!==(n=$s(n,t)))return n.flags&=32767,void(Cl=n);if(null===e)return Il=6,void(Cl=null);e.flags|=32768,e.subtreeFlags=0,e.deletions=null}if(null!==(t=t.sibling))return void(Cl=t);Cl=t=e}while(null!==t);0===Il&&(Il=5)}function wu(e,t,n){var r=bt,o=kl.transition;try{kl.transition=null,bt=1,function(e,t,n,r){do{xu()}while(null!==$l);if(0!=(6&_l))throw Error(a(327));n=e.finishedWork;var o=e.finishedLanes;if(null===n)return null;if(e.finishedWork=null,e.finishedLanes=0,n===e.current)throw Error(a(177));e.callbackNode=null,e.callbackPriority=0;var i=n.lanes|n.childLanes;if(function(e,t){var n=e.pendingLanes&~t;e.pendingLanes=t,e.suspendedLanes=0,e.pingedLanes=0,e.expiredLanes&=t,e.mutableReadLanes&=t,e.entangledLanes&=t,t=e.entanglements;var r=e.eventTimes;for(e=e.expirationTimes;0<n;){var o=31-it(n),a=1<<o;t[o]=0,r[o]=-1,e[o]=-1,n&=~a}}(e,i),e===Ol&&(Cl=Ol=null,Pl=0),0==(2064&n.subtreeFlags)&&0==(2064&n.flags)||Hl||(Hl=!0,Pu(tt,(function(){return xu(),null}))),i=0!=(15990&n.flags),0!=(15990&n.subtreeFlags)||i){i=kl.transition,kl.transition=null;var s=bt;bt=1;var l=_l;_l|=4,Sl.current=null,function(e,t){if(eo=Ht,dr(e=pr())){if("selectionStart"in e)var n={start:e.selectionStart,end:e.selectionEnd};else e:{var r=(n=(n=e.ownerDocument)&&n.defaultView||window).getSelection&&n.getSelection();if(r&&0!==r.rangeCount){n=r.anchorNode;var o=r.anchorOffset,i=r.focusNode;r=r.focusOffset;try{n.nodeType,i.nodeType}catch(e){n=null;break e}var s=0,l=-1,u=-1,c=0,f=0,p=e,d=null;t:for(;;){for(var h;p!==n||0!==o&&3!==p.nodeType||(l=s+o),p!==i||0!==r&&3!==p.nodeType||(u=s+r),3===p.nodeType&&(s+=p.nodeValue.length),null!==(h=p.firstChild);)d=p,p=h;for(;;){if(p===e)break t;if(d===n&&++c===o&&(l=s),d===i&&++f===r&&(u=s),null!==(h=p.nextSibling))break;d=(p=d).parentNode}p=h}n=-1===l||-1===u?null:{start:l,end:u}}else n=null}n=n||{start:0,end:0}}else n=null;for(to={focusedElem:e,selectionRange:n},Ht=!1,Qs=t;null!==Qs;)if(e=(t=Qs).child,0!=(1028&t.subtreeFlags)&&null!==e)e.return=t,Qs=e;else for(;null!==Qs;){t=Qs;try{var m=t.alternate;if(0!=(1024&t.flags))switch(t.tag){case 0:case 11:case 15:case 5:case 6:case 4:case 17:break;case 1:if(null!==m){var v=m.memoizedProps,g=m.memoizedState,y=t.stateNode,b=y.getSnapshotBeforeUpdate(t.elementType===t.type?v:$o(t.type,v),g);y.__reactInternalSnapshotBeforeUpdate=b}break;case 3:var w=t.stateNode.containerInfo;if(1===w.nodeType)w.textContent="";else if(9===w.nodeType){var x=w.body;null!=x&&(x.textContent="")}break;default:throw Error(a(163))}}catch(e){Su(t,t.return,e)}if(null!==(e=t.sibling)){e.return=t.return,Qs=e;break}Qs=t.return}m=Js,Js=!1}(e,n),dl(n,e),hr(to),Ht=!!eo,to=eo=null,e.current=n,ml(n,e,o),Xe(),_l=l,bt=s,kl.transition=i}else e.current=n;if(Hl&&(Hl=!1,$l=e,Gl=o),0===(i=e.pendingLanes)&&(Wl=null),function(e){if(at&&"function"==typeof at.onCommitFiberRoot)try{at.onCommitFiberRoot(ot,e,void 0,128==(128&e.current.flags))}catch(e){}}(n.stateNode),nu(e,Ke()),null!==t)for(r=e.onRecoverableError,n=0;n<t.length;n++)r(t[n]);if(Vl)throw Vl=!1,e=Bl,Bl=null,e;0!=(1&Gl)&&0!==e.tag&&xu(),0!=(1&(i=e.pendingLanes))?e===ql?Yl++:(Yl=0,ql=e):Yl=0,Wo()}(e,t,n,r)}finally{kl.transition=o,bt=r}return null}function xu(){if(null!==$l){var e=wt(Gl),t=kl.transition,n=bt;try{if(kl.transition=null,bt=16>e?16:e,null===$l)var r=!1;else{if(e=$l,$l=null,Gl=0,0!=(6&_l))throw Error(a(331));var o=_l;for(_l|=4,Qs=e.current;null!==Qs;){var i=Qs,s=i.child;if(0!=(16&Qs.flags)){var l=i.deletions;if(null!==l){for(var u=0;u<l.length;u++){var c=l[u];for(Qs=c;null!==Qs;){var f=Qs;switch(f.tag){case 0:case 11:case 15:Zs(8,f,i)}var p=f.child;if(null!==p)p.return=f,Qs=p;else for(;null!==Qs;){var d=(f=Qs).sibling,h=f.return;if(nl(f),f===c){Qs=null;break}if(null!==d){d.return=h,Qs=d;break}Qs=h}}}var m=i.alternate;if(null!==m){var v=m.child;if(null!==v){m.child=null;do{var g=v.sibling;v.sibling=null,v=g}while(null!==v)}}Qs=i}}if(0!=(2064&i.subtreeFlags)&&null!==s)s.return=i,Qs=s;else e:for(;null!==Qs;){if(0!=(2048&(i=Qs).flags))switch(i.tag){case 0:case 11:case 15:Zs(9,i,i.return)}var y=i.sibling;if(null!==y){y.return=i.return,Qs=y;break e}Qs=i.return}}var b=e.current;for(Qs=b;null!==Qs;){var w=(s=Qs).child;if(0!=(2064&s.subtreeFlags)&&null!==w)w.return=s,Qs=w;else e:for(s=b;null!==Qs;){if(0!=(2048&(l=Qs).flags))try{switch(l.tag){case 0:case 11:case 15:el(9,l)}}catch(e){Su(l,l.return,e)}if(l===s){Qs=null;break e}var x=l.sibling;if(null!==x){x.return=l.return,Qs=x;break e}Qs=l.return}}if(_l=o,Wo(),at&&"function"==typeof at.onPostCommitFiberRoot)try{at.onPostCommitFiberRoot(ot,e)}catch(e){}r=!0}return r}finally{bt=n,kl.transition=t}}return!1}function Eu(e,t,n){ia(e,t=ps(0,t=is(n,t),1)),t=Kl(),null!==(e=eu(e,1))&&(gt(e,1,t),nu(e,t))}function Su(e,t,n){if(3===e.tag)Eu(e,e,n);else for(;null!==t;){if(3===t.tag){Eu(t,e,n);break}if(1===t.tag){var r=t.stateNode;if("function"==typeof t.type.getDerivedStateFromError||"function"==typeof r.componentDidCatch&&(null===Wl||!Wl.has(r))){ia(t,e=ds(t,e=is(n,e),1)),e=Kl(),null!==(t=eu(t,1))&&(gt(t,1,e),nu(t,e));break}}t=t.return}}function ku(e,t,n){var r=e.pingCache;null!==r&&r.delete(t),t=Kl(),e.pingedLanes|=e.suspendedLanes&n,Ol===e&&(Pl&n)===n&&(4===Il||3===Il&&(130023424&Pl)===Pl&&500>Ke()-Dl?fu(e,0):Ml|=n),nu(e,t)}function _u(e,t){0===t&&(0==(1&e.mode)?t=1:(t=ct,0==(130023424&(ct<<=1))&&(ct=4194304)));var n=Kl();null!==(e=eu(e,t))&&(gt(e,t,n),nu(e,n))}function Ou(e){var t=e.memoizedState,n=0;null!==t&&(n=t.retryLane),_u(e,n)}function Cu(e,t){var n=0;switch(e.tag){case 13:var r=e.stateNode,o=e.memoizedState;null!==o&&(n=o.retryLane);break;case 19:r=e.stateNode;break;default:throw Error(a(314))}null!==r&&r.delete(t),_u(e,n)}function Pu(e,t){return Ye(e,t)}function ju(e,t,n,r){this.tag=e,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=t,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=r,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function Au(e,t,n,r){return new ju(e,t,n,r)}function Iu(e){return!(!(e=e.prototype)||!e.isReactComponent)}function Tu(e,t){var n=e.alternate;return null===n?((n=Au(e.tag,t,e.key,e.mode)).elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.type=e.type,n.flags=0,n.subtreeFlags=0,n.deletions=null),n.flags=14680064&e.flags,n.childLanes=e.childLanes,n.lanes=e.lanes,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue,t=e.dependencies,n.dependencies=null===t?null:{lanes:t.lanes,firstContext:t.firstContext},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n}function Ru(e,t,n,r,o,i){var s=2;if(r=e,"function"==typeof e)Iu(e)&&(s=1);else if("string"==typeof e)s=5;else e:switch(e){case S:return Nu(n.children,o,i,t);case k:s=8,o|=8;break;case _:return(e=Au(12,n,t,2|o)).elementType=_,e.lanes=i,e;case j:return(e=Au(13,n,t,o)).elementType=j,e.lanes=i,e;case A:return(e=Au(19,n,t,o)).elementType=A,e.lanes=i,e;case R:return Mu(n,o,i,t);default:if("object"==typeof e&&null!==e)switch(e.$$typeof){case O:s=10;break e;case C:s=9;break e;case P:s=11;break e;case I:s=14;break e;case T:s=16,r=null;break e}throw Error(a(130,null==e?e:typeof e,""))}return(t=Au(s,n,t,o)).elementType=e,t.type=r,t.lanes=i,t}function Nu(e,t,n,r){return(e=Au(7,e,r,t)).lanes=n,e}function Mu(e,t,n,r){return(e=Au(22,e,r,t)).elementType=R,e.lanes=n,e.stateNode={},e}function Fu(e,t,n){return(e=Au(6,e,null,t)).lanes=n,e}function Lu(e,t,n){return(t=Au(4,null!==e.children?e.children:[],e.key,t)).lanes=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function Du(e,t,n,r,o){this.tag=t,this.containerInfo=e,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.pendingContext=this.context=null,this.callbackPriority=0,this.eventTimes=vt(0),this.expirationTimes=vt(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=vt(0),this.identifierPrefix=r,this.onRecoverableError=o,this.mutableSourceEagerHydrationData=null}function zu(e,t,n,r,o,a,i,s,l){return e=new Du(e,t,n,s,l),1===t?(t=1,!0===a&&(t|=8)):t=0,a=Au(3,null,null,t),e.current=a,a.stateNode=e,a.memoizedState={element:r,isDehydrated:n,cache:null,transitions:null,pendingSuspenseBoundaries:null},ra(a),e}function Uu(e,t,n){var r=3<arguments.length&&void 0!==arguments[3]?arguments[3]:null;return{$$typeof:E,key:null==r?null:""+r,children:e,containerInfo:t,implementation:n}}function Vu(e){if(!e)return Po;e:{if(Be(e=e._reactInternals)!==e||1!==e.tag)throw Error(a(170));var t=e;do{switch(t.tag){case 3:t=t.stateNode.context;break e;case 1:if(Ro(t.type)){t=t.stateNode.__reactInternalMemoizedMergedChildContext;break e}}t=t.return}while(null!==t);throw Error(a(171))}if(1===e.tag){var n=e.type;if(Ro(n))return Fo(e,n,t)}return t}function Bu(e,t,n,r,o,a,i,s,l){return(e=zu(n,r,!0,e,0,a,0,s,l)).context=Vu(null),n=e.current,(a=aa(r=Kl(),o=Jl(n))).callback=null!=t?t:null,ia(n,a),e.current.lanes=o,gt(e,o,r),nu(e,r),e}function Wu(e,t,n,r){var o=t.current,a=Kl(),i=Jl(o);return n=Vu(n),null===t.context?t.context=n:t.pendingContext=n,(t=aa(a,i)).payload={element:e},null!==(r=void 0===r?null:r)&&(t.callback=r),ia(o,t),null!==(e=Zl(o,i,a))&&sa(e,o,i),i}function Hu(e){return(e=e.current).child?(e.child.tag,e.child.stateNode):null}function $u(e,t){if(null!==(e=e.memoizedState)&&null!==e.dehydrated){var n=e.retryLane;e.retryLane=0!==n&&n<t?n:t}}function Gu(e,t){$u(e,t),(e=e.alternate)&&$u(e,t)}wl=function(e,t,n){if(null!==e)if(e.memoizedProps!==t.pendingProps||Ao.current)xs=!0;else{if(0==(e.lanes&n)&&0==(128&t.flags))return xs=!1,function(e,t,n){switch(t.tag){case 3:Is(t),Va();break;case 5:ni(t);break;case 1:Ro(t.type)&&Lo(t);break;case 4:ei(t,t.stateNode.containerInfo);break;case 10:var r=t.type._context,o=t.memoizedProps.value;Co(Go,r._currentValue),r._currentValue=o;break;case 13:if(null!==(r=t.memoizedState))return null!==r.dehydrated?(Co(oi,1&oi.current),t.flags|=128,null):0!=(n&t.child.childLanes)?Fs(e,t,n):(Co(oi,1&oi.current),null!==(e=Hs(e,t,n))?e.sibling:null);Co(oi,1&oi.current);break;case 19:if(r=0!=(n&t.childLanes),0!=(128&e.flags)){if(r)return Ws(e,t,n);t.flags|=128}if(null!==(o=t.memoizedState)&&(o.rendering=null,o.tail=null,o.lastEffect=null),Co(oi,oi.current),r)break;return null;case 22:case 23:return t.lanes=0,Os(e,t,n)}return Hs(e,t,n)}(e,t,n);xs=0!=(131072&e.flags)}else xs=!1,Ra&&0!=(1048576&t.flags)&&Pa(t,xa,t.index);switch(t.lanes=0,t.tag){case 2:var r=t.type;null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),e=t.pendingProps;var o=To(t,jo.current);Zo(t,n),o=wi(null,t,r,e,o,n);var i=xi();return t.flags|=1,"object"==typeof o&&null!==o&&"function"==typeof o.render&&void 0===o.$$typeof?(t.tag=1,t.memoizedState=null,t.updateQueue=null,Ro(r)?(i=!0,Lo(t)):i=!1,t.memoizedState=null!==o.state&&void 0!==o.state?o.state:null,ra(t),o.updater=da,t.stateNode=o,o._reactInternals=t,ga(t,r,e,n),t=As(null,t,r,!0,i,n)):(t.tag=0,Ra&&i&&ja(t),Es(null,t,o,n),t=t.child),t;case 16:r=t.elementType;e:{switch(null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),e=t.pendingProps,r=(o=r._init)(r._payload),t.type=r,o=t.tag=function(e){if("function"==typeof e)return Iu(e)?1:0;if(null!=e){if((e=e.$$typeof)===P)return 11;if(e===I)return 14}return 2}(r),e=$o(r,e),o){case 0:t=Ps(null,t,r,e,n);break e;case 1:t=js(null,t,r,e,n);break e;case 11:t=Ss(null,t,r,e,n);break e;case 14:t=ks(null,t,r,$o(r.type,e),n);break e}throw Error(a(306,r,""))}return t;case 0:return r=t.type,o=t.pendingProps,Ps(e,t,r,o=t.elementType===r?o:$o(r,o),n);case 1:return r=t.type,o=t.pendingProps,js(e,t,r,o=t.elementType===r?o:$o(r,o),n);case 3:e:{if(Is(t),null===e)throw Error(a(387));r=t.pendingProps,o=(i=t.memoizedState).element,oa(e,t),ua(t,r,null,n);var s=t.memoizedState;if(r=s.element,i.isDehydrated){if(i={element:r,isDehydrated:!1,cache:s.cache,pendingSuspenseBoundaries:s.pendingSuspenseBoundaries,transitions:s.transitions},t.updateQueue.baseState=i,t.memoizedState=i,256&t.flags){t=Ts(e,t,r,n,o=Error(a(423)));break e}if(r!==o){t=Ts(e,t,r,n,o=Error(a(424)));break e}for(Ta=uo(t.stateNode.containerInfo.firstChild),Ia=t,Ra=!0,Na=null,n=qa(t,null,r,n),t.child=n;n;)n.flags=-3&n.flags|4096,n=n.sibling}else{if(Va(),r===o){t=Hs(e,t,n);break e}Es(e,t,r,n)}t=t.child}return t;case 5:return ni(t),null===e&&Da(t),r=t.type,o=t.pendingProps,i=null!==e?e.memoizedProps:null,s=o.children,no(r,o)?s=null:null!==i&&no(r,i)&&(t.flags|=32),Cs(e,t),Es(e,t,s,n),t.child;case 6:return null===e&&Da(t),null;case 13:return Fs(e,t,n);case 4:return ei(t,t.stateNode.containerInfo),r=t.pendingProps,null===e?t.child=Ya(t,null,r,n):Es(e,t,r,n),t.child;case 11:return r=t.type,o=t.pendingProps,Ss(e,t,r,o=t.elementType===r?o:$o(r,o),n);case 7:return Es(e,t,t.pendingProps,n),t.child;case 8:case 12:return Es(e,t,t.pendingProps.children,n),t.child;case 10:e:{if(r=t.type._context,o=t.pendingProps,i=t.memoizedProps,s=o.value,Co(Go,r._currentValue),r._currentValue=s,null!==i)if(sr(i.value,s)){if(i.children===o.children&&!Ao.current){t=Hs(e,t,n);break e}}else for(null!==(i=t.child)&&(i.return=t);null!==i;){var l=i.dependencies;if(null!==l){s=i.child;for(var u=l.firstContext;null!==u;){if(u.context===r){if(1===i.tag){(u=aa(-1,n&-n)).tag=2;var c=i.updateQueue;if(null!==c){var f=(c=c.shared).pending;null===f?u.next=u:(u.next=f.next,f.next=u),c.pending=u}}i.lanes|=n,null!==(u=i.alternate)&&(u.lanes|=n),Jo(i.return,n,t),l.lanes|=n;break}u=u.next}}else if(10===i.tag)s=i.type===t.type?null:i.child;else if(18===i.tag){if(null===(s=i.return))throw Error(a(341));s.lanes|=n,null!==(l=s.alternate)&&(l.lanes|=n),Jo(s,n,t),s=i.sibling}else s=i.child;if(null!==s)s.return=i;else for(s=i;null!==s;){if(s===t){s=null;break}if(null!==(i=s.sibling)){i.return=s.return,s=i;break}s=s.return}i=s}Es(e,t,o.children,n),t=t.child}return t;case 9:return o=t.type,r=t.pendingProps.children,Zo(t,n),r=r(o=ea(o)),t.flags|=1,Es(e,t,r,n),t.child;case 14:return o=$o(r=t.type,t.pendingProps),ks(e,t,r,o=$o(r.type,o),n);case 15:return _s(e,t,t.type,t.pendingProps,n);case 17:return r=t.type,o=t.pendingProps,o=t.elementType===r?o:$o(r,o),null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),t.tag=1,Ro(r)?(e=!0,Lo(t)):e=!1,Zo(t,n),ma(t,r,o),ga(t,r,o,n),As(null,t,r,!0,e,n);case 19:return Ws(e,t,n);case 22:return Os(e,t,n)}throw Error(a(156,t.tag))};var Yu="function"==typeof reportError?reportError:function(e){console.error(e)};function qu(e){this._internalRoot=e}function Qu(e){this._internalRoot=e}function Xu(e){return!(!e||1!==e.nodeType&&9!==e.nodeType&&11!==e.nodeType)}function Ku(e){return!(!e||1!==e.nodeType&&9!==e.nodeType&&11!==e.nodeType&&(8!==e.nodeType||" react-mount-point-unstable "!==e.nodeValue))}function Ju(){}function Zu(e,t,n,r,o){var a=n._reactRootContainer;if(a){var i=a;if("function"==typeof o){var s=o;o=function(){var e=Hu(i);s.call(e)}}Wu(t,i,e,o)}else i=function(e,t,n,r,o){if(o){if("function"==typeof r){var a=r;r=function(){var e=Hu(i);a.call(e)}}var i=Bu(t,r,e,0,null,!1,0,"",Ju);return e._reactRootContainer=i,e[mo]=i.current,Br(8===e.nodeType?e.parentNode:e),uu(),i}for(;o=e.lastChild;)e.removeChild(o);if("function"==typeof r){var s=r;r=function(){var e=Hu(l);s.call(e)}}var l=zu(e,0,!1,null,0,!1,0,"",Ju);return e._reactRootContainer=l,e[mo]=l.current,Br(8===e.nodeType?e.parentNode:e),uu((function(){Wu(t,l,n,r)})),l}(n,t,e,o,r);return Hu(i)}Qu.prototype.render=qu.prototype.render=function(e){var t=this._internalRoot;if(null===t)throw Error(a(409));Wu(e,t,null,null)},Qu.prototype.unmount=qu.prototype.unmount=function(){var e=this._internalRoot;if(null!==e){this._internalRoot=null;var t=e.containerInfo;uu((function(){Wu(null,e,null,null)})),t[mo]=null}},Qu.prototype.unstable_scheduleHydration=function(e){if(e){var t=kt();e={blockedOn:null,target:e,priority:t};for(var n=0;n<Rt.length&&0!==t&&t<Rt[n].priority;n++);Rt.splice(n,0,e),0===n&&Lt(e)}},xt=function(e){switch(e.tag){case 3:var t=e.stateNode;if(t.current.memoizedState.isDehydrated){var n=ft(t.pendingLanes);0!==n&&(yt(t,1|n),nu(t,Ke()),0==(6&_l)&&(zl=Ke()+500,Wo()))}break;case 13:var r=Kl();uu((function(){return Zl(e,1,r)})),Gu(e,1)}},Et=function(e){13===e.tag&&(Zl(e,134217728,Kl()),Gu(e,134217728))},St=function(e){if(13===e.tag){var t=Kl(),n=Jl(e);Zl(e,n,t),Gu(e,n)}},kt=function(){return bt},_t=function(e,t){var n=bt;try{return bt=e,t()}finally{bt=n}},Ee=function(e,t,n){switch(t){case"input":if(J(e,n),t=n.name,"radio"===n.type&&null!=t){for(n=e;n.parentNode;)n=n.parentNode;for(n=n.querySelectorAll("input[name="+JSON.stringify(""+t)+'][type="radio"]'),t=0;t<n.length;t++){var r=n[t];if(r!==e&&r.form===e.form){var o=Eo(r);if(!o)throw Error(a(90));Y(r),J(r,o)}}}break;case"textarea":ae(e,n);break;case"select":null!=(t=n.value)&&ne(e,!!n.multiple,t,!1)}},Pe=lu,je=uu;var ec={usingClientEntryPoint:!1,Events:[wo,xo,Eo,Oe,Ce,lu]},tc={findFiberByHostInstance:bo,bundleType:0,version:"18.1.0",rendererPackageName:"react-dom"},nc={bundleType:tc.bundleType,version:tc.version,rendererPackageName:tc.rendererPackageName,rendererConfig:tc.rendererConfig,overrideHookState:null,overrideHookStateDeletePath:null,overrideHookStateRenamePath:null,overrideProps:null,overridePropsDeletePath:null,overridePropsRenamePath:null,setErrorHandler:null,setSuspenseHandler:null,scheduleUpdate:null,currentDispatcherRef:w.ReactCurrentDispatcher,findHostInstanceByFiber:function(e){return null===(e=$e(e))?null:e.stateNode},findFiberByHostInstance:tc.findFiberByHostInstance||function(){return null},findHostInstancesForRefresh:null,scheduleRefresh:null,scheduleRoot:null,setRefreshHandler:null,getCurrentFiber:null,reconcilerVersion:"18.1.0-next-22edb9f77-20220426"};if("undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__){var rc=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!rc.isDisabled&&rc.supportsFiber)try{ot=rc.inject(nc),at=rc}catch(ce){}}t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=ec,t.createPortal=function(e,t){var n=2<arguments.length&&void 0!==arguments[2]?arguments[2]:null;if(!Xu(t))throw Error(a(200));return Uu(e,t,null,n)},t.createRoot=function(e,t){if(!Xu(e))throw Error(a(299));var n=!1,r="",o=Yu;return null!=t&&(!0===t.unstable_strictMode&&(n=!0),void 0!==t.identifierPrefix&&(r=t.identifierPrefix),void 0!==t.onRecoverableError&&(o=t.onRecoverableError)),t=zu(e,1,!1,null,0,n,0,r,o),e[mo]=t.current,Br(8===e.nodeType?e.parentNode:e),new qu(t)},t.findDOMNode=function(e){if(null==e)return null;if(1===e.nodeType)return e;var t=e._reactInternals;if(void 0===t){if("function"==typeof e.render)throw Error(a(188));throw e=Object.keys(e).join(","),Error(a(268,e))}return null===(e=$e(t))?null:e.stateNode},t.flushSync=function(e){return uu(e)},t.hydrate=function(e,t,n){if(!Ku(t))throw Error(a(200));return Zu(null,e,t,!0,n)},t.hydrateRoot=function(e,t,n){if(!Xu(e))throw Error(a(405));var r=null!=n&&n.hydratedSources||null,o=!1,i="",s=Yu;if(null!=n&&(!0===n.unstable_strictMode&&(o=!0),void 0!==n.identifierPrefix&&(i=n.identifierPrefix),void 0!==n.onRecoverableError&&(s=n.onRecoverableError)),t=Bu(t,null,e,1,null!=n?n:null,o,0,i,s),e[mo]=t.current,Br(e),r)for(e=0;e<r.length;e++)o=(o=(n=r[e])._getVersion)(n._source),null==t.mutableSourceEagerHydrationData?t.mutableSourceEagerHydrationData=[n,o]:t.mutableSourceEagerHydrationData.push(n,o);return new Qu(t)},t.render=function(e,t,n){if(!Ku(t))throw Error(a(200));return Zu(null,e,t,!1,n)},t.unmountComponentAtNode=function(e){if(!Ku(e))throw Error(a(40));return!!e._reactRootContainer&&(uu((function(){Zu(null,null,e,!1,(function(){e._reactRootContainer=null,e[mo]=null}))})),!0)},t.unstable_batchedUpdates=lu,t.unstable_renderSubtreeIntoContainer=function(e,t,n,r){if(!Ku(n))throw Error(a(200));if(null==e||void 0===e._reactInternals)throw Error(a(38));return Zu(e,t,n,!1,r)},t.version="18.1.0-next-22edb9f77-20220426"},745:(e,t,n)=>{"use strict";var r=n(3935);t.s=r.createRoot,r.hydrateRoot},3935:(e,t,n)=>{"use strict";!function e(){if("undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&"function"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE)try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(e)}catch(e){console.error(e)}}(),e.exports=n(4448)},9590:e=>{"use strict";var t=Array.isArray,n=Object.keys,r=Object.prototype.hasOwnProperty,o="undefined"!=typeof Element;function a(e,i){if(e===i)return!0;if(e&&i&&"object"==typeof e&&"object"==typeof i){var s,l,u,c=t(e),f=t(i);if(c&&f){if((l=e.length)!=i.length)return!1;for(s=l;0!=s--;)if(!a(e[s],i[s]))return!1;return!0}if(c!=f)return!1;var p=e instanceof Date,d=i instanceof Date;if(p!=d)return!1;if(p&&d)return e.getTime()==i.getTime();var h=e instanceof RegExp,m=i instanceof RegExp;if(h!=m)return!1;if(h&&m)return e.toString()==i.toString();var v=n(e);if((l=v.length)!==n(i).length)return!1;for(s=l;0!=s--;)if(!r.call(i,v[s]))return!1;if(o&&e instanceof Element&&i instanceof Element)return e===i;for(s=l;0!=s--;)if(!("_owner"===(u=v[s])&&e.$$typeof||a(e[u],i[u])))return!1;return!0}return e!=e&&i!=i}e.exports=function(e,t){try{return a(e,t)}catch(e){if(e.message&&e.message.match(/stack|recursion/i)||-2146828260===e.number)return console.warn("Warning: react-fast-compare does not handle circular references.",e.name,e.message),!1;throw e}}},9921:(e,t)=>{"use strict";var n,r=Symbol.for("react.element"),o=Symbol.for("react.portal"),a=Symbol.for("react.fragment"),i=Symbol.for("react.strict_mode"),s=Symbol.for("react.profiler"),l=Symbol.for("react.provider"),u=Symbol.for("react.context"),c=Symbol.for("react.server_context"),f=Symbol.for("react.forward_ref"),p=Symbol.for("react.suspense"),d=Symbol.for("react.suspense_list"),h=Symbol.for("react.memo"),m=Symbol.for("react.lazy"),v=Symbol.for("react.offscreen");n=Symbol.for("react.module.reference"),t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===a||e===s||e===i||e===p||e===d||e===v||"object"==typeof e&&null!==e&&(e.$$typeof===m||e.$$typeof===h||e.$$typeof===l||e.$$typeof===u||e.$$typeof===f||e.$$typeof===n||void 0!==e.getModuleId)},t.typeOf=function(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case r:switch(e=e.type){case a:case s:case i:case p:case d:return e;default:switch(e=e&&e.$$typeof){case c:case u:case f:case m:case h:case l:return e;default:return t}}case o:return t}}}},9864:(e,t,n)=>{"use strict";e.exports=n(9921)},2408:(e,t)=>{"use strict";var n=Symbol.for("react.element"),r=Symbol.for("react.portal"),o=Symbol.for("react.fragment"),a=Symbol.for("react.strict_mode"),i=Symbol.for("react.profiler"),s=Symbol.for("react.provider"),l=Symbol.for("react.context"),u=Symbol.for("react.forward_ref"),c=Symbol.for("react.suspense"),f=Symbol.for("react.memo"),p=Symbol.for("react.lazy"),d=Symbol.iterator,h={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},m=Object.assign,v={};function g(e,t,n){this.props=e,this.context=t,this.refs=v,this.updater=n||h}function y(){}function b(e,t,n){this.props=e,this.context=t,this.refs=v,this.updater=n||h}g.prototype.isReactComponent={},g.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,e,t,"setState")},g.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},y.prototype=g.prototype;var w=b.prototype=new y;w.constructor=b,m(w,g.prototype),w.isPureReactComponent=!0;var x=Array.isArray,E=Object.prototype.hasOwnProperty,S={current:null},k={key:!0,ref:!0,__self:!0,__source:!0};function _(e,t,r){var o,a={},i=null,s=null;if(null!=t)for(o in void 0!==t.ref&&(s=t.ref),void 0!==t.key&&(i=""+t.key),t)E.call(t,o)&&!k.hasOwnProperty(o)&&(a[o]=t[o]);var l=arguments.length-2;if(1===l)a.children=r;else if(1<l){for(var u=Array(l),c=0;c<l;c++)u[c]=arguments[c+2];a.children=u}if(e&&e.defaultProps)for(o in l=e.defaultProps)void 0===a[o]&&(a[o]=l[o]);return{$$typeof:n,type:e,key:i,ref:s,props:a,_owner:S.current}}function O(e){return"object"==typeof e&&null!==e&&e.$$typeof===n}var C=/\/+/g;function P(e,t){return"object"==typeof e&&null!==e&&null!=e.key?function(e){var t={"=":"=0",":":"=2"};return"$"+e.replace(/[=:]/g,(function(e){return t[e]}))}(""+e.key):t.toString(36)}function j(e,t,o,a,i){var s=typeof e;"undefined"!==s&&"boolean"!==s||(e=null);var l=!1;if(null===e)l=!0;else switch(s){case"string":case"number":l=!0;break;case"object":switch(e.$$typeof){case n:case r:l=!0}}if(l)return i=i(l=e),e=""===a?"."+P(l,0):a,x(i)?(o="",null!=e&&(o=e.replace(C,"$&/")+"/"),j(i,t,o,"",(function(e){return e}))):null!=i&&(O(i)&&(i=function(e,t){return{$$typeof:n,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}}(i,o+(!i.key||l&&l.key===i.key?"":(""+i.key).replace(C,"$&/")+"/")+e)),t.push(i)),1;if(l=0,a=""===a?".":a+":",x(e))for(var u=0;u<e.length;u++){var c=a+P(s=e[u],u);l+=j(s,t,o,c,i)}else if(c=function(e){return null===e||"object"!=typeof e?null:"function"==typeof(e=d&&e[d]||e["@@iterator"])?e:null}(e),"function"==typeof c)for(e=c.call(e),u=0;!(s=e.next()).done;)l+=j(s=s.value,t,o,c=a+P(s,u++),i);else if("object"===s)throw t=String(e),Error("Objects are not valid as a React child (found: "+("[object Object]"===t?"object with keys {"+Object.keys(e).join(", ")+"}":t)+"). If you meant to render a collection of children, use an array instead.");return l}function A(e,t,n){if(null==e)return e;var r=[],o=0;return j(e,r,"","",(function(e){return t.call(n,e,o++)})),r}function I(e){if(-1===e._status){var t=e._result;(t=t()).then((function(t){0!==e._status&&-1!==e._status||(e._status=1,e._result=t)}),(function(t){0!==e._status&&-1!==e._status||(e._status=2,e._result=t)})),-1===e._status&&(e._status=0,e._result=t)}if(1===e._status)return e._result.default;throw e._result}var T={current:null},R={transition:null},N={ReactCurrentDispatcher:T,ReactCurrentBatchConfig:R,ReactCurrentOwner:S};t.Children={map:A,forEach:function(e,t,n){A(e,(function(){t.apply(this,arguments)}),n)},count:function(e){var t=0;return A(e,(function(){t++})),t},toArray:function(e){return A(e,(function(e){return e}))||[]},only:function(e){if(!O(e))throw Error("React.Children.only expected to receive a single React element child.");return e}},t.Component=g,t.Fragment=o,t.Profiler=i,t.PureComponent=b,t.StrictMode=a,t.Suspense=c,t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=N,t.cloneElement=function(e,t,r){if(null==e)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+e+".");var o=m({},e.props),a=e.key,i=e.ref,s=e._owner;if(null!=t){if(void 0!==t.ref&&(i=t.ref,s=S.current),void 0!==t.key&&(a=""+t.key),e.type&&e.type.defaultProps)var l=e.type.defaultProps;for(u in t)E.call(t,u)&&!k.hasOwnProperty(u)&&(o[u]=void 0===t[u]&&void 0!==l?l[u]:t[u])}var u=arguments.length-2;if(1===u)o.children=r;else if(1<u){l=Array(u);for(var c=0;c<u;c++)l[c]=arguments[c+2];o.children=l}return{$$typeof:n,type:e.type,key:a,ref:i,props:o,_owner:s}},t.createContext=function(e){return(e={$$typeof:l,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null}).Provider={$$typeof:s,_context:e},e.Consumer=e},t.createElement=_,t.createFactory=function(e){var t=_.bind(null,e);return t.type=e,t},t.createRef=function(){return{current:null}},t.forwardRef=function(e){return{$$typeof:u,render:e}},t.isValidElement=O,t.lazy=function(e){return{$$typeof:p,_payload:{_status:-1,_result:e},_init:I}},t.memo=function(e,t){return{$$typeof:f,type:e,compare:void 0===t?null:t}},t.startTransition=function(e){var t=R.transition;R.transition={};try{e()}finally{R.transition=t}},t.unstable_act=function(){throw Error("act(...) is not supported in production builds of React.")},t.useCallback=function(e,t){return T.current.useCallback(e,t)},t.useContext=function(e){return T.current.useContext(e)},t.useDebugValue=function(){},t.useDeferredValue=function(e){return T.current.useDeferredValue(e)},t.useEffect=function(e,t){return T.current.useEffect(e,t)},t.useId=function(){return T.current.useId()},t.useImperativeHandle=function(e,t,n){return T.current.useImperativeHandle(e,t,n)},t.useInsertionEffect=function(e,t){return T.current.useInsertionEffect(e,t)},t.useLayoutEffect=function(e,t){return T.current.useLayoutEffect(e,t)},t.useMemo=function(e,t){return T.current.useMemo(e,t)},t.useReducer=function(e,t,n){return T.current.useReducer(e,t,n)},t.useRef=function(e){return T.current.useRef(e)},t.useState=function(e){return T.current.useState(e)},t.useSyncExternalStore=function(e,t,n){return T.current.useSyncExternalStore(e,t,n)},t.useTransition=function(){return T.current.useTransition()},t.version="18.1.0"},7294:(e,t,n)=>{"use strict";e.exports=n(2408)},5666:e=>{var t=function(e){"use strict";var t,n=Object.prototype,r=n.hasOwnProperty,o="function"==typeof Symbol?Symbol:{},a=o.iterator||"@@iterator",i=o.asyncIterator||"@@asyncIterator",s=o.toStringTag||"@@toStringTag";function l(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{l({},"")}catch(e){l=function(e,t,n){return e[t]=n}}function u(e,t,n,r){var o=t&&t.prototype instanceof v?t:v,a=Object.create(o.prototype),i=new P(r||[]);return a._invoke=function(e,t,n){var r=f;return function(o,a){if(r===d)throw new Error("Generator is already running");if(r===h){if("throw"===o)throw a;return A()}for(n.method=o,n.arg=a;;){var i=n.delegate;if(i){var s=_(i,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===f)throw r=h,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);r=d;var l=c(e,t,n);if("normal"===l.type){if(r=n.done?h:p,l.arg===m)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(r=h,n.method="throw",n.arg=l.arg)}}}(e,n,i),a}function c(e,t,n){try{return{type:"normal",arg:e.call(t,n)}}catch(e){return{type:"throw",arg:e}}}e.wrap=u;var f="suspendedStart",p="suspendedYield",d="executing",h="completed",m={};function v(){}function g(){}function y(){}var b={};l(b,a,(function(){return this}));var w=Object.getPrototypeOf,x=w&&w(w(j([])));x&&x!==n&&r.call(x,a)&&(b=x);var E=y.prototype=v.prototype=Object.create(b);function S(e){["next","throw","return"].forEach((function(t){l(e,t,(function(e){return this._invoke(t,e)}))}))}function k(e,t){function n(o,a,i,s){var l=c(e[o],e,a);if("throw"!==l.type){var u=l.arg,f=u.value;return f&&"object"==typeof f&&r.call(f,"__await")?t.resolve(f.__await).then((function(e){n("next",e,i,s)}),(function(e){n("throw",e,i,s)})):t.resolve(f).then((function(e){u.value=e,i(u)}),(function(e){return n("throw",e,i,s)}))}s(l.arg)}var o;this._invoke=function(e,r){function a(){return new t((function(t,o){n(e,r,t,o)}))}return o=o?o.then(a,a):a()}}function _(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,_(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 o=c(r,e.iterator,n.arg);if("throw"===o.type)return n.method="throw",n.arg=o.arg,n.delegate=null,m;var a=o.arg;return a?a.done?(n[e.resultName]=a.value,n.next=e.nextLoc,"return"!==n.method&&(n.method="next",n.arg=t),n.delegate=null,m):a:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,m)}function O(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 C(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function P(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(O,this),this.reset(!0)}function j(e){if(e){var n=e[a];if(n)return n.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var o=-1,i=function n(){for(;++o<e.length;)if(r.call(e,o))return n.value=e[o],n.done=!1,n;return n.value=t,n.done=!0,n};return i.next=i}}return{next:A}}function A(){return{value:t,done:!0}}return g.prototype=y,l(E,"constructor",y),l(y,"constructor",g),g.displayName=l(y,s,"GeneratorFunction"),e.isGeneratorFunction=function(e){var t="function"==typeof e&&e.constructor;return!!t&&(t===g||"GeneratorFunction"===(t.displayName||t.name))},e.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,y):(e.__proto__=y,l(e,s,"GeneratorFunction")),e.prototype=Object.create(E),e},e.awrap=function(e){return{__await:e}},S(k.prototype),l(k.prototype,i,(function(){return this})),e.AsyncIterator=k,e.async=function(t,n,r,o,a){void 0===a&&(a=Promise);var i=new k(u(t,n,r,o),a);return e.isGeneratorFunction(n)?i:i.next().then((function(e){return e.done?e.value:i.next()}))},S(E),l(E,s,"Generator"),l(E,a,(function(){return this})),l(E,"toString",(function(){return"[object Generator]"})),e.keys=function(e){var t=[];for(var n in e)t.push(n);return t.reverse(),function n(){for(;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=j,P.prototype={constructor:P,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(C),!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].completion;if("throw"===e.type)throw e.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var n=this;function o(r,o){return s.type="throw",s.arg=e,n.next=r,o&&(n.method="next",n.arg=t),!!o}for(var a=this.tryEntries.length-1;a>=0;--a){var i=this.tryEntries[a],s=i.completion;if("root"===i.tryLoc)return o("end");if(i.tryLoc<=this.prev){var l=r.call(i,"catchLoc"),u=r.call(i,"finallyLoc");if(l&&u){if(this.prev<i.catchLoc)return o(i.catchLoc,!0);if(this.prev<i.finallyLoc)return o(i.finallyLoc)}else if(l){if(this.prev<i.catchLoc)return o(i.catchLoc,!0)}else{if(!u)throw new Error("try statement without catch or finally");if(this.prev<i.finallyLoc)return o(i.finallyLoc)}}}},abrupt:function(e,t){for(var n=this.tryEntries.length-1;n>=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var a=o;break}}a&&("break"===e||"continue"===e)&&a.tryLoc<=t&&t<=a.finallyLoc&&(a=null);var i=a?a.completion:{};return i.type=e,i.arg=t,a?(this.method="next",this.next=a.finallyLoc,m):this.complete(i)},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),C(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 o=r.arg;C(n)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,n,r){return this.delegate={iterator:j(e),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=t),m}},e}(e.exports);try{regeneratorRuntime=t}catch(e){"object"==typeof globalThis?globalThis.regeneratorRuntime=t:Function("r","regeneratorRuntime = r")(t)}},53:(e,t)=>{"use strict";function n(e,t){var n=e.length;e.push(t);e:for(;0<n;){var r=n-1>>>1,o=e[r];if(!(0<a(o,t)))break e;e[r]=t,e[n]=o,n=r}}function r(e){return 0===e.length?null:e[0]}function o(e){if(0===e.length)return null;var t=e[0],n=e.pop();if(n!==t){e[0]=n;e:for(var r=0,o=e.length,i=o>>>1;r<i;){var s=2*(r+1)-1,l=e[s],u=s+1,c=e[u];if(0>a(l,n))u<o&&0>a(c,l)?(e[r]=c,e[u]=n,r=u):(e[r]=l,e[s]=n,r=s);else{if(!(u<o&&0>a(c,n)))break e;e[r]=c,e[u]=n,r=u}}}return t}function a(e,t){var n=e.sortIndex-t.sortIndex;return 0!==n?n:e.id-t.id}if("object"==typeof performance&&"function"==typeof performance.now){var i=performance;t.unstable_now=function(){return i.now()}}else{var s=Date,l=s.now();t.unstable_now=function(){return s.now()-l}}var u=[],c=[],f=1,p=null,d=3,h=!1,m=!1,v=!1,g="function"==typeof setTimeout?setTimeout:null,y="function"==typeof clearTimeout?clearTimeout:null,b="undefined"!=typeof setImmediate?setImmediate:null;function w(e){for(var t=r(c);null!==t;){if(null===t.callback)o(c);else{if(!(t.startTime<=e))break;o(c),t.sortIndex=t.expirationTime,n(u,t)}t=r(c)}}function x(e){if(v=!1,w(e),!m)if(null!==r(u))m=!0,R(E);else{var t=r(c);null!==t&&N(x,t.startTime-e)}}function E(e,n){m=!1,v&&(v=!1,y(O),O=-1),h=!0;var a=d;try{for(w(n),p=r(u);null!==p&&(!(p.expirationTime>n)||e&&!j());){var i=p.callback;if("function"==typeof i){p.callback=null,d=p.priorityLevel;var s=i(p.expirationTime<=n);n=t.unstable_now(),"function"==typeof s?p.callback=s:p===r(u)&&o(u),w(n)}else o(u);p=r(u)}if(null!==p)var l=!0;else{var f=r(c);null!==f&&N(x,f.startTime-n),l=!1}return l}finally{p=null,d=a,h=!1}}"undefined"!=typeof navigator&&void 0!==navigator.scheduling&&void 0!==navigator.scheduling.isInputPending&&navigator.scheduling.isInputPending.bind(navigator.scheduling);var S,k=!1,_=null,O=-1,C=5,P=-1;function j(){return!(t.unstable_now()-P<C)}function A(){if(null!==_){var e=t.unstable_now();P=e;var n=!0;try{n=_(!0,e)}finally{n?S():(k=!1,_=null)}}else k=!1}if("function"==typeof b)S=function(){b(A)};else if("undefined"!=typeof MessageChannel){var I=new MessageChannel,T=I.port2;I.port1.onmessage=A,S=function(){T.postMessage(null)}}else S=function(){g(A,0)};function R(e){_=e,k||(k=!0,S())}function N(e,n){O=g((function(){e(t.unstable_now())}),n)}t.unstable_IdlePriority=5,t.unstable_ImmediatePriority=1,t.unstable_LowPriority=4,t.unstable_NormalPriority=3,t.unstable_Profiling=null,t.unstable_UserBlockingPriority=2,t.unstable_cancelCallback=function(e){e.callback=null},t.unstable_continueExecution=function(){m||h||(m=!0,R(E))},t.unstable_forceFrameRate=function(e){0>e||125<e?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):C=0<e?Math.floor(1e3/e):5},t.unstable_getCurrentPriorityLevel=function(){return d},t.unstable_getFirstCallbackNode=function(){return r(u)},t.unstable_next=function(e){switch(d){case 1:case 2:case 3:var t=3;break;default:t=d}var n=d;d=t;try{return e()}finally{d=n}},t.unstable_pauseExecution=function(){},t.unstable_requestPaint=function(){},t.unstable_runWithPriority=function(e,t){switch(e){case 1:case 2:case 3:case 4:case 5:break;default:e=3}var n=d;d=e;try{return t()}finally{d=n}},t.unstable_scheduleCallback=function(e,o,a){var i=t.unstable_now();switch(a="object"==typeof a&&null!==a&&"number"==typeof(a=a.delay)&&0<a?i+a:i,e){case 1:var s=-1;break;case 2:s=250;break;case 5:s=1073741823;break;case 4:s=1e4;break;default:s=5e3}return e={id:f++,callback:o,priorityLevel:e,startTime:a,expirationTime:s=a+s,sortIndex:-1},a>i?(e.sortIndex=a,n(c,e),null===r(u)&&e===r(c)&&(v?(y(O),O=-1):v=!0,N(x,a-i))):(e.sortIndex=s,n(u,e),m||h||(m=!0,R(E))),e},t.unstable_shouldYield=j,t.unstable_wrapCallback=function(e){var t=d;return function(){var n=d;d=t;try{return e.apply(this,arguments)}finally{d=n}}}},3840:(e,t,n)=>{"use strict";e.exports=n(53)},1032:e=>{e.exports=function(e,t,n,r){var o=n?n.call(r,e,t):void 0;if(void 0!==o)return!!o;if(e===t)return!0;if("object"!=typeof e||!e||"object"!=typeof t||!t)return!1;var a=Object.keys(e),i=Object.keys(t);if(a.length!==i.length)return!1;for(var s=Object.prototype.hasOwnProperty.bind(t),l=0;l<a.length;l++){var u=a[l];if(!s(u))return!1;var c=e[u],f=t[u];if(!1===(o=n?n.call(r,c,f,u):void 0)||void 0===o&&c!==f)return!1}return!0}},8975:(e,t,n)=>{var r;!function(){"use strict";var o={not_string:/[^s]/,not_bool:/[^t]/,not_type:/[^T]/,not_primitive:/[^v]/,number:/[diefg]/,numeric_arg:/[bcdiefguxX]/,json:/[j]/,not_json:/[^j]/,text:/^[^\x25]+/,modulo:/^\x25{2}/,placeholder:/^\x25(?:([1-9]\d*)\$|\(([^)]+)\))?(\+)?(0|'[^$])?(-)?(\d+)?(?:\.(\d+))?([b-gijostTuvxX])/,key:/^([a-z_][a-z_\d]*)/i,key_access:/^\.([a-z_][a-z_\d]*)/i,index_access:/^\[(\d+)\]/,sign:/^[+-]/};function a(e){return s(u(e),arguments)}function i(e,t){return a.apply(null,[e].concat(t||[]))}function s(e,t){var n,r,i,s,l,u,c,f,p,d=1,h=e.length,m="";for(r=0;r<h;r++)if("string"==typeof e[r])m+=e[r];else if("object"==typeof e[r]){if((s=e[r]).keys)for(n=t[d],i=0;i<s.keys.length;i++){if(null==n)throw new Error(a('[sprintf] Cannot access property "%s" of undefined value "%s"',s.keys[i],s.keys[i-1]));n=n[s.keys[i]]}else n=s.param_no?t[s.param_no]:t[d++];if(o.not_type.test(s.type)&&o.not_primitive.test(s.type)&&n instanceof Function&&(n=n()),o.numeric_arg.test(s.type)&&"number"!=typeof n&&isNaN(n))throw new TypeError(a("[sprintf] expecting number but found %T",n));switch(o.number.test(s.type)&&(f=n>=0),s.type){case"b":n=parseInt(n,10).toString(2);break;case"c":n=String.fromCharCode(parseInt(n,10));break;case"d":case"i":n=parseInt(n,10);break;case"j":n=JSON.stringify(n,null,s.width?parseInt(s.width):0);break;case"e":n=s.precision?parseFloat(n).toExponential(s.precision):parseFloat(n).toExponential();break;case"f":n=s.precision?parseFloat(n).toFixed(s.precision):parseFloat(n);break;case"g":n=s.precision?String(Number(n.toPrecision(s.precision))):parseFloat(n);break;case"o":n=(parseInt(n,10)>>>0).toString(8);break;case"s":n=String(n),n=s.precision?n.substring(0,s.precision):n;break;case"t":n=String(!!n),n=s.precision?n.substring(0,s.precision):n;break;case"T":n=Object.prototype.toString.call(n).slice(8,-1).toLowerCase(),n=s.precision?n.substring(0,s.precision):n;break;case"u":n=parseInt(n,10)>>>0;break;case"v":n=n.valueOf(),n=s.precision?n.substring(0,s.precision):n;break;case"x":n=(parseInt(n,10)>>>0).toString(16);break;case"X":n=(parseInt(n,10)>>>0).toString(16).toUpperCase()}o.json.test(s.type)?m+=n:(!o.number.test(s.type)||f&&!s.sign?p="":(p=f?"+":"-",n=n.toString().replace(o.sign,"")),u=s.pad_char?"0"===s.pad_char?"0":s.pad_char.charAt(1):" ",c=s.width-(p+n).length,l=s.width&&c>0?u.repeat(c):"",m+=s.align?p+n+l:"0"===u?p+l+n:l+p+n)}return m}var l=Object.create(null);function u(e){if(l[e])return l[e];for(var t,n=e,r=[],a=0;n;){if(null!==(t=o.text.exec(n)))r.push(t[0]);else if(null!==(t=o.modulo.exec(n)))r.push("%");else{if(null===(t=o.placeholder.exec(n)))throw new SyntaxError("[sprintf] unexpected placeholder");if(t[2]){a|=1;var i=[],s=t[2],u=[];if(null===(u=o.key.exec(s)))throw new SyntaxError("[sprintf] failed to parse named argument key");for(i.push(u[1]);""!==(s=s.substring(u[0].length));)if(null!==(u=o.key_access.exec(s)))i.push(u[1]);else{if(null===(u=o.index_access.exec(s)))throw new SyntaxError("[sprintf] failed to parse named argument key");i.push(u[1])}t[2]=i}else a|=2;if(3===a)throw new Error("[sprintf] mixing positional and named placeholders is not (yet) supported");r.push({placeholder:t[0],param_no:t[1],keys:t[2],sign:t[3],pad_char:t[4],align:t[5],width:t[6],precision:t[7],type:t[8]})}n=n.substring(t[0].length)}return l[e]=r}t.sprintf=a,t.vsprintf=i,"undefined"!=typeof window&&(window.sprintf=a,window.vsprintf=i,void 0===(r=function(){return{sprintf:a,vsprintf:i}}.call(t,n,t,e))||(e.exports=r))}()},1742:e=>{e.exports=function(){var e=document.getSelection();if(!e.rangeCount)return function(){};for(var t=document.activeElement,n=[],r=0;r<e.rangeCount;r++)n.push(e.getRangeAt(r));switch(t.tagName.toUpperCase()){case"INPUT":case"TEXTAREA":t.blur();break;default:t=null}return e.removeAllRanges(),function(){"Caret"===e.type&&e.removeAllRanges(),e.rangeCount||n.forEach((function(t){e.addRange(t)})),t&&t.focus()}}}},r={};function o(e){var t=r[e];if(void 0!==t)return t.exports;var a=r[e]={id:e,loaded:!1,exports:{}};return n[e](a,a.exports,o),a.loaded=!0,a.exports}o.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return o.d(t,{a:t}),t},t=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,o.t=function(n,r){if(1&r&&(n=this(n)),8&r)return n;if("object"==typeof n&&n){if(4&r&&n.__esModule)return n;if(16&r&&"function"==typeof n.then)return n}var a=Object.create(null);o.r(a);var i={};e=e||[null,t({}),t([]),t(t)];for(var s=2&r&&n;"object"==typeof s&&!~e.indexOf(s);s=t(s))Object.getOwnPropertyNames(s).forEach((e=>i[e]=()=>n[e]));return i.default=()=>n,o.d(a,i),a},o.d=(e,t)=>{for(var n in t)o.o(t,n)&&!o.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},o.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),o.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),o.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.nmd=e=>(e.paths=[],e.children||(e.children=[]),e),(()=>{"use strict";var e=o(7294),t=o.t(e,2),n=o(3935),r=o(745);function a(e,t,n,r){return new(n||(n=Promise))((function(o,a){function i(e){try{l(r.next(e))}catch(e){a(e)}}function s(e){try{l(r.throw(e))}catch(e){a(e)}}function l(e){var t;e.done?o(e.value):(t=e.value,t instanceof n?t:new n((function(e){e(t)}))).then(i,s)}l((r=r.apply(e,t||[])).next())}))}function i(e,t){var n,r,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function s(a){return function(s){return function(a){if(n)throw new TypeError("Generator is already executing.");for(;i;)try{if(n=1,r&&(o=2&a[0]?r.return:a[0]?r.throw||((o=r.return)&&o.call(r),0):r.next)&&!(o=o.call(r,a[1])).done)return o;switch(r=0,o&&(a=[2&a[0],o.value]),a[0]){case 0:case 1:o=a;break;case 4:return i.label++,{value:a[1],done:!1};case 5:i.label++,r=a[1],a=[0];continue;case 7:a=i.ops.pop(),i.trys.pop();continue;default:if(!((o=(o=i.trys).length>0&&o[o.length-1])||6!==a[0]&&2!==a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1],o=a;break}if(o&&i.label<o[2]){i.label=o[2],i.ops.push(a);break}o[2]&&i.ops.pop(),i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e],r=0}finally{n=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}([a,s])}}}o(919);var s,l=function(){},u=l(),c=Object,f=function(e){return e===u},p=function(e){return"function"==typeof e},d=function(e,t){return c.assign({},e,t)},h="undefined",m=function(){return typeof window!=h},v=new WeakMap,g=0,y=function(e){var t,n,r=typeof e,o=e&&e.constructor,a=o==Date;if(c(e)!==e||a||o==RegExp)t=a?e.toJSON():"symbol"==r?e.toString():"string"==r?JSON.stringify(e):""+e;else{if(t=v.get(e))return t;if(t=++g+"~",v.set(e,t),o==Array){for(t="@",n=0;n<e.length;n++)t+=y(e[n])+",";v.set(e,t)}if(o==c){t="#";for(var i=c.keys(e).sort();!f(n=i.pop());)f(e[n])||(t+=n+":"+y(e[n])+",");v.set(e,t)}}return t},b=!0,w=m(),x=typeof document!=h,E=w&&window.addEventListener?window.addEventListener.bind(window):l,S=x?document.addEventListener.bind(document):l,k=w&&window.removeEventListener?window.removeEventListener.bind(window):l,_=x?document.removeEventListener.bind(document):l,O={isOnline:function(){return b},isVisible:function(){var e=x&&document.visibilityState;return f(e)||"hidden"!==e}},C={initFocus:function(e){return S("visibilitychange",e),E("focus",e),function(){_("visibilitychange",e),k("focus",e)}},initReconnect:function(e){var t=function(){b=!0,e()},n=function(){b=!1};return E("online",t),E("offline",n),function(){k("online",t),k("offline",n)}}},P=!m()||"Deno"in window,j=P?e.useEffect:e.useLayoutEffect,A="undefined"!=typeof navigator&&navigator.connection,I=!P&&A&&(["slow-2g","2g"].includes(A.effectiveType)||A.saveData),T=function(e){if(p(e))try{e=e()}catch(t){e=""}var t=[].concat(e);return[e="string"==typeof e?e:(Array.isArray(e)?e.length:e)?y(e):"",t,e?"$swr$"+e:""]},R=new WeakMap,N=function(e,t,n,r,o,a,i){void 0===i&&(i=!0);var s=R.get(e),l=s[0],u=s[1],c=s[3],f=l[t],p=u[t];if(i&&p)for(var d=0;d<p.length;++d)p[d](n,r,o);return a&&(delete c[t],f&&f[0])?f[0](2).then((function(){return e.get(t)})):e.get(t)},M=0,F=function(){return++M},L=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];return a(void 0,void 0,void 0,(function(){var t,n,r,o,a,s,l,c,h,m,v,g,y,b,w,x,E,S,k,_,O;return i(this,(function(i){switch(i.label){case 0:if(t=e[0],n=e[1],r=e[2],o=e[3],s=!!f((a="boolean"==typeof o?{revalidate:o}:o||{}).populateCache)||a.populateCache,l=!1!==a.revalidate,c=!1!==a.rollbackOnError,h=a.optimisticData,m=T(n),v=m[0],g=m[2],!v)return[2];if(y=R.get(t),b=y[2],e.length<3)return[2,N(t,v,t.get(v),u,u,l,!0)];if(w=r,E=F(),b[v]=[E,0],S=!f(h),k=t.get(v),S&&(_=p(h)?h(k):h,t.set(v,_),N(t,v,_)),p(w))try{w=w(t.get(v))}catch(e){x=e}return w&&p(w.then)?[4,w.catch((function(e){x=e}))]:[3,2];case 1:if(w=i.sent(),E!==b[v][0]){if(x)throw x;return[2,w]}x&&S&&c&&(s=!0,w=k,t.set(v,k)),i.label=2;case 2:return s&&(x||(p(s)&&(w=s(w,k)),t.set(v,w)),t.set(g,d(t.get(g),{error:x}))),b[v][1]=F(),[4,N(t,v,w,x,u,l,!!s)];case 3:if(O=i.sent(),x)throw x;return[2,s?O:w]}}))}))},D=function(e,t){for(var n in e)e[n][0]&&e[n][0](t)},z=function(e,t){if(!R.has(e)){var n=d(C,t),r={},o=L.bind(u,e),a=l;if(R.set(e,[r,{},{},{},o]),!P){var i=n.initFocus(setTimeout.bind(u,D.bind(u,r,0))),s=n.initReconnect(setTimeout.bind(u,D.bind(u,r,1)));a=function(){i&&i(),s&&s(),R.delete(e)}}return[e,o,a]}return[e,R.get(e)[4]]},U=z(new Map),V=U[0],B=U[1],W=d({onLoadingSlow:l,onSuccess:l,onError:l,onErrorRetry:function(e,t,n,r,o){var a=n.errorRetryCount,i=o.retryCount,s=~~((Math.random()+.5)*(1<<(i<8?i:8)))*n.errorRetryInterval;!f(a)&&i>a||setTimeout(r,s,o)},onDiscarded:l,revalidateOnFocus:!0,revalidateOnReconnect:!0,revalidateIfStale:!0,shouldRetryOnError:!0,errorRetryInterval:I?1e4:5e3,focusThrottleInterval:5e3,dedupingInterval:2e3,loadingTimeout:I?5e3:3e3,compare:function(e,t){return y(e)==y(t)},isPaused:function(){return!1},cache:V,mutate:B,fallback:{}},O),H=function(e,t){var n=d(e,t);if(t){var r=e.use,o=e.fallback,a=t.use,i=t.fallback;r&&a&&(n.use=r.concat(a)),o&&i&&(n.fallback=d(o,i))}return n},$=(0,e.createContext)({}),G=function(e){return p(e[1])?[e[0],e[1],e[2]||{}]:[e[0],null,(null===e[1]?e[2]:e[1])||{}]},Y=function(){return d(W,(0,e.useContext)($))},q=function(e,t,n){var r=t[e]||(t[e]=[]);return r.push(n),function(){var e=r.indexOf(n);e>=0&&(r[e]=r[r.length-1],r.pop())}},Q={dedupe:!0},X=c.defineProperty((function(t){var n=t.value,r=H((0,e.useContext)($),n),o=n&&n.provider,a=(0,e.useState)((function(){return o?z(o(r.cache||V),n):u}))[0];return a&&(r.cache=a[0],r.mutate=a[1]),j((function(){return a?a[2]:u}),[]),(0,e.createElement)($.Provider,d(t,{value:r}))}),"default",{value:W}),K=(s=function(t,n,r){var o=r.cache,s=r.compare,l=r.fallbackData,c=r.suspense,v=r.revalidateOnMount,g=r.refreshInterval,y=r.refreshWhenHidden,b=r.refreshWhenOffline,w=R.get(o),x=w[0],E=w[1],S=w[2],k=w[3],_=T(t),O=_[0],C=_[1],A=_[2],I=(0,e.useRef)(!1),M=(0,e.useRef)(!1),D=(0,e.useRef)(O),z=(0,e.useRef)(n),U=(0,e.useRef)(r),V=function(){return U.current},B=function(){return V().isVisible()&&V().isOnline()},W=function(e){return o.set(A,d(o.get(A),e))},H=o.get(O),$=f(l)?r.fallback[O]:l,G=f(H)?$:H,Y=o.get(A)||{},X=Y.error,K=!I.current,J=function(){return K&&!f(v)?v:!V().isPaused()&&(c?!f(G)&&r.revalidateIfStale:f(G)||r.revalidateIfStale)},Z=!(!O||!n)&&(!!Y.isValidating||K&&J()),ee=function(t,n){var r=(0,e.useState)({})[1],o=(0,e.useRef)(t),a=(0,e.useRef)({data:!1,error:!1,isValidating:!1}),i=(0,e.useCallback)((function(e){var t=!1,i=o.current;for(var s in e){var l=s;i[l]!==e[l]&&(i[l]=e[l],a.current[l]&&(t=!0))}t&&!n.current&&r({})}),[]);return j((function(){o.current=t})),[o,a.current,i]}({data:G,error:X,isValidating:Z},M),te=ee[0],ne=ee[1],re=ee[2],oe=(0,e.useCallback)((function(e){return a(void 0,void 0,void 0,(function(){var t,n,a,l,c,d,h,m,v,g,y,b,w;return i(this,(function(i){switch(i.label){case 0:if(t=z.current,!O||!t||M.current||V().isPaused())return[2,!1];l=!0,c=e||{},d=!k[O]||!c.dedupe,h=function(){return!M.current&&O===D.current&&I.current},m=function(){var e=k[O];e&&e[1]===a&&delete k[O]},v={isValidating:!1},g=function(){W({isValidating:!1}),h()&&re(v)},W({isValidating:!0}),re({isValidating:!0}),i.label=1;case 1:return i.trys.push([1,3,,4]),d&&(N(o,O,te.current.data,te.current.error,!0),r.loadingTimeout&&!o.get(O)&&setTimeout((function(){l&&h()&&V().onLoadingSlow(O,r)}),r.loadingTimeout),k[O]=[t.apply(void 0,C),F()]),w=k[O],n=w[0],a=w[1],[4,n];case 2:return n=i.sent(),d&&setTimeout(m,r.dedupingInterval),k[O]&&k[O][1]===a?(W({error:u}),v.error=u,y=S[O],!f(y)&&(a<=y[0]||a<=y[1]||0===y[1])?(g(),d&&h()&&V().onDiscarded(O),[2,!1]):(s(te.current.data,n)?v.data=te.current.data:v.data=n,s(o.get(O),n)||o.set(O,n),d&&h()&&V().onSuccess(n,O,r),[3,4])):(d&&h()&&V().onDiscarded(O),[2,!1]);case 3:return b=i.sent(),m(),V().isPaused()||(W({error:b}),v.error=b,d&&h()&&(V().onError(b,O,r),("boolean"==typeof r.shouldRetryOnError&&r.shouldRetryOnError||p(r.shouldRetryOnError)&&r.shouldRetryOnError(b))&&B()&&V().onErrorRetry(b,O,r,oe,{retryCount:(c.retryCount||0)+1,dedupe:!0}))),[3,4];case 4:return l=!1,g(),h()&&d&&N(o,O,v.data,v.error,!1),[2,!0]}}))}))}),[O]),ae=(0,e.useCallback)(L.bind(u,o,(function(){return D.current})),[]);if(j((function(){z.current=n,U.current=r})),j((function(){if(O){var e=O!==D.current,t=oe.bind(u,Q),n=0,r=q(O,E,(function(e,t,n){re(d({error:t,isValidating:n},s(te.current.data,e)?u:{data:e}))})),o=q(O,x,(function(e){if(0==e){var r=Date.now();V().revalidateOnFocus&&r>n&&B()&&(n=r+V().focusThrottleInterval,t())}else if(1==e)V().revalidateOnReconnect&&B()&&t();else if(2==e)return oe()}));return M.current=!1,D.current=O,I.current=!0,e&&re({data:G,error:X,isValidating:Z}),J()&&(f(G)||P?t():(a=t,m()&&typeof window.requestAnimationFrame!=h?window.requestAnimationFrame(a):setTimeout(a,1))),function(){M.current=!0,r(),o()}}var a}),[O,oe]),j((function(){var e;function t(){var t=p(g)?g(G):g;t&&-1!==e&&(e=setTimeout(n,t))}function n(){te.current.error||!y&&!V().isVisible()||!b&&!V().isOnline()?t():oe(Q).then(t)}return t(),function(){e&&(clearTimeout(e),e=-1)}}),[g,y,b,oe]),(0,e.useDebugValue)(G),c&&f(G)&&O)throw z.current=n,U.current=r,M.current=!1,f(X)?oe(Q):X;return{mutate:ae,get data(){return ne.data=!0,G},get error(){return ne.error=!0,X},get isValidating(){return ne.isValidating=!0,Z}}},function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];var n=Y(),r=G(e),o=r[0],a=r[1],i=r[2],l=H(n,i),u=s,c=l.use;if(c)for(var f=c.length;f-- >0;)u=c[f](u);return u(o,a||l.fetcher,l)}),J=o(7361),Z=o.n(J),ee=o(8804),te=o.n(ee);function ne(e,t,n,r,o,a,i){try{var s=e[a](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function re(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var a=e.apply(t,n);function i(e){ne(a,r,o,i,s,"next",e)}function s(e){ne(a,r,o,i,s,"throw",e)}i(void 0)}))}}var oe=function(){var e=re(regeneratorRuntime.mark((function e(t,n){var r;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,fetch(t,{signal:n});case 2:return r=e.sent,e.prev=3,e.next=6,r.json();case 6:return e.abrupt("return",e.sent);case 9:return e.prev=9,e.t0=e.catch(3),e.abrupt("return",null);case 12:case"end":return e.stop()}}),e,null,[[3,9]])})));return function(t,n){return e.apply(this,arguments)}}(),ae=function(e){return"".concat(SEOPRESS_DATA.SEOPRESS_URL_ASSETS).concat(e)},ie=o(9864),se=o(1032),le=o.n(se);const ue=function(e){function t(e,r,l,u,p){for(var d,h,m,v,w,E=0,S=0,k=0,_=0,O=0,T=0,N=m=d=0,F=0,L=0,D=0,z=0,U=l.length,V=U-1,B="",W="",H="",$="";F<U;){if(h=l.charCodeAt(F),F===V&&0!==S+_+k+E&&(0!==S&&(h=47===S?10:47),_=k=E=0,U++,V++),0===S+_+k+E){if(F===V&&(0<L&&(B=B.replace(f,"")),0<B.trim().length)){switch(h){case 32:case 9:case 59:case 13:case 10:break;default:B+=l.charAt(F)}h=59}switch(h){case 123:for(d=(B=B.trim()).charCodeAt(0),m=1,z=++F;F<U;){switch(h=l.charCodeAt(F)){case 123:m++;break;case 125:m--;break;case 47:switch(h=l.charCodeAt(F+1)){case 42:case 47:e:{for(N=F+1;N<V;++N)switch(l.charCodeAt(N)){case 47:if(42===h&&42===l.charCodeAt(N-1)&&F+2!==N){F=N+1;break e}break;case 10:if(47===h){F=N+1;break e}}F=N}}break;case 91:h++;case 40:h++;case 34:case 39:for(;F++<V&&l.charCodeAt(F)!==h;);}if(0===m)break;F++}if(m=l.substring(z,F),0===d&&(d=(B=B.replace(c,"").trim()).charCodeAt(0)),64===d){switch(0<L&&(B=B.replace(f,"")),h=B.charCodeAt(1)){case 100:case 109:case 115:case 45:L=r;break;default:L=I}if(z=(m=t(r,L,m,h,p+1)).length,0<R&&(w=s(3,m,L=n(I,B,D),r,P,C,z,h,p,u),B=L.join(""),void 0!==w&&0===(z=(m=w.trim()).length)&&(h=0,m="")),0<z)switch(h){case 115:B=B.replace(x,i);case 100:case 109:case 45:m=B+"{"+m+"}";break;case 107:m=(B=B.replace(g,"$1 $2"))+"{"+m+"}",m=1===A||2===A&&a("@"+m,3)?"@-webkit-"+m+"@"+m:"@"+m;break;default:m=B+m,112===u&&(W+=m,m="")}else m=""}else m=t(r,n(r,B,D),m,u,p+1);H+=m,m=D=L=N=d=0,B="",h=l.charCodeAt(++F);break;case 125:case 59:if(1<(z=(B=(0<L?B.replace(f,""):B).trim()).length))switch(0===N&&(d=B.charCodeAt(0),45===d||96<d&&123>d)&&(z=(B=B.replace(" ",":")).length),0<R&&void 0!==(w=s(1,B,r,e,P,C,W.length,u,p,u))&&0===(z=(B=w.trim()).length)&&(B="\0\0"),d=B.charCodeAt(0),h=B.charCodeAt(1),d){case 0:break;case 64:if(105===h||99===h){$+=B+l.charAt(F);break}default:58!==B.charCodeAt(z-1)&&(W+=o(B,d,h,B.charCodeAt(2)))}D=L=N=d=0,B="",h=l.charCodeAt(++F)}}switch(h){case 13:case 10:47===S?S=0:0===1+d&&107!==u&&0<B.length&&(L=1,B+="\0"),0<R*M&&s(0,B,r,e,P,C,W.length,u,p,u),C=1,P++;break;case 59:case 125:if(0===S+_+k+E){C++;break}default:switch(C++,v=l.charAt(F),h){case 9:case 32:if(0===_+E+S)switch(O){case 44:case 58:case 9:case 32:v="";break;default:32!==h&&(v=" ")}break;case 0:v="\\0";break;case 12:v="\\f";break;case 11:v="\\v";break;case 38:0===_+S+E&&(L=D=1,v="\f"+v);break;case 108:if(0===_+S+E+j&&0<N)switch(F-N){case 2:112===O&&58===l.charCodeAt(F-3)&&(j=O);case 8:111===T&&(j=T)}break;case 58:0===_+S+E&&(N=F);break;case 44:0===S+k+_+E&&(L=1,v+="\r");break;case 34:case 39:0===S&&(_=_===h?0:0===_?h:_);break;case 91:0===_+S+k&&E++;break;case 93:0===_+S+k&&E--;break;case 41:0===_+S+E&&k--;break;case 40:0===_+S+E&&(0===d&&(2*O+3*T==533||(d=1)),k++);break;case 64:0===S+k+_+E+N+m&&(m=1);break;case 42:case 47:if(!(0<_+E+k))switch(S){case 0:switch(2*h+3*l.charCodeAt(F+1)){case 235:S=47;break;case 220:z=F,S=42}break;case 42:47===h&&42===O&&z+2!==F&&(33===l.charCodeAt(z+2)&&(W+=l.substring(z,F+1)),v="",S=0)}}0===S&&(B+=v)}T=O,O=h,F++}if(0<(z=W.length)){if(L=r,0<R&&void 0!==(w=s(2,W,L,e,P,C,z,u,p,u))&&0===(W=w).length)return $+W+H;if(W=L.join(",")+"{"+W+"}",0!=A*j){switch(2!==A||a(W,2)||(j=0),j){case 111:W=W.replace(b,":-moz-$1")+W;break;case 112:W=W.replace(y,"::-webkit-input-$1")+W.replace(y,"::-moz-$1")+W.replace(y,":-ms-input-$1")+W}j=0}}return $+W+H}function n(e,t,n){var o=t.trim().split(m);t=o;var a=o.length,i=e.length;switch(i){case 0:case 1:var s=0;for(e=0===i?"":e[0]+" ";s<a;++s)t[s]=r(e,t[s],n).trim();break;default:var l=s=0;for(t=[];s<a;++s)for(var u=0;u<i;++u)t[l++]=r(e[u]+" ",o[s],n).trim()}return t}function r(e,t,n){var r=t.charCodeAt(0);switch(33>r&&(r=(t=t.trim()).charCodeAt(0)),r){case 38:return t.replace(v,"$1"+e.trim());case 58:return e.trim()+t.replace(v,"$1"+e.trim());default:if(0<1*n&&0<t.indexOf("\f"))return t.replace(v,(58===e.charCodeAt(0)?"":"$1")+e.trim())}return e+t}function o(e,t,n,r){var i=e+";",s=2*t+3*n+4*r;if(944===s){e=i.indexOf(":",9)+1;var l=i.substring(e,i.length-1).trim();return l=i.substring(0,e).trim()+l+";",1===A||2===A&&a(l,1)?"-webkit-"+l+l:l}if(0===A||2===A&&!a(i,1))return i;switch(s){case 1015:return 97===i.charCodeAt(10)?"-webkit-"+i+i:i;case 951:return 116===i.charCodeAt(3)?"-webkit-"+i+i:i;case 963:return 110===i.charCodeAt(5)?"-webkit-"+i+i:i;case 1009:if(100!==i.charCodeAt(4))break;case 969:case 942:return"-webkit-"+i+i;case 978:return"-webkit-"+i+"-moz-"+i+i;case 1019:case 983:return"-webkit-"+i+"-moz-"+i+"-ms-"+i+i;case 883:if(45===i.charCodeAt(8))return"-webkit-"+i+i;if(0<i.indexOf("image-set(",11))return i.replace(O,"$1-webkit-$2")+i;break;case 932:if(45===i.charCodeAt(4))switch(i.charCodeAt(5)){case 103:return"-webkit-box-"+i.replace("-grow","")+"-webkit-"+i+"-ms-"+i.replace("grow","positive")+i;case 115:return"-webkit-"+i+"-ms-"+i.replace("shrink","negative")+i;case 98:return"-webkit-"+i+"-ms-"+i.replace("basis","preferred-size")+i}return"-webkit-"+i+"-ms-"+i+i;case 964:return"-webkit-"+i+"-ms-flex-"+i+i;case 1023:if(99!==i.charCodeAt(8))break;return"-webkit-box-pack"+(l=i.substring(i.indexOf(":",15)).replace("flex-","").replace("space-between","justify"))+"-webkit-"+i+"-ms-flex-pack"+l+i;case 1005:return d.test(i)?i.replace(p,":-webkit-")+i.replace(p,":-moz-")+i:i;case 1e3:switch(t=(l=i.substring(13).trim()).indexOf("-")+1,l.charCodeAt(0)+l.charCodeAt(t)){case 226:l=i.replace(w,"tb");break;case 232:l=i.replace(w,"tb-rl");break;case 220:l=i.replace(w,"lr");break;default:return i}return"-webkit-"+i+"-ms-"+l+i;case 1017:if(-1===i.indexOf("sticky",9))break;case 975:switch(t=(i=e).length-10,s=(l=(33===i.charCodeAt(t)?i.substring(0,t):i).substring(e.indexOf(":",7)+1).trim()).charCodeAt(0)+(0|l.charCodeAt(7))){case 203:if(111>l.charCodeAt(8))break;case 115:i=i.replace(l,"-webkit-"+l)+";"+i;break;case 207:case 102:i=i.replace(l,"-webkit-"+(102<s?"inline-":"")+"box")+";"+i.replace(l,"-webkit-"+l)+";"+i.replace(l,"-ms-"+l+"box")+";"+i}return i+";";case 938:if(45===i.charCodeAt(5))switch(i.charCodeAt(6)){case 105:return l=i.replace("-items",""),"-webkit-"+i+"-webkit-box-"+l+"-ms-flex-"+l+i;case 115:return"-webkit-"+i+"-ms-flex-item-"+i.replace(S,"")+i;default:return"-webkit-"+i+"-ms-flex-line-pack"+i.replace("align-content","").replace(S,"")+i}break;case 973:case 989:if(45!==i.charCodeAt(3)||122===i.charCodeAt(4))break;case 931:case 953:if(!0===_.test(e))return 115===(l=e.substring(e.indexOf(":")+1)).charCodeAt(0)?o(e.replace("stretch","fill-available"),t,n,r).replace(":fill-available",":stretch"):i.replace(l,"-webkit-"+l)+i.replace(l,"-moz-"+l.replace("fill-",""))+i;break;case 962:if(i="-webkit-"+i+(102===i.charCodeAt(5)?"-ms-"+i:"")+i,211===n+r&&105===i.charCodeAt(13)&&0<i.indexOf("transform",10))return i.substring(0,i.indexOf(";",27)+1).replace(h,"$1-webkit-$2")+i}return i}function a(e,t){var n=e.indexOf(1===t?":":"{"),r=e.substring(0,3!==t?n:10);return n=e.substring(n+1,e.length-1),N(2!==t?r:r.replace(k,"$1"),n,t)}function i(e,t){var n=o(t,t.charCodeAt(0),t.charCodeAt(1),t.charCodeAt(2));return n!==t+";"?n.replace(E," or ($1)").substring(4):"("+t+")"}function s(e,t,n,r,o,a,i,s,l,c){for(var f,p=0,d=t;p<R;++p)switch(f=T[p].call(u,e,d,n,r,o,a,i,s,l,c)){case void 0:case!1:case!0:case null:break;default:d=f}if(d!==t)return d}function l(e){return void 0!==(e=e.prefix)&&(N=null,e?"function"!=typeof e?A=1:(A=2,N=e):A=0),l}function u(e,n){var r=e;if(33>r.charCodeAt(0)&&(r=r.trim()),r=[r],0<R){var o=s(-1,n,r,r,P,C,0,0,0,0);void 0!==o&&"string"==typeof o&&(n=o)}var a=t(I,r,n,0,0);return 0<R&&void 0!==(o=s(-2,a,r,r,P,C,a.length,0,0,0))&&(a=o),j=0,C=P=1,a}var c=/^\0+/g,f=/[\0\r\f]/g,p=/: */g,d=/zoo|gra/,h=/([,: ])(transform)/g,m=/,\r+?/g,v=/([\t\r\n ])*\f?&/g,g=/@(k\w+)\s*(\S*)\s*/,y=/::(place)/g,b=/:(read-only)/g,w=/[svh]\w+-[tblr]{2}/,x=/\(\s*(.*)\s*\)/g,E=/([\s\S]*?);/g,S=/-self|flex-/g,k=/[^]*?(:[rp][el]a[\w-]+)[^]*/,_=/stretch|:\s*\w+\-(?:conte|avail)/,O=/([^-])(image-set\()/,C=1,P=1,j=0,A=1,I=[],T=[],R=0,N=null,M=0;return u.use=function e(t){switch(t){case void 0:case null:R=T.length=0;break;default:if("function"==typeof t)T[R++]=t;else if("object"==typeof t)for(var n=0,r=t.length;n<r;++n)e(t[n]);else M=0|!!t}return e},u.set=l,void 0!==e&&l(e),u},ce={animationIterationCount:1,borderImageOutset:1,borderImageSlice:1,borderImageWidth:1,boxFlex:1,boxFlexGroup:1,boxOrdinalGroup:1,columnCount:1,columns:1,flex:1,flexGrow:1,flexPositive:1,flexShrink:1,flexNegative:1,flexOrder:1,gridRow:1,gridRowEnd:1,gridRowSpan:1,gridRowStart:1,gridColumn:1,gridColumnEnd:1,gridColumnSpan:1,gridColumnStart:1,msGridRow:1,msGridRowSpan:1,msGridColumn:1,msGridColumnSpan:1,fontWeight:1,lineHeight:1,opacity:1,order:1,orphans:1,tabSize:1,widows:1,zIndex:1,zoom:1,WebkitLineClamp:1,fillOpacity:1,floodOpacity:1,stopOpacity:1,strokeDasharray:1,strokeDashoffset:1,strokeMiterlimit:1,strokeOpacity:1,strokeWidth:1},fe=function(e){var t=Object.create(null);return function(n){return void 0===t[n]&&(t[n]=e(n)),t[n]}};var pe=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|download|draggable|encType|enterKeyHint|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/;const de=fe((function(e){return pe.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91}));var he=o(8679),me=o.n(he);function ve(){return(ve=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e}).apply(this,arguments)}var ge=function(e,t){for(var n=[e[0]],r=0,o=t.length;r<o;r+=1)n.push(t[r],e[r+1]);return n},ye=function(e){return null!==e&&"object"==typeof e&&"[object Object]"===(e.toString?e.toString():Object.prototype.toString.call(e))&&!(0,ie.typeOf)(e)},be=Object.freeze([]),we=Object.freeze({});function xe(e){return"function"==typeof e}function Ee(e){return e.displayName||e.name||"Component"}function Se(e){return e&&"string"==typeof e.styledComponentId}var ke="undefined"!=typeof process&&(process.env.REACT_APP_SC_ATTR||process.env.SC_ATTR)||"data-styled",_e="undefined"!=typeof window&&"HTMLElement"in window,Oe=Boolean("boolean"==typeof SC_DISABLE_SPEEDY?SC_DISABLE_SPEEDY:"undefined"!=typeof process&&void 0!==process.env.REACT_APP_SC_DISABLE_SPEEDY&&""!==process.env.REACT_APP_SC_DISABLE_SPEEDY?"false"!==process.env.REACT_APP_SC_DISABLE_SPEEDY&&process.env.REACT_APP_SC_DISABLE_SPEEDY:"undefined"!=typeof process&&void 0!==process.env.SC_DISABLE_SPEEDY&&""!==process.env.SC_DISABLE_SPEEDY&&"false"!==process.env.SC_DISABLE_SPEEDY&&process.env.SC_DISABLE_SPEEDY),Ce={};function Pe(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];throw new Error("An error occurred. See https://git.io/JUIaE#"+e+" for more information."+(n.length>0?" Args: "+n.join(", "):""))}var je=function(){function e(e){this.groupSizes=new Uint32Array(512),this.length=512,this.tag=e}var t=e.prototype;return t.indexOfGroup=function(e){for(var t=0,n=0;n<e;n++)t+=this.groupSizes[n];return t},t.insertRules=function(e,t){if(e>=this.groupSizes.length){for(var n=this.groupSizes,r=n.length,o=r;e>=o;)(o<<=1)<0&&Pe(16,""+e);this.groupSizes=new Uint32Array(o),this.groupSizes.set(n),this.length=o;for(var a=r;a<o;a++)this.groupSizes[a]=0}for(var i=this.indexOfGroup(e+1),s=0,l=t.length;s<l;s++)this.tag.insertRule(i,t[s])&&(this.groupSizes[e]++,i++)},t.clearGroup=function(e){if(e<this.length){var t=this.groupSizes[e],n=this.indexOfGroup(e),r=n+t;this.groupSizes[e]=0;for(var o=n;o<r;o++)this.tag.deleteRule(n)}},t.getGroup=function(e){var t="";if(e>=this.length||0===this.groupSizes[e])return t;for(var n=this.groupSizes[e],r=this.indexOfGroup(e),o=r+n,a=r;a<o;a++)t+=this.tag.getRule(a)+"/*!sc*/\n";return t},e}(),Ae=new Map,Ie=new Map,Te=1,Re=function(e){if(Ae.has(e))return Ae.get(e);for(;Ie.has(Te);)Te++;var t=Te++;return Ae.set(e,t),Ie.set(t,e),t},Ne=function(e){return Ie.get(e)},Me=function(e,t){t>=Te&&(Te=t+1),Ae.set(e,t),Ie.set(t,e)},Fe="style["+ke+'][data-styled-version="5.3.5"]',Le=new RegExp("^"+ke+'\\.g(\\d+)\\[id="([\\w\\d-]+)"\\].*?"([^"]*)'),De=function(e,t,n){for(var r,o=n.split(","),a=0,i=o.length;a<i;a++)(r=o[a])&&e.registerName(t,r)},ze=function(e,t){for(var n=(t.textContent||"").split("/*!sc*/\n"),r=[],o=0,a=n.length;o<a;o++){var i=n[o].trim();if(i){var s=i.match(Le);if(s){var l=0|parseInt(s[1],10),u=s[2];0!==l&&(Me(u,l),De(e,u,s[3]),e.getTag().insertRules(l,r)),r.length=0}else r.push(i)}}},Ue=function(){return"undefined"!=typeof window&&void 0!==window.__webpack_nonce__?window.__webpack_nonce__:null},Ve=function(e){var t=document.head,n=e||t,r=document.createElement("style"),o=function(e){for(var t=e.childNodes,n=t.length;n>=0;n--){var r=t[n];if(r&&1===r.nodeType&&r.hasAttribute(ke))return r}}(n),a=void 0!==o?o.nextSibling:null;r.setAttribute(ke,"active"),r.setAttribute("data-styled-version","5.3.5");var i=Ue();return i&&r.setAttribute("nonce",i),n.insertBefore(r,a),r},Be=function(){function e(e){var t=this.element=Ve(e);t.appendChild(document.createTextNode("")),this.sheet=function(e){if(e.sheet)return e.sheet;for(var t=document.styleSheets,n=0,r=t.length;n<r;n++){var o=t[n];if(o.ownerNode===e)return o}Pe(17)}(t),this.length=0}var t=e.prototype;return t.insertRule=function(e,t){try{return this.sheet.insertRule(t,e),this.length++,!0}catch(e){return!1}},t.deleteRule=function(e){this.sheet.deleteRule(e),this.length--},t.getRule=function(e){var t=this.sheet.cssRules[e];return void 0!==t&&"string"==typeof t.cssText?t.cssText:""},e}(),We=function(){function e(e){var t=this.element=Ve(e);this.nodes=t.childNodes,this.length=0}var t=e.prototype;return t.insertRule=function(e,t){if(e<=this.length&&e>=0){var n=document.createTextNode(t),r=this.nodes[e];return this.element.insertBefore(n,r||null),this.length++,!0}return!1},t.deleteRule=function(e){this.element.removeChild(this.nodes[e]),this.length--},t.getRule=function(e){return e<this.length?this.nodes[e].textContent:""},e}(),He=function(){function e(e){this.rules=[],this.length=0}var t=e.prototype;return t.insertRule=function(e,t){return e<=this.length&&(this.rules.splice(e,0,t),this.length++,!0)},t.deleteRule=function(e){this.rules.splice(e,1),this.length--},t.getRule=function(e){return e<this.length?this.rules[e]:""},e}(),$e=_e,Ge={isServer:!_e,useCSSOMInjection:!Oe},Ye=function(){function e(e,t,n){void 0===e&&(e=we),void 0===t&&(t={}),this.options=ve({},Ge,{},e),this.gs=t,this.names=new Map(n),this.server=!!e.isServer,!this.server&&_e&&$e&&($e=!1,function(e){for(var t=document.querySelectorAll(Fe),n=0,r=t.length;n<r;n++){var o=t[n];o&&"active"!==o.getAttribute(ke)&&(ze(e,o),o.parentNode&&o.parentNode.removeChild(o))}}(this))}e.registerId=function(e){return Re(e)};var t=e.prototype;return t.reconstructWithOptions=function(t,n){return void 0===n&&(n=!0),new e(ve({},this.options,{},t),this.gs,n&&this.names||void 0)},t.allocateGSInstance=function(e){return this.gs[e]=(this.gs[e]||0)+1},t.getTag=function(){return this.tag||(this.tag=(n=(t=this.options).isServer,r=t.useCSSOMInjection,o=t.target,e=n?new He(o):r?new Be(o):new We(o),new je(e)));var e,t,n,r,o},t.hasNameForId=function(e,t){return this.names.has(e)&&this.names.get(e).has(t)},t.registerName=function(e,t){if(Re(e),this.names.has(e))this.names.get(e).add(t);else{var n=new Set;n.add(t),this.names.set(e,n)}},t.insertRules=function(e,t,n){this.registerName(e,t),this.getTag().insertRules(Re(e),n)},t.clearNames=function(e){this.names.has(e)&&this.names.get(e).clear()},t.clearRules=function(e){this.getTag().clearGroup(Re(e)),this.clearNames(e)},t.clearTag=function(){this.tag=void 0},t.toString=function(){return function(e){for(var t=e.getTag(),n=t.length,r="",o=0;o<n;o++){var a=Ne(o);if(void 0!==a){var i=e.names.get(a),s=t.getGroup(o);if(i&&s&&i.size){var l=ke+".g"+o+'[id="'+a+'"]',u="";void 0!==i&&i.forEach((function(e){e.length>0&&(u+=e+",")})),r+=""+s+l+'{content:"'+u+'"}/*!sc*/\n'}}}return r}(this)},e}(),qe=/(a)(d)/gi,Qe=function(e){return String.fromCharCode(e+(e>25?39:97))};function Xe(e){var t,n="";for(t=Math.abs(e);t>52;t=t/52|0)n=Qe(t%52)+n;return(Qe(t%52)+n).replace(qe,"$1-$2")}var Ke=function(e,t){for(var n=t.length;n;)e=33*e^t.charCodeAt(--n);return e},Je=function(e){return Ke(5381,e)};function Ze(e){for(var t=0;t<e.length;t+=1){var n=e[t];if(xe(n)&&!Se(n))return!1}return!0}var et=Je("5.3.5"),tt=function(){function e(e,t,n){this.rules=e,this.staticRulesId="",this.isStatic=(void 0===n||n.isStatic)&&Ze(e),this.componentId=t,this.baseHash=Ke(et,t),this.baseStyle=n,Ye.registerId(t)}return e.prototype.generateAndInjectStyles=function(e,t,n){var r=this.componentId,o=[];if(this.baseStyle&&o.push(this.baseStyle.generateAndInjectStyles(e,t,n)),this.isStatic&&!n.hash)if(this.staticRulesId&&t.hasNameForId(r,this.staticRulesId))o.push(this.staticRulesId);else{var a=bt(this.rules,e,t,n).join(""),i=Xe(Ke(this.baseHash,a)>>>0);if(!t.hasNameForId(r,i)){var s=n(a,"."+i,void 0,r);t.insertRules(r,i,s)}o.push(i),this.staticRulesId=i}else{for(var l=this.rules.length,u=Ke(this.baseHash,n.hash),c="",f=0;f<l;f++){var p=this.rules[f];if("string"==typeof p)c+=p;else if(p){var d=bt(p,e,t,n),h=Array.isArray(d)?d.join(""):d;u=Ke(u,h+f),c+=h}}if(c){var m=Xe(u>>>0);if(!t.hasNameForId(r,m)){var v=n(c,"."+m,void 0,r);t.insertRules(r,m,v)}o.push(m)}}return o.join(" ")},e}(),nt=/^\s*\/\/.*$/gm,rt=[":","[",".","#"];function ot(e){var t,n,r,o,a=void 0===e?we:e,i=a.options,s=void 0===i?we:i,l=a.plugins,u=void 0===l?be:l,c=new ue(s),f=[],p=function(e){function t(t){if(t)try{e(t+"}")}catch(e){}}return function(n,r,o,a,i,s,l,u,c,f){switch(n){case 1:if(0===c&&64===r.charCodeAt(0))return e(r+";"),"";break;case 2:if(0===u)return r+"/*|*/";break;case 3:switch(u){case 102:case 112:return e(o[0]+r),"";default:return r+(0===f?"/*|*/":"")}case-2:r.split("/*|*/}").forEach(t)}}}((function(e){f.push(e)})),d=function(e,r,a){return 0===r&&-1!==rt.indexOf(a[n.length])||a.match(o)?e:"."+t};function h(e,a,i,s){void 0===s&&(s="&");var l=e.replace(nt,""),u=a&&i?i+" "+a+" { "+l+" }":l;return t=s,n=a,r=new RegExp("\\"+n+"\\b","g"),o=new RegExp("(\\"+n+"\\b){2,}"),c(i||!a?"":a,u)}return c.use([].concat(u,[function(e,t,o){2===e&&o.length&&o[0].lastIndexOf(n)>0&&(o[0]=o[0].replace(r,d))},p,function(e){if(-2===e){var t=f;return f=[],t}}])),h.hash=u.length?u.reduce((function(e,t){return t.name||Pe(15),Ke(e,t.name)}),5381).toString():"",h}var at=e.createContext(),it=(at.Consumer,e.createContext()),st=(it.Consumer,new Ye),lt=ot();function ut(){return(0,e.useContext)(at)||st}function ct(){return(0,e.useContext)(it)||lt}function ft(t){var n=(0,e.useState)(t.stylisPlugins),r=n[0],o=n[1],a=ut(),i=(0,e.useMemo)((function(){var e=a;return t.sheet?e=t.sheet:t.target&&(e=e.reconstructWithOptions({target:t.target},!1)),t.disableCSSOMInjection&&(e=e.reconstructWithOptions({useCSSOMInjection:!1})),e}),[t.disableCSSOMInjection,t.sheet,t.target]),s=(0,e.useMemo)((function(){return ot({options:{prefix:!t.disableVendorPrefixes},plugins:r})}),[t.disableVendorPrefixes,r]);return(0,e.useEffect)((function(){le()(r,t.stylisPlugins)||o(t.stylisPlugins)}),[t.stylisPlugins]),e.createElement(at.Provider,{value:i},e.createElement(it.Provider,{value:s},t.children))}var pt=function(){function e(e,t){var n=this;this.inject=function(e,t){void 0===t&&(t=lt);var r=n.name+t.hash;e.hasNameForId(n.id,r)||e.insertRules(n.id,r,t(n.rules,r,"@keyframes"))},this.toString=function(){return Pe(12,String(n.name))},this.name=e,this.id="sc-keyframes-"+e,this.rules=t}return e.prototype.getName=function(e){return void 0===e&&(e=lt),this.name+e.hash},e}(),dt=/([A-Z])/,ht=/([A-Z])/g,mt=/^ms-/,vt=function(e){return"-"+e.toLowerCase()};function gt(e){return dt.test(e)?e.replace(ht,vt).replace(mt,"-ms-"):e}var yt=function(e){return null==e||!1===e||""===e};function bt(e,t,n,r){if(Array.isArray(e)){for(var o,a=[],i=0,s=e.length;i<s;i+=1)""!==(o=bt(e[i],t,n,r))&&(Array.isArray(o)?a.push.apply(a,o):a.push(o));return a}return yt(e)?"":Se(e)?"."+e.styledComponentId:xe(e)?"function"!=typeof(l=e)||l.prototype&&l.prototype.isReactComponent||!t?e:bt(e(t),t,n,r):e instanceof pt?n?(e.inject(n,r),e.getName(r)):e:ye(e)?function e(t,n){var r,o,a=[];for(var i in t)t.hasOwnProperty(i)&&!yt(t[i])&&(Array.isArray(t[i])&&t[i].isCss||xe(t[i])?a.push(gt(i)+":",t[i],";"):ye(t[i])?a.push.apply(a,e(t[i],i)):a.push(gt(i)+": "+(r=i,(null==(o=t[i])||"boolean"==typeof o||""===o?"":"number"!=typeof o||0===o||r in ce?String(o).trim():o+"px")+";")));return n?[n+" {"].concat(a,["}"]):a}(e):e.toString();var l}var wt=function(e){return Array.isArray(e)&&(e.isCss=!0),e};function xt(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];return xe(e)||ye(e)?wt(bt(ge(be,[e].concat(n)))):0===n.length&&1===e.length&&"string"==typeof e[0]?e:wt(bt(ge(e,n)))}new Set;var Et=function(e,t,n){return void 0===n&&(n=we),e.theme!==n.theme&&e.theme||t||n.theme},St=/[!"#$%&'()*+,./:;<=>?@[\\\]^`{|}~-]+/g,kt=/(^-|-$)/g;function _t(e){return e.replace(St,"-").replace(kt,"")}var Ot=function(e){return Xe(Je(e)>>>0)};function Ct(e){return"string"==typeof e&&!0}var Pt=function(e){return"function"==typeof e||"object"==typeof e&&null!==e&&!Array.isArray(e)},jt=function(e){return"__proto__"!==e&&"constructor"!==e&&"prototype"!==e};function At(e,t,n){var r=e[n];Pt(t)&&Pt(r)?It(r,t):e[n]=t}function It(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];for(var o=0,a=n;o<a.length;o++){var i=a[o];if(Pt(i))for(var s in i)jt(s)&&At(e,i[s],s)}return e}var Tt=e.createContext();Tt.Consumer;var Rt={};function Nt(t,n,r){var o=Se(t),a=!Ct(t),i=n.attrs,s=void 0===i?be:i,l=n.componentId,u=void 0===l?function(e,t){var n="string"!=typeof e?"sc":_t(e);Rt[n]=(Rt[n]||0)+1;var r=n+"-"+Ot("5.3.5"+n+Rt[n]);return t?t+"-"+r:r}(n.displayName,n.parentComponentId):l,c=n.displayName,f=void 0===c?function(e){return Ct(e)?"styled."+e:"Styled("+Ee(e)+")"}(t):c,p=n.displayName&&n.componentId?_t(n.displayName)+"-"+n.componentId:n.componentId||u,d=o&&t.attrs?Array.prototype.concat(t.attrs,s).filter(Boolean):s,h=n.shouldForwardProp;o&&t.shouldForwardProp&&(h=n.shouldForwardProp?function(e,r,o){return t.shouldForwardProp(e,r,o)&&n.shouldForwardProp(e,r,o)}:t.shouldForwardProp);var m,v=new tt(r,p,o?t.componentStyle:void 0),g=v.isStatic&&0===s.length,y=function(t,n){return function(t,n,r,o){var a=t.attrs,i=t.componentStyle,s=t.defaultProps,l=t.foldedComponentIds,u=t.shouldForwardProp,c=t.styledComponentId,f=t.target,p=function(e,t,n){void 0===e&&(e=we);var r=ve({},t,{theme:e}),o={};return n.forEach((function(e){var t,n,a,i=e;for(t in xe(i)&&(i=i(r)),i)r[t]=o[t]="className"===t?(n=o[t],a=i[t],n&&a?n+" "+a:n||a):i[t]})),[r,o]}(Et(n,(0,e.useContext)(Tt),s)||we,n,a),d=p[0],h=p[1],m=function(e,t,n,r){var o=ut(),a=ct();return t?e.generateAndInjectStyles(we,o,a):e.generateAndInjectStyles(n,o,a)}(i,o,d),v=r,g=h.$as||n.$as||h.as||n.as||f,y=Ct(g),b=h!==n?ve({},n,{},h):n,w={};for(var x in b)"$"!==x[0]&&"as"!==x&&("forwardedAs"===x?w.as=b[x]:(u?u(x,de,g):!y||de(x))&&(w[x]=b[x]));return n.style&&h.style!==n.style&&(w.style=ve({},n.style,{},h.style)),w.className=Array.prototype.concat(l,c,m!==c?m:null,n.className,h.className).filter(Boolean).join(" "),w.ref=v,(0,e.createElement)(g,w)}(m,t,n,g)};return y.displayName=f,(m=e.forwardRef(y)).attrs=d,m.componentStyle=v,m.displayName=f,m.shouldForwardProp=h,m.foldedComponentIds=o?Array.prototype.concat(t.foldedComponentIds,t.styledComponentId):be,m.styledComponentId=p,m.target=o?t.target:t,m.withComponent=function(e){var t=n.componentId,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(n,["componentId"]),a=t&&t+"-"+(Ct(e)?e:_t(Ee(e)));return Nt(e,ve({},o,{attrs:d,componentId:a}),r)},Object.defineProperty(m,"defaultProps",{get:function(){return this._foldedDefaultProps},set:function(e){this._foldedDefaultProps=o?It({},t.defaultProps,e):e}}),m.toString=function(){return"."+m.styledComponentId},a&&me()(m,t,{attrs:!0,componentStyle:!0,displayName:!0,foldedComponentIds:!0,shouldForwardProp:!0,styledComponentId:!0,target:!0,withComponent:!0}),m}var Mt=function(e){return function e(t,n,r){if(void 0===r&&(r=we),!(0,ie.isValidElementType)(n))return Pe(1,String(n));var o=function(){return t(n,r,xt.apply(void 0,arguments))};return o.withConfig=function(o){return e(t,n,ve({},r,{},o))},o.attrs=function(o){return e(t,n,ve({},r,{attrs:Array.prototype.concat(r.attrs,o).filter(Boolean)}))},o}(Nt,e)};["a","abbr","address","area","article","aside","audio","b","base","bdi","bdo","big","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","data","datalist","dd","del","details","dfn","dialog","div","dl","dt","em","embed","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","iframe","img","input","ins","kbd","keygen","label","legend","li","link","main","map","mark","marquee","menu","menuitem","meta","meter","nav","noscript","object","ol","optgroup","option","output","p","param","picture","pre","progress","q","rp","rt","ruby","s","samp","script","section","select","small","source","span","strong","style","sub","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","title","tr","track","u","ul","var","video","wbr","circle","clipPath","defs","ellipse","foreignObject","g","image","line","linearGradient","marker","mask","path","pattern","polygon","polyline","radialGradient","rect","stop","svg","text","textPath","tspan"].forEach((function(e){Mt[e]=Mt(e)}));var Ft,Lt=function(){function e(e,t){this.rules=e,this.componentId=t,this.isStatic=Ze(e),Ye.registerId(this.componentId+1)}var t=e.prototype;return t.createStyles=function(e,t,n,r){var o=r(bt(this.rules,t,n,r).join(""),""),a=this.componentId+e;n.insertRules(a,a,o)},t.removeStyles=function(e,t){t.clearRules(this.componentId+e)},t.renderStyles=function(e,t,n,r){e>2&&Ye.registerId(this.componentId+e),this.removeStyles(e,n),this.createStyles(e,t,n,r)},e}();Ft=function(){var t=this;this._emitSheetCSS=function(){var e=t.instance.toString();if(!e)return"";var n=Ue();return"<style "+[n&&'nonce="'+n+'"',ke+'="true"','data-styled-version="5.3.5"'].filter(Boolean).join(" ")+">"+e+"</style>"},this.getStyleTags=function(){return t.sealed?Pe(2):t._emitSheetCSS()},this.getStyleElement=function(){var n;if(t.sealed)return Pe(2);var r=((n={})[ke]="",n["data-styled-version"]="5.3.5",n.dangerouslySetInnerHTML={__html:t.instance.toString()},n),o=Ue();return o&&(r.nonce=o),[e.createElement("style",ve({},r,{key:"sc-0-0"}))]},this.seal=function(){t.sealed=!0},this.instance=new Ye({isServer:!0}),this.sealed=!1}.prototype,Ft.collectStyles=function(t){return this.sealed?Pe(2):e.createElement(ft,{sheet:this.instance},t)},Ft.interleaveWithNodeStream=function(e){return Pe(3)};const Dt=Mt;var zt=Dt.div.withConfig({componentId:"sc-oa9y3j-0"})(["&&&{position:absolute;top:-10px;left:-10px;display:none;align-items:center;justify-content:center;font-size:16px;width:28px;height:28px;border-radius:999px;padding:2px;background-color:var(--primaryColor);border:1px solid #fff;z-index:100010;}"]),Ut=Dt.div.withConfig({componentId:"sc-oa9y3j-1"})(["&&&{> .seopress-beacon-el{width:60px;height:60px;border-radius:200px;align-items:center;display:flex;justify-content:center;line-height:60px;background-color:#4e21e7;transition:background-color 200ms linear 0s,transform 200ms linear 0s;min-width:60px;&:hover{cursor:pointer;background-color:rgb(78 33 231 / 80%);}}appearance:none;margin:0px;outline:none;padding:0px;position:fixed;user-select:none;z-index:100009;border:none;color:white;cursor:pointer;-webkit-tap-highlight-color:transparent;"," &:hover{.dashicons{display:flex;}}img{width:38px;height:38px;}","}body:not(.wp-admin) &&&{left:",";top:",";}body.wp-admin &&&{bottom:40px;left:180px;}body.wp-admin.block-editor-page.folded:not(.is-fullscreen-mode) &&&{left:60px;}body.wp-admin.is-fullscreen-mode.block-editor-page &&&{left:20px;}@media screen and (max-width:782px){body.wp-admin.block-editor-page &&&{left:10px !important;bottom:10px;}}"],(function(e){return!e.isDragging&&"\n &:focus {\n box-shadow: 0 0 0 2px var(--primaryColor);\n outline: 2px solid var(--primaryColor);\n }"}),(function(e){return e.isDragging&&"\n opacity: 0.8;\n cursor: grabbing !important;\n .dashicons {\n display: flex;\n }\n "}),(function(e){var t=e.x;return t&&"".concat(t,"%")}),(function(e){var t=e.y;return t&&"".concat(t,"%")}));const Vt=Ut;var Bt=o(4293),Wt=o.n(Bt),Ht=o(3311),$t=o.n(Ht),Gt="TITLE_DESCRIPTION_META",Yt="CONTENT_ANALYSIS",qt="SCHEMAS",Qt="TITLE_SETTINGS",Xt="ADVANCED",Kt="SOCIAL",Jt="REDIRECTION",Zt="OVERVIEW",en="GOOGLE_NEWS",tn="VIDEO_SITEMAP",nn="INTERNAL_LINKING",rn="INSPECT_URL",on="SCHEMA_MANUAL",an="GLOBAL",sn=wp.i18n.__,ln=function(){return[{key:Gt,title:sn("Titles & Metas","wp-seopress"),canView:function(){return!0},type_role:an,default_sub_tab:Qt},{key:Yt,title:sn("Content Analysis","wp-seopress"),canView:function(){return!0},type_role:"CONTENT_ANALYSIS",default_sub_tab:Zt},{key:qt,title:sn("Schemas","wp-seopress"),canView:function(){return Z()(SEOPRESS_DATA,["TABS","SCHEMAS"],!1)},type_role:an,default_sub_tab:on}]},un=function(){return[{parent:Gt,key:Qt,canView:function(){return!0},title:sn("Title settings","wp-seopress")},{parent:Gt,key:Kt,canView:function(){return!0},title:sn("Social","wp-seopress")},{parent:Gt,key:Xt,canView:function(){return!0},title:sn("Advanced","wp-seopress")},{parent:Gt,key:Jt,canView:function(){return!0},title:sn("Redirection","wp-seopress")},{parent:Gt,key:en,canView:function(){return Z()(SEOPRESS_DATA,["SUB_TABS",en],!1)},title:sn("Google News","wp-seopress")},{parent:Gt,key:tn,canView:function(){return Z()(SEOPRESS_DATA,["SUB_TABS",tn],!1)},title:sn("Video Sitemap","wp-seopress")},{parent:Yt,key:Zt,canView:function(){return!0},title:sn("Overview","wp-seopress")},{parent:Yt,key:rn,canView:function(){return Z()(SEOPRESS_DATA,["SUB_TABS",rn],!1)},title:sn("Inspect with Google","wp-seopress")},{parent:Yt,key:nn,canView:function(){return Z()(SEOPRESS_DATA,["SUB_TABS",nn],!1)},title:sn("Internal Linking","wp-seopress")},{parent:qt,key:on,canView:function(){return!0},title:sn("Manual","wp-seopress")}]};function cn(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=pn(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}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,i=!0,s=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return i=e.done,e},e:function(e){s=!0,a=e},f:function(){try{i||null==n.return||n.return()}finally{if(s)throw a}}}}function fn(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,a=[],i=!0,s=!1;try{for(n=n.call(e);!(i=(r=n.next()).done)&&(a.push(r.value),!t||a.length!==t);i=!0);}catch(e){s=!0,o=e}finally{try{i||null==n.return||n.return()}finally{if(s)throw o}}return a}}(e,t)||pn(e,t)||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 pn(e,t){if(e){if("string"==typeof e)return dn(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?dn(e,t):void 0}}function dn(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 hn=(0,e.createContext)({values:{openBar:!1,tab:Gt,dataPagePreview:null}}),mn=function(){return(0,e.useContext)(hn).values.dataPagePreview},vn=function(){return(0,e.useContext)(hn).values.isGutenberg},gn=function(t){var n=t.children,r=t.data,o=void 0===r?{}:r,a=fn((0,e.useState)(!1),2),i=a[0],s=a[1],l=fn((0,e.useState)(Z()(o,"isGutenberg",!1)),2),u=l[0],c=(l[1],fn((0,e.useState)(function(){var e,t=Z()(SEOPRESS_DATA,"USER_ROLES",null),n=Z()(SEOPRESS_DATA,"ROLES_BLOCKED",{}),r=cn(ln());try{for(r.s();!(e=r.n()).done;){var o,a=e.value,i=Z()(a,"type_role",null),s=Z()(n,[i],null),l=!1,u=cn(t);try{for(u.s();!(o=u.n()).done;){var c=o.value;Wt()(s)||Wt()(Z()(s,c,null))||(l=!0)}}catch(e){u.e(e)}finally{u.f()}if(!l)return a.key}}catch(e){r.e(e)}finally{r.f()}return $t()(ln(),{key:Gt}).key}()),2)),f=c[0],p=c[1],d=fn((0,e.useState)(null),2),h=d[0],m=d[1],v=$t()(ln(),{key:f}),g=Wt()(v.default_sub_tab)?null:v.default_sub_tab,y=fn((0,e.useState)(g),2),b=y[0],w=y[1];return(0,e.useEffect)((function(){var e=$t()(un(),{key:b});e&&Z()(e,"parent",!1)&&p(e.parent)}),[b]),e.createElement(hn.Provider,{value:{values:{openBar:i,dataPagePreview:h,tab:f,subTab:b,isGutenberg:u},actions:{setOpenBar:s,setDataPagePreview:m,setTab:function(e){var t=$t()(ln(),{key:e});t&&(Wt()(t.default_sub_tab)?w(null):w(t.default_sub_tab),p(e))},setSubTab:function(e){$t()(un(),{key:e})&&w(e)}}}},n)};function yn(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}const bn=function(t,n){var r,o,a=(r=(0,e.useState)((function(){try{var e=window.localStorage.getItem(t);return e?JSON.parse(e):n}catch(e){return console.log(e),n}})),o=2,function(e){if(Array.isArray(e))return e}(r)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,a=[],i=!0,s=!1;try{for(n=n.call(e);!(i=(r=n.next()).done)&&(a.push(r.value),!t||a.length!==t);i=!0);}catch(e){s=!0,o=e}finally{try{i||null==n.return||n.return()}finally{if(s)throw o}}return a}}(r,o)||function(e,t){if(e){if("string"==typeof e)return yn(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?yn(e,t):void 0}}(r,o)||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.")}()),i=a[0],s=a[1];return[i,function(e){try{var n=e instanceof Function?e(i):e;s(n),window.localStorage.setItem(t,JSON.stringify(n))}catch(e){console.log(e)}}]};function wn(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 xn(){var e=window;return{width:e.innerWidth,height:e.innerHeight}}function En(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Sn(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?En(Object(n),!0).forEach((function(t){kn(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):En(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function kn(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function _n(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,a=[],i=!0,s=!1;try{for(n=n.call(e);!(i=(r=n.next()).done)&&(a.push(r.value),!t||a.length!==t);i=!0);}catch(e){s=!0,o=e}finally{try{i||null==n.return||n.return()}finally{if(s)throw o}}return a}}(e,t)||function(e,t){if(e){if("string"==typeof e)return On(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?On(e,t):void 0}}(e,t)||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 On(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 Cn=function(e,t){return Number(100*t/e).toFixed(2)};const Pn=function(){var t=vn(),n=(0,e.useContext)(hn).actions,r=_n(bn("seopress_beacon_position",{x:2,y:90}),2),o=r[0],a=r[1],i=_n((0,e.useState)({isDragging:!1}),2),s=i[0],l=i[1],u=function(e){e.preventDefault(),s.isDragging||n.setOpenBar((function(e){return!e}))},c=function(){var t,n,r=(t=(0,e.useState)(xn()),n=2,function(e){if(Array.isArray(e))return e}(t)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,a=[],i=!0,s=!1;try{for(n=n.call(e);!(i=(r=n.next()).done)&&(a.push(r.value),!t||a.length!==t);i=!0);}catch(e){s=!0,o=e}finally{try{i||null==n.return||n.return()}finally{if(s)throw o}}return a}}(t,n)||function(e,t){if(e){if("string"==typeof e)return wn(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?wn(e,t):void 0}}(t,n)||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.")}()),o=r[0],a=r[1];return(0,e.useEffect)((function(){function e(){a(xn())}return window.addEventListener("resize",e),function(){return window.removeEventListener("resize",e)}}),[]),o}(),f=c.height,p=c.width,d=p-80,h=f-80,m={x:o.x,y:o.y},v=(0,e.useCallback)((function(e){var t=e||window.event,n=t.clientX,r=t.clientY;if(s.isDragging){var o=document.querySelector("#seopress-beacon-universal-metabox");n<=d&&n>=20&&(o.style.left="".concat(Cn(p,n),"%"),m=Sn(Sn({},m),{},{x:n})),r<=h&&r>=70&&(o.style.top="".concat(Cn(f,r),"%"),m=Sn(Sn({},m),{},{y:r}))}}),[s.isDragging]),g=(0,e.useCallback)((function(){s.isDragging&&(l((function(e){return Sn(Sn({},e),{},{isDragging:!1})})),a({x:Cn(p,m.x),y:Cn(f,m.y)}))}),[s.isDragging]),y=(0,e.useCallback)((function(){l((function(e){return Sn(Sn({},e),{},{isDragging:!0})}))}),[]);return(0,e.useEffect)((function(){return window.addEventListener("mousemove",v),window.addEventListener("mouseup",g),function(){return window.removeEventListener("mousemove",v),window.removeEventListener("mouseup",g),!1}}),[v,g]),t?e.createElement(Vt,{id:"seopress-beacon-universal-metabox",onKeyUp:function(e){13===e.keyCode&&u(e)},role:"button",tabIndex:"0"},e.createElement("div",{className:"seopress-beacon-el",onClick:s.isDragging?null:u},e.createElement("img",{src:Z()(SEOPRESS_DATA,"BEACON_SVG",ae("/img/beacon.svg")),alt:""}))):e.createElement(e.Fragment,null,e.createElement("div",{style:{display:s.isDragging?"block":"none",position:"fixed",width:"100%",height:"100%",top:0,left:0,backgroundColor:"rgba(255,255,255,0.001)",zIndex:1e5}}),e.createElement(Vt,{id:"seopress-beacon-universal-metabox",onKeyUp:function(e){13===e.keyCode&&u(e)},isDragging:s.isDragging,x:o.x,y:o.y,role:"button",tabIndex:"0"},e.createElement("div",{className:"seopress-beacon-el",onClick:s.isDragging?null:u},e.createElement("img",{src:Z()(SEOPRESS_DATA,"BEACON_SVG",ae("/img/beacon.svg")),alt:""})),e.createElement(zt,{className:"dashicons dashicons-move",onMouseDown:y})))};var jn=o(1609),An=o.n(jn);function In(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,a=[],i=!0,s=!1;try{for(n=n.call(e);!(i=(r=n.next()).done)&&(a.push(r.value),!t||a.length!==t);i=!0);}catch(e){s=!0,o=e}finally{try{i||null==n.return||n.return()}finally{if(s)throw o}}return a}}(e,t)||function(e,t){if(e){if("string"==typeof e)return Tn(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Tn(e,t):void 0}}(e,t)||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 Tn(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 Rn=(0,e.createContext)({values:{show:!1,message:""},actions:{}}),Nn=function(t){var n=t.values,r=t.children,o=In((0,e.useState)(Z()(n,"show",!1)),2),a=o[0],i=o[1],s=In((0,e.useState)(Z()(n,"messages","")),2),l=s[0],u=s[1];return(0,e.useEffect)((function(){An()(l)||(i(!0),setTimeout((function(){u(""),i(!1)}),4e3))}),[l]),e.createElement(Rn.Provider,{value:{values:{show:a,message:l},actions:{setMessage:u}}},r)},Mn=Dt.div.withConfig({componentId:"sc-4mm9ym-0"})(["&&&{position:fixed;right:0;bottom:40px;padding-left:16px;padding-right:16px;animation-name:sp-fade-in-out;animation-duration:5s;animation-iteration-count:1;animation-fill-mode:forwards;visibility:hidden;z-index:10;.sp-components-snackbar__content{display:flex;align-items:center;justify-content:space-between;line-height:1.4;}.sp-components-snackbar{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-size:13px;background-color:#32373c;border-radius:4px;box-shadow:0 2px 4px rgba(0,0,0,0.3);color:#fff;padding:16px 24px;cursor:pointer;}.sp-components-snackbar .dashicons{color:#fff;}}"]);const Fn=function(t){var n=t.children;return e.createElement(Mn,null,e.createElement("div",{className:"sp-components-snackbar"},e.createElement("div",{className:"sp-components-snackbar__content"},e.createElement("span",{className:"dashicons dashicons-yes"}),n)))};wp.i18n.__;const Ln=function(){var t=(0,e.useContext)(Rn).values;return t.show?e.createElement(Fn,null,t.message):null};var Dn=Object.prototype.hasOwnProperty;const zn=function(e,t){return null!=e&&Dn.call(e,t)},Un=Array.isArray,Vn="object"==typeof global&&global&&global.Object===Object&&global;var Bn="object"==typeof self&&self&&self.Object===Object&&self;const Wn=Vn||Bn||Function("return this")(),Hn=Wn.Symbol;var $n=Object.prototype,Gn=$n.hasOwnProperty,Yn=$n.toString,qn=Hn?Hn.toStringTag:void 0;var Qn=Object.prototype.toString;var Xn=Hn?Hn.toStringTag:void 0;const Kn=function(e){return null==e?void 0===e?"[object Undefined]":"[object Null]":Xn&&Xn in Object(e)?function(e){var t=Gn.call(e,qn),n=e[qn];try{e[qn]=void 0;var r=!0}catch(e){}var o=Yn.call(e);return r&&(t?e[qn]=n:delete e[qn]),o}(e):function(e){return Qn.call(e)}(e)},Jn=function(e){return null!=e&&"object"==typeof e},Zn=function(e){return"symbol"==typeof e||Jn(e)&&"[object Symbol]"==Kn(e)};var er=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,tr=/^\w*$/;const nr=function(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)},rr=function(e){if(!nr(e))return!1;var t=Kn(e);return"[object Function]"==t||"[object GeneratorFunction]"==t||"[object AsyncFunction]"==t||"[object Proxy]"==t},or=Wn["__core-js_shared__"];var ar,ir=(ar=/[^.]+$/.exec(or&&or.keys&&or.keys.IE_PROTO||""))?"Symbol(src)_1."+ar:"";var sr=Function.prototype.toString;const lr=function(e){if(null!=e){try{return sr.call(e)}catch(e){}try{return e+""}catch(e){}}return""};var ur=/^\[object .+?Constructor\]$/,cr=Function.prototype,fr=Object.prototype,pr=cr.toString,dr=fr.hasOwnProperty,hr=RegExp("^"+pr.call(dr).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");const mr=function(e){return!(!nr(e)||(t=e,ir&&ir in t))&&(rr(e)?hr:ur).test(lr(e));var t},vr=function(e,t){var n=function(e,t){return null==e?void 0:e[t]}(e,t);return mr(n)?n:void 0},gr=vr(Object,"create");var yr=Object.prototype.hasOwnProperty;var br=Object.prototype.hasOwnProperty;function wr(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}wr.prototype.clear=function(){this.__data__=gr?gr(null):{},this.size=0},wr.prototype.delete=function(e){var t=this.has(e)&&delete this.__data__[e];return this.size-=t?1:0,t},wr.prototype.get=function(e){var t=this.__data__;if(gr){var n=t[e];return"__lodash_hash_undefined__"===n?void 0:n}return yr.call(t,e)?t[e]:void 0},wr.prototype.has=function(e){var t=this.__data__;return gr?void 0!==t[e]:br.call(t,e)},wr.prototype.set=function(e,t){var n=this.__data__;return this.size+=this.has(e)?0:1,n[e]=gr&&void 0===t?"__lodash_hash_undefined__":t,this};const xr=wr,Er=function(e,t){return e===t||e!=e&&t!=t},Sr=function(e,t){for(var n=e.length;n--;)if(Er(e[n][0],t))return n;return-1};var kr=Array.prototype.splice;function _r(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}_r.prototype.clear=function(){this.__data__=[],this.size=0},_r.prototype.delete=function(e){var t=this.__data__,n=Sr(t,e);return!(n<0||(n==t.length-1?t.pop():kr.call(t,n,1),--this.size,0))},_r.prototype.get=function(e){var t=this.__data__,n=Sr(t,e);return n<0?void 0:t[n][1]},_r.prototype.has=function(e){return Sr(this.__data__,e)>-1},_r.prototype.set=function(e,t){var n=this.__data__,r=Sr(n,e);return r<0?(++this.size,n.push([e,t])):n[r][1]=t,this};const Or=_r,Cr=vr(Wn,"Map"),Pr=function(e,t){var n,r,o=e.__data__;return("string"==(r=typeof(n=t))||"number"==r||"symbol"==r||"boolean"==r?"__proto__"!==n:null===n)?o["string"==typeof t?"string":"hash"]:o.map};function jr(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}jr.prototype.clear=function(){this.size=0,this.__data__={hash:new xr,map:new(Cr||Or),string:new xr}},jr.prototype.delete=function(e){var t=Pr(this,e).delete(e);return this.size-=t?1:0,t},jr.prototype.get=function(e){return Pr(this,e).get(e)},jr.prototype.has=function(e){return Pr(this,e).has(e)},jr.prototype.set=function(e,t){var n=Pr(this,e),r=n.size;return n.set(e,t),this.size+=n.size==r?0:1,this};const Ar=jr;function Ir(e,t){if("function"!=typeof e||null!=t&&"function"!=typeof t)throw new TypeError("Expected a function");var n=function(){var r=arguments,o=t?t.apply(this,r):r[0],a=n.cache;if(a.has(o))return a.get(o);var i=e.apply(this,r);return n.cache=a.set(o,i)||a,i};return n.cache=new(Ir.Cache||Ar),n}Ir.Cache=Ar;const Tr=Ir;var Rr=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,Nr=/\\(\\)?/g,Mr=function(e){var t=Tr(e,(function(e){return 500===n.size&&n.clear(),e})),n=t.cache;return t}((function(e){var t=[];return 46===e.charCodeAt(0)&&t.push(""),e.replace(Rr,(function(e,n,r,o){t.push(r?o.replace(Nr,"$1"):n||e)})),t}));const Fr=Mr,Lr=function(e,t){for(var n=-1,r=null==e?0:e.length,o=Array(r);++n<r;)o[n]=t(e[n],n,e);return o};var Dr=Hn?Hn.prototype:void 0,zr=Dr?Dr.toString:void 0;const Ur=function e(t){if("string"==typeof t)return t;if(Un(t))return Lr(t,e)+"";if(Zn(t))return zr?zr.call(t):"";var n=t+"";return"0"==n&&1/t==-1/0?"-0":n},Vr=function(e){return null==e?"":Ur(e)},Br=function(e,t){return Un(e)?e:function(e,t){if(Un(e))return!1;var n=typeof e;return!("number"!=n&&"symbol"!=n&&"boolean"!=n&&null!=e&&!Zn(e))||tr.test(e)||!er.test(e)||null!=t&&e in Object(t)}(e,t)?[e]:Fr(Vr(e))},Wr=function(e){return Jn(e)&&"[object Arguments]"==Kn(e)};var Hr=Object.prototype,$r=Hr.hasOwnProperty,Gr=Hr.propertyIsEnumerable;const Yr=Wr(function(){return arguments}())?Wr:function(e){return Jn(e)&&$r.call(e,"callee")&&!Gr.call(e,"callee")};var qr=/^(?:0|[1-9]\d*)$/;const Qr=function(e,t){var n=typeof e;return!!(t=null==t?9007199254740991:t)&&("number"==n||"symbol"!=n&&qr.test(e))&&e>-1&&e%1==0&&e<t},Xr=function(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=9007199254740991},Kr=function(e){if("string"==typeof e||Zn(e))return e;var t=e+"";return"0"==t&&1/e==-1/0?"-0":t},Jr=function(e,t){return null!=e&&function(e,t,n){for(var r=-1,o=(t=Br(t,e)).length,a=!1;++r<o;){var i=Kr(t[r]);if(!(a=null!=e&&n(e,i)))break;e=e[i]}return a||++r!=o?a:!!(o=null==e?0:e.length)&&Xr(o)&&Qr(i,o)&&(Un(e)||Yr(e))}(e,t,zn)},Zr=function(e,t,n){var r=null==e?void 0:function(e,t){for(var n=0,r=(t=Br(t,e)).length;null!=e&&n<r;)e=e[Kr(t[n++])];return n&&n==r?e:void 0}(e,t);return void 0===r?n:r};var eo=function(){try{var e=new URLSearchParams(window.location.search);return e.has("post")?e.get("post"):Jr(SEOPRESS_DATA,"POST_ID")?Zr(SEOPRESS_DATA,"POST_ID"):null}catch(e){return null}};function to(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function no(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?to(Object(n),!0).forEach((function(t){ro(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):to(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function ro(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function oo(t,n){var r=(0,e.useRef)(),o=K(t,(function(){r.current=new AbortController;for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return oe.apply(void 0,t.concat([r.current.signal]))}),n);return no(no({},o),{},{abort:function(){var e;return null===(e=r.current)||void 0===e?void 0:e.abort()}})}var ao,io=(ao=function(e,t){return ao=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},ao(e,t)},function(e,t){function n(){this.constructor=e}ao(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}),so=function(){return so=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var o in t=arguments[n])Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o]);return e},so.apply(this,arguments)},lo={width:"100%",height:"10px",top:"0px",left:"0px",cursor:"row-resize"},uo={width:"10px",height:"100%",top:"0px",left:"0px",cursor:"col-resize"},co={width:"20px",height:"20px",position:"absolute"},fo={top:so(so({},lo),{top:"-5px"}),right:so(so({},uo),{left:void 0,right:"-5px"}),bottom:so(so({},lo),{top:void 0,bottom:"-5px"}),left:so(so({},uo),{left:"-5px"}),topRight:so(so({},co),{right:"-10px",top:"-10px",cursor:"ne-resize"}),bottomRight:so(so({},co),{right:"-10px",bottom:"-10px",cursor:"se-resize"}),bottomLeft:so(so({},co),{left:"-10px",bottom:"-10px",cursor:"sw-resize"}),topLeft:so(so({},co),{left:"-10px",top:"-10px",cursor:"nw-resize"})},po=function(t){function n(){var e=null!==t&&t.apply(this,arguments)||this;return e.onMouseDown=function(t){e.props.onResizeStart(t,e.props.direction)},e.onTouchStart=function(t){e.props.onResizeStart(t,e.props.direction)},e}return io(n,t),n.prototype.render=function(){return e.createElement("div",{className:this.props.className||"",style:so(so({position:"absolute",userSelect:"none"},fo[this.props.direction]),this.props.replaceStyles||{}),onMouseDown:this.onMouseDown,onTouchStart:this.onTouchStart},this.props.children)},n}(e.PureComponent),ho=function(){var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},e(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)}}(),mo=function(){return mo=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var o in t=arguments[n])Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o]);return e},mo.apply(this,arguments)},vo={width:"auto",height:"auto"},go=function(e,t,n){return Math.max(Math.min(e,n),t)},yo=function(e,t){return Math.round(e/t)*t},bo=function(e,t){return new RegExp(e,"i").test(t)},wo=function(e){return Boolean(e.touches&&e.touches.length)},xo=function(e,t,n){void 0===n&&(n=0);var r=t.reduce((function(n,r,o){return Math.abs(r-e)<Math.abs(t[n]-e)?o:n}),0),o=Math.abs(t[r]-e);return 0===n||o<n?t[r]:e},Eo=function(e){return"auto"===(e=e.toString())||e.endsWith("px")||e.endsWith("%")||e.endsWith("vh")||e.endsWith("vw")||e.endsWith("vmax")||e.endsWith("vmin")?e:e+"px"},So=function(e,t,n,r){if(e&&"string"==typeof e){if(e.endsWith("px"))return Number(e.replace("px",""));if(e.endsWith("%"))return t*(Number(e.replace("%",""))/100);if(e.endsWith("vw"))return n*(Number(e.replace("vw",""))/100);if(e.endsWith("vh"))return r*(Number(e.replace("vh",""))/100)}return e},ko=["as","style","className","grid","snap","bounds","boundsByDirection","size","defaultSize","minWidth","minHeight","maxWidth","maxHeight","lockAspectRatio","lockAspectRatioExtraWidth","lockAspectRatioExtraHeight","enable","handleStyles","handleClasses","handleWrapperStyle","handleWrapperClass","children","onResizeStart","onResize","onResizeStop","handleComponent","scale","resizeRatio","snapGap"],_o="__resizable_base__",Oo=function(t){function r(e){var n=t.call(this,e)||this;return n.ratio=1,n.resizable=null,n.parentLeft=0,n.parentTop=0,n.resizableLeft=0,n.resizableRight=0,n.resizableTop=0,n.resizableBottom=0,n.targetLeft=0,n.targetTop=0,n.appendBase=function(){if(!n.resizable||!n.window)return null;var e=n.parentNode;if(!e)return null;var t=n.window.document.createElement("div");return t.style.width="100%",t.style.height="100%",t.style.position="absolute",t.style.transform="scale(0, 0)",t.style.left="0",t.style.flex="0 0 100%",t.classList?t.classList.add(_o):t.className+=_o,e.appendChild(t),t},n.removeBase=function(e){var t=n.parentNode;t&&t.removeChild(e)},n.ref=function(e){e&&(n.resizable=e)},n.state={isResizing:!1,width:void 0===(n.propsSize&&n.propsSize.width)?"auto":n.propsSize&&n.propsSize.width,height:void 0===(n.propsSize&&n.propsSize.height)?"auto":n.propsSize&&n.propsSize.height,direction:"right",original:{x:0,y:0,width:0,height:0},backgroundStyle:{height:"100%",width:"100%",backgroundColor:"rgba(0,0,0,0)",cursor:"auto",opacity:0,position:"fixed",zIndex:9999,top:"0",left:"0",bottom:"0",right:"0"},flexBasis:void 0},n.onResizeStart=n.onResizeStart.bind(n),n.onMouseMove=n.onMouseMove.bind(n),n.onMouseUp=n.onMouseUp.bind(n),n}return ho(r,t),Object.defineProperty(r.prototype,"parentNode",{get:function(){return this.resizable?this.resizable.parentNode:null},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"window",{get:function(){return this.resizable&&this.resizable.ownerDocument?this.resizable.ownerDocument.defaultView:null},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"propsSize",{get:function(){return this.props.size||this.props.defaultSize||vo},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"size",{get:function(){var e=0,t=0;if(this.resizable&&this.window){var n=this.resizable.offsetWidth,r=this.resizable.offsetHeight,o=this.resizable.style.position;"relative"!==o&&(this.resizable.style.position="relative"),e="auto"!==this.resizable.style.width?this.resizable.offsetWidth:n,t="auto"!==this.resizable.style.height?this.resizable.offsetHeight:r,this.resizable.style.position=o}return{width:e,height:t}},enumerable:!1,configurable:!0}),Object.defineProperty(r.prototype,"sizeStyle",{get:function(){var e=this,t=this.props.size,n=function(t){if(void 0===e.state[t]||"auto"===e.state[t])return"auto";if(e.propsSize&&e.propsSize[t]&&e.propsSize[t].toString().endsWith("%")){if(e.state[t].toString().endsWith("%"))return e.state[t].toString();var n=e.getParentSize();return Number(e.state[t].toString().replace("px",""))/n[t]*100+"%"}return Eo(e.state[t])};return{width:t&&void 0!==t.width&&!this.state.isResizing?Eo(t.width):n("width"),height:t&&void 0!==t.height&&!this.state.isResizing?Eo(t.height):n("height")}},enumerable:!1,configurable:!0}),r.prototype.getParentSize=function(){if(!this.parentNode)return this.window?{width:this.window.innerWidth,height:this.window.innerHeight}:{width:0,height:0};var e=this.appendBase();if(!e)return{width:0,height:0};var t=!1,n=this.parentNode.style.flexWrap;"wrap"!==n&&(t=!0,this.parentNode.style.flexWrap="wrap"),e.style.position="relative",e.style.minWidth="100%",e.style.minHeight="100%";var r={width:e.offsetWidth,height:e.offsetHeight};return t&&(this.parentNode.style.flexWrap=n),this.removeBase(e),r},r.prototype.bindEvents=function(){this.window&&(this.window.addEventListener("mouseup",this.onMouseUp),this.window.addEventListener("mousemove",this.onMouseMove),this.window.addEventListener("mouseleave",this.onMouseUp),this.window.addEventListener("touchmove",this.onMouseMove,{capture:!0,passive:!1}),this.window.addEventListener("touchend",this.onMouseUp))},r.prototype.unbindEvents=function(){this.window&&(this.window.removeEventListener("mouseup",this.onMouseUp),this.window.removeEventListener("mousemove",this.onMouseMove),this.window.removeEventListener("mouseleave",this.onMouseUp),this.window.removeEventListener("touchmove",this.onMouseMove,!0),this.window.removeEventListener("touchend",this.onMouseUp))},r.prototype.componentDidMount=function(){if(this.resizable&&this.window){var e=this.window.getComputedStyle(this.resizable);this.setState({width:this.state.width||this.size.width,height:this.state.height||this.size.height,flexBasis:"auto"!==e.flexBasis?e.flexBasis:void 0})}},r.prototype.componentWillUnmount=function(){this.window&&this.unbindEvents()},r.prototype.createSizeForCssProperty=function(e,t){var n=this.propsSize&&this.propsSize[t];return"auto"!==this.state[t]||this.state.original[t]!==e||void 0!==n&&"auto"!==n?e:"auto"},r.prototype.calculateNewMaxFromBoundary=function(e,t){var n,r,o=this.props.boundsByDirection,a=this.state.direction,i=o&&bo("left",a),s=o&&bo("top",a);if("parent"===this.props.bounds){var l=this.parentNode;l&&(n=i?this.resizableRight-this.parentLeft:l.offsetWidth+(this.parentLeft-this.resizableLeft),r=s?this.resizableBottom-this.parentTop:l.offsetHeight+(this.parentTop-this.resizableTop))}else"window"===this.props.bounds?this.window&&(n=i?this.resizableRight:this.window.innerWidth-this.resizableLeft,r=s?this.resizableBottom:this.window.innerHeight-this.resizableTop):this.props.bounds&&(n=i?this.resizableRight-this.targetLeft:this.props.bounds.offsetWidth+(this.targetLeft-this.resizableLeft),r=s?this.resizableBottom-this.targetTop:this.props.bounds.offsetHeight+(this.targetTop-this.resizableTop));return n&&Number.isFinite(n)&&(e=e&&e<n?e:n),r&&Number.isFinite(r)&&(t=t&&t<r?t:r),{maxWidth:e,maxHeight:t}},r.prototype.calculateNewSizeFromDirection=function(e,t){var n=this.props.scale||1,r=this.props.resizeRatio||1,o=this.state,a=o.direction,i=o.original,s=this.props,l=s.lockAspectRatio,u=s.lockAspectRatioExtraHeight,c=s.lockAspectRatioExtraWidth,f=i.width,p=i.height,d=u||0,h=c||0;return bo("right",a)&&(f=i.width+(e-i.x)*r/n,l&&(p=(f-h)/this.ratio+d)),bo("left",a)&&(f=i.width-(e-i.x)*r/n,l&&(p=(f-h)/this.ratio+d)),bo("bottom",a)&&(p=i.height+(t-i.y)*r/n,l&&(f=(p-d)*this.ratio+h)),bo("top",a)&&(p=i.height-(t-i.y)*r/n,l&&(f=(p-d)*this.ratio+h)),{newWidth:f,newHeight:p}},r.prototype.calculateNewSizeFromAspectRatio=function(e,t,n,r){var o=this.props,a=o.lockAspectRatio,i=o.lockAspectRatioExtraHeight,s=o.lockAspectRatioExtraWidth,l=void 0===r.width?10:r.width,u=void 0===n.width||n.width<0?e:n.width,c=void 0===r.height?10:r.height,f=void 0===n.height||n.height<0?t:n.height,p=i||0,d=s||0;if(a){var h=(c-p)*this.ratio+d,m=(f-p)*this.ratio+d,v=(l-d)/this.ratio+p,g=(u-d)/this.ratio+p,y=Math.max(l,h),b=Math.min(u,m),w=Math.max(c,v),x=Math.min(f,g);e=go(e,y,b),t=go(t,w,x)}else e=go(e,l,u),t=go(t,c,f);return{newWidth:e,newHeight:t}},r.prototype.setBoundingClientRect=function(){if("parent"===this.props.bounds){var e=this.parentNode;if(e){var t=e.getBoundingClientRect();this.parentLeft=t.left,this.parentTop=t.top}}if(this.props.bounds&&"string"!=typeof this.props.bounds){var n=this.props.bounds.getBoundingClientRect();this.targetLeft=n.left,this.targetTop=n.top}if(this.resizable){var r=this.resizable.getBoundingClientRect(),o=r.left,a=r.top,i=r.right,s=r.bottom;this.resizableLeft=o,this.resizableRight=i,this.resizableTop=a,this.resizableBottom=s}},r.prototype.onResizeStart=function(e,t){if(this.resizable&&this.window){var n,r=0,o=0;if(e.nativeEvent&&function(e){return Boolean((e.clientX||0===e.clientX)&&(e.clientY||0===e.clientY))}(e.nativeEvent)?(r=e.nativeEvent.clientX,o=e.nativeEvent.clientY):e.nativeEvent&&wo(e.nativeEvent)&&(r=e.nativeEvent.touches[0].clientX,o=e.nativeEvent.touches[0].clientY),this.props.onResizeStart&&this.resizable&&!1===this.props.onResizeStart(e,t,this.resizable))return;this.props.size&&(void 0!==this.props.size.height&&this.props.size.height!==this.state.height&&this.setState({height:this.props.size.height}),void 0!==this.props.size.width&&this.props.size.width!==this.state.width&&this.setState({width:this.props.size.width})),this.ratio="number"==typeof this.props.lockAspectRatio?this.props.lockAspectRatio:this.size.width/this.size.height;var a=this.window.getComputedStyle(this.resizable);if("auto"!==a.flexBasis){var i=this.parentNode;if(i){var s=this.window.getComputedStyle(i).flexDirection;this.flexDir=s.startsWith("row")?"row":"column",n=a.flexBasis}}this.setBoundingClientRect(),this.bindEvents();var l={original:{x:r,y:o,width:this.size.width,height:this.size.height},isResizing:!0,backgroundStyle:mo(mo({},this.state.backgroundStyle),{cursor:this.window.getComputedStyle(e.target).cursor||"auto"}),direction:t,flexBasis:n};this.setState(l)}},r.prototype.onMouseMove=function(e){var t=this;if(this.state.isResizing&&this.resizable&&this.window){if(this.window.TouchEvent&&wo(e))try{e.preventDefault(),e.stopPropagation()}catch(e){}var r=this.props,o=r.maxWidth,a=r.maxHeight,i=r.minWidth,s=r.minHeight,l=wo(e)?e.touches[0].clientX:e.clientX,u=wo(e)?e.touches[0].clientY:e.clientY,c=this.state,f=c.direction,p=c.original,d=c.width,h=c.height,m=this.getParentSize(),v=function(e,t,n,r,o,a,i){return r=So(r,e.width,t,n),o=So(o,e.height,t,n),a=So(a,e.width,t,n),i=So(i,e.height,t,n),{maxWidth:void 0===r?void 0:Number(r),maxHeight:void 0===o?void 0:Number(o),minWidth:void 0===a?void 0:Number(a),minHeight:void 0===i?void 0:Number(i)}}(m,this.window.innerWidth,this.window.innerHeight,o,a,i,s);o=v.maxWidth,a=v.maxHeight,i=v.minWidth,s=v.minHeight;var g=this.calculateNewSizeFromDirection(l,u),y=g.newHeight,b=g.newWidth,w=this.calculateNewMaxFromBoundary(o,a);this.props.snap&&this.props.snap.x&&(b=xo(b,this.props.snap.x,this.props.snapGap)),this.props.snap&&this.props.snap.y&&(y=xo(y,this.props.snap.y,this.props.snapGap));var x=this.calculateNewSizeFromAspectRatio(b,y,{width:w.maxWidth,height:w.maxHeight},{width:i,height:s});if(b=x.newWidth,y=x.newHeight,this.props.grid){var E=yo(b,this.props.grid[0]),S=yo(y,this.props.grid[1]),k=this.props.snapGap||0;b=0===k||Math.abs(E-b)<=k?E:b,y=0===k||Math.abs(S-y)<=k?S:y}var _={width:b-p.width,height:y-p.height};d&&"string"==typeof d&&(d.endsWith("%")?b=b/m.width*100+"%":d.endsWith("vw")?b=b/this.window.innerWidth*100+"vw":d.endsWith("vh")&&(b=b/this.window.innerHeight*100+"vh")),h&&"string"==typeof h&&(h.endsWith("%")?y=y/m.height*100+"%":h.endsWith("vw")?y=y/this.window.innerWidth*100+"vw":h.endsWith("vh")&&(y=y/this.window.innerHeight*100+"vh"));var O={width:this.createSizeForCssProperty(b,"width"),height:this.createSizeForCssProperty(y,"height")};"row"===this.flexDir?O.flexBasis=O.width:"column"===this.flexDir&&(O.flexBasis=O.height),(0,n.flushSync)((function(){t.setState(O)})),this.props.onResize&&this.props.onResize(e,f,this.resizable,_)}},r.prototype.onMouseUp=function(e){var t=this.state,n=t.isResizing,r=t.direction,o=t.original;if(n&&this.resizable){var a={width:this.size.width-o.width,height:this.size.height-o.height};this.props.onResizeStop&&this.props.onResizeStop(e,r,this.resizable,a),this.props.size&&this.setState(this.props.size),this.unbindEvents(),this.setState({isResizing:!1,backgroundStyle:mo(mo({},this.state.backgroundStyle),{cursor:"auto"})})}},r.prototype.updateSize=function(e){this.setState({width:e.width,height:e.height})},r.prototype.renderResizer=function(){var t=this,n=this.props,r=n.enable,o=n.handleStyles,a=n.handleClasses,i=n.handleWrapperStyle,s=n.handleWrapperClass,l=n.handleComponent;if(!r)return null;var u=Object.keys(r).map((function(n){return!1!==r[n]?e.createElement(po,{key:n,direction:n,onResizeStart:t.onResizeStart,replaceStyles:o&&o[n],className:a&&a[n]},l&&l[n]?l[n]:null):null}));return e.createElement("div",{className:s,style:i},u)},r.prototype.render=function(){var t=this,n=Object.keys(this.props).reduce((function(e,n){return-1!==ko.indexOf(n)||(e[n]=t.props[n]),e}),{}),r=mo(mo(mo({position:"relative",userSelect:this.state.isResizing?"none":"auto"},this.props.style),this.sizeStyle),{maxWidth:this.props.maxWidth,maxHeight:this.props.maxHeight,minWidth:this.props.minWidth,minHeight:this.props.minHeight,boxSizing:"border-box",flexShrink:0});this.state.flexBasis&&(r.flexBasis=this.state.flexBasis);var o=this.props.as||"div";return e.createElement(o,mo({ref:this.ref,style:r,className:this.props.className},n),this.state.isResizing&&e.createElement("div",{style:this.state.backgroundStyle}),this.props.children,this.renderResizer())},r.defaultProps={as:"div",onResizeStart:function(){},onResize:function(){},onResizeStop:function(){},enable:{top:!0,right:!0,bottom:!0,left:!0,topRight:!0,bottomRight:!0,bottomLeft:!0,topLeft:!0},style:{},grid:[1,1],lockAspectRatio:!1,lockAspectRatioExtraWidth:0,lockAspectRatioExtraHeight:0,scale:1,resizeRatio:1,snapGap:0},r}(e.PureComponent);function Co(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}const Po=function(t){var n,r,o=t.children,a=(n=bn("seopress_height_module_metabox",400),r=2,function(e){if(Array.isArray(e))return e}(n)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,a=[],i=!0,s=!1;try{for(n=n.call(e);!(i=(r=n.next()).done)&&(a.push(r.value),!t||a.length!==t);i=!0);}catch(e){s=!0,o=e}finally{try{i||null==n.return||n.return()}finally{if(s)throw o}}return a}}(n,r)||function(e,t){if(e){if("string"==typeof e)return Co(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Co(e,t):void 0}}(n,r)||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.")}()),i=a[0],s=a[1];return e.createElement(Oo,{defaultSize:{width:"70%",height:i},onResizeStop:function(e,t,n,r){s(i+r.height)},enable:{top:!0},handleClasses:{top:"resizable"},style:{position:"fixed"},className:"sp-seo-metabox"},o)};var jo=Dt.button.withConfig({componentId:"sc-14aqw4v-0"})(["&&&&{display:inline-flex;text-decoration:none;font-size:13px;margin:0;border:0;cursor:pointer;-webkit-appearance:none;background:none;background-color:none;:not(:hover):not(:active):not(.has-background):not(:focus){background:none;background-color:none;box-shadow:none;}transition:box-shadow 0.1s linear;height:36px;align-items:center;padding:6px 12px;border-radius:2px;vertical-align:middle;box-shadow:inset 0 0 0 1px var(--primaryColor);outline:1px solid transparent;white-space:nowrap;color:var(--primaryColor);background:transparent;font-weight:inherit;text-transform:inherit;"," ","}&&&&:focus{border:2px solid var(--colorDark);}&&&& svg *{","}"],(function(e){return e.blue&&"\n background-color: var(--primaryColor);\n color: #fff;\n text-decoration: none;\n :not(:hover):not(:active):not(.has-background):not(:focus) {\n background-color: var(--primaryColor);\n color: #fff;\n text-decoration: none;\n "}),(function(e){return e.secondary&&"\n color: var(--primaryColor);\n border: 1px solid var(--primaryColor);\n background: var(--primaryColorHover);\n text-decoration: none;\n box-shadow: none;\n :not(:hover):not(:active):not(.has-background):not(:focus) {\n color: var(--primaryColor);\n border: 1px solid var(--primaryColor);\n text-decoration: none;\n box-shadow: none;\n }\n "}),(function(e){return e.secondary&&"\n fill: var(--primaryColor);\n "}));const Ao=e.memo(jo),Io=Dt.div.withConfig({componentId:"sc-113evl7-0"})(["&&&{border-bottom:1px solid var(--borderColorLight);padding:6px 15px;margin:0;display:flex;align-items:center;z-index:30;background:#fff;position:relative;}"]),To=Dt.h1.withConfig({componentId:"sc-z87h2w-0"})(["&&&{font-size:16px;margin:0;}"]);var Ro=["children"];const No=function(t){var n=t.children,r=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,Ro);return e.createElement(To,r,n)};var Mo=wp.i18n.__;const Fo=function(){var t=(0,e.useContext)(hn),n=(t.values,t.actions);return e.createElement(Io,null,e.createElement(No,{style:{flex:1}},Mo("SEO","wp-seopress")),e.createElement(Ao,{style:{color:"var(--colorDark)"},onClick:function(){return n.setOpenBar(!1)}},e.createElement("svg",{width:"24",height:"24",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",role:"img","aria-hidden":"true",focusable:"false"},e.createElement("path",{d:"M12 13.06l3.712 3.713 1.061-1.06L13.061 12l3.712-3.712-1.06-1.06L12 10.938 8.288 7.227l-1.061 1.06L10.939 12l-3.712 3.712 1.06 1.061L12 13.061z"}))))};var Lo=o(9590),Do=o.n(Lo),zo=function(e){return function(e){return!!e&&"object"==typeof e}(e)&&!function(e){var t=Object.prototype.toString.call(e);return"[object RegExp]"===t||"[object Date]"===t||function(e){return e.$$typeof===Uo}(e)}(e)},Uo="function"==typeof Symbol&&Symbol.for?Symbol.for("react.element"):60103;function Vo(e,t){return!1!==t.clone&&t.isMergeableObject(e)?Wo((n=e,Array.isArray(n)?[]:{}),e,t):e;var n}function Bo(e,t,n){return e.concat(t).map((function(e){return Vo(e,n)}))}function Wo(e,t,n){(n=n||{}).arrayMerge=n.arrayMerge||Bo,n.isMergeableObject=n.isMergeableObject||zo;var r=Array.isArray(t);return r===Array.isArray(e)?r?n.arrayMerge(e,t,n):function(e,t,n){var r={};return n.isMergeableObject(e)&&Object.keys(e).forEach((function(t){r[t]=Vo(e[t],n)})),Object.keys(t).forEach((function(o){n.isMergeableObject(t[o])&&e[o]?r[o]=Wo(e[o],t[o],n):r[o]=Vo(t[o],n)})),r}(e,t,n):Vo(t,n)}Wo.all=function(e,t){if(!Array.isArray(e))throw new Error("first argument should be an array");return e.reduce((function(e,n){return Wo(e,n,t)}),{})};const Ho=Wo,$o=function(e,t){return function(n){return e(t(n))}},Go=$o(Object.getPrototypeOf,Object);var Yo=Function.prototype,qo=Object.prototype,Qo=Yo.toString,Xo=qo.hasOwnProperty,Ko=Qo.call(Object);const Jo=function(e){if(!Jn(e)||"[object Object]"!=Kn(e))return!1;var t=Go(e);if(null===t)return!0;var n=Xo.call(t,"constructor")&&t.constructor;return"function"==typeof n&&n instanceof n&&Qo.call(n)==Ko};function Zo(e){var t=this.__data__=new Or(e);this.size=t.size}Zo.prototype.clear=function(){this.__data__=new Or,this.size=0},Zo.prototype.delete=function(e){var t=this.__data__,n=t.delete(e);return this.size=t.size,n},Zo.prototype.get=function(e){return this.__data__.get(e)},Zo.prototype.has=function(e){return this.__data__.has(e)},Zo.prototype.set=function(e,t){var n=this.__data__;if(n instanceof Or){var r=n.__data__;if(!Cr||r.length<199)return r.push([e,t]),this.size=++n.size,this;n=this.__data__=new Ar(r)}return n.set(e,t),this.size=n.size,this};const ea=Zo,ta=function(){try{var e=vr(Object,"defineProperty");return e({},"",{}),e}catch(e){}}(),na=function(e,t,n){"__proto__"==t&&ta?ta(e,t,{configurable:!0,enumerable:!0,value:n,writable:!0}):e[t]=n};var ra=Object.prototype.hasOwnProperty;const oa=function(e,t,n){var r=e[t];ra.call(e,t)&&Er(r,n)&&(void 0!==n||t in e)||na(e,t,n)},aa=function(e,t,n,r){var o=!n;n||(n={});for(var a=-1,i=t.length;++a<i;){var s=t[a],l=r?r(n[s],e[s],s,n,e):void 0;void 0===l&&(l=e[s]),o?na(n,s,l):oa(n,s,l)}return n};var ia="object"==typeof exports&&exports&&!exports.nodeType&&exports,sa=ia&&"object"==typeof module&&module&&!module.nodeType&&module,la=sa&&sa.exports===ia?Wn.Buffer:void 0;const ua=(la?la.isBuffer:void 0)||function(){return!1};var ca={};ca["[object Float32Array]"]=ca["[object Float64Array]"]=ca["[object Int8Array]"]=ca["[object Int16Array]"]=ca["[object Int32Array]"]=ca["[object Uint8Array]"]=ca["[object Uint8ClampedArray]"]=ca["[object Uint16Array]"]=ca["[object Uint32Array]"]=!0,ca["[object Arguments]"]=ca["[object Array]"]=ca["[object ArrayBuffer]"]=ca["[object Boolean]"]=ca["[object DataView]"]=ca["[object Date]"]=ca["[object Error]"]=ca["[object Function]"]=ca["[object Map]"]=ca["[object Number]"]=ca["[object Object]"]=ca["[object RegExp]"]=ca["[object Set]"]=ca["[object String]"]=ca["[object WeakMap]"]=!1;const fa=function(e){return function(t){return e(t)}};var pa="object"==typeof exports&&exports&&!exports.nodeType&&exports,da=pa&&"object"==typeof module&&module&&!module.nodeType&&module,ha=da&&da.exports===pa&&Vn.process;const ma=function(){try{return da&&da.require&&da.require("util").types||ha&&ha.binding&&ha.binding("util")}catch(e){}}();var va=ma&&ma.isTypedArray;const ga=va?fa(va):function(e){return Jn(e)&&Xr(e.length)&&!!ca[Kn(e)]};var ya=Object.prototype.hasOwnProperty;const ba=function(e,t){var n=Un(e),r=!n&&Yr(e),o=!n&&!r&&ua(e),a=!n&&!r&&!o&&ga(e),i=n||r||o||a,s=i?function(e,t){for(var n=-1,r=Array(e);++n<e;)r[n]=t(n);return r}(e.length,String):[],l=s.length;for(var u in e)!t&&!ya.call(e,u)||i&&("length"==u||o&&("offset"==u||"parent"==u)||a&&("buffer"==u||"byteLength"==u||"byteOffset"==u)||Qr(u,l))||s.push(u);return s};var wa=Object.prototype;const xa=function(e){var t=e&&e.constructor;return e===("function"==typeof t&&t.prototype||wa)},Ea=$o(Object.keys,Object);var Sa=Object.prototype.hasOwnProperty;const ka=function(e){if(!xa(e))return Ea(e);var t=[];for(var n in Object(e))Sa.call(e,n)&&"constructor"!=n&&t.push(n);return t},_a=function(e){return null!=e&&Xr(e.length)&&!rr(e)},Oa=function(e){return _a(e)?ba(e):ka(e)};var Ca=Object.prototype.hasOwnProperty;const Pa=function(e){if(!nr(e))return function(e){var t=[];if(null!=e)for(var n in Object(e))t.push(n);return t}(e);var t=xa(e),n=[];for(var r in e)("constructor"!=r||!t&&Ca.call(e,r))&&n.push(r);return n},ja=function(e){return _a(e)?ba(e,!0):Pa(e)};var Aa="object"==typeof exports&&exports&&!exports.nodeType&&exports,Ia=Aa&&"object"==typeof module&&module&&!module.nodeType&&module,Ta=Ia&&Ia.exports===Aa?Wn.Buffer:void 0,Ra=Ta?Ta.allocUnsafe:void 0;const Na=function(e,t){var n=-1,r=e.length;for(t||(t=Array(r));++n<r;)t[n]=e[n];return t},Ma=function(){return[]};var Fa=Object.prototype.propertyIsEnumerable,La=Object.getOwnPropertySymbols;const Da=La?function(e){return null==e?[]:(e=Object(e),function(e,t){for(var n=-1,r=null==e?0:e.length,o=0,a=[];++n<r;){var i=e[n];t(i,n,e)&&(a[o++]=i)}return a}(La(e),(function(t){return Fa.call(e,t)})))}:Ma,za=function(e,t){for(var n=-1,r=t.length,o=e.length;++n<r;)e[o+n]=t[n];return e},Ua=Object.getOwnPropertySymbols?function(e){for(var t=[];e;)za(t,Da(e)),e=Go(e);return t}:Ma,Va=function(e,t,n){var r=t(e);return Un(e)?r:za(r,n(e))},Ba=function(e){return Va(e,Oa,Da)},Wa=function(e){return Va(e,ja,Ua)},Ha=vr(Wn,"DataView"),$a=vr(Wn,"Promise"),Ga=vr(Wn,"Set"),Ya=vr(Wn,"WeakMap");var qa="[object Map]",Qa="[object Promise]",Xa="[object Set]",Ka="[object WeakMap]",Ja="[object DataView]",Za=lr(Ha),ei=lr(Cr),ti=lr($a),ni=lr(Ga),ri=lr(Ya),oi=Kn;(Ha&&oi(new Ha(new ArrayBuffer(1)))!=Ja||Cr&&oi(new Cr)!=qa||$a&&oi($a.resolve())!=Qa||Ga&&oi(new Ga)!=Xa||Ya&&oi(new Ya)!=Ka)&&(oi=function(e){var t=Kn(e),n="[object Object]"==t?e.constructor:void 0,r=n?lr(n):"";if(r)switch(r){case Za:return Ja;case ei:return qa;case ti:return Qa;case ni:return Xa;case ri:return Ka}return t});const ai=oi;var ii=Object.prototype.hasOwnProperty;const si=Wn.Uint8Array,li=function(e){var t=new e.constructor(e.byteLength);return new si(t).set(new si(e)),t};var ui=/\w*$/;var ci=Hn?Hn.prototype:void 0,fi=ci?ci.valueOf:void 0;const pi=function(e,t,n){var r,o,a,i=e.constructor;switch(t){case"[object ArrayBuffer]":return li(e);case"[object Boolean]":case"[object Date]":return new i(+e);case"[object DataView]":return function(e,t){var n=t?li(e.buffer):e.buffer;return new e.constructor(n,e.byteOffset,e.byteLength)}(e,n);case"[object Float32Array]":case"[object Float64Array]":case"[object Int8Array]":case"[object Int16Array]":case"[object Int32Array]":case"[object Uint8Array]":case"[object Uint8ClampedArray]":case"[object Uint16Array]":case"[object Uint32Array]":return function(e,t){var n=t?li(e.buffer):e.buffer;return new e.constructor(n,e.byteOffset,e.length)}(e,n);case"[object Map]":case"[object Set]":return new i;case"[object Number]":case"[object String]":return new i(e);case"[object RegExp]":return(a=new(o=e).constructor(o.source,ui.exec(o))).lastIndex=o.lastIndex,a;case"[object Symbol]":return r=e,fi?Object(fi.call(r)):{}}};var di=Object.create;const hi=function(){function e(){}return function(t){if(!nr(t))return{};if(di)return di(t);e.prototype=t;var n=new e;return e.prototype=void 0,n}}();var mi=ma&&ma.isMap;const vi=mi?fa(mi):function(e){return Jn(e)&&"[object Map]"==ai(e)};var gi=ma&&ma.isSet;const yi=gi?fa(gi):function(e){return Jn(e)&&"[object Set]"==ai(e)};var bi="[object Arguments]",wi="[object Function]",xi={};xi[bi]=xi["[object Array]"]=xi["[object ArrayBuffer]"]=xi["[object DataView]"]=xi["[object Boolean]"]=xi["[object Date]"]=xi["[object Float32Array]"]=xi["[object Float64Array]"]=xi["[object Int8Array]"]=xi["[object Int16Array]"]=xi["[object Int32Array]"]=xi["[object Map]"]=xi["[object Number]"]=xi["[object Object]"]=xi["[object RegExp]"]=xi["[object Set]"]=xi["[object String]"]=xi["[object Symbol]"]=xi["[object Uint8Array]"]=xi["[object Uint8ClampedArray]"]=xi["[object Uint16Array]"]=xi["[object Uint32Array]"]=!0,xi["[object Error]"]=xi[wi]=xi["[object WeakMap]"]=!1;const Ei=function e(t,n,r,o,a,i){var s,l=1&n,u=2&n,c=4&n;if(r&&(s=a?r(t,o,a,i):r(t)),void 0!==s)return s;if(!nr(t))return t;var f=Un(t);if(f){if(s=function(e){var t=e.length,n=new e.constructor(t);return t&&"string"==typeof e[0]&&ii.call(e,"index")&&(n.index=e.index,n.input=e.input),n}(t),!l)return Na(t,s)}else{var p=ai(t),d=p==wi||"[object GeneratorFunction]"==p;if(ua(t))return function(e,t){if(t)return e.slice();var n=e.length,r=Ra?Ra(n):new e.constructor(n);return e.copy(r),r}(t,l);if("[object Object]"==p||p==bi||d&&!a){if(s=u||d?{}:function(e){return"function"!=typeof e.constructor||xa(e)?{}:hi(Go(e))}(t),!l)return u?function(e,t){return aa(e,Ua(e),t)}(t,function(e,t){return e&&aa(t,ja(t),e)}(s,t)):function(e,t){return aa(e,Da(e),t)}(t,function(e,t){return e&&aa(t,Oa(t),e)}(s,t))}else{if(!xi[p])return a?t:{};s=pi(t,p,l)}}i||(i=new ea);var h=i.get(t);if(h)return h;i.set(t,s),yi(t)?t.forEach((function(o){s.add(e(o,n,r,o,t,i))})):vi(t)&&t.forEach((function(o,a){s.set(a,e(o,n,r,a,t,i))}));var m=f?void 0:(c?u?Wa:Ba:u?ja:Oa)(t);return function(e,t){for(var n=-1,r=null==e?0:e.length;++n<r&&!1!==t(e[n],n,e););}(m||t,(function(o,a){m&&(o=t[a=o]),oa(s,a,e(o,n,r,a,t,i))})),s},Si=function(e){return Ei(e,4)},ki=function(e){return Un(e)?Lr(e,Kr):Zn(e)?[e]:Na(Fr(Vr(e)))},_i=function(e){return Ei(e,5)};function Oi(){return Oi=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Oi.apply(this,arguments)}function Ci(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}function Pi(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}var ji=function(e){return Array.isArray(e)&&0===e.length},Ai=function(e){return"function"==typeof e},Ii=function(e){return null!==e&&"object"==typeof e},Ti=function(e){return String(Math.floor(Number(e)))===e},Ri=function(e){return"[object String]"===Object.prototype.toString.call(e)},Ni=function(t){return 0===e.Children.count(t)},Mi=function(e){return Ii(e)&&Ai(e.then)};function Fi(e,t,n,r){void 0===r&&(r=0);for(var o=ki(t);e&&r<o.length;)e=e[o[r++]];return void 0===e?n:e}function Li(e,t,n){for(var r=Si(e),o=r,a=0,i=ki(t);a<i.length-1;a++){var s=i[a],l=Fi(e,i.slice(0,a+1));if(l&&(Ii(l)||Array.isArray(l)))o=o[s]=Si(l);else{var u=i[a+1];o=o[s]=Ti(u)&&Number(u)>=0?[]:{}}}return(0===a?e:o)[i[a]]===n?e:(void 0===n?delete o[i[a]]:o[i[a]]=n,0===a&&void 0===n&&delete r[i[a]],r)}function Di(e,t,n,r){void 0===n&&(n=new WeakMap),void 0===r&&(r={});for(var o=0,a=Object.keys(e);o<a.length;o++){var i=a[o],s=e[i];Ii(s)?n.get(s)||(n.set(s,!0),r[i]=Array.isArray(s)?[]:{},Di(s,t,n,r[i])):r[i]=t}return r}var zi=(0,e.createContext)(void 0);zi.displayName="FormikContext";var Ui=zi.Provider,Vi=zi.Consumer;function Bi(){var t=(0,e.useContext)(zi);return t}function Wi(e,t){switch(t.type){case"SET_VALUES":return Oi({},e,{values:t.payload});case"SET_TOUCHED":return Oi({},e,{touched:t.payload});case"SET_ERRORS":return Do()(e.errors,t.payload)?e:Oi({},e,{errors:t.payload});case"SET_STATUS":return Oi({},e,{status:t.payload});case"SET_ISSUBMITTING":return Oi({},e,{isSubmitting:t.payload});case"SET_ISVALIDATING":return Oi({},e,{isValidating:t.payload});case"SET_FIELD_VALUE":return Oi({},e,{values:Li(e.values,t.payload.field,t.payload.value)});case"SET_FIELD_TOUCHED":return Oi({},e,{touched:Li(e.touched,t.payload.field,t.payload.value)});case"SET_FIELD_ERROR":return Oi({},e,{errors:Li(e.errors,t.payload.field,t.payload.value)});case"RESET_FORM":return Oi({},e,t.payload);case"SET_FORMIK_STATE":return t.payload(e);case"SUBMIT_ATTEMPT":return Oi({},e,{touched:Di(e.values,!0),isSubmitting:!0,submitCount:e.submitCount+1});case"SUBMIT_FAILURE":case"SUBMIT_SUCCESS":return Oi({},e,{isSubmitting:!1});default:return e}}var Hi={},$i={};function Gi(t){var n=t.validateOnChange,r=void 0===n||n,o=t.validateOnBlur,a=void 0===o||o,i=t.validateOnMount,s=void 0!==i&&i,l=t.isInitialValid,u=t.enableReinitialize,c=void 0!==u&&u,f=t.onSubmit,p=Ci(t,["validateOnChange","validateOnBlur","validateOnMount","isInitialValid","enableReinitialize","onSubmit"]),d=Oi({validateOnChange:r,validateOnBlur:a,validateOnMount:s,onSubmit:f},p),h=(0,e.useRef)(d.initialValues),m=(0,e.useRef)(d.initialErrors||Hi),v=(0,e.useRef)(d.initialTouched||$i),g=(0,e.useRef)(d.initialStatus),y=(0,e.useRef)(!1),b=(0,e.useRef)({});(0,e.useEffect)((function(){return y.current=!0,function(){y.current=!1}}),[]);var w=(0,e.useReducer)(Wi,{values:d.initialValues,errors:d.initialErrors||Hi,touched:d.initialTouched||$i,status:d.initialStatus,isSubmitting:!1,isValidating:!1,submitCount:0}),x=w[0],E=w[1],S=(0,e.useCallback)((function(e,t){return new Promise((function(n,r){var o=d.validate(e,t);null==o?n(Hi):Mi(o)?o.then((function(e){n(e||Hi)}),(function(e){r(e)})):n(o)}))}),[d.validate]),k=(0,e.useCallback)((function(e,t){var n=d.validationSchema,r=Ai(n)?n(t):n,o=t&&r.validateAt?r.validateAt(t,e):function(e,t,n,r){void 0===n&&(n=!1),void 0===r&&(r={});var o=qi(e);return t[n?"validateSync":"validate"](o,{abortEarly:!1,context:r})}(e,r);return new Promise((function(e,t){o.then((function(){e(Hi)}),(function(n){"ValidationError"===n.name?e(function(e){var t={};if(e.inner){if(0===e.inner.length)return Li(t,e.path,e.message);var n=e.inner,r=Array.isArray(n),o=0;for(n=r?n:n[Symbol.iterator]();;){var a;if(r){if(o>=n.length)break;a=n[o++]}else{if((o=n.next()).done)break;a=o.value}var i=a;Fi(t,i.path)||(t=Li(t,i.path,i.message))}}return t}(n)):t(n)}))}))}),[d.validationSchema]),_=(0,e.useCallback)((function(e,t){return new Promise((function(n){return n(b.current[e].validate(t))}))}),[]),O=(0,e.useCallback)((function(e){var t=Object.keys(b.current).filter((function(e){return Ai(b.current[e].validate)})),n=t.length>0?t.map((function(t){return _(t,Fi(e,t))})):[Promise.resolve("DO_NOT_DELETE_YOU_WILL_BE_FIRED")];return Promise.all(n).then((function(e){return e.reduce((function(e,n,r){return"DO_NOT_DELETE_YOU_WILL_BE_FIRED"===n||n&&(e=Li(e,t[r],n)),e}),{})}))}),[_]),C=(0,e.useCallback)((function(e){return Promise.all([O(e),d.validationSchema?k(e):{},d.validate?S(e):{}]).then((function(e){var t=e[0],n=e[1],r=e[2];return Ho.all([t,n,r],{arrayMerge:Qi})}))}),[d.validate,d.validationSchema,O,S,k]),P=Ki((function(e){return void 0===e&&(e=x.values),E({type:"SET_ISVALIDATING",payload:!0}),C(e).then((function(e){return y.current&&(E({type:"SET_ISVALIDATING",payload:!1}),E({type:"SET_ERRORS",payload:e})),e}))}));(0,e.useEffect)((function(){s&&!0===y.current&&Do()(h.current,d.initialValues)&&P(h.current)}),[s,P]);var j=(0,e.useCallback)((function(e){var t=e&&e.values?e.values:h.current,n=e&&e.errors?e.errors:m.current?m.current:d.initialErrors||{},r=e&&e.touched?e.touched:v.current?v.current:d.initialTouched||{},o=e&&e.status?e.status:g.current?g.current:d.initialStatus;h.current=t,m.current=n,v.current=r,g.current=o;var a=function(){E({type:"RESET_FORM",payload:{isSubmitting:!!e&&!!e.isSubmitting,errors:n,touched:r,status:o,values:t,isValidating:!!e&&!!e.isValidating,submitCount:e&&e.submitCount&&"number"==typeof e.submitCount?e.submitCount:0}})};if(d.onReset){var i=d.onReset(x.values,q);Mi(i)?i.then(a):a()}else a()}),[d.initialErrors,d.initialStatus,d.initialTouched]);(0,e.useEffect)((function(){!0!==y.current||Do()(h.current,d.initialValues)||(c&&(h.current=d.initialValues,j()),s&&P(h.current))}),[c,d.initialValues,j,s,P]),(0,e.useEffect)((function(){c&&!0===y.current&&!Do()(m.current,d.initialErrors)&&(m.current=d.initialErrors||Hi,E({type:"SET_ERRORS",payload:d.initialErrors||Hi}))}),[c,d.initialErrors]),(0,e.useEffect)((function(){c&&!0===y.current&&!Do()(v.current,d.initialTouched)&&(v.current=d.initialTouched||$i,E({type:"SET_TOUCHED",payload:d.initialTouched||$i}))}),[c,d.initialTouched]),(0,e.useEffect)((function(){c&&!0===y.current&&!Do()(g.current,d.initialStatus)&&(g.current=d.initialStatus,E({type:"SET_STATUS",payload:d.initialStatus}))}),[c,d.initialStatus,d.initialTouched]);var A=Ki((function(e){if(b.current[e]&&Ai(b.current[e].validate)){var t=Fi(x.values,e),n=b.current[e].validate(t);return Mi(n)?(E({type:"SET_ISVALIDATING",payload:!0}),n.then((function(e){return e})).then((function(t){E({type:"SET_FIELD_ERROR",payload:{field:e,value:t}}),E({type:"SET_ISVALIDATING",payload:!1})}))):(E({type:"SET_FIELD_ERROR",payload:{field:e,value:n}}),Promise.resolve(n))}return d.validationSchema?(E({type:"SET_ISVALIDATING",payload:!0}),k(x.values,e).then((function(e){return e})).then((function(t){E({type:"SET_FIELD_ERROR",payload:{field:e,value:t[e]}}),E({type:"SET_ISVALIDATING",payload:!1})}))):Promise.resolve()})),I=(0,e.useCallback)((function(e,t){var n=t.validate;b.current[e]={validate:n}}),[]),T=(0,e.useCallback)((function(e){delete b.current[e]}),[]),R=Ki((function(e,t){return E({type:"SET_TOUCHED",payload:e}),(void 0===t?a:t)?P(x.values):Promise.resolve()})),N=(0,e.useCallback)((function(e){E({type:"SET_ERRORS",payload:e})}),[]),M=Ki((function(e,t){var n=Ai(e)?e(x.values):e;return E({type:"SET_VALUES",payload:n}),(void 0===t?r:t)?P(n):Promise.resolve()})),F=(0,e.useCallback)((function(e,t){E({type:"SET_FIELD_ERROR",payload:{field:e,value:t}})}),[]),L=Ki((function(e,t,n){return E({type:"SET_FIELD_VALUE",payload:{field:e,value:t}}),(void 0===n?r:n)?P(Li(x.values,e,t)):Promise.resolve()})),D=(0,e.useCallback)((function(e,t){var n,r=t,o=e;if(!Ri(e)){e.persist&&e.persist();var a=e.target?e.target:e.currentTarget,i=a.type,s=a.name,l=a.id,u=a.value,c=a.checked,f=(a.outerHTML,a.options),p=a.multiple;r=t||s||l,o=/number|range/.test(i)?(n=parseFloat(u),isNaN(n)?"":n):/checkbox/.test(i)?function(e,t,n){if("boolean"==typeof e)return Boolean(t);var r=[],o=!1,a=-1;if(Array.isArray(e))r=e,o=(a=e.indexOf(n))>=0;else if(!n||"true"==n||"false"==n)return Boolean(t);return t&&n&&!o?r.concat(n):o?r.slice(0,a).concat(r.slice(a+1)):r}(Fi(x.values,r),c,u):f&&p?function(e){return Array.from(e).filter((function(e){return e.selected})).map((function(e){return e.value}))}(f):u}r&&L(r,o)}),[L,x.values]),z=Ki((function(e){if(Ri(e))return function(t){return D(t,e)};D(e)})),U=Ki((function(e,t,n){return void 0===t&&(t=!0),E({type:"SET_FIELD_TOUCHED",payload:{field:e,value:t}}),(void 0===n?a:n)?P(x.values):Promise.resolve()})),V=(0,e.useCallback)((function(e,t){e.persist&&e.persist();var n=e.target,r=n.name,o=n.id,a=(n.outerHTML,t||r||o);U(a,!0)}),[U]),B=Ki((function(e){if(Ri(e))return function(t){return V(t,e)};V(e)})),W=(0,e.useCallback)((function(e){Ai(e)?E({type:"SET_FORMIK_STATE",payload:e}):E({type:"SET_FORMIK_STATE",payload:function(){return e}})}),[]),H=(0,e.useCallback)((function(e){E({type:"SET_STATUS",payload:e})}),[]),$=(0,e.useCallback)((function(e){E({type:"SET_ISSUBMITTING",payload:e})}),[]),G=Ki((function(){return E({type:"SUBMIT_ATTEMPT"}),P().then((function(e){var t=e instanceof Error;if(!t&&0===Object.keys(e).length){var n;try{if(void 0===(n=Q()))return}catch(e){throw e}return Promise.resolve(n).then((function(e){return y.current&&E({type:"SUBMIT_SUCCESS"}),e})).catch((function(e){if(y.current)throw E({type:"SUBMIT_FAILURE"}),e}))}if(y.current&&(E({type:"SUBMIT_FAILURE"}),t))throw e}))})),Y=Ki((function(e){e&&e.preventDefault&&Ai(e.preventDefault)&&e.preventDefault(),e&&e.stopPropagation&&Ai(e.stopPropagation)&&e.stopPropagation(),G().catch((function(e){console.warn("Warning: An unhandled error was caught from submitForm()",e)}))})),q={resetForm:j,validateForm:P,validateField:A,setErrors:N,setFieldError:F,setFieldTouched:U,setFieldValue:L,setStatus:H,setSubmitting:$,setTouched:R,setValues:M,setFormikState:W,submitForm:G},Q=Ki((function(){return f(x.values,q)})),X=Ki((function(e){e&&e.preventDefault&&Ai(e.preventDefault)&&e.preventDefault(),e&&e.stopPropagation&&Ai(e.stopPropagation)&&e.stopPropagation(),j()})),K=(0,e.useCallback)((function(e){return{value:Fi(x.values,e),error:Fi(x.errors,e),touched:!!Fi(x.touched,e),initialValue:Fi(h.current,e),initialTouched:!!Fi(v.current,e),initialError:Fi(m.current,e)}}),[x.errors,x.touched,x.values]),J=(0,e.useCallback)((function(e){return{setValue:function(t,n){return L(e,t,n)},setTouched:function(t,n){return U(e,t,n)},setError:function(t){return F(e,t)}}}),[L,U,F]),Z=(0,e.useCallback)((function(e){var t=Ii(e),n=t?e.name:e,r=Fi(x.values,n),o={name:n,value:r,onChange:z,onBlur:B};if(t){var a=e.type,i=e.value,s=e.as,l=e.multiple;"checkbox"===a?void 0===i?o.checked=!!r:(o.checked=!(!Array.isArray(r)||!~r.indexOf(i)),o.value=i):"radio"===a?(o.checked=r===i,o.value=i):"select"===s&&l&&(o.value=o.value||[],o.multiple=!0)}return o}),[B,z,x.values]),ee=(0,e.useMemo)((function(){return!Do()(h.current,x.values)}),[h.current,x.values]),te=(0,e.useMemo)((function(){return void 0!==l?ee?x.errors&&0===Object.keys(x.errors).length:!1!==l&&Ai(l)?l(d):l:x.errors&&0===Object.keys(x.errors).length}),[l,ee,x.errors,d]);return Oi({},x,{initialValues:h.current,initialErrors:m.current,initialTouched:v.current,initialStatus:g.current,handleBlur:B,handleChange:z,handleReset:X,handleSubmit:Y,resetForm:j,setErrors:N,setFormikState:W,setFieldTouched:U,setFieldValue:L,setFieldError:F,setStatus:H,setSubmitting:$,setTouched:R,setValues:M,submitForm:G,validateForm:P,validateField:A,isValid:te,dirty:ee,unregisterField:T,registerField:I,getFieldProps:Z,getFieldMeta:K,getFieldHelpers:J,validateOnBlur:a,validateOnChange:r,validateOnMount:s})}function Yi(t){var n=Gi(t),r=t.component,o=t.children,a=t.render,i=t.innerRef;return(0,e.useImperativeHandle)(i,(function(){return n})),(0,e.createElement)(Ui,{value:n},r?(0,e.createElement)(r,n):a?a(n):o?Ai(o)?o(n):Ni(o)?null:e.Children.only(o):null)}function qi(e){var t=Array.isArray(e)?[]:{};for(var n in e)if(Object.prototype.hasOwnProperty.call(e,n)){var r=String(n);!0===Array.isArray(e[r])?t[r]=e[r].map((function(e){return!0===Array.isArray(e)||Jo(e)?qi(e):""!==e?e:void 0})):Jo(e[r])?t[r]=qi(e[r]):t[r]=""!==e[r]?e[r]:void 0}return t}function Qi(e,t,n){var r=e.slice();return t.forEach((function(t,o){if(void 0===r[o]){var a=!1!==n.clone&&n.isMergeableObject(t);r[o]=a?Ho(Array.isArray(t)?[]:{},t,n):t}else n.isMergeableObject(t)?r[o]=Ho(e[o],t,n):-1===e.indexOf(t)&&r.push(t)})),r}var Xi="undefined"!=typeof window&&void 0!==window.document&&void 0!==window.document.createElement?e.useLayoutEffect:e.useEffect;function Ki(t){var n=(0,e.useRef)(t);return Xi((function(){n.current=t})),(0,e.useCallback)((function(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];return n.current.apply(void 0,t)}),[])}function Ji(t){var n=t.validate,r=t.name,o=t.render,a=t.children,i=t.as,s=t.component,l=Ci(t,["validate","name","render","children","as","component"]),u=Ci(Bi(),["validate","validationSchema"]),c=u.registerField,f=u.unregisterField;(0,e.useEffect)((function(){return c(r,{validate:n}),function(){f(r)}}),[c,f,r,n]);var p=u.getFieldProps(Oi({name:r},l)),d=u.getFieldMeta(r),h={field:p,form:u};if(o)return o(Oi({},h,{meta:d}));if(Ai(a))return a(Oi({},h,{meta:d}));if(s){if("string"==typeof s){var m=l.innerRef,v=Ci(l,["innerRef"]);return(0,e.createElement)(s,Oi({ref:m},p,v),a)}return(0,e.createElement)(s,Oi({field:p,form:u},l),a)}var g=i||"input";if("string"==typeof g){var y=l.innerRef,b=Ci(l,["innerRef"]);return(0,e.createElement)(g,Oi({ref:y},p,b),a)}return(0,e.createElement)(g,Oi({},p,l),a)}var Zi=(0,e.forwardRef)((function(t,n){var r=t.action,o=Ci(t,["action"]),a=null!=r?r:"#",i=Bi(),s=i.handleReset,l=i.handleSubmit;return(0,e.createElement)("form",Object.assign({onSubmit:l,ref:n,onReset:s,action:a},o))}));function es(t){var n=function(n){return(0,e.createElement)(Vi,null,(function(r){return(0,e.createElement)(t,Object.assign({},n,{formik:r}))}))},r=t.displayName||t.name||t.constructor&&t.constructor.name||"Component";return n.WrappedComponent=t,n.displayName="FormikConnect("+r+")",me()(n,t)}Zi.displayName="Form";var ts=function(e,t,n){var r=ns(e);return r.splice(t,0,n),r},ns=function(e){if(e){if(Array.isArray(e))return[].concat(e);var t=Object.keys(e).map((function(e){return parseInt(e)})).reduce((function(e,t){return t>e?t:e}),0);return Array.from(Oi({},e,{length:t+1}))}return[]},rs=function(t){function n(e){var n;return(n=t.call(this,e)||this).updateArrayField=function(e,t,r){var o=n.props,a=o.name;(0,o.formik.setFormikState)((function(n){var o="function"==typeof r?r:e,i="function"==typeof t?t:e,s=Li(n.values,a,e(Fi(n.values,a))),l=r?o(Fi(n.errors,a)):void 0,u=t?i(Fi(n.touched,a)):void 0;return ji(l)&&(l=void 0),ji(u)&&(u=void 0),Oi({},n,{values:s,errors:r?Li(n.errors,a,l):n.errors,touched:t?Li(n.touched,a,u):n.touched})}))},n.push=function(e){return n.updateArrayField((function(t){return[].concat(ns(t),[_i(e)])}),!1,!1)},n.handlePush=function(e){return function(){return n.push(e)}},n.swap=function(e,t){return n.updateArrayField((function(n){return function(e,t,n){var r=ns(e),o=r[t];return r[t]=r[n],r[n]=o,r}(n,e,t)}),!0,!0)},n.handleSwap=function(e,t){return function(){return n.swap(e,t)}},n.move=function(e,t){return n.updateArrayField((function(n){return function(e,t,n){var r=ns(e),o=r[t];return r.splice(t,1),r.splice(n,0,o),r}(n,e,t)}),!0,!0)},n.handleMove=function(e,t){return function(){return n.move(e,t)}},n.insert=function(e,t){return n.updateArrayField((function(n){return ts(n,e,t)}),(function(t){return ts(t,e,null)}),(function(t){return ts(t,e,null)}))},n.handleInsert=function(e,t){return function(){return n.insert(e,t)}},n.replace=function(e,t){return n.updateArrayField((function(n){return function(e,t,n){var r=ns(e);return r[t]=n,r}(n,e,t)}),!1,!1)},n.handleReplace=function(e,t){return function(){return n.replace(e,t)}},n.unshift=function(e){var t=-1;return n.updateArrayField((function(n){var r=n?[e].concat(n):[e];return t<0&&(t=r.length),r}),(function(e){var n=e?[null].concat(e):[null];return t<0&&(t=n.length),n}),(function(e){var n=e?[null].concat(e):[null];return t<0&&(t=n.length),n})),t},n.handleUnshift=function(e){return function(){return n.unshift(e)}},n.handleRemove=function(e){return function(){return n.remove(e)}},n.handlePop=function(){return function(){return n.pop()}},n.remove=n.remove.bind(Pi(n)),n.pop=n.pop.bind(Pi(n)),n}var r,o;o=t,(r=n).prototype=Object.create(o.prototype),r.prototype.constructor=r,r.__proto__=o;var a=n.prototype;return a.componentDidUpdate=function(e){this.props.validateOnChange&&this.props.formik.validateOnChange&&!Do()(Fi(e.formik.values,e.name),Fi(this.props.formik.values,this.props.name))&&this.props.formik.validateForm(this.props.formik.values)},a.remove=function(e){var t;return this.updateArrayField((function(n){var r=n?ns(n):[];return t||(t=r[e]),Ai(r.splice)&&r.splice(e,1),r}),!0,!0),t},a.pop=function(){var e;return this.updateArrayField((function(t){var n=t;return e||(e=n&&n.pop&&n.pop()),n}),!0,!0),e},a.render=function(){var t={push:this.push,pop:this.pop,swap:this.swap,move:this.move,insert:this.insert,replace:this.replace,unshift:this.unshift,remove:this.remove,handlePush:this.handlePush,handlePop:this.handlePop,handleSwap:this.handleSwap,handleMove:this.handleMove,handleInsert:this.handleInsert,handleReplace:this.handleReplace,handleUnshift:this.handleUnshift,handleRemove:this.handleRemove},n=this.props,r=n.component,o=n.render,a=n.children,i=n.name,s=Oi({},t,{form:Ci(n.formik,["validate","validationSchema"]),name:i});return r?(0,e.createElement)(r,s):o?o(s):a?"function"==typeof a?a(s):Ni(a)?null:e.Children.only(a):null},n}(e.Component);rs.defaultProps={validateOnChange:!0};var os=es(rs),as=(e.Component,e.Component,o(3279)),is=o.n(as),ss=["className"];function ls(){return ls=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},ls.apply(this,arguments)}const us=function(t){var n=t.className,r=void 0===n?"":n,o=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,ss);return e.createElement("span",ls({className:"dashicons dashicons-no-alt ".concat(r)},o))};var cs=["className","valid","error"];function fs(){return fs=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},fs.apply(this,arguments)}const ps=function(t){var n=t.className,r=(t.valid,t.error,function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,cs));return e.createElement(Ji,fs({className:n},r))};var ds=Dt.input.withConfig({componentId:"sc-1bv2xq-0"})(["&&&&{width:100%;font-family:var(--fontFamily);padding:6px 8px;margin:0;box-shadow:0 0 0 transparent;transition:box-shadow 0.1s linear;background:none;color:var(--colorP);border-radius:2px;border:1px solid var(--color);font-size:var(--fontSize);line-height:normal;appearance:none;&:focus,&:active{border-color:var(--backgroundPrimary);box-shadow:0 0 0 1px var(--backgroundPrimary);outline:2px solid transparent;}}"]);const hs=Dt(ps).withConfig({componentId:"sc-1bv2xq-1"})(["&&&&{width:100%;font-family:var(--fontFamily);padding:6px 8px;margin:0;box-shadow:0 0 0 transparent;transition:box-shadow 0.1s linear;background:none;color:var(--colorP);border-radius:2px;border:1px solid var(--color);font-size:var(--fontSize);line-height:normal;appearance:none;&:focus,&:active{border-color:var(--backgroundPrimary);box-shadow:0 0 0 1px var(--backgroundPrimary);outline:2px solid transparent;}}"]),ms=Dt.div.withConfig({componentId:"sc-8f3q3f-0"})(["&&&{overflow:hidden;font-size:0.75rem;background-color:#e9ecef;border-radius:0.25rem;}"]),vs=Dt.div.withConfig({componentId:"sc-1jd5cu1-0"})(["&&&{text-align:right;background:#e9ecef;padding:2px 5px;display:flex;font-size:12px;justify-content:flex-end;border-radius:0 0 0.25rem 0.25rem;}"]),gs=function(t){var n=t.children;return e.createElement(ms,null,e.createElement(vs,null,n))};var ys=["name","id","value","type","emptyIcon","setFieldValue","item"];function bs(){return bs=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},bs.apply(this,arguments)}function ws(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 xs=wp.i18n.__;const Es=function(t){var n,r,o=t.name,a=t.id,i=t.value,s=t.type,l=void 0===s?"text":s,u=t.emptyIcon,c=void 0!==u&&u,f=t.setFieldValue,p=t.item,d=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,ys),h=(n=(0,e.useState)(i),r=2,function(e){if(Array.isArray(e))return e}(n)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,a=[],i=!0,s=!1;try{for(n=n.call(e);!(i=(r=n.next()).done)&&(a.push(r.value),!t||a.length!==t);i=!0);}catch(e){s=!0,o=e}finally{try{i||null==n.return||n.return()}finally{if(s)throw o}}return a}}(n,r)||function(e,t){if(e){if("string"==typeof e)return ws(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?ws(e,t):void 0}}(n,r)||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.")}()),m=h[0],v=h[1];(0,e.useEffect)((function(){v(i)}),[i]),(0,e.useEffect)((function(){g(m)}),[m]);var g=(0,e.useCallback)(is()((function(e){f(o,e)}),200),[]);return c?e.createElement(e.Fragment,null,e.createElement("div",{style:{position:"relative",width:"100%"}},e.createElement(hs,bs({name:o,id:a,type:l,value:m,onChange:function(e){v(e.target.value)},onPaste:function(){"_seopress_social_fb_img"===a&&(f("_seopress_social_fb_img_attachment_id",""),f("_seopress_social_fb_img_width",""),f("_seopress_social_fb_img_height","")),"_seopress_social_twitter_img"===a&&(f("_seopress_social_twitter_img_attachment_id",""),f("_seopress_social_twitter_img_width",""),f("_seopress_social_twitter_img_height",""))},style:{width:"100%"}},d)),!An()(i)&&e.createElement(us,{style:{position:"absolute",right:4,zIndex:10,top:0,transform:"translateY(50%)",marginTop:-5,backgroundColor:"#fff"},className:"sp-cursor-pointer",onClick:function(){Wt()(f)||f(o,"")}})),!Wt()(Z()(p,"recommended_limit",null))&&e.createElement("div",{style:{marginTop:5}},e.createElement(gs,null,e.createElement("span",{style:{color:""}},m.length)," ","/ ",e.createElement("strong",null,p.recommended_limit)," ",e.createElement("span",null," (",xs("maximum limit","wp-seopress"),")")))):e.createElement(e.Fragment,null,e.createElement(hs,bs({name:o,id:a,type:l,value:m,onChange:function(e){v(e.target.value)}},d)),!Wt()(Z()(p,"recommended_limit",null))&&e.createElement("div",{style:{marginTop:5}},e.createElement(gs,null,e.createElement("span",{style:{color:""}},m.length)," ","/ ",e.createElement("strong",null,p.recommended_limit)," ",e.createElement("span",null," (",xs("maximum limit","wp-seopress"),")"))))};var Ss=o(4184),ks=o.n(Ss),_s=["name","className","item"];function Os(){return Os=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Os.apply(this,arguments)}var Cs=wp.i18n.__;const Ps=function(t){var n=t.name,r=t.className,o=void 0===r?"":r,a=t.item,i=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,_s);return e.createElement(e.Fragment,null,e.createElement(Ji,Os({name:n,type:"textarea",as:"textarea",className:ks()(o,"form-textarea")},i)),!Wt()(Z()(a,"recommended_limit",null))&&e.createElement("div",{style:{marginTop:5}},e.createElement(gs,null,e.createElement("span",{style:{color:""}},formValue.length)," ","/ ",e.createElement("strong",null,a.recommended_limit)," ",e.createElement("span",null," (",Cs("maximum limit","wp-seopress"),")"))))};var js=["htmlFor","className","children"];function As(){return As=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},As.apply(this,arguments)}var Is=Dt.label.withConfig({componentId:"sc-1yhm0qw-0"})(["&&&{font-weight:bold;display:block;margin-bottom:4px;font-size:1em;}&:hover{cursor:pointer;}"]);const Ts=function(t){var n=t.htmlFor,r=t.className,o=t.children,a=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,js);return e.createElement(Is,As({htmlFor:n,className:ks()(r)},a),o)},Rs=function(t){var n=t.color,r=void 0===n?"#fff":n;return t.className,e.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",style:{marginRight:10,animation:"anim-loading 1.2s linear infinite"}},e.createElement("path",{fill:r,fillRule:"evenodd",d:"M11.735 20.996a9 9 0 0 1-5.103-16.22A1 1 0 0 1 7.826 6.38a7 7 0 1 0 8.258-.066 1 1 0 1 1 1.168-1.623A9 9 0 0 1 12 21v-.001z"}))};var Ns=["className","loading","children"];function Ms(){return Ms=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Ms.apply(this,arguments)}const Fs=function(t){var n=t.className,r=void 0===n?"":n,o=t.loading,a=t.children,i=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,Ns);return e.createElement(Ao,Ms({className:ks()({"inline-flex items-center":!0},r),disabled:o},i),o&&e.createElement(Rs,null),a)};function Ls(e){return Array.isArray?Array.isArray(e):"[object Array]"===Ws(e)}function Ds(e){return"string"==typeof e}function zs(e){return"number"==typeof e}function Us(e){return"object"==typeof e}function Vs(e){return null!=e}function Bs(e){return!e.trim().length}function Ws(e){return null==e?void 0===e?"[object Undefined]":"[object Null]":Object.prototype.toString.call(e)}const Hs=Object.prototype.hasOwnProperty;class $s{constructor(e){this._keys=[],this._keyMap={};let t=0;e.forEach((e=>{let n=Gs(e);t+=n.weight,this._keys.push(n),this._keyMap[n.id]=n,t+=n.weight})),this._keys.forEach((e=>{e.weight/=t}))}get(e){return this._keyMap[e]}keys(){return this._keys}toJSON(){return JSON.stringify(this._keys)}}function Gs(e){let t=null,n=null,r=null,o=1,a=null;if(Ds(e)||Ls(e))r=e,t=Ys(e),n=qs(e);else{if(!Hs.call(e,"name"))throw new Error("Missing name property in key");const i=e.name;if(r=i,Hs.call(e,"weight")&&(o=e.weight,o<=0))throw new Error((e=>`Property 'weight' in key '${e}' must be a positive integer`)(i));t=Ys(i),n=qs(i),a=e.getFn}return{path:t,id:n,weight:o,src:r,getFn:a}}function Ys(e){return Ls(e)?e:e.split(".")}function qs(e){return Ls(e)?e.join("."):e}var Qs={isCaseSensitive:!1,includeScore:!1,keys:[],shouldSort:!0,sortFn:(e,t)=>e.score===t.score?e.idx<t.idx?-1:1:e.score<t.score?-1:1,includeMatches:!1,findAllMatches:!1,minMatchCharLength:1,location:0,threshold:.6,distance:100,useExtendedSearch:!1,getFn:function(e,t){let n=[],r=!1;const o=(e,t,a)=>{if(Vs(e))if(t[a]){const i=e[t[a]];if(!Vs(i))return;if(a===t.length-1&&(Ds(i)||zs(i)||function(e){return!0===e||!1===e||function(e){return Us(e)&&null!==e}(e)&&"[object Boolean]"==Ws(e)}(i)))n.push(function(e){return null==e?"":function(e){if("string"==typeof e)return e;let t=e+"";return"0"==t&&1/e==-1/0?"-0":t}(e)}(i));else if(Ls(i)){r=!0;for(let e=0,n=i.length;e<n;e+=1)o(i[e],t,a+1)}else t.length&&o(i,t,a+1)}else n.push(e)};return o(e,Ds(t)?t.split("."):t,0),r?n:n[0]},ignoreLocation:!1,ignoreFieldNorm:!1,fieldNormWeight:1};const Xs=/[^ ]+/g;class Ks{constructor({getFn:e=Qs.getFn,fieldNormWeight:t=Qs.fieldNormWeight}={}){this.norm=function(e=1,t=3){const n=new Map,r=Math.pow(10,t);return{get(t){const o=t.match(Xs).length;if(n.has(o))return n.get(o);const a=1/Math.pow(o,.5*e),i=parseFloat(Math.round(a*r)/r);return n.set(o,i),i},clear(){n.clear()}}}(t,3),this.getFn=e,this.isCreated=!1,this.setIndexRecords()}setSources(e=[]){this.docs=e}setIndexRecords(e=[]){this.records=e}setKeys(e=[]){this.keys=e,this._keysMap={},e.forEach(((e,t)=>{this._keysMap[e.id]=t}))}create(){!this.isCreated&&this.docs.length&&(this.isCreated=!0,Ds(this.docs[0])?this.docs.forEach(((e,t)=>{this._addString(e,t)})):this.docs.forEach(((e,t)=>{this._addObject(e,t)})),this.norm.clear())}add(e){const t=this.size();Ds(e)?this._addString(e,t):this._addObject(e,t)}removeAt(e){this.records.splice(e,1);for(let t=e,n=this.size();t<n;t+=1)this.records[t].i-=1}getValueForItemAtKeyId(e,t){return e[this._keysMap[t]]}size(){return this.records.length}_addString(e,t){if(!Vs(e)||Bs(e))return;let n={v:e,i:t,n:this.norm.get(e)};this.records.push(n)}_addObject(e,t){let n={i:t,$:{}};this.keys.forEach(((t,r)=>{let o=t.getFn?t.getFn(e):this.getFn(e,t.path);if(Vs(o))if(Ls(o)){let e=[];const t=[{nestedArrIndex:-1,value:o}];for(;t.length;){const{nestedArrIndex:n,value:r}=t.pop();if(Vs(r))if(Ds(r)&&!Bs(r)){let t={v:r,i:n,n:this.norm.get(r)};e.push(t)}else Ls(r)&&r.forEach(((e,n)=>{t.push({nestedArrIndex:n,value:e})}))}n.$[r]=e}else if(!Bs(o)){let e={v:o,n:this.norm.get(o)};n.$[r]=e}})),this.records.push(n)}toJSON(){return{keys:this.keys,records:this.records}}}function Js(e,t,{getFn:n=Qs.getFn,fieldNormWeight:r=Qs.fieldNormWeight}={}){const o=new Ks({getFn:n,fieldNormWeight:r});return o.setKeys(e.map(Gs)),o.setSources(t),o.create(),o}function Zs(e,{errors:t=0,currentLocation:n=0,expectedLocation:r=0,distance:o=Qs.distance,ignoreLocation:a=Qs.ignoreLocation}={}){const i=t/e.length;if(a)return i;const s=Math.abs(r-n);return o?i+s/o:s?1:i}const el=32;function tl(e){let t={};for(let n=0,r=e.length;n<r;n+=1){const o=e.charAt(n);t[o]=(t[o]||0)|1<<r-n-1}return t}class nl{constructor(e,{location:t=Qs.location,threshold:n=Qs.threshold,distance:r=Qs.distance,includeMatches:o=Qs.includeMatches,findAllMatches:a=Qs.findAllMatches,minMatchCharLength:i=Qs.minMatchCharLength,isCaseSensitive:s=Qs.isCaseSensitive,ignoreLocation:l=Qs.ignoreLocation}={}){if(this.options={location:t,threshold:n,distance:r,includeMatches:o,findAllMatches:a,minMatchCharLength:i,isCaseSensitive:s,ignoreLocation:l},this.pattern=s?e:e.toLowerCase(),this.chunks=[],!this.pattern.length)return;const u=(e,t)=>{this.chunks.push({pattern:e,alphabet:tl(e),startIndex:t})},c=this.pattern.length;if(c>el){let e=0;const t=c%el,n=c-t;for(;e<n;)u(this.pattern.substr(e,el),e),e+=el;if(t){const e=c-el;u(this.pattern.substr(e),e)}}else u(this.pattern,0)}searchIn(e){const{isCaseSensitive:t,includeMatches:n}=this.options;if(t||(e=e.toLowerCase()),this.pattern===e){let t={isMatch:!0,score:0};return n&&(t.indices=[[0,e.length-1]]),t}const{location:r,distance:o,threshold:a,findAllMatches:i,minMatchCharLength:s,ignoreLocation:l}=this.options;let u=[],c=0,f=!1;this.chunks.forEach((({pattern:t,alphabet:p,startIndex:d})=>{const{isMatch:h,score:m,indices:v}=function(e,t,n,{location:r=Qs.location,distance:o=Qs.distance,threshold:a=Qs.threshold,findAllMatches:i=Qs.findAllMatches,minMatchCharLength:s=Qs.minMatchCharLength,includeMatches:l=Qs.includeMatches,ignoreLocation:u=Qs.ignoreLocation}={}){if(t.length>el)throw new Error("Pattern length exceeds max of 32.");const c=t.length,f=e.length,p=Math.max(0,Math.min(r,f));let d=a,h=p;const m=s>1||l,v=m?Array(f):[];let g;for(;(g=e.indexOf(t,h))>-1;){let e=Zs(t,{currentLocation:g,expectedLocation:p,distance:o,ignoreLocation:u});if(d=Math.min(e,d),h=g+c,m){let e=0;for(;e<c;)v[g+e]=1,e+=1}}h=-1;let y=[],b=1,w=c+f;const x=1<<c-1;for(let r=0;r<c;r+=1){let a=0,s=w;for(;a<s;)Zs(t,{errors:r,currentLocation:p+s,expectedLocation:p,distance:o,ignoreLocation:u})<=d?a=s:w=s,s=Math.floor((w-a)/2+a);w=s;let l=Math.max(1,p-s+1),g=i?f:Math.min(p+s,f)+c,E=Array(g+2);E[g+1]=(1<<r)-1;for(let a=g;a>=l;a-=1){let i=a-1,s=n[e.charAt(i)];if(m&&(v[i]=+!!s),E[a]=(E[a+1]<<1|1)&s,r&&(E[a]|=(y[a+1]|y[a])<<1|1|y[a+1]),E[a]&x&&(b=Zs(t,{errors:r,currentLocation:i,expectedLocation:p,distance:o,ignoreLocation:u}),b<=d)){if(d=b,h=i,h<=p)break;l=Math.max(1,2*p-h)}}if(Zs(t,{errors:r+1,currentLocation:p,expectedLocation:p,distance:o,ignoreLocation:u})>d)break;y=E}const E={isMatch:h>=0,score:Math.max(.001,b)};if(m){const e=function(e=[],t=Qs.minMatchCharLength){let n=[],r=-1,o=-1,a=0;for(let i=e.length;a<i;a+=1){let i=e[a];i&&-1===r?r=a:i||-1===r||(o=a-1,o-r+1>=t&&n.push([r,o]),r=-1)}return e[a-1]&&a-r>=t&&n.push([r,a-1]),n}(v,s);e.length?l&&(E.indices=e):E.isMatch=!1}return E}(e,t,p,{location:r+d,distance:o,threshold:a,findAllMatches:i,minMatchCharLength:s,includeMatches:n,ignoreLocation:l});h&&(f=!0),c+=m,h&&v&&(u=[...u,...v])}));let p={isMatch:f,score:f?c/this.chunks.length:1};return f&&n&&(p.indices=u),p}}class rl{constructor(e){this.pattern=e}static isMultiMatch(e){return ol(e,this.multiRegex)}static isSingleMatch(e){return ol(e,this.singleRegex)}search(){}}function ol(e,t){const n=e.match(t);return n?n[1]:null}class al extends rl{constructor(e,{location:t=Qs.location,threshold:n=Qs.threshold,distance:r=Qs.distance,includeMatches:o=Qs.includeMatches,findAllMatches:a=Qs.findAllMatches,minMatchCharLength:i=Qs.minMatchCharLength,isCaseSensitive:s=Qs.isCaseSensitive,ignoreLocation:l=Qs.ignoreLocation}={}){super(e),this._bitapSearch=new nl(e,{location:t,threshold:n,distance:r,includeMatches:o,findAllMatches:a,minMatchCharLength:i,isCaseSensitive:s,ignoreLocation:l})}static get type(){return"fuzzy"}static get multiRegex(){return/^"(.*)"$/}static get singleRegex(){return/^(.*)$/}search(e){return this._bitapSearch.searchIn(e)}}class il extends rl{constructor(e){super(e)}static get type(){return"include"}static get multiRegex(){return/^'"(.*)"$/}static get singleRegex(){return/^'(.*)$/}search(e){let t,n=0;const r=[],o=this.pattern.length;for(;(t=e.indexOf(this.pattern,n))>-1;)n=t+o,r.push([t,n-1]);const a=!!r.length;return{isMatch:a,score:a?0:1,indices:r}}}const sl=[class extends rl{constructor(e){super(e)}static get type(){return"exact"}static get multiRegex(){return/^="(.*)"$/}static get singleRegex(){return/^=(.*)$/}search(e){const t=e===this.pattern;return{isMatch:t,score:t?0:1,indices:[0,this.pattern.length-1]}}},il,class extends rl{constructor(e){super(e)}static get type(){return"prefix-exact"}static get multiRegex(){return/^\^"(.*)"$/}static get singleRegex(){return/^\^(.*)$/}search(e){const t=e.startsWith(this.pattern);return{isMatch:t,score:t?0:1,indices:[0,this.pattern.length-1]}}},class extends rl{constructor(e){super(e)}static get type(){return"inverse-prefix-exact"}static get multiRegex(){return/^!\^"(.*)"$/}static get singleRegex(){return/^!\^(.*)$/}search(e){const t=!e.startsWith(this.pattern);return{isMatch:t,score:t?0:1,indices:[0,e.length-1]}}},class extends rl{constructor(e){super(e)}static get type(){return"inverse-suffix-exact"}static get multiRegex(){return/^!"(.*)"\$$/}static get singleRegex(){return/^!(.*)\$$/}search(e){const t=!e.endsWith(this.pattern);return{isMatch:t,score:t?0:1,indices:[0,e.length-1]}}},class extends rl{constructor(e){super(e)}static get type(){return"suffix-exact"}static get multiRegex(){return/^"(.*)"\$$/}static get singleRegex(){return/^(.*)\$$/}search(e){const t=e.endsWith(this.pattern);return{isMatch:t,score:t?0:1,indices:[e.length-this.pattern.length,e.length-1]}}},class extends rl{constructor(e){super(e)}static get type(){return"inverse-exact"}static get multiRegex(){return/^!"(.*)"$/}static get singleRegex(){return/^!(.*)$/}search(e){const t=-1===e.indexOf(this.pattern);return{isMatch:t,score:t?0:1,indices:[0,e.length-1]}}},al],ll=sl.length,ul=/ +(?=(?:[^\"]*\"[^\"]*\")*[^\"]*$)/,cl=new Set([al.type,il.type]);const fl=[];function pl(e,t){for(let n=0,r=fl.length;n<r;n+=1){let r=fl[n];if(r.condition(e,t))return new r(e,t)}return new nl(e,t)}const dl="$and",hl=e=>!(!e.$and&&!e.$or),ml=e=>({[dl]:Object.keys(e).map((t=>({[t]:e[t]})))});function vl(e,t,{auto:n=!0}={}){const r=e=>{let o=Object.keys(e);const a=(e=>!!e.$path)(e);if(!a&&o.length>1&&!hl(e))return r(ml(e));if((e=>!Ls(e)&&Us(e)&&!hl(e))(e)){const r=a?e.$path:o[0],i=a?e.$val:e[r];if(!Ds(i))throw new Error((e=>`Invalid value for key ${e}`)(r));const s={keyId:qs(r),pattern:i};return n&&(s.searcher=pl(i,t)),s}let i={children:[],operator:o[0]};return o.forEach((t=>{const n=e[t];Ls(n)&&n.forEach((e=>{i.children.push(r(e))}))})),i};return hl(e)||(e=ml(e)),r(e)}function gl(e,t){const n=e.matches;t.matches=[],Vs(n)&&n.forEach((e=>{if(!Vs(e.indices)||!e.indices.length)return;const{indices:n,value:r}=e;let o={indices:n,value:r};e.key&&(o.key=e.key.src),e.idx>-1&&(o.refIndex=e.idx),t.matches.push(o)}))}function yl(e,t){t.score=e.score}class bl{constructor(e,t={},n){this.options={...Qs,...t},this.options.useExtendedSearch,this._keyStore=new $s(this.options.keys),this.setCollection(e,n)}setCollection(e,t){if(this._docs=e,t&&!(t instanceof Ks))throw new Error("Incorrect 'index' type");this._myIndex=t||Js(this.options.keys,this._docs,{getFn:this.options.getFn,fieldNormWeight:this.options.fieldNormWeight})}add(e){Vs(e)&&(this._docs.push(e),this._myIndex.add(e))}remove(e=(()=>!1)){const t=[];for(let n=0,r=this._docs.length;n<r;n+=1){const o=this._docs[n];e(o,n)&&(this.removeAt(n),n-=1,r-=1,t.push(o))}return t}removeAt(e){this._docs.splice(e,1),this._myIndex.removeAt(e)}getIndex(){return this._myIndex}search(e,{limit:t=-1}={}){const{includeMatches:n,includeScore:r,shouldSort:o,sortFn:a,ignoreFieldNorm:i}=this.options;let s=Ds(e)?Ds(this._docs[0])?this._searchStringList(e):this._searchObjectList(e):this._searchLogical(e);return function(e,{ignoreFieldNorm:t=Qs.ignoreFieldNorm}){e.forEach((e=>{let n=1;e.matches.forEach((({key:e,norm:r,score:o})=>{const a=e?e.weight:null;n*=Math.pow(0===o&&a?Number.EPSILON:o,(a||1)*(t?1:r))})),e.score=n}))}(s,{ignoreFieldNorm:i}),o&&s.sort(a),zs(t)&&t>-1&&(s=s.slice(0,t)),function(e,t,{includeMatches:n=Qs.includeMatches,includeScore:r=Qs.includeScore}={}){const o=[];return n&&o.push(gl),r&&o.push(yl),e.map((e=>{const{idx:n}=e,r={item:t[n],refIndex:n};return o.length&&o.forEach((t=>{t(e,r)})),r}))}(s,this._docs,{includeMatches:n,includeScore:r})}_searchStringList(e){const t=pl(e,this.options),{records:n}=this._myIndex,r=[];return n.forEach((({v:e,i:n,n:o})=>{if(!Vs(e))return;const{isMatch:a,score:i,indices:s}=t.searchIn(e);a&&r.push({item:e,idx:n,matches:[{score:i,value:e,norm:o,indices:s}]})})),r}_searchLogical(e){const t=vl(e,this.options),n=(e,t,r)=>{if(!e.children){const{keyId:n,searcher:o}=e,a=this._findMatches({key:this._keyStore.get(n),value:this._myIndex.getValueForItemAtKeyId(t,n),searcher:o});return a&&a.length?[{idx:r,item:t,matches:a}]:[]}const o=[];for(let a=0,i=e.children.length;a<i;a+=1){const i=e.children[a],s=n(i,t,r);if(s.length)o.push(...s);else if(e.operator===dl)return[]}return o},r=this._myIndex.records,o={},a=[];return r.forEach((({$:e,i:r})=>{if(Vs(e)){let i=n(t,e,r);i.length&&(o[r]||(o[r]={idx:r,item:e,matches:[]},a.push(o[r])),i.forEach((({matches:e})=>{o[r].matches.push(...e)})))}})),a}_searchObjectList(e){const t=pl(e,this.options),{keys:n,records:r}=this._myIndex,o=[];return r.forEach((({$:e,i:r})=>{if(!Vs(e))return;let a=[];n.forEach(((n,r)=>{a.push(...this._findMatches({key:n,value:e[r],searcher:t}))})),a.length&&o.push({idx:r,item:e,matches:a})})),o}_findMatches({key:e,value:t,searcher:n}){if(!Vs(t))return[];let r=[];if(Ls(t))t.forEach((({v:t,i:o,n:a})=>{if(!Vs(t))return;const{isMatch:i,score:s,indices:l}=n.searchIn(t);i&&r.push({score:s,key:e,value:t,idx:o,norm:a,indices:l})}));else{const{v:o,n:a}=t,{isMatch:i,score:s,indices:l}=n.searchIn(o);i&&r.push({score:s,key:e,value:o,norm:a,indices:l})}return r}}bl.version="6.6.0",bl.createIndex=Js,bl.parseIndex=function(e,{getFn:t=Qs.getFn,fieldNormWeight:n=Qs.fieldNormWeight}={}){const{keys:r,records:o}=e,a=new Ks({getFn:t,fieldNormWeight:n});return a.setKeys(r),a.setIndexRecords(o),a},bl.config=Qs,bl.parseQuery=vl,function(...e){fl.push(...e)}(class{constructor(e,{isCaseSensitive:t=Qs.isCaseSensitive,includeMatches:n=Qs.includeMatches,minMatchCharLength:r=Qs.minMatchCharLength,ignoreLocation:o=Qs.ignoreLocation,findAllMatches:a=Qs.findAllMatches,location:i=Qs.location,threshold:s=Qs.threshold,distance:l=Qs.distance}={}){this.query=null,this.options={isCaseSensitive:t,includeMatches:n,minMatchCharLength:r,findAllMatches:a,ignoreLocation:o,location:i,threshold:s,distance:l},this.pattern=t?e:e.toLowerCase(),this.query=function(e,t={}){return e.split("|").map((e=>{let n=e.trim().split(ul).filter((e=>e&&!!e.trim())),r=[];for(let e=0,o=n.length;e<o;e+=1){const o=n[e];let a=!1,i=-1;for(;!a&&++i<ll;){const e=sl[i];let n=e.isMultiMatch(o);n&&(r.push(new e(n,t)),a=!0)}if(!a)for(i=-1;++i<ll;){const e=sl[i];let n=e.isSingleMatch(o);if(n){r.push(new e(n,t));break}}}return r}))}(this.pattern,this.options)}static condition(e,t){return t.useExtendedSearch}searchIn(e){const t=this.query;if(!t)return{isMatch:!1,score:1};const{includeMatches:n,isCaseSensitive:r}=this.options;e=r?e:e.toLowerCase();let o=0,a=[],i=0;for(let r=0,s=t.length;r<s;r+=1){const s=t[r];a.length=0,o=0;for(let t=0,r=s.length;t<r;t+=1){const r=s[t],{isMatch:l,indices:u,score:c}=r.search(e);if(!l){i=0,o=0,a.length=0;break}if(o+=1,i+=c,n){const e=r.constructor.type;cl.has(e)?a=[...a,...u]:a.push(u)}}if(o){let e={isMatch:!0,score:i/o};return n&&(e.indices=a),e}}return{isMatch:!1,score:1}}});const wl=Dt.ul.withConfig({componentId:"sc-10hnkzk-0"})(["&&&{max-height:200px;border:1px solid var(--borderColorCard);overflow-y:scroll;overflow-x:hidden;width:300px;word-wrap:break-word;position:absolute;background-color:#fff;z-index:999;left:0;top:100%;border-radius:2px;margin:0;margin-top:5px;padding:0;}"]);var xl=Dt.div.withConfig({componentId:"sc-15df4jl-0"})(["&&&{font-weight:bold;margin-bottom:4px;}"]),El=Dt.div.withConfig({componentId:"sc-15df4jl-1"})(["&&&{display:inline-block;background:#e9ecef;padding:1px 5px;color:#333;font-family:Menlo,Monaco,Andale Mono,Courier New,monospace;border-radius:3px;font-size:11px;}"]);const Sl=Dt.li.withConfig({componentId:"sc-15df4jl-2"})(["&&&{margin:0;padding:6px 10px;border-bottom:1px solid var(--borderColorLight40);list-style:none;&:last-child{border-bottom:none;}&:hover{background-color:var(--backgroundPrimaryHover);cursor:pointer;> div:first-child{color:#fff;}}}"]),kl=Dt.div.withConfig({componentId:"sc-1m3zn7i-0"})(["&&&&{padding:3px 12px;font-size:10px;user-select:none;margin:0px 5px 10px 0;display:inline-flex;text-transform:uppercase;border:1px solid var(--primaryColor);align-items:center;color:var(--primaryColor);cursor:pointer;font-weight:500;border-radius:4px;transition:all 0.3s linear;&:hover{cursor:pointer;background-color:var(--primaryColor);color:#fff;}}"]),_l=function(t,n){(0,e.useEffect)((function(){var e=function(e){t.current&&!t.current.contains(e.target)&&n(e)};return document.addEventListener("mousedown",e),document.addEventListener("touchstart",e),function(){document.removeEventListener("mousedown",e),document.removeEventListener("touchstart",e)}}),[t,n])};function Ol(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,a=[],i=!0,s=!1;try{for(n=n.call(e);!(i=(r=n.next()).done)&&(a.push(r.value),!t||a.length!==t);i=!0);}catch(e){s=!0,o=e}finally{try{i||null==n.return||n.return()}finally{if(s)throw o}}return a}}(e,t)||function(e,t){if(e){if("string"==typeof e)return Cl(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Cl(e,t):void 0}}(e,t)||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 Cl(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 Pl=wp.i18n.__,jl=Z()(SEOPRESS_DATA,"TAGS",[]),Al=new bl(jl,{keys:["name","alias","description"]});const Il=function(t){var n=t.buttons,r=void 0===n?[]:n,o=t.handleChoiceTag,a=void 0===o?function(){}:o,i=Ol((0,e.useState)(""),2),s=i[0],l=i[1],u=An()(s)?jl:Al.search(s),c=Ol((0,e.useState)(!1),2),f=c[0],p=c[1],d=(0,e.useRef)();return _l(d,(function(){return p(!1)})),e.createElement(e.Fragment,null,e.createElement("div",{className:"flex items-center flex-wrap"},r.map((function(t){var n=$t()(jl,{name:t});if(!Wt()(n))return e.createElement(kl,{key:"btn_".concat(n.name),onClick:function(){return a(n.input)},onKeyUp:function(e){13===e.keyCode&&(e.preventDefault(),a(n.input))},role:"button",tabIndex:"0"},e.createElement("span",{className:"dashicons dashicons-plus-alt2"}),An()(Z()(n,"description"))?n.name:n.description)})),e.createElement("div",{className:"relative",style:{alignSelf:"start"},ref:d},e.createElement("input",{type:"text",placeholder:Pl("Search a tag","wp-seopress"),value:s,onChange:function(e){return l(e.target.value)},onFocus:function(){return p(!0)},style:{fontSize:13,padding:4,minWidth:150,borderRadius:4,border:"1px solid var(--primaryColor)",backgroundColor:"#fff",height:32,marginBottom:0,fontFamily:"var(--fontFamily)"},tabIndex:"0"}),f&&!An()(u)&&e.createElement(wl,null,u.map((function(t){var n=Z()(t,"item.name",Z()(t,"name","")),r=Z()(t,"item.description",Z()(t,"description","")),o=Z()(t,"item.input",Z()(t,"input",""));return e.createElement(Sl,{key:n,onClick:function(){a(o)},onKeyUp:function(e){27===e.keyCode&&(e.preventDefault(),p(!1)),13===e.keyCode&&(e.preventDefault(),a(o))},tabIndex:"0"},e.createElement(xl,null,r||n),e.createElement(El,null,o))}))))))},Tl=Dt.div.withConfig({componentId:"sc-djzxn7-0"})(["&&&{display:flex;flex-direction:column;justify-content:center;color:#fff;text-align:center;white-space:nowrap;background-color:#0085ba;transition:width 0.6s ease;font-size:12px;}"]),Rl=function(t){var n=t.percent,r=void 0===n?0:n,o=t.children;return e.createElement(ms,null,e.createElement(Tl,{style:{width:"".concat(r,"%")}},r.toFixed(1),"%"),e.createElement(vs,null,o))};function Nl(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,a=[],i=!0,s=!1;try{for(n=n.call(e);!(i=(r=n.next()).done)&&(a.push(r.value),!t||a.length!==t);i=!0);}catch(e){s=!0,o=e}finally{try{i||null==n.return||n.return()}finally{if(s)throw o}}return a}}(e,t)||function(e,t){if(e){if("string"==typeof e)return Ml(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Ml(e,t):void 0}}(e,t)||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 Ml(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 Fl=(0,e.createContext)({values:{title:"",description:"",post_thumbnail:"",post_date:""}}),Ll=function(t){var n=t.children,r=Nl((0,e.useState)(""),2),o=r[0],a=r[1],i=Nl((0,e.useState)(""),2),s=i[0],l=i[1],u=Nl((0,e.useState)(""),2),c=u[0],f=u[1],p=Nl((0,e.useState)(""),2),d=p[0],h=p[1];return e.createElement(Fl.Provider,{value:{values:{title:o,description:s,post_thumbnail:c,post_date:d},actions:{setTitle:a,setDescription:l,setPostThumbnail:f,setPostDate:h}}},n)},Dl=function(e,t){return 100*e/t},zl=function(e){var t=document.createElement("canvas").getContext("2d");t.font="18px Arial";var n=t.measureText(e).width;return Math.ceil(n)};const Ul=function(t){var n=t.title,r=t.description,o=t.code;return e.createElement("button",{type:"button",className:"sp-tooltip"},e.createElement("span",{className:"dashicons dashicons-editor-help"}),e.createElement("span",{className:"sp-tooltiptext",role:"tooltip",tabIndex:"0"},e.createElement("span",{className:"sp-tooltip-headings"},n),e.createElement("span",{className:"sp-tooltip-desc"},r),o&&e.createElement("span",{className:"sp-tooltip-code"},o)))};var Vl=["values","loading","handleOnSubmit"];var Bl=wp.i18n.__;const Wl=function(t){var n=t.values,r=t.loading,o=t.handleOnSubmit,a=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,Vl),i=mn(),s=function(){var t=(0,e.useContext)(Fl).values;return Z()(t,"title","")}(),l=function(){var t=(0,e.useContext)(Fl).values;return Z()(t,"description","")}(),u=zl(An()(s)?Z()(i,"title.value",""):s),c=Dl(u,568),f=zl(An()(l)?Z()(i,"description.value",""):l),p=Dl(f,940);return e.createElement(Zi,null,e.createElement(Ts,{htmlFor:"title"},Bl("Title","wp-seopress"),e.createElement(Ul,{title:Bl("Meta title","wp-seopress"),description:e.createElement(e.Fragment,null,Bl("Titles are critical to give users a quick insight into the content of a result and why it’s relevant to their query. It's often the primary piece of information used to decide which result to click on, so it's important to use high-quality titles on your web pages.","wp-seopress")),code:"<title>My super title</title>"})),e.createElement(Es,{id:"title",name:"title",value:n.title,placeholder:Z()(i,"title.value",Bl("Enter your title","wp-seopress")),className:"w-full",setFieldValue:a.setFieldValue}),e.createElement("div",{style:{marginTop:5}},e.createElement(Rl,{percent:c>100?100:c},e.createElement("span",{style:{color:c>=100?"red":""}},u)," ","/ ",e.createElement("strong",null,568)," ",Bl("pixels","wp-seopress")," -",e.createElement("span",{style:{color:s.length>=60?"red":""}}," ",s.length)," ","/ ",e.createElement("strong",null,60)," ",e.createElement("span",null," ","(",Bl("maximum recommended limit","wp-seopress"),")"))),e.createElement("div",{style:{marginTop:5,marginBottom:20}},e.createElement(Il,{buttons:["post_title","sitetitle","sep"],handleChoiceTag:function(e){var t=An()(n.title)?e:"".concat(n.title," ").concat(e);a.setFieldValue("title",t)}})),e.createElement(Ts,{htmlFor:"description"},Bl("Meta description","wp-seopress"),e.createElement(Ul,{title:Bl("Meta description","wp-seopress"),description:e.createElement(e.Fragment,null,Bl("A meta description tag should generally inform and interest users with a short, relevant summary of what a particular page is about.","wp-seopress")," ",e.createElement("br",null)," ",Bl("They are like a pitch that convince the user that the page is exactly what they're looking for.","wp-seopress")," ",e.createElement("br",null)," ",Bl("There's no limit on how long a meta description can be, but the search result snippets are truncated as needed, typically to fit the device width.","wp-seopress")),code:'<meta name="description" content="my super meta description" />'})),e.createElement(Ps,{id:"description",name:"description",style:{resize:"vertical"},rows:"4",value:n.description,placeholder:Z()(i,"description.value",Bl("Enter your description","wp-seopress")),className:"w-full"}),e.createElement("div",{style:{marginTop:5}},e.createElement(Rl,{percent:p>100?100:p},e.createElement("span",{style:{color:p>=100?"red":""}},f)," ","/"," ",e.createElement("strong",null,940)," ",Bl("pixels","wp-seopress")," -",e.createElement("span",{style:{color:l.length>=160?"red":""}}," ",l.length)," ","/"," ",e.createElement("strong",null,160)," ","(",Bl("maximum recommended limit","wp-seopress"),")")),e.createElement("div",{style:{marginTop:5}},e.createElement(Il,{buttons:["post_title","sitetitle","sep"],handleChoiceTag:function(e){var t=An()(n.description)?e:"".concat(n.description," ").concat(e);a.setFieldValue("description",t)}})),e.createElement("div",{className:"sp-fixed"},e.createElement(Fs,{loading:r,onClick:function(){return o()},blue:!0},Bl("Save","wp-seopress"))))};var Hl=o(9138),$l=o.n(Hl),Gl=function(e){var t=e.postId;return"".concat(SEOPRESS_DATA.REST_URL,"seopress/v1/posts/").concat(t,"/preview-title-description-metas")},Yl=Dt.div.withConfig({componentId:"sc-uts4tk-0"})(['&&&{display:inline-block;position:relative;box-shadow:inset 0 0 0 1px #d5d5d5;text-indent:-5000px;height:20px;width:40px;border-radius:15px;&:hover{cursor:pointer;}&:before{content:"";position:absolute;display:block;height:20px;width:40px;top:0;left:0;border-radius:15px;background:rgba(19,191,17,0);-moz-transition:0.25s ease-in-out;-webkit-transition:0.25s ease-in-out;transition:0.25s ease-in-out;}&:after{content:"";position:absolute;display:block;height:20px;width:20px;top:0;left:0;border-radius:15px;background:#fff;box-shadow:inset 0 0 0 1px rgb(0 0 0 / 20%),0 2px 4px rgb(0 0 0 / 20%);transition:0.25s ease-in-out;}',"}"],(function(e){return e.selected&&"\n &:before{\n background: rgb(49, 151, 211);\n }\n &:after{\n box-shadow: inset 0 0 0 1px rgb(49 151 211), 0 2px 4px rgb(0 0 0 / 20%);\n left:20px;\n }\n "}));const ql=Yl;function Ql(e,t,n,r,o,a,i){try{var s=e[a](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function Xl(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,a=[],i=!0,s=!1;try{for(n=n.call(e);!(i=(r=n.next()).done)&&(a.push(r.value),!t||a.length!==t);i=!0);}catch(e){s=!0,o=e}finally{try{i||null==n.return||n.return()}finally{if(s)throw o}}return a}}(e,t)||function(e,t){if(e){if("string"==typeof e)return Kl(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Kl(e,t):void 0}}(e,t)||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 Kl(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 Jl=wp.i18n.__;const Zl=function(t){var n=t.title,r=t.description,o=t.postId,a=Xl(bn("seopress_toggle_mobile_preview",Z()(SEOPRESS_DATA,"TOGGLE_MOBILE_PREVIEW",1)),2),i=a[0],s=a[1],l=(0,e.useContext)(hn).values.dataPagePreview,u=Xl((0,e.useState)(""),2),c=u[0],f=u[1],p=Xl((0,e.useState)(""),2),d=p[0],h=p[1],m=(0,e.useContext)(Fl),v=m.values,g=m.actions,y=function(){return An()(c)&&An()(v.title)?Z()(l,"title.value",""):An()(c)?v.title:c},b=function(){return An()(d)&&An()(v.description)?Z()(l,"description.value",""):An()(d)?v.description:d},w=function(){if(!An()(v.post_date))return e.createElement("div",{style:{color:"grey",display:"inline"}},v.post_date," - ")},x=(0,e.useCallback)(is()(function(){var e,t=(e=regeneratorRuntime.mark((function e(t,n){var r,a,i,s,l,u,p,m,v,y,b;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return r=t.title,a=t.description,i=t.post_thumbnail,s=t.post_date,(l=new URL(Gl({postId:o}))).searchParams.append("title",r),l.searchParams.append("description",a),l.searchParams.append("post_thumbnail",i),l.searchParams.append("post_date",s),e.next=8,fetch(l.href,{signal:n.signal});case 8:return u=e.sent,e.next=11,u.json();case 11:p=e.sent,g.setTitle(p.title),g.setDescription(p.description),g.setPostThumbnail(p.post_thumbnail),g.setPostDate(p.post_date),m=zl(p.title),v=Dl(m,568),y=zl(p.description),b=Dl(y,940),v<100?f(""):An()(c)&&f($l()(p.title,{length:Math.ceil(100*p.title.length/v),separator:"..."})),b<100?h(""):An()(d)&&h($l()(p.description,{length:Math.ceil(100*p.description.length/b),separator:"..."}));case 22:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(r,o){var a=e.apply(t,n);function i(e){Ql(a,r,o,i,s,"next",e)}function s(e){Ql(a,r,o,i,s,"throw",e)}i(void 0)}))});return function(e,n){return t.apply(this,arguments)}}(),400),[]);(0,e.useEffect)((function(){var e=new AbortController;return g.setTitle(n),g.setDescription(r),x({title:n,description:r},e),function(){e.abort()}}),[n,r]);var E=Number(i);return e.createElement(e.Fragment,null,e.createElement("div",{style:{color:"#1d2327",fontSize:"1.3em",marginTop:0,marginBottom:"1em",fontFamily:"var(--fontFamily)",textTransform:"none",fontWeight:"bold"}},Jl("Google Snippet Preview","wp-seopress"),e.createElement(Ul,{title:Jl("Snippet Preview","wp-seopress"),description:e.createElement(e.Fragment,null,Jl("The Google preview is a simulation.","wp-seopress")," ",e.createElement("br",null)," ",Jl("There is no reliable preview because it depends on the screen resolution, the device used, the expression sought, and Google.","wp-seopress")," ",e.createElement("br",null)," ",Jl("There is not one snippet for one URL but several.","wp-seopress")," ",e.createElement("br",null)," ",Jl("All the data in this overview comes directly from your source code.","wp-seopress")," ",e.createElement("br",null)," ",Jl("This is what the crawlers will see.","wp-seopress"))})),e.createElement("p",null,Jl("This is what your page will look like in Google search results. You have to publish your post to get the Google Snippet Preview. Note that Google may optionally display an image of your article.","wp-seopress")),e.createElement("label",{htmlFor:"toggle-preview",className:"flex items-center",style:{marginBottom:10},onClick:function(){s(0===E?1:0)}},e.createElement("span",{className:"dashicons dashicons-smartphone"}),e.createElement("strong",null,Jl("Mobile Preview","wp-seopress")),e.createElement(ql,{selected:1===E,style:{marginLeft:5},tabIndex:"0",onKeyUp:function(e){13===e.keyCode&&(e.preventDefault(),s(0===E?1:0))}})),0===E&&e.createElement(e.Fragment,null,e.createElement("div",{style:{color:"#1a0dab",fontSize:"18px",lineHeight:"21.6px"}},y()),e.createElement("div",{style:{color:"#006621",fontSize:14}},Z()(l,"permalink.value")),e.createElement("div",{style:{color:"#545454",fontSize:"14px",fontWeight:400,lineHeight:"18.2px"}},w(),b())),1===E&&e.createElement(e.Fragment,null,e.createElement("div",{style:{margin:"0 0 10px 0",boxShadow:"0 1px 6px rgb(32 33 36 / 28%)",borderRadius:"8px",padding:"12px 16px"}},e.createElement("div",{style:{display:"flex",alignItems:"center",marginBottom:16}},e.createElement("img",{src:An()(Z()(SEOPRESS_DATA,"FAVICON",""))?"https://s2.googleusercontent.com/s2/favicons?domain_url=".concat(Z()(l,"permalink.value"),"&sz=32"):Z()(SEOPRESS_DATA,"FAVICON",""),loading:"lazy",width:16,height:16,"aria-hidden":!0,alt:"Favicon",style:{marginRight:10}}),Z()(l,"permalink.value")),e.createElement("div",{style:{color:"#1a0dab",fontSize:"18px",lineHeight:"21.6px",marginBottom:12}},y()),e.createElement("div",{style:{display:"flex",justifyContent:"space-between"}},e.createElement("div",{style:{color:"#545454",fontSize:"14px",fontWeight:400,lineHeight:"18.2px",marginRight:"8px"}},w(),b()),function(){if(!An()(v.post_thumbnail))return e.createElement("div",{style:{marginLeft:"8px",display:"block"}},e.createElement("img",{src:v.post_thumbnail,width:104,height:104,"aria-hidden":!0,alt:"Post thumbnail",style:{maxWidth:"inherit",borderRadius:"8px"}}))}()))))};var eu=function(e){var t=e.postId;return"".concat(SEOPRESS_DATA.REST_URL,"seopress/v1/posts/").concat(t,"/title-description-metas")};const tu=function(e){var t=e.postId;return oo(eu({postId:t}),{suspense:!0})};function nu(e,t,n,r,o,a,i){try{var s=e[a](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}var ru=function(){var e,t=(e=regeneratorRuntime.mark((function e(t,n){var r;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,fetch(eu({postId:t}),{method:"PUT",headers:{"Content-Type":"application/json","X-WP-Nonce":Z()(SEOPRESS_DATA,"NONCE",null)},body:JSON.stringify(n)});case 2:return r=e.sent,e.next=5,r.json();case 5:return e.abrupt("return",e.sent);case 6:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(r,o){var a=e.apply(t,n);function i(e){nu(a,r,o,i,s,"next",e)}function s(e){nu(a,r,o,i,s,"throw",e)}i(void 0)}))});return function(e,n){return t.apply(this,arguments)}}(),ou=["values"];function au(){return au=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},au.apply(this,arguments)}function iu(e,t,n,r,o,a,i){try{var s=e[a](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function su(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 lu=wp.i18n.__;const uu=function(t){var n=t.mainBarRef,r=eo(),o=tu({postId:r}),a=o.data,i=o.mutate,s=o.abort;(0,e.useEffect)((function(){return function(){s()}}));var l,u,c=(l=(0,e.useState)(!1),u=2,function(e){if(Array.isArray(e))return e}(l)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,a=[],i=!0,s=!1;try{for(n=n.call(e);!(i=(r=n.next()).done)&&(a.push(r.value),!t||a.length!==t);i=!0);}catch(e){s=!0,o=e}finally{try{i||null==n.return||n.return()}finally{if(s)throw o}}return a}}(l,u)||function(e,t){if(e){if("string"==typeof e)return su(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?su(e,t):void 0}}(l,u)||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.")}()),f=c[0],p=c[1],d=(0,e.useContext)(Rn).actions,h=function(){var e,t=(e=regeneratorRuntime.mark((function e(t){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return p(!0),e.next=3,ru(r,t);case 3:e.sent,i(),p(!1),d.setMessage(lu("Your settings have been saved.","wp-seopress"));case 7:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(r,o){var a=e.apply(t,n);function i(e){iu(a,r,o,i,s,"next",e)}function s(e){iu(a,r,o,i,s,"throw",e)}i(void 0)}))});return function(e){return t.apply(this,arguments)}}();return e.createElement(e.Fragment,null,e.createElement(Yi,{enableReinitialize:!0,onSubmit:h,initialValues:{title:Z()(a,"title",""),description:Z()(a,"description","")}},(function(t){var o=t.values,a=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,ou);return e.createElement(e.Fragment,null,e.createElement("div",{tabIndex:"0",className:"flex",style:{gap:32},ref:n},e.createElement("div",{className:"w-6/12"},e.createElement(Wl,au({values:o,loading:f,handleOnSubmit:function(){return h(o)}},a))),e.createElement("div",{className:"w-6/12"},e.createElement(Zl,{postId:r,title:Z()(o,"title",""),description:Z()(o,"description","")}))))})))};var cu=o(6604),fu=o.n(cu),pu=o(4350),du=o.n(pu),hu=function(e){var t=e.postId;return"".concat(SEOPRESS_DATA.REST_URL,"seopress/v1/posts/").concat(t,"/social-settings")};function mu(e,t,n,r,o,a,i){try{var s=e[a](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}var vu=function(){var e,t=(e=regeneratorRuntime.mark((function e(t,n){var r;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,fetch(hu({postId:t}),{method:"PUT",headers:{"Content-Type":"application/json","X-WP-Nonce":Z()(SEOPRESS_DATA,"NONCE",null)},body:JSON.stringify(n)});case 2:return r=e.sent,e.next=5,r.json();case 5:return e.abrupt("return",e.sent);case 6:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(r,o){var a=e.apply(t,n);function i(e){mu(a,r,o,i,s,"next",e)}function s(e){mu(a,r,o,i,s,"throw",e)}i(void 0)}))});return function(e,n){return t.apply(this,arguments)}}(),gu=Dt.input.withConfig({componentId:"sc-dkrxdi-0"})(["&&&{border:1px solid #8c8f94;border-radius:4px;background:#fff;color:#50575e;clear:none;cursor:pointer;display:inline-block;line-height:0;height:1rem;margin:-0.25rem 0.25rem 0 0;outline:0;padding:0 !important;text-align:center;vertical-align:middle;width:1rem;min-width:1rem;-webkit-appearance:none;box-shadow:inset 0 1px 2px rgb(0 0 0 / 10%);transition:0.05s border-color ease-in-out;font-family:var(--fontFamily);&:checked{&:before{content:url(data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%233582c4%27%2F%3E%3C%2Fsvg%3E);margin:-0.1875rem 0 0 -0.25rem;height:1.3125rem;width:1.3125rem;float:left;display:inline-block;vertical-align:middle;speak:never;-webkit-font-smoothing:antialiased;}&:after{content:none;}}&:after{content:none;}&:disabled{&:after{content:none;}&:before{opacity:0.7;}}}"]);const yu=Dt(ps).withConfig({componentId:"sc-dkrxdi-1"})(["&&&{border:1px solid #8c8f94;border-radius:4px;background:#fff;color:#50575e;clear:none;cursor:pointer;display:inline-block;line-height:0;height:1rem;margin:-0.25rem 0.25rem 0 0;outline:0;padding:0 !important;text-align:center;vertical-align:middle;width:1rem;min-width:1rem;-webkit-appearance:none;box-shadow:inset 0 1px 2px rgb(0 0 0 / 10%);transition:0.05s border-color ease-in-out;font-family:var(--fontFamily);&:checked{&:before{content:url(data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%233582c4%27%2F%3E%3C%2Fsvg%3E);margin:-0.1875rem 0 0 -0.25rem;height:1.3125rem;width:1.3125rem;float:left;display:inline-block;vertical-align:middle;speak:never;-webkit-font-smoothing:antialiased;}&:after{content:none;}}&:after{content:none;}&:disabled{&:after{content:none;}&:before{opacity:0.7;}}}"]);var bu=["name","id","value"];function wu(){return wu=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},wu.apply(this,arguments)}const xu=function(t){var n=t.name,r=t.id,o=t.value,a=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,bu);return e.createElement(yu,wu({name:n,id:r,type:"checkbox",value:o},a))};var Eu=wp.i18n.__;const Su=function(t){var n=t.name,r=t.id,o=t.value,a=t.setFieldValue,i=t.placeholder,s=void 0===i?"":i,l=t.emptyIcon,u=void 0!==l&&l,c=t.combinedValuesForm;return e.createElement("div",{className:"flex items-center justify-content"},e.createElement(Es,{name:n,id:r,type:"text",emptyIcon:u,setFieldValue:a,value:o,placeholder:s}),e.createElement("input",{type:"hidden",name:"".concat(n,"_attachment_id"),value:Z()(c,"".concat(n,"_attachment_id"),"")}),e.createElement("input",{type:"hidden",name:"".concat(n,"_width"),value:Z()(c,"".concat(n,"_width"),"")}),e.createElement("input",{type:"hidden",name:"".concat(n,"_height"),value:Z()(c,"".concat(n,"_height"),"")}),e.createElement(Ao,{onClick:function(e){e.preventDefault();var t=wp.media.frames.file_frame=wp.media({multiple:!1});t.on("select",(function(){var e=t.state().get("selection").first().toJSON();a(n,e.url),a("".concat(n,"_attachment_id"),e.id),a("".concat(n,"_width"),e.width),a("".concat(n,"_height"),e.height)})),t.open()},className:"ms-2"},Eu("Choose an image","wp-seopress")))};var ku=Dt.select.withConfig({componentId:"sc-gds3ax-0"})(["&&&{line-height:2;color:#2c3338;border-color:#8c8f94;box-shadow:none;border-radius:3px;border:1px solid #8c8f94;font-size:var(--fontSize);font-family:var(--fontFamily);padding:0 24px 0 8px;min-height:30px;max-width:25rem;-webkit-appearance:none;background:#fff url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E) no-repeat right 5px top 55%;background-size:16px 16px;cursor:pointer;vertical-align:middle;@media only screen and (max-width:600px){max-width:100%;width:100%;}&:focus{border-color:#2271b1;color:#0a4b78;box-shadow:0 0 0 1px #2271b1;outline:none;}}"]);const _u=Dt(ps).withConfig({componentId:"sc-gds3ax-1"})(["&&&{line-height:2;color:#2c3338;border-color:#8c8f94;box-shadow:none;border-radius:3px;border:1px solid #8c8f94;font-size:var(--fontSize);font-family:var(--fontFamily);padding:0 24px 0 8px;min-height:30px;max-width:25rem;-webkit-appearance:none;background:#fff url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E) no-repeat right 5px top 55%;background-size:16px 16px;cursor:pointer;vertical-align:middle;@media only screen and (max-width:600px){max-width:100%;width:100%;}&:focus{border-color:#2271b1;color:#0a4b78;box-shadow:0 0 0 1px #2271b1;outline:none;}}"]);var Ou=["name","id","value","options"];function Cu(){return Cu=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Cu.apply(this,arguments)}const Pu=function(t){var n=t.name,r=t.id,o=t.value,a=t.options,i=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,Ou);return e.createElement(_u,Cu({},i,{name:n,id:r,value:o,as:"select",onChange:i.handleChange}),a.map((function(t,r){return e.createElement("option",{value:t.value,key:"".concat(n,"_").concat(r)},t.label)})))},ju=Dt.div.withConfig({componentId:"sc-1lzall7-0"})(["&&&{background:#fff;border:1px solid #c3c4c7;border-width:1px 1px 1px 4px;border-style:solid;box-shadow:0 1px 1px rgb(0 0 0 / 4%);margin:0 0 15px 0;padding:5px 12px;border-left-color:#d63638;}"]),Au=Dt.div.withConfig({componentId:"sc-1pehaa1-0"})(["&&&{background:#fff;border:1px solid #c3c4c7;border-width:1px 1px 1px 4px;border-style:solid;box-shadow:0 1px 1px rgb(0 0 0 / 4%);margin:0 0 15px 0;padding:5px 12px;border-left-color:#72aee6;}"]);function Iu(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,a=[],i=!0,s=!1;try{for(n=n.call(e);!(i=(r=n.next()).done)&&(a.push(r.value),!t||a.length!==t);i=!0);}catch(e){s=!0,o=e}finally{try{i||null==n.return||n.return()}finally{if(s)throw o}}return a}}(e,t)||function(e,t){if(e){if("string"==typeof e)return Tu(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Tu(e,t):void 0}}(e,t)||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 Tu(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 Ru=wp.i18n.__,Nu=Dt.div.withConfig({componentId:"sc-qj6j9q-0"})(["&&&{img{display:block;height:274px;width:524px;object-fit:cover;background-color:#f0f0f0;text-align:center;border-bottom:none;}@media only screen and (max-width:600px){width:100%;}}"]),Mu=Dt.div.withConfig({componentId:"sc-qj6j9q-1"})(["&&&{border:1px solid #dadde1;background-color:#f2f3f5;padding:10px 12px;color:#4b4f56;font-size:14px;width:524px;box-sizing:border-box;@media only screen and (max-width:600px){width:100%;}.sp-meta{display:flex;overflow:hidden;max-height:12px;}.sp-title{font-size:16px;line-height:20px;margin:3px 0 0;padding-top:2px;color:#1d2129;font-weight:700;overflow:hidden;text-overflow:ellipsis;white-space:normal;word-break:break-word;max-height:22px;}.sp-description{line-height:20px;word-break:break-word;font-family:Helvetica,Arial,sans-serif;max-height:80px;overflow:hidden;text-overflow:ellipsis;white-space:normal;width:100%;}}"]),Fu=Dt.div.withConfig({componentId:"sc-qj6j9q-2"})(["&&&{border-radius:10px 10px 0 0;img{border-radius:10px 10px 0 0;display:block;height:200px;width:436px;object-fit:cover;background-color:#f0f0f0;text-align:center;border-bottom:none;}@media only screen and (max-width:600px){width:100%;}}"]),Lu=Dt.div.withConfig({componentId:"sc-qj6j9q-3"})(["&&&{border:1px solid #dadde1;background-color:#fff;padding:10px 12px;border-radius:0 0 10px 10px;color:#4b4f56;font-size:14px;width:436px;box-sizing:border-box;@media only screen and (max-width:600px){width:100%;}.sp-title{font-size:1em;line-height:20px;margin-bottom:5px;max-height:1.3em;color:#000;font-weight:700;overflow:hidden;text-overflow:ellipsis;white-space:normal;word-break:break-word;}.sp-description{color:#000;font-size:14px;line-height:20px;word-break:break-word;font-family:Helvetica,Arial,sans-serif;max-height:80px;overflow:hidden;text-overflow:ellipsis;white-space:normal;width:100%;}}"]),Du=Dt.div.withConfig({componentId:"sc-qj6j9q-4"})(["&&&{color:#1d2327;font-size:1.3em;margin:20px 0;font-weight:bold;}"]),zu=function(e,t){return(e/t).toFixed(2)},Uu=function(e){var t=e.split(/\#|\?/)[0].split(".").pop().trim();return["jpg","jpeg","gif","png","webp"].indexOf(t)>=0},Vu=function(e,t){var n=t.width,r=t.height;return"facebook"===e?n>=200&&r>=200:n>=144&&r>=144};const Bu=function(t){var n=t.values,r=t.placeholders,o=Iu((0,e.useState)(null),2),a=o[0],i=o[1],s=Iu((0,e.useState)(null),2),l=s[0],u=s[1],c=Iu((0,e.useState)(null),2),f=c[0],p=c[1],d=Iu((0,e.useState)(null),2),h=d[0],m=d[1],v=Iu((0,e.useState)(null),2),g=v[0],y=v[1],b=Iu((0,e.useState)(null),2),w=b[0],x=b[1],E=Iu((0,e.useState)(!1),2),S=E[0],k=E[1],_=Iu((0,e.useState)(!1),2),O=_[0],C=_[1],P=Z()(n,"_seopress_social_fb_img","");An()(P)&&(P=$t()(r,{key:"_seopress_social_fb_img"}).placeholder);var j=Z()(n,"_seopress_social_fb_title","");An()(j)&&(j=$t()(r,{key:"_seopress_social_fb_title"}).placeholder);var A=Z()(n,"_seopress_social_fb_desc","");An()(A)&&(A=$t()(r,{key:"_seopress_social_fb_desc"}).placeholder);var I=Z()(n,"_seopress_social_twitter_img","");An()(I)&&(I=$t()(r,{key:"_seopress_social_twitter_img"}).placeholder);var T=Z()(n,"_seopress_social_twitter_title","");An()(T)&&(T=$t()(r,{key:"_seopress_social_twitter_title"}).placeholder);var R=Z()(n,"_seopress_social_twitter_desc","");An()(R)&&(R=$t()(r,{key:"_seopress_social_twitter_desc"}).placeholder),(0,e.useEffect)((function(){u(null),m(null),x(null)}),[I]),(0,e.useEffect)((function(){i(null),p(null),y(null)}),[P]);var N="";try{N=new URL(Z()(SEOPRESS_DATA,"SITEURL"))}catch(e){}return e.createElement(e.Fragment,null,e.createElement(Du,null,Ru("Facebook Preview","wp-seopress")),e.createElement("p",null,Ru("This is what your post will look like in Facebook. You have to publish your post to get the Facebook Preview.","wp-seopress")),!Wt()(a)&&e.createElement(Au,null,Ru("Your image ratio is:","wp-seopress")," ",e.createElement("strong",null,a),". ",Ru("The closer to 1.91 the better.","wp-seopress")),!Wt()(g)&&!g&&e.createElement(ju,{dangerouslySetInnerHTML:{__html:Ru("Minimun size for Facebook is <strong>200x200px</strong>. Please choose another image.","wp-seopress")}}),!Wt()(f)&&!f&&e.createElement(ju,null,Ru("File type not supported by Facebook. Please choose another image.","wp-seopress")," "),P&&S&&e.createElement(ju,null,Ru("File error. Please choose another image.","wp-seopress")," "),e.createElement(Nu,null,!P&&e.createElement(ju,null,Ru("Please choose an image","wp-seopress")),P&&e.createElement("img",{src:P,width:"524",height:"274",onLoad:function(e){var t=e.target,n=t.naturalWidth,r=t.naturalHeight;k(!1),i(zu(n,r)),p(Uu(t.src)),y(Vu("facebook",{width:n,height:r}))},onError:function(){return k(!0)}})),e.createElement(Mu,null,e.createElement("div",{style:{color:"#606770",fontSize:"12px",lineHeight:"11px",textTransform:"uppercase",textOverflow:"ellipsis"}},Z()(N,"hostname","")," | By ",SEOPRESS_DATA.SITENAME),e.createElement("div",{className:"sp-title"},j),e.createElement("div",{className:"sp-description"},A)),e.createElement(Du,null,Ru("Twitter Preview","wp-seopress")),e.createElement("p",null,Ru("This is what your post will look like in Twitter. You have to publish your post to get the Twitter Preview.","wp-seopress")),!Wt()(l)&&e.createElement(Au,null,Ru("Your image ratio is:","wp-seopress")," ",e.createElement("strong",null,l),". ",Ru("The closer to 1 the better (with large card, 2 is better).","wp-seopress")),!Wt()(w)&&!w&&e.createElement(ju,{dangerouslySetInnerHTML:{__html:Ru("Minimun size for Twitter is <strong>144x144px</strong>. Please choose another image.","wp-seopress")}}),!Wt()(h)&&!h&&e.createElement(ju,null,Ru("File type not supported by Twitter. Please choose another image.","wp-seopress")," "),I&&O&&e.createElement(ju,null,Ru("File error. Please choose another image.","wp-seopress")," "),e.createElement(Fu,null,!I&&e.createElement(ju,null,Ru("Please choose an image","wp-seopress")),I&&e.createElement("img",{src:I,width:"524",height:"274",onLoad:function(e){var t=e.target,n=t.naturalWidth,r=t.naturalHeight;C(!1),u(zu(n,r)),m(Uu(t.src)),x(Vu("twitter",{width:n,height:r}))}})),e.createElement(Lu,null,e.createElement("div",{className:"sp-title"},T),e.createElement("div",{className:"sp-description"},R),e.createElement("div",{style:{color:"#8899a6",fontSize:"14px",lineHeight:"11px",textTransform:"uppercase",textOverflow:"ellipsis",marginTop:5}},Z()(N,"hostname",""))))};var Wu=["htmlFor","className","children"];function Hu(){return Hu=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Hu.apply(this,arguments)}var $u=Dt.label.withConfig({componentId:"sc-243cxa-0"})(["&&&{display:table;margin:1em 0em;font-size:1em;font-weight:var(--fontWeight);div{display:flex;align-items:center;}&:hover{cursor:pointer;}}"]);const Gu=function(t){var n=t.htmlFor,r=t.className,o=t.children,a=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,Wu);return e.createElement($u,Hu({htmlFor:n,className:ks()(r)},a),e.createElement("div",null,o))};var Yu=["name","id","value"];const qu=function(t){var n=t.name,r=t.id,o=t.value,a=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,Yu),i=(0,e.useRef)();return(0,e.useEffect)((function(){return jQuery(i.current).datepicker({onSelect:function(e){return a.setFieldValue(n,e)},defaultDate:o,dateFormat:"yy-mm-dd",beforeShow:function(e,t){jQuery("#ui-datepicker-div").addClass("seopress-ui-datepicker")}}),function(){jQuery(i.current).datepicker("destroy")}}),[]),e.createElement("input",{type:"text",ref:i,name:n,id:r,value:o,className:"form-input-date",onChange:function(e){a.setFieldValue(n,e.target.value)}})};var Qu=["name","id","value"];function Xu(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Ku(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Xu(Object(n),!0).forEach((function(t){Ju(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Xu(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Ju(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Zu=wp.i18n.__,ec=["monday","tuesday","wednesday","thursday","friday","saturday","sunday"],tc=["00","01","02","03","04","05","06","07","08","09","10","11","12","13","14","15","16","17","18","19","20","21","22","23"],nc=["00","15","30","45","59"],rc=function(t){var n=t.name,r=t.currentValue,o=t.legacyValue,a=t.setFieldValue,i=t.index,s=t.day,l=function(e,t){a(n,Ku(Ku({},r),{},{seopress_local_business_opening_hours:r.seopress_local_business_opening_hours.map((function(n,r){return r!==i?n:Ku(Ku({},n),{},{am:Ku(Ku({},n.am),{},Ju({},t,Ku(Ku({},n.am[t]),{},{hours:e})))})}))}))},u=function(e,t){a(n,Ku(Ku({},r),{},{seopress_local_business_opening_hours:r.seopress_local_business_opening_hours.map((function(n,r){return r!==i?n:Ku(Ku({},n),{},{am:Ku(Ku({},n.am),{},Ju({},t,Ku(Ku({},n.am[t]),{},{mins:e})))})}))}))};return e.createElement("div",{className:"flex items-center",style:{marginBottom:8}},e.createElement(gu,{type:"checkbox",value:"1",checked:Z()(o,[i,"am","open"]),onChange:function(e){return t=e.target.checked,void a(n,Ku(Ku({},r),{},{seopress_local_business_opening_hours:r.seopress_local_business_opening_hours.map((function(e,n){return n!==i?e:Ku(Ku({},e),{},{am:Ku(Ku({},e.am),{},{open:t?"1":""})})}))}));var t}}),e.createElement("span",{style:{minWidth:"14%"}},Zu("Open in the morning?","wp-seopress")),e.createElement(ku,{name:"".concat(n,"[seopress_local_business_opening_hours][").concat(i,"][am][start][hours]"),value:Z()(o,[i,"am","start","hours"]),style:{marginLeft:10},onChange:function(e){l(e.target.value,"start")}},tc.map((function(t){return e.createElement("option",{key:"day_".concat(s,"_hour_am_start_").concat(t),value:t},t)}))),e.createElement("span",{style:{marginLeft:5,marginRight:5}},":"),e.createElement(ku,{style:{marginRight:10},onChange:function(e){u(e.target.value,"start")},name:"".concat(n,"[seopress_local_business_opening_hours][").concat(i,"][am][start][mins]"),value:Z()(o,[i,"am","start","mins"])},nc.map((function(t){return e.createElement("option",{key:"day_".concat(s,"_min_am_start_").concat(t),value:t},t)}))),"-",e.createElement(ku,{name:"".concat(n,"[seopress_local_business_opening_hours][").concat(i,"][am][end][hours]"),style:{marginLeft:10},value:Z()(o,[i,"am","end","hours"]),onChange:function(e){l(e.target.value,"end")}},tc.map((function(t){return e.createElement("option",{key:"day_".concat(s,"_hour_am_end_").concat(t),value:t},t)}))),e.createElement("span",{style:{marginLeft:5,marginRight:5}},":"),e.createElement(ku,{name:"".concat(n,"[seopress_local_business_opening_hours][").concat(i,"][am][end][mins]"),value:Z()(o,[i,"am","end","mins"]),onChange:function(e){u(e.target.value,"end")}},nc.map((function(t){return e.createElement("option",{key:"day_".concat(s,"_min_am_end_").concat(t),value:t},t)}))))},oc=function(t){var n=t.name,r=t.currentValue,o=t.legacyValue,a=t.setFieldValue,i=t.index,s=t.day,l=function(e,t){a(n,Ku(Ku({},r),{},{seopress_local_business_opening_hours:r.seopress_local_business_opening_hours.map((function(n,r){return r!==i?n:Ku(Ku({},n),{},{pm:Ku(Ku({},n.pm),{},Ju({},t,Ku(Ku({},n.pm[t]),{},{hours:e})))})}))}))},u=function(e,t){a(n,Ku(Ku({},r),{},{seopress_local_business_opening_hours:r.seopress_local_business_opening_hours.map((function(n,r){return r!==i?n:Ku(Ku({},n),{},{pm:Ku(Ku({},n.pm),{},Ju({},t,Ku(Ku({},n.pm[t]),{},{mins:e})))})}))}))};return e.createElement("div",{className:"flex items-center",style:{marginBottom:8}},e.createElement(gu,{type:"checkbox",value:"1",checked:Z()(o,[i,"pm","open"]),onChange:function(e){return t=e.target.checked,void a(n,Ku(Ku({},r),{},{seopress_local_business_opening_hours:r.seopress_local_business_opening_hours.map((function(e,n){return n!==i?e:Ku(Ku({},e),{},{pm:Ku(Ku({},e.pm),{},{open:t?"1":""})})}))}));var t}}),e.createElement("span",{style:{minWidth:"14%"}},Zu("Open in the afternoon?","wp-seopress")),e.createElement(ku,{name:"".concat(n,"[seopress_local_business_opening_hours][").concat(i,"][pm][start][hours]"),value:Z()(o,[i,"pm","start","hours"]),style:{marginLeft:10},onChange:function(e){l(e.target.value,"start")}},tc.map((function(t){return e.createElement("option",{key:"day_".concat(s,"_hour_am_start_").concat(t),value:t},t)}))),e.createElement("span",{style:{marginLeft:5,marginRight:5}},":"),e.createElement(ku,{style:{marginRight:10},onChange:function(e){u(e.target.value,"start")},name:"".concat(n,"[seopress_local_business_opening_hours][").concat(i,"][pm][start][hours]"),value:Z()(o,[i,"pm","start","mins"])},nc.map((function(t){return e.createElement("option",{key:"day_".concat(s,"_min_am_start_").concat(t),value:t},t)}))),"-",e.createElement(ku,{name:"".concat(n,"[seopress_local_business_opening_hours][").concat(i,"][pm][end][hours]"),style:{marginLeft:10},value:Z()(o,[i,"pm","end","hours"]),onChange:function(e){l(e.target.value,"end")}},tc.map((function(t){return e.createElement("option",{key:"day_".concat(s,"_hour_am_end_").concat(t),value:t},t)}))),e.createElement("span",{style:{marginLeft:5,marginRight:5}},":"),e.createElement(ku,{name:"".concat(n,"[seopress_local_business_opening_hours][").concat(i,"][pm][end][mins]"),value:Z()(o,[i,"pm","end","mins"]),onChange:function(e){u(e.target.value,"end")}},nc.map((function(t){return e.createElement("option",{key:"day_".concat(s,"_min_am_end_").concat(t),value:t},t)}))))};const ac=function(t){var n=t.name,r=(t.id,t.value),o=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,Qu),a=function(e){return An()(e)||Wt()(e)?{seopress_local_business_opening_hours:[{am:{start:{hours:"00",mins:"00"},end:{hours:"00",mins:"00"}},pm:{start:{hours:"00",mins:"00"},end:{hours:"00",mins:"00"}}},{am:{start:{hours:"00",mins:"00"},end:{hours:"00",mins:"00"}},pm:{start:{hours:"00",mins:"00"},end:{hours:"00",mins:"00"}}},{am:{start:{hours:"00",mins:"00"},end:{hours:"00",mins:"00"}},pm:{start:{hours:"00",mins:"00"},end:{hours:"00",mins:"00"}}},{am:{start:{hours:"00",mins:"00"},end:{hours:"00",mins:"00"}},pm:{start:{hours:"00",mins:"00"},end:{hours:"00",mins:"00"}}},{am:{start:{hours:"00",mins:"00"},end:{hours:"00",mins:"00"}},pm:{start:{hours:"00",mins:"00"},end:{hours:"00",mins:"00"}}},{am:{start:{hours:"00",mins:"00"},end:{hours:"00",mins:"00"}},pm:{start:{hours:"00",mins:"00"},end:{hours:"00",mins:"00"}}},{am:{start:{hours:"00",mins:"00"},end:{hours:"00",mins:"00"}},pm:{start:{hours:"00",mins:"00"},end:{hours:"00",mins:"00"}}}]}:e}(r),i=Z()(a,"seopress_local_business_opening_hours");return e.createElement(e.Fragment,null,ec.map((function(t,r){return e.createElement("div",{key:"day_".concat(t)},e.createElement("p",null,t.toUpperCase()),e.createElement("div",{style:{marginBottom:4}},e.createElement(gu,{type:"checkbox",value:"1",checked:Z()(i,[r,"open"]),onChange:function(e){o.setFieldValue(n,Ku(Ku({},a),{},{seopress_local_business_opening_hours:a.seopress_local_business_opening_hours.map((function(t,n){return n!==r?t:Ku(Ku({},t),{},{open:e.target.checked?"1":""})}))}))}}),"Closed all the day?"),e.createElement(rc,{name:n,day:t,currentValue:a,legacyValue:i,setFieldValue:o.setFieldValue,index:r}),e.createElement(oc,{name:n,day:t,currentValue:a,legacyValue:i,setFieldValue:o.setFieldValue,index:r}))})))};function ic(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function sc(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function lc(e,t,n){return t&&sc(e.prototype,t),n&&sc(e,n),e}function uc(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function cc(){return cc=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},cc.apply(this,arguments)}function fc(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function pc(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?fc(Object(n),!0).forEach((function(t){uc(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):fc(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function dc(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&&mc(e,t)}function hc(e){return hc=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},hc(e)}function mc(e,t){return mc=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},mc(e,t)}function vc(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function gc(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function yc(e,t){return!t||"object"!=typeof t&&"function"!=typeof t?gc(e):t}function bc(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 Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,r=hc(e);if(t){var o=hc(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return yc(this,n)}}function wc(e,t){if(e){if("string"==typeof e)return xc(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?xc(e,t):void 0}}function xc(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 Ec=function e(t){var n=this,r=t.expanded,o=void 0===r?[]:r,a=t.allowMultipleExpanded,i=void 0!==a&&a,s=t.allowZeroExpanded,l=void 0!==s&&s;ic(this,e),uc(this,"expanded",void 0),uc(this,"allowMultipleExpanded",void 0),uc(this,"allowZeroExpanded",void 0),uc(this,"toggleExpanded",(function(e){return n.isItemDisabled(e)?n:n.isItemExpanded(e)?n.augment({expanded:n.expanded.filter((function(t){return t!==e}))}):n.augment({expanded:n.allowMultipleExpanded?[].concat((t=n.expanded,function(e){if(Array.isArray(e))return xc(e)}(t)||function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}(t)||wc(t)||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]):[e]});var t})),uc(this,"isItemDisabled",(function(e){var t=n.isItemExpanded(e),r=1===n.expanded.length;return Boolean(t&&!n.allowZeroExpanded&&r)})),uc(this,"isItemExpanded",(function(e){return-1!==n.expanded.indexOf(e)})),uc(this,"getPanelAttributes",(function(e,t){var r=null!=t?t:n.isItemExpanded(e);return{role:n.allowMultipleExpanded?void 0:"region","aria-hidden":n.allowMultipleExpanded?!r:void 0,"aria-labelledby":n.getButtonId(e),id:n.getPanelId(e),hidden:!r||void 0}})),uc(this,"getHeadingAttributes",(function(){return{role:"heading"}})),uc(this,"getButtonAttributes",(function(e,t){var r=null!=t?t:n.isItemExpanded(e),o=n.isItemDisabled(e);return{id:n.getButtonId(e),"aria-disabled":o,"aria-expanded":r,"aria-controls":n.getPanelId(e),role:"button",tabIndex:0}})),uc(this,"getPanelId",(function(e){return"accordion__panel-".concat(e)})),uc(this,"getButtonId",(function(e){return"accordion__heading-".concat(e)})),uc(this,"augment",(function(t){return new e(pc({expanded:n.expanded,allowMultipleExpanded:n.allowMultipleExpanded,allowZeroExpanded:n.allowZeroExpanded},t))})),this.expanded=o,this.allowMultipleExpanded=i,this.allowZeroExpanded=l},Sc=(0,e.createContext)(null),kc=function(t){dc(r,t);var n=bc(r);function r(){var e;ic(this,r);for(var t=arguments.length,o=new Array(t),a=0;a<t;a++)o[a]=arguments[a];return uc(gc(e=n.call.apply(n,[this].concat(o))),"state",new Ec({expanded:e.props.preExpanded,allowMultipleExpanded:e.props.allowMultipleExpanded,allowZeroExpanded:e.props.allowZeroExpanded})),uc(gc(e),"toggleExpanded",(function(t){e.setState((function(e){return e.toggleExpanded(t)}),(function(){e.props.onChange&&e.props.onChange(e.state.expanded)}))})),uc(gc(e),"isItemDisabled",(function(t){return e.state.isItemDisabled(t)})),uc(gc(e),"isItemExpanded",(function(t){return e.state.isItemExpanded(t)})),uc(gc(e),"getPanelAttributes",(function(t,n){return e.state.getPanelAttributes(t,n)})),uc(gc(e),"getHeadingAttributes",(function(){return e.state.getHeadingAttributes()})),uc(gc(e),"getButtonAttributes",(function(t,n){return e.state.getButtonAttributes(t,n)})),e}return lc(r,[{key:"render",value:function(){var t=this.state,n=t.allowZeroExpanded,r=t.allowMultipleExpanded;return(0,e.createElement)(Sc.Provider,{value:{allowMultipleExpanded:r,allowZeroExpanded:n,toggleExpanded:this.toggleExpanded,isItemDisabled:this.isItemDisabled,isItemExpanded:this.isItemExpanded,getPanelAttributes:this.getPanelAttributes,getHeadingAttributes:this.getHeadingAttributes,getButtonAttributes:this.getButtonAttributes}},this.props.children||null)}}]),r}(e.PureComponent);uc(kc,"defaultProps",{allowMultipleExpanded:!1,allowZeroExpanded:!1});var _c,Oc=function(t){dc(r,t);var n=bc(r);function r(){var e;ic(this,r);for(var t=arguments.length,o=new Array(t),a=0;a<t;a++)o[a]=arguments[a];return uc(gc(e=n.call.apply(n,[this].concat(o))),"renderChildren",(function(t){return t?e.props.children(t):null})),e}return lc(r,[{key:"render",value:function(){return(0,e.createElement)(Sc.Consumer,null,this.renderChildren)}}]),r}(e.PureComponent),Cc=function(t){var n=t.className,r=void 0===n?"accordion":n,o=t.allowMultipleExpanded,a=t.allowZeroExpanded,i=t.onChange,s=t.preExpanded,l=vc(t,["className","allowMultipleExpanded","allowZeroExpanded","onChange","preExpanded"]);return(0,e.createElement)(kc,{preExpanded:s,allowMultipleExpanded:o,allowZeroExpanded:a,onChange:i},(0,e.createElement)("div",cc({"data-accordion-component":"Accordion",className:r},l)))};!function(e){e.Accordion="Accordion",e.AccordionItem="AccordionItem",e.AccordionItemButton="AccordionItemButton",e.AccordionItemHeading="AccordionItemHeading",e.AccordionItemPanel="AccordionItemPanel"}(_c||(_c={}));var Pc=_c,jc=0,Ac=/[\u0009\u000a\u000c\u000d\u0020]/g;function Ic(e){return""!==e&&!Ac.test(e)||(console.error('uuid must be a valid HTML5 id but was given "'.concat(e,'", ASCII whitespaces are forbidden')),!1)}var Tc=(0,e.createContext)(null),Rc=function(t){var n=t.children,r=t.uuid,o=t.accordionContext,a=t.dangerouslySetExpanded,i=function(){o.toggleExpanded(r)},s=function(t){var o=null!=a?a:t.isItemExpanded(r),s=t.isItemDisabled(r),l=t.getPanelAttributes(r,a),u=t.getHeadingAttributes(r),c=t.getButtonAttributes(r,a);return(0,e.createElement)(Tc.Provider,{value:{uuid:r,expanded:o,disabled:s,toggleExpanded:i,panelAttributes:l,headingAttributes:u,buttonAttributes:c}},n)};return(0,e.createElement)(Oc,null,s)},Nc=function(t){return(0,e.createElement)(Oc,null,(function(n){return(0,e.createElement)(Rc,cc({},t,{accordionContext:n}))}))},Mc=function(t){var n=t.children,r=function(e){return e?n(e):null};return(0,e.createElement)(Tc.Consumer,null,r)},Fc=function(t){var n,r,o,a=t.uuid,i=t.dangerouslySetExpanded,s=t.className,l=void 0===s?"accordion__item":s,u=t.activeClassName,c=vc(t,["uuid","dangerouslySetExpanded","className","activeClassName"]),f=(r=(0,e.useState)((n=jc,jc+=1,"raa-".concat(n))),o=1,function(e){if(Array.isArray(e))return e}(r)||function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,o=!1,a=void 0;try{for(var i,s=e[Symbol.iterator]();!(r=(i=s.next()).done)&&(n.push(i.value),!t||n.length!==t);r=!0);}catch(e){o=!0,a=e}finally{try{r||null==s.return||s.return()}finally{if(o)throw a}}return n}}(r,o)||wc(r,o)||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.")}())[0],p=null!=a?a:f,d=function(t){var n=t.expanded&&u?u:l;return(0,e.createElement)("div",cc({"data-accordion-component":"AccordionItem",className:n},c))};return Ic(p.toString()),c.id&&Ic(c.id),(0,e.createElement)(Nc,{uuid:p,dangerouslySetExpanded:i},(0,e.createElement)(Mc,null,d))};function Lc(e){return e&&(e.matches('[data-accordion-component="Accordion"]')?e:Lc(e.parentElement))}function Dc(e){var t=Lc(e);return t&&Array.from(t.querySelectorAll('[data-accordion-component="AccordionItemButton"]'))}Fc.displayName=Pc.AccordionItem;var zc=function(t){var n=t.toggleExpanded,r=t.className,o=void 0===r?"accordion__button":r,a=vc(t,["toggleExpanded","className"]);return a.id&&Ic(a.id),(0,e.createElement)("div",cc({className:o},a,{role:"button",tabIndex:0,onClick:n,onKeyDown:function(e){var t,r,o,a=e.key;if("Enter"!==a&&" "!==a&&"Spacebar"!==a||(e.preventDefault(),n()),e.target instanceof HTMLElement)switch(a){case"Home":e.preventDefault(),function(e){var t=(Dc(e)||[])[0];t&&t.focus()}(e.target);break;case"End":e.preventDefault(),t=e.target,r=Dc(t)||[],(o=r[r.length-1])&&o.focus();break;case"ArrowLeft":case"ArrowUp":e.preventDefault(),function(e){var t=Dc(e)||[],n=t.indexOf(e);if(-1!==n){var r=t[n-1];r&&r.focus()}}(e.target);break;case"ArrowRight":case"ArrowDown":e.preventDefault(),function(e){var t=Dc(e)||[],n=t.indexOf(e);if(-1!==n){var r=t[n+1];r&&r.focus()}}(e.target)}},"data-accordion-component":"AccordionItemButton"}))},Uc=function(t){return(0,e.createElement)(Mc,null,(function(n){var r=n.toggleExpanded,o=n.buttonAttributes;return(0,e.createElement)(zc,cc({toggleExpanded:r},t,o))}))},Vc=function(t){dc(r,t);var n=bc(r);function r(){var e;ic(this,r);for(var t=arguments.length,o=new Array(t),a=0;a<t;a++)o[a]=arguments[a];return uc(gc(e=n.call.apply(n,[this].concat(o))),"ref",void 0),uc(gc(e),"setRef",(function(t){e.ref=t})),e}return lc(r,[{key:"componentDidUpdate",value:function(){r.VALIDATE(this.ref)}},{key:"componentDidMount",value:function(){r.VALIDATE(this.ref)}},{key:"render",value:function(){return(0,e.createElement)("div",cc({"data-accordion-component":"AccordionItemHeading"},this.props,{ref:this.setRef}))}}],[{key:"VALIDATE",value:function(e){if(void 0===e)throw new Error("ref is undefined");if(1!==e.childElementCount||!e.firstElementChild||"AccordionItemButton"!==e.firstElementChild.getAttribute("data-accordion-component"))throw new Error("AccordionItemButton may contain only one child element, which must be an instance of AccordionItemButton.\n\nFrom the WAI-ARIA spec (https://www.w3.org/TR/wai-aria-practices-1.1/#accordion):\n\n“The button element is the only element inside the heading element. That is, if there are other visually persistent elements, they are not included inside the heading element.”\n\n")}}]),r}(e.PureComponent);uc(Vc,"defaultProps",{className:"accordion__heading","aria-level":3});var Bc=function(t){return(0,e.createElement)(Mc,null,(function(n){var r=n.headingAttributes;return t.id&&Ic(t.id),(0,e.createElement)(Vc,cc({},t,r))}))};Bc.displayName=Pc.AccordionItemHeading;var Wc=function(t){var n=t.className,r=void 0===n?"accordion__panel":n,o=t.region,a=t.id,i=vc(t,["className","region","id"]),s=function(t){var n=t.panelAttributes;a&&Ic(a);var s=pc(pc({},n),{},{"aria-labelledby":o?n["aria-labelledby"]:void 0});return(0,e.createElement)("div",cc({"data-accordion-component":"AccordionItemPanel",className:r},i,s,{role:o?"region":void 0}))};return(0,e.createElement)(Mc,null,s)},Hc=function(t){var n=t.children,r=function(t){var r=t.expanded,o=t.disabled;return(0,e.createElement)(e.Fragment,null,n({expanded:r,disabled:o}))};return(0,e.createElement)(Mc,null,r)};const $c=Dt.div.withConfig({componentId:"sc-417qdg-0"})(["&&&&{border:0;cursor:pointer;display:block;margin:0;position:relative;text-align:left;width:100%;align-items:center;border-top:1px solid var(--borderColorCard);}"]),Gc=Dt.div.withConfig({componentId:"sc-uqs8yk-0"})(["&&&&{display:flex;align-items:center;padding:10px 0px;font-weight:bold;position:relative;}"]);var Yc=["name","id","value"];function qc(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Qc(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?qc(Object(n),!0).forEach((function(t){Xc(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):qc(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Xc(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Kc(e,t){if(e){if("string"==typeof e)return Jc(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Jc(e,t):void 0}}function Jc(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 Zc=wp.i18n.__;const ef=function(t){var n,r,o=t.name,a=(t.id,t.value),i=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,Yc),s=(n=(0,e.useState)(Object.values(a)),r=2,function(e){if(Array.isArray(e))return e}(n)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,a=[],i=!0,s=!1;try{for(n=n.call(e);!(i=(r=n.next()).done)&&(a.push(r.value),!t||a.length!==t);i=!0);}catch(e){s=!0,o=e}finally{try{i||null==n.return||n.return()}finally{if(s)throw o}}return a}}(n,r)||Kc(n,r)||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.")}()),l=s[0],u=s[1];(0,e.useEffect)((function(){c(l)}),[l]);var c=(0,e.useCallback)(is()((function(e){i.setFieldValue(o,e)}),200),[]);return e.createElement(e.Fragment,null,e.createElement(Cc,{style:{marginTop:10},allowMultipleExpanded:!0,allowZeroExpanded:!0},l.map((function(t,n){return e.createElement(Fc,{key:"".concat(o,"_").concat(n)},e.createElement($c,null,e.createElement(Bc,null,e.createElement(Uc,null,e.createElement(Gc,null,e.createElement("div",null,"#",n+1," - ",t.name),e.createElement("span",{className:"seopress-arrow","aria-hidden":"true"})))),e.createElement(Wc,null,e.createElement("p",{style:{fontWeight:"bold"}},Zc("The title of the step (required)","wp-seopress")),e.createElement(ds,{type:"text",value:t.name,onChange:function(e){u(l.map((function(t,r){return r!==n?t:Qc(Qc({},t),{},{name:e.target.value})})))}}),e.createElement("p",{style:{fontWeight:"bold"}},Zc("The text of your step (required)","wp-seopress")),e.createElement("textarea",{className:"form-textarea",value:t.text,style:{width:"100%"},onChange:function(e){u(l.map((function(t,r){return r!==n?t:Qc(Qc({},t),{},{text:e.target.value})})))}}),e.createElement("p",{style:{fontWeight:"bold"}},Zc("Thumbnail","wp-seopress")),e.createElement("div",{className:"flex items-center justify-content"},e.createElement(ds,{type:"text",value:Z()(t,"image",""),onChange:function(e){u(l.map((function(t,r){return r!==n?t:Qc(Qc({},t),{},{image:e.target.value})})))}}),e.createElement("input",{type:"hidden",name:"image_attachment_id",value:Z()(t,"image_attachment_id","")}),e.createElement("input",{type:"hidden",name:"image_width",value:Z()(t,"image_width","")}),e.createElement("input",{type:"hidden",name:"image_height",value:Z()(t,"image_height","")}),e.createElement(Ao,{onClick:function(e){!function(e,t){e.preventDefault();var n=wp.media.frames.file_frame=wp.media({multiple:!1});n.on("select",(function(){var e=n.state().get("selection").first().toJSON();u(l.map((function(n,r){return r!==t?n:Qc(Qc({},n),{},{image:e.url,image_attachment_id:e.id,image_width:e.width,image_height:e.height})})))})),n.open()}(e,n)},className:"ms-2"},Zc("Choose an image","wp-seopress"))),e.createElement(Ao,{as:"div",style:{borderColor:"#cc1818",color:"#cc1818",boxShadow:"inset 0 0 0 1px #cc1818",marginBottom:4},onClick:function(e){e.stopPropagation(),u(l.filter((function(e,t){return t!==n})))}},Zc("Remove step","wp-seopress")))))}))),e.createElement(Ao,{as:"div",secondary:!0,style:{marginTom:12},onClick:function(e){e.stopPropagation(),u([].concat(function(e){return function(e){if(Array.isArray(e))return Jc(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||Kc(e)||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.")}()}(l),[{name:"",text:""}]))}},Zc("Add step","wp-seopress")))};var tf=["name","id","value"];function nf(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function rf(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?nf(Object(n),!0).forEach((function(t){of(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):nf(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function of(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function af(e,t){if(e){if("string"==typeof e)return sf(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?sf(e,t):void 0}}function sf(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 lf=wp.i18n.__;const uf=function(t){var n,r,o=t.name,a=(t.id,t.value),i=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,tf),s=(n=(0,e.useState)(Object.values(a)),r=2,function(e){if(Array.isArray(e))return e}(n)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,a=[],i=!0,s=!1;try{for(n=n.call(e);!(i=(r=n.next()).done)&&(a.push(r.value),!t||a.length!==t);i=!0);}catch(e){s=!0,o=e}finally{try{i||null==n.return||n.return()}finally{if(s)throw o}}return a}}(n,r)||af(n,r)||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.")}()),l=s[0],u=s[1];(0,e.useEffect)((function(){c(l)}),[l]);var c=(0,e.useCallback)(is()((function(e){i.setFieldValue(o,e)}),200),[]);return e.createElement(e.Fragment,null,e.createElement(Cc,{style:{marginTop:10},allowMultipleExpanded:!0,allowZeroExpanded:!0},l.map((function(t,n){return e.createElement(Fc,{key:"".concat(o,"_").concat(n)},e.createElement($c,null,e.createElement(Bc,null,e.createElement(Uc,null,e.createElement(Gc,null,e.createElement("div",null,"#",n+1," - ",t.question.length>0?t.question:e.createElement("span",{style:{color:"red"}}," ",lf("Empty Question","wp-seopress")),0==t.answer.length&&e.createElement("span",{style:{color:"red"}}," - ",lf("Empty Answer","wp-seopress"))),e.createElement("span",{className:"seopress-arrow","aria-hidden":"true"})))),e.createElement(Wc,null,e.createElement("p",{style:{fontWeight:"bold"}},lf("Question (required)","wp-seopress")),e.createElement(ds,{type:"text",value:t.question,onChange:function(e){u(l.map((function(t,r){return r!==n?t:rf(rf({},t),{},{question:e.target.value})})))}}),e.createElement("p",{style:{fontWeight:"bold"}},lf("Answer (required)","wp-seopress")),e.createElement("textarea",{className:"form-textarea",style:{width:"100%"},value:t.answer,onChange:function(e){u(l.map((function(t,r){return r!==n?t:rf(rf({},t),{},{answer:e.target.value})})))}}),e.createElement(Ao,{style:{borderColor:"#cc1818",color:"#cc1818",boxShadow:"inset 0 0 0 1px #cc1818",marginBottom:4},onClick:function(e){e.stopPropagation(),u(l.filter((function(e,t){return t!==n})))}},lf("Remove question","wp-seopress")))))}))),e.createElement(Ao,{secondary:!0,style:{marginTom:12},onClick:function(e){e.stopPropagation(),u([].concat(function(e){return function(e){if(Array.isArray(e))return sf(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||af(e)||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.")}()}(l),[{question:"",answer:""}]))}},lf("Add question","wp-seopress")))};var cf=["name","id","value"];const ff=function(t){var n=t.name,r=t.id,o=t.value,a=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,cf);return e.createElement("input",{type:"time",name:n,id:r,value:o,className:"form-input-date",onChange:function(e){a.setFieldValue(n,e.target.value)}})};var pf=["item","nameInput","values","itemValue","checkboxLegacyValue","emptyIcon","placeholder"];function df(){return df=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},df.apply(this,arguments)}function hf(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}const mf=function(t){var n=t.item,r=t.nameInput,o=void 0===r?null:r,a=t.values,i=t.itemValue,s=void 0===i?null:i,l=t.checkboxLegacyValue,u=t.emptyIcon,c=void 0!==u&&u,f=t.placeholder,p=void 0===f?null:f,d=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,pf),h=Wt()(o)?n.key:o,m=Wt()(s)?a[n.key]:s;(0,e.useEffect)((function(){!Wt()(m)&&!An()(m)||Wt()(n.value)||"checkbox"===n.type||d.setFieldValue(h,Z()(n,"value",""))}),[m]);var v,g={};return"upload"===n.type&&(hf(v={},"".concat(h,"_attachment_id"),Z()(a,"".concat(h,"_attachment_id"),"")),hf(v,"".concat(h,"_width"),Z()(a,"".concat(h,"_width"),"")),hf(v,"".concat(h,"_height"),Z()(a,"".concat(h,"_height"),"")),g=v),e.createElement(e.Fragment,null,"checkbox"!==n.type&&e.createElement(Ts,{htmlFor:h},n.label),n.description&&e.createElement("p",{className:"description",dangerouslySetInnerHTML:{__html:n.description}}),"checkbox"===n.type&&e.createElement(e.Fragment,null," ",e.createElement(Gu,{htmlFor:h},e.createElement(xu,{id:h,name:h,checked:m||!1,className:ks()({"w-full":"input"===n.type||"select"===n.type||"textarea"===n.type}),value:l?"yes":"1",onChange:function(e){d.setFieldValue(h,e.target.checked)}}),n.label)),"input"===n.type&&e.createElement(e.Fragment,null,e.createElement(Es,{id:h,name:h,placeholder:p||n.placeholder,value:m||"",className:ks()("w-full",Z()(n,"class","")),emptyIcon:c,setFieldValue:d.setFieldValue,item:n})),"number"===n.type&&e.createElement(e.Fragment,null,e.createElement(Es,{id:h,name:h,placeholder:p||n.placeholder,type:"number",value:m||"",className:ks()("w-full",Z()(n,"class","")),emptyIcon:c,setFieldValue:d.setFieldValue,step:Z()(n,"step",null),min:Z()(n,"min",null),max:Z()(n,"max",null)})),"textarea"===n.type&&e.createElement(e.Fragment,null,e.createElement(Ps,{id:h,name:h,placeholder:p||n.placeholder,value:m||"",className:ks()("w-full",Z()(n,"class","")),style:{resize:"vertical"},item:n})),"select"===n.type&&e.createElement(e.Fragment,null,e.createElement(Pu,df({id:h,name:h,placeholder:n.placeholder,value:m||"",className:ks()("w-full",Z()(n,"class","")),options:n.options,onChange:d.handleChange},d))),"upload"===n.type&&e.createElement(e.Fragment,null,e.createElement(Su,df({id:h,name:h,placeholder:p||n.placeholder,value:m||"",className:ks()("w-full",Z()(n,"class","")),emptyIcon:c,setFieldValue:d.setFieldValue,combinedValuesForm:g},d))),"date"===n.type&&e.createElement(e.Fragment,null,e.createElement(qu,df({id:h,name:h,value:m||"",className:ks()("w-full",Z()(n,"class",""))},d))),"time"===n.type&&e.createElement(e.Fragment,null,e.createElement(ff,df({id:h,name:h,value:m||"",className:ks()("w-full",Z()(n,"class",""))},d))),"opening_hours"===n.type&&e.createElement(e.Fragment,null,e.createElement(ac,df({id:h,name:h,value:m||"",className:ks()("w-full",Z()(n,"class",""))},d))),"repeater_how_to"===n.type&&e.createElement(e.Fragment,null,e.createElement(ef,df({id:h,name:h,value:m||"",className:ks()("w-full",Z()(n,"class",""))},d))),"repeater_faq"===n.type&&e.createElement(e.Fragment,null,e.createElement(uf,df({id:h,name:h,value:m||"",className:ks()("w-full",Z()(n,"class",""))},d))))};var vf=["values"];function gf(){return gf=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},gf.apply(this,arguments)}function yf(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function bf(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?yf(Object(n),!0).forEach((function(t){wf(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):yf(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function wf(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function xf(e,t,n,r,o,a,i){try{var s=e[a](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function Ef(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 Sf=wp.i18n.__;const kf=function(t){var n,r,o=t.mainBarRef,a=eo(),i=function(e){var t=e.postId;return oo(hu({postId:t}),{suspense:!0})}({postId:a}),s=i.data,l=i.mutate,u=i.abort,c=mn(),f=(n=(0,e.useState)(!1),r=2,function(e){if(Array.isArray(e))return e}(n)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,a=[],i=!0,s=!1;try{for(n=n.call(e);!(i=(r=n.next()).done)&&(a.push(r.value),!t||a.length!==t);i=!0);}catch(e){s=!0,o=e}finally{try{i||null==n.return||n.return()}finally{if(s)throw o}}return a}}(n,r)||function(e,t){if(e){if("string"==typeof e)return Ef(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Ef(e,t):void 0}}(n,r)||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.")}()),p=f[0],d=f[1],h=(0,e.useContext)(Rn).actions;(0,e.useEffect)((function(){return function(){u()}}));var m=function(){var e,t=(e=regeneratorRuntime.mark((function e(t){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return d(!0),e.next=3,vu(a,t);case 3:e.sent,l(),d(!1),h.setMessage(Sf("Your settings have been saved.","wp-seopress"));case 7:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(r,o){var a=e.apply(t,n);function i(e){xf(a,r,o,i,s,"next",e)}function s(e){xf(a,r,o,i,s,"throw",e)}i(void 0)}))});return function(e){return t.apply(this,arguments)}}(),v=function(e){switch(e.key){case"_seopress_social_fb_title":return te()(Z()(c,"og:title.value",[e.placeholder]));case"_seopress_social_fb_desc":return te()(Z()(c,"og:description.value",[e.placeholder]));case"_seopress_social_fb_img":return te()(Z()(c,"og:image.value",[e.placeholder]));case"_seopress_social_twitter_title":return te()(Z()(c,"twitter:title.value",[e.placeholder]));case"_seopress_social_twitter_desc":return te()(Z()(c,"twitter:description.value",[e.placeholder]));case"_seopress_social_twitter_img":return te()(Z()(c,"twitter:image.value",[e.placeholder]));default:return e.placeholder}},g=fu()(du()(s,"key"),(function(e){return Z()(e,"value","")})),y=fu()(du()(s,"key"),(function(e){var t=Z()(e,"value","");return An()(t)&&(t=v(e)),{key:e.key,placeholder:t}}));return e.createElement(e.Fragment,null,e.createElement(Yi,{enableReinitialize:!0,onSubmit:m,initialValues:g},(function(t){var n=t.values,r=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,vf);return e.createElement("div",{ref:o,className:"flex",style:{gap:32},tabIndex:"0"},e.createElement("div",{className:"w-1/2"},e.createElement(Zi,null,e.createElement("p",{className:"description-alt desc-fb"},e.createElement("svg",{width:"24",height:"24",viewBox:"0 0 24 24",role:"img","aria-hidden":"true",focusable:"false"},e.createElement("path",{d:"M12 15.8c-3.7 0-6.8-3-6.8-6.8s3-6.8 6.8-6.8c3.7 0 6.8 3 6.8 6.8s-3.1 6.8-6.8 6.8zm0-12C9.1 3.8 6.8 6.1 6.8 9s2.4 5.2 5.2 5.2c2.9 0 5.2-2.4 5.2-5.2S14.9 3.8 12 3.8zM8 17.5h8V19H8zM10 20.5h4V22h-4z"})),Sf("LinkedIn, Instagram, WhatsApp and Pinterest use the same social metadata as Facebook. Twitter does the same if no Twitter cards tags are defined below.","wp-seopress")),s.map((function(t,o){if(t.visible){var a=function(e){switch(e){case"input":return Es;case"select":return Pu;case"textarea":return Ps;case"upload":return Su;case"checkbox":return xu}return null}(t.type);if(!Wt()(a))return e.createElement(e.Fragment,{key:"social_form_".concat(o)},"_seopress_social_fb_title"===t.key&&e.createElement(e.Fragment,null,e.createElement("div",null,e.createElement("span",{className:"dashicons dashicons-facebook-alt"})),e.createElement("div",null,e.createElement("span",{className:"dashicons dashicons-external"}),e.createElement("a",{href:"https://developers.facebook.com/tools/debug/sharing/?q={get_permalink(get_the_id())}",target:"_blank"},Sf("Ask Facebook to update its cache","wp-seopress")))),"_seopress_social_twitter_title"===t.key&&e.createElement(e.Fragment,null,e.createElement("div",{style:{marginTop:20,borderTop:"1px solid var(--borderColorLight)",paddingTop:20}},e.createElement("span",{className:"dashicons dashicons-twitter"})),e.createElement("div",null,e.createElement("span",{className:"dashicons dashicons-external"}),e.createElement("a",{href:"https://cards-dev.twitter.com/validator",target:"_blank"},Sf("Preview your Twitter card using the official validator","wp-seopress")))),e.createElement("div",{className:"mt-3"},e.createElement(mf,gf({item:bf(bf({},t),{},{value:Z()(n,t.key,"")}),emptyIcon:"_seopress_social_fb_img"===t.key||"_seopress_social_twitter_img"===t.key,values:n,placeholder:v(t)},r))))}})),e.createElement("div",{className:"sp-fixed"},e.createElement(Fs,{loading:p,blue:!0,tabIndex:"0",onClick:function(){return m(n)}},Sf("Save","wp-seopress"))))),e.createElement("div",{className:"w-1/2"},e.createElement(Bu,{values:n,placeholders:y})))})))};var _f=Object.prototype.hasOwnProperty;var Of=o(8975),Cf=["data","values"];var Pf=wp.i18n.__;const jf=function(t){var n=t.data,r=t.values,o=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,Cf);return e.createElement(e.Fragment,null,e.createElement("p",{className:"description",dangerouslySetInnerHTML:{__html:(0,Of.sprintf)(Pf('You cannot uncheck a parameter? This is normal, and it‘s most likely defined in the <a href="%s">global settings of the plugin.</a>',"wp-seopress"),SEOPRESS_DATA.ADMIN_URL_TITLES)}}),!function(e){if(null==e)return!0;if(_a(e)&&(Un(e)||"string"==typeof e||"function"==typeof e.splice||ua(e)||ga(e)||Yr(e)))return!e.length;var t=ai(e);if("[object Map]"==t||"[object Set]"==t)return!e.size;if(xa(e))return!ka(e).length;for(var n in e)if(_f.call(e,n))return!1;return!0}(n)&&n.map((function(t,n){return e.createElement(Gu,{key:"robot_".concat(n)},e.createElement(xu,{name:t.key,disabled:!t.can_modify,checked:!(!r[t.key]&&"yes"!==r[t.key]),onChange:function(e){o.setFieldValue(t.key,e.target.checked?"yes":"")},value:"yes"}),function(t){switch(t){case"_seopress_robots_index":return e.createElement(e.Fragment,null,Pf("Do not display this page in search engine results / XML - HTML sitemaps","wp-seopress")," ",e.createElement("strong",null,"(noindex)"),e.createElement(Ul,{title:Pf('"noindex" robots meta tag',"wp-seopress"),description:e.createElement(e.Fragment,null,Pf('By checking this option, you will add a meta robots tag with the value "noindex".',"wp-seopress")," ",e.createElement("br",null)," ",Pf("Search engines will not index this URL in the search results.","wp-seopress")," "),code:'<meta name="robots" content="noindex" />'}));case"_seopress_robots_follow":return e.createElement(e.Fragment,null,Pf("Do not follow links for this page","wp-seopress")," ",e.createElement("strong",null,"(nofollow)"),e.createElement(Ul,{title:Pf('"nofollow" robots meta tag',"wp-seopress"),description:e.createElement(e.Fragment,null,Pf('By checking this option, you will add a meta robots tag with the value "nofollow".',"wp-seopress")," ",e.createElement("br",null)," ",Pf("Search engines will not follow links from this URL.","wp-seopress")),code:'<meta name="robots" content="nofollow" />'}));case"_seopress_robots_odp":return e.createElement(e.Fragment,null,Pf("Do not use Open Directory project metadata for titles or excerpts for this page","wp-seopress")," ",e.createElement("strong",null,"(noodp)"),e.createElement(Ul,{title:Pf('"noodp" robots meta tag',"wp-seopress"),description:e.createElement(e.Fragment,null,Pf('By checking this option, you will add a meta robots tag with the value "noodp".',"wp-seopress")," ",e.createElement("br",null)," ",Pf("Note that Google and Yahoo have stopped considering this tag since the closing of DMOZ directory.","wp-seopress")),code:'<meta name="robots" content="noodp" />'}));case"_seopress_robots_archive":return e.createElement(e.Fragment,null,Pf("Do not display a 'Cached' link in the Google search results","wp-seopress")," ",e.createElement("strong",null,"(noarchive)"),e.createElement(Ul,{title:Pf('"noarchive" robots meta tag',"wp-seopress"),description:e.createElement(e.Fragment,null,Pf('By checking this option, you will add a meta robots tag with the value "noarchive".',"wp-seopress")),code:'<meta name="robots" content="noarchive" />'}));case"_seopress_robots_snippet":return e.createElement(e.Fragment,null,Pf("Do not display a description in search results for this page","wp-seopress")," ",e.createElement("strong",null,"(nosnippet)"),e.createElement(Ul,{title:Pf('"nosnippet" robots meta tag',"wp-seopress"),description:e.createElement(e.Fragment,null,Pf('By checking this option, you will add a meta robots tag with the value "nosnippet".',"wp-seopress")),code:'<meta name="robots" content="nosnippet" />'}));case"_seopress_robots_imageindex":return e.createElement(e.Fragment,null,Pf("Do not index images for this page","wp-seopress")," ",e.createElement("strong",null," (noimageindex)"),e.createElement(Ul,{title:Pf('"noimageindex" robots meta tag',"wp-seopress"),description:e.createElement(e.Fragment,null,Pf('By checking this option, you will add a meta robots tag with the value "noimageindex".',"wp-seopress")," ",e.createElement("br",null)," ",Pf("Note that your images can always be indexed if they are linked from other pages.","wp-seopress")),code:'<meta name="google" content="noimageindex" />'}))}}(t.key))})))};var Af=function(e){var t=e.postId;return"".concat(SEOPRESS_DATA.REST_URL,"seopress/v1/posts/").concat(t,"/meta-robot-settings")};const If=function(e){var t=e.postId;return oo(Af({postId:t}),{suspense:!0})};function Tf(e,t,n,r,o,a,i){try{var s=e[a](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}var Rf=function(){var e,t=(e=regeneratorRuntime.mark((function e(t,n){var r;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,fetch(Af({postId:t}),{method:"PUT",headers:{"Content-Type":"application/json","X-WP-Nonce":Z()(SEOPRESS_DATA,"NONCE",null)},body:JSON.stringify(n)});case 2:return r=e.sent,e.next=5,r.json();case 5:return e.abrupt("return",e.sent);case 6:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(r,o){var a=e.apply(t,n);function i(e){Tf(a,r,o,i,s,"next",e)}function s(e){Tf(a,r,o,i,s,"throw",e)}i(void 0)}))});return function(e,n){return t.apply(this,arguments)}}(),Nf=["values"];function Mf(){return Mf=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Mf.apply(this,arguments)}function Ff(e,t,n,r,o,a,i){try{var s=e[a](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function Lf(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 Df=wp.i18n.__;const zf=function(t){var n=t.mainBarRef,r=eo(),o=If({postId:r}),a=o.data,i=o.mutate,s=o.abort;(0,e.useEffect)((function(){return function(){s()}}));var l,u,c=(l=(0,e.useState)(!1),u=2,function(e){if(Array.isArray(e))return e}(l)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,a=[],i=!0,s=!1;try{for(n=n.call(e);!(i=(r=n.next()).done)&&(a.push(r.value),!t||a.length!==t);i=!0);}catch(e){s=!0,o=e}finally{try{i||null==n.return||n.return()}finally{if(s)throw o}}return a}}(l,u)||function(e,t){if(e){if("string"==typeof e)return Lf(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Lf(e,t):void 0}}(l,u)||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.")}()),f=c[0],p=c[1],d=(0,e.useContext)(Rn).actions,h=function(){var e,t=(e=regeneratorRuntime.mark((function e(t){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return p(!0),e.next=3,Rf(r,t);case 3:e.sent,i(),p(!1),d.setMessage(Df("Your settings have been saved.","wp-seopress"));case 7:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(r,o){var a=e.apply(t,n);function i(e){Ff(a,r,o,i,s,"next",e)}function s(e){Ff(a,r,o,i,s,"throw",e)}i(void 0)}))});return function(e){return t.apply(this,arguments)}}();return e.createElement("div",{ref:n,tabIndex:"0"},e.createElement("p",{style:{fontWeight:"bold"}},Df("Meta robots settings","wp-seopress")),e.createElement(Yi,{enableReinitialize:!0,onSubmit:h,initialValues:{_seopress_robots_index:Z()($t()(a,{key:"_seopress_robots_index"}),"value",""),_seopress_robots_follow:Z()($t()(a,{key:"_seopress_robots_follow"}),"value",""),_seopress_robots_odp:Z()($t()(a,{key:"_seopress_robots_odp"}),"value",""),_seopress_robots_archive:Z()($t()(a,{key:"_seopress_robots_archive"}),"value",""),_seopress_robots_snippet:Z()($t()(a,{key:"_seopress_robots_snippet"}),"value",""),_seopress_robots_imageindex:Z()($t()(a,{key:"_seopress_robots_imageindex"}),"value",""),_seopress_robots_canonical:Z()($t()(a,{key:"_seopress_robots_canonical"}),"value",!1),_seopress_robots_primary_cat:Z()($t()(a,{key:"_seopress_robots_primary_cat"}),"value",!1),_seopress_robots_breadcrumbs:Z()($t()(a,{key:"_seopress_robots_breadcrumbs"}),"value",!1)}},(function(t){var n=t.values,r=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,Nf),o=["_seopress_robots_index","_seopress_robots_follow","_seopress_robots_odp","_seopress_robots_archive","_seopress_robots_snippet","_seopress_robots_imageindex"],i=$t()(a,{key:"_seopress_robots_canonical"}),s=$t()(a,{key:"_seopress_robots_primary_cat"}),l=$t()(a,{key:"_seopress_robots_breadcrumbs"});return e.createElement(Zi,null,e.createElement(jf,Mf({data:a.filter((function(e){return o.indexOf(e.key)>=0})),values:n},r)),i&&i.visible&&e.createElement("div",{className:"mt-3"},e.createElement(Ts,{htmlFor:i.key},i.label,e.createElement(Ul,{title:Df("Canonical URL","wp-seopress"),description:e.createElement(e.Fragment,null,Df("A canonical URL is the URL of the page that Google thinks is most representative from a set of duplicate pages on your site.","wp-seopress")," ",e.createElement("br",null)," ",Df("For example, if you have URLs for the same page (for example: example.com?dress=1234 and example.com/dresses/1234), Google chooses one as canonical.","wp-seopress")," ",e.createElement("br",null)," ",Df("Note that the pages do not need to be absolutely identical; minor changes in sorting or filtering of list pages do not make the page unique (for example, sorting by price or filtering by item color). The canonical can be in a different domain than a duplicate.","wp-seopress")),code:'<link rel="canonical" href="https://www.example.com/my-post-url/" />'})),e.createElement(Es,{id:i.key,name:i.key,placeholder:i.placeholder,value:n[i.key]||"",className:"w-full",setFieldValue:r.setFieldValue})),s&&!An()(Z()(s,"options",[]))&&s.visible&&e.createElement("div",{className:"mt-3"},e.createElement(Ts,{htmlFor:s.key},s.label),e.createElement(Pu,Mf({id:s.key,name:s.key,value:n[s.key]||"none",options:Z()(s,"options",[]).map((function(e){if(!Wt()(e.name)&&!Wt()(e.term_id))return{label:e.name,value:e.term_id}}))},r))),l&&l.visible&&e.createElement("div",{className:"mt-3"},e.createElement(Ts,{htmlFor:l.key},l.label),l.description&&e.createElement("p",{className:"description"},l.description),e.createElement(Es,{id:l.key,name:l.key,placeholder:l.placeholder,value:n[l.key]||"",className:"w-full",setFieldValue:r.setFieldValue})),e.createElement("div",{className:"sp-fixed"},e.createElement(Fs,{blue:!0,loading:f,onClick:function(){return h(n)}},Df("Save","wp-seopress"))))})))};var Uf=function(e){var t=e.postId;return"".concat(SEOPRESS_DATA.REST_URL,"seopress/v1/posts/").concat(t,"/redirection-settings")};function Vf(e,t,n,r,o,a,i){try{var s=e[a](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}var Bf=function(){var e,t=(e=regeneratorRuntime.mark((function e(t,n){var r;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,fetch(Uf({postId:t}),{method:"PUT",headers:{"Content-Type":"application/json","X-WP-Nonce":Z()(SEOPRESS_DATA,"NONCE",null)},body:JSON.stringify(n)});case 2:return r=e.sent,e.next=5,r.json();case 5:return e.abrupt("return",e.sent);case 6:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(r,o){var a=e.apply(t,n);function i(e){Vf(a,r,o,i,s,"next",e)}function s(e){Vf(a,r,o,i,s,"throw",e)}i(void 0)}))});return function(e,n){return t.apply(this,arguments)}}();wp.i18n.__;const Wf=function(t){var n=t.items,r=t.handleChoiceItem,o=void 0===r?function(){}:r;return e.createElement(e.Fragment,null,e.createElement("div",{className:"flex items-center flex-wrap"},e.createElement("div",{className:"relative",style:{alignSelf:"start"}},e.createElement(wl,null,n.map((function(t){var n=Z()(t,"item.name",Z()(t,"name","")),r=Z()(t,"item.input",Z()(t,"input",""));return e.createElement(Sl,{key:n,onClick:function(){o(r)},onKeyUp:function(e){27===e.keyCode&&e.preventDefault(),13===e.keyCode&&(e.preventDefault(),o(r))},tabIndex:"0"},!An()(n)&&e.createElement(xl,null,n),!An()(r)&&e.createElement(El,null,r))}))))))};var Hf=["data","values","handleOnSubmit","loading"],$f=["values"];function Gf(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Yf(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Gf(Object(n),!0).forEach((function(t){qf(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Gf(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function qf(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Qf(){return Qf=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Qf.apply(this,arguments)}function Xf(e,t,n,r,o,a,i){try{var s=e[a](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function Kf(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var a=e.apply(t,n);function i(e){Xf(a,r,o,i,s,"next",e)}function s(e){Xf(a,r,o,i,s,"throw",e)}i(void 0)}))}}function Jf(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,a=[],i=!0,s=!1;try{for(n=n.call(e);!(i=(r=n.next()).done)&&(a.push(r.value),!t||a.length!==t);i=!0);}catch(e){s=!0,o=e}finally{try{i||null==n.return||n.return()}finally{if(s)throw o}}return a}}(e,t)||function(e,t){if(e){if("string"==typeof e)return Zf(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Zf(e,t):void 0}}(e,t)||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 Zf(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 ep(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}var tp=wp.i18n.__,np=function(t){var n=t.data,r=t.values,o=t.handleOnSubmit,a=t.loading,i=ep(t,Hf),s=Fi(Bi().values,"_seopress_redirections_value"),l=Jf((0,e.useState)([]),2),u=l[0],c=l[1],f=Jf((0,e.useState)(!1),2),p=f[0],d=f[1],h=Jf((0,e.useState)(s),2),m=h[0],v=h[1],g=(0,e.useRef)(!0),y=(0,e.useRef)();_l(y,(function(){return d(!1)}));var b=(0,e.useCallback)(is()(function(){var e=Kf(regeneratorRuntime.mark((function e(t){var n,r;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,fetch("".concat(SEOPRESS_DATA.REST_URL,"seopress/v1/search-url?url=").concat(t));case 2:return n=e.sent,e.next=5,n.json();case 5:r=e.sent,c(r.map((function(e){return{name:e.post_title,input:e.guid}}))),d(!0);case 8:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),200),[]);return(0,e.useEffect)((function(){g.current?g.current=!1:(i.setFieldValue("_seopress_redirections_value",m),An()(m)||m.length<3||b(m))}),[m]),e.createElement(Zi,null,n.map((function(t,n){if(t.visible)return e.createElement(e.Fragment,{key:"social_form_".concat(n)},e.createElement("div",{className:"mt-3"},"_seopress_redirections_value"!==t.key&&e.createElement(mf,Qf({item:t,values:r},i)),"_seopress_redirections_value"===t.key&&e.createElement(e.Fragment,null,e.createElement(Ts,{htmlFor:t.key},t.label),e.createElement(hs,{name:t.key,id:t.key,type:"text",value:m,placeholder:Z()(t,"placeholder",""),onChange:function(e){v(e.target.value)},style:{width:"100%"}}),p&&!An()(u)&&e.createElement("div",{ref:y},e.createElement(Wf,{handleChoiceItem:function(e){v(e),d(!1)},items:u})))))})),e.createElement("div",{className:"sp-fixed"},e.createElement(Fs,{blue:!0,loading:a,onClick:function(){return o(r)}},tp("Save","wp-seopress"))))};const rp=function(t){var n=t.mainBarRef,r=eo(),o=function(e){var t=e.postId;return oo(Uf({postId:t}),{suspense:!0})}({postId:r}),a=o.data,i=o.mutate,s=o.abort;(0,e.useEffect)((function(){return function(){s()}}));var l=Jf((0,e.useState)(!1),2),u=l[0],c=l[1],f=(0,e.useContext)(Rn).actions,p=function(){var e=Kf(regeneratorRuntime.mark((function e(t){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return c(!0),e.next=3,Bf(r,Yf(Yf({},t),{},{_seopress_redirections_enabled:t._seopress_redirections_enabled?"yes":""}));case 3:e.sent,i(),c(!1),f.setMessage(tp("Your settings have been saved.","wp-seopress"));case 7:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),d=fu()(du()(a,"key"),(function(e){return Z()(e,"value",!1)}));return e.createElement("div",{ref:n,tabIndex:"0"},e.createElement(Yi,{enableReinitialize:!0,onSubmit:p,initialValues:d},(function(t){var n=t.values,r=ep(t,$f);return e.createElement(np,Qf({data:a,values:n,handleOnSubmit:p,loading:u},r))})))};var op=o(8721),ap=o.n(op);function ip(){return ip=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},ip.apply(this,arguments)}var sp=function(){function e(e){var t=this;this._insertTag=function(e){var n;n=0===t.tags.length?t.insertionPoint?t.insertionPoint.nextSibling:t.prepend?t.container.firstChild:t.before:t.tags[t.tags.length-1].nextSibling,t.container.insertBefore(e,n),t.tags.push(e)},this.isSpeedy=void 0===e.speedy||e.speedy,this.tags=[],this.ctr=0,this.nonce=e.nonce,this.key=e.key,this.container=e.container,this.prepend=e.prepend,this.insertionPoint=e.insertionPoint,this.before=null}var t=e.prototype;return t.hydrate=function(e){e.forEach(this._insertTag)},t.insert=function(e){this.ctr%(this.isSpeedy?65e3:1)==0&&this._insertTag(function(e){var t=document.createElement("style");return t.setAttribute("data-emotion",e.key),void 0!==e.nonce&&t.setAttribute("nonce",e.nonce),t.appendChild(document.createTextNode("")),t.setAttribute("data-s",""),t}(this));var t=this.tags[this.tags.length-1];if(this.isSpeedy){var n=function(e){if(e.sheet)return e.sheet;for(var t=0;t<document.styleSheets.length;t++)if(document.styleSheets[t].ownerNode===e)return document.styleSheets[t]}(t);try{n.insertRule(e,n.cssRules.length)}catch(e){}}else t.appendChild(document.createTextNode(e));this.ctr++},t.flush=function(){this.tags.forEach((function(e){return e.parentNode&&e.parentNode.removeChild(e)})),this.tags=[],this.ctr=0},e}(),lp=Math.abs,up=String.fromCharCode,cp=Object.assign;function fp(e){return e.trim()}function pp(e,t,n){return e.replace(t,n)}function dp(e,t){return e.indexOf(t)}function hp(e,t){return 0|e.charCodeAt(t)}function mp(e,t,n){return e.slice(t,n)}function vp(e){return e.length}function gp(e){return e.length}function yp(e,t){return t.push(e),e}var bp=1,xp=1,Ep=0,Sp=0,kp=0,_p="";function Op(e,t,n,r,o,a,i){return{value:e,root:t,parent:n,type:r,props:o,children:a,line:bp,column:xp,length:i,return:""}}function Cp(e,t){return cp(Op("",null,null,"",null,null,0),e,{length:-e.length},t)}function Pp(){return kp=Sp>0?hp(_p,--Sp):0,xp--,10===kp&&(xp=1,bp--),kp}function jp(){return kp=Sp<Ep?hp(_p,Sp++):0,xp++,10===kp&&(xp=1,bp++),kp}function Ap(){return hp(_p,Sp)}function Ip(){return Sp}function Tp(e,t){return mp(_p,e,t)}function Rp(e){switch(e){case 0:case 9:case 10:case 13:case 32:return 5;case 33:case 43:case 44:case 47:case 62:case 64:case 126:case 59:case 123:case 125:return 4;case 58:return 3;case 34:case 39:case 40:case 91:return 2;case 41:case 93:return 1}return 0}function Np(e){return bp=xp=1,Ep=vp(_p=e),Sp=0,[]}function Mp(e){return _p="",e}function Fp(e){return fp(Tp(Sp-1,zp(91===e?e+2:40===e?e+1:e)))}function Lp(e){for(;(kp=Ap())&&kp<33;)jp();return Rp(e)>2||Rp(kp)>3?"":" "}function Dp(e,t){for(;--t&&jp()&&!(kp<48||kp>102||kp>57&&kp<65||kp>70&&kp<97););return Tp(e,Ip()+(t<6&&32==Ap()&&32==jp()))}function zp(e){for(;jp();)switch(kp){case e:return Sp;case 34:case 39:34!==e&&39!==e&&zp(kp);break;case 40:41===e&&zp(e);break;case 92:jp()}return Sp}function Up(e,t){for(;jp()&&e+kp!==57&&(e+kp!==84||47!==Ap()););return"/*"+Tp(t,Sp-1)+"*"+up(47===e?e:jp())}function Vp(e){for(;!Rp(Ap());)jp();return Tp(e,Sp)}var Bp="-ms-",Wp="-moz-",Hp="-webkit-",$p="comm",Gp="rule",Yp="decl",qp="@keyframes";function Qp(e,t){for(var n="",r=gp(e),o=0;o<r;o++)n+=t(e[o],o,e,t)||"";return n}function Xp(e,t,n,r){switch(e.type){case"@import":case Yp:return e.return=e.return||e.value;case $p:return"";case qp:return e.return=e.value+"{"+Qp(e.children,r)+"}";case Gp:e.value=e.props.join(",")}return vp(n=Qp(e.children,r))?e.return=e.value+"{"+n+"}":""}function Kp(e,t){switch(function(e,t){return(((t<<2^hp(e,0))<<2^hp(e,1))<<2^hp(e,2))<<2^hp(e,3)}(e,t)){case 5103:return Hp+"print-"+e+e;case 5737:case 4201:case 3177:case 3433:case 1641:case 4457:case 2921:case 5572:case 6356:case 5844:case 3191:case 6645:case 3005:case 6391:case 5879:case 5623:case 6135:case 4599:case 4855:case 4215:case 6389:case 5109:case 5365:case 5621:case 3829:return Hp+e+e;case 5349:case 4246:case 4810:case 6968:case 2756:return Hp+e+Wp+e+Bp+e+e;case 6828:case 4268:return Hp+e+Bp+e+e;case 6165:return Hp+e+Bp+"flex-"+e+e;case 5187:return Hp+e+pp(e,/(\w+).+(:[^]+)/,"-webkit-box-$1$2-ms-flex-$1$2")+e;case 5443:return Hp+e+Bp+"flex-item-"+pp(e,/flex-|-self/,"")+e;case 4675:return Hp+e+Bp+"flex-line-pack"+pp(e,/align-content|flex-|-self/,"")+e;case 5548:return Hp+e+Bp+pp(e,"shrink","negative")+e;case 5292:return Hp+e+Bp+pp(e,"basis","preferred-size")+e;case 6060:return Hp+"box-"+pp(e,"-grow","")+Hp+e+Bp+pp(e,"grow","positive")+e;case 4554:return Hp+pp(e,/([^-])(transform)/g,"$1-webkit-$2")+e;case 6187:return pp(pp(pp(e,/(zoom-|grab)/,Hp+"$1"),/(image-set)/,Hp+"$1"),e,"")+e;case 5495:case 3959:return pp(e,/(image-set\([^]*)/,Hp+"$1$`$1");case 4968:return pp(pp(e,/(.+:)(flex-)?(.*)/,"-webkit-box-pack:$3-ms-flex-pack:$3"),/s.+-b[^;]+/,"justify")+Hp+e+e;case 4095:case 3583:case 4068:case 2532:return pp(e,/(.+)-inline(.+)/,Hp+"$1$2")+e;case 8116:case 7059:case 5753:case 5535:case 5445:case 5701:case 4933:case 4677:case 5533:case 5789:case 5021:case 4765:if(vp(e)-1-t>6)switch(hp(e,t+1)){case 109:if(45!==hp(e,t+4))break;case 102:return pp(e,/(.+:)(.+)-([^]+)/,"$1-webkit-$2-$3$1"+Wp+(108==hp(e,t+3)?"$3":"$2-$3"))+e;case 115:return~dp(e,"stretch")?Kp(pp(e,"stretch","fill-available"),t)+e:e}break;case 4949:if(115!==hp(e,t+1))break;case 6444:switch(hp(e,vp(e)-3-(~dp(e,"!important")&&10))){case 107:return pp(e,":",":"+Hp)+e;case 101:return pp(e,/(.+:)([^;!]+)(;|!.+)?/,"$1"+Hp+(45===hp(e,14)?"inline-":"")+"box$3$1"+Hp+"$2$3$1"+Bp+"$2box$3")+e}break;case 5936:switch(hp(e,t+11)){case 114:return Hp+e+Bp+pp(e,/[svh]\w+-[tblr]{2}/,"tb")+e;case 108:return Hp+e+Bp+pp(e,/[svh]\w+-[tblr]{2}/,"tb-rl")+e;case 45:return Hp+e+Bp+pp(e,/[svh]\w+-[tblr]{2}/,"lr")+e}return Hp+e+Bp+e+e}return e}function Jp(e){return Mp(Zp("",null,null,null,[""],e=Np(e),0,[0],e))}function Zp(e,t,n,r,o,a,i,s,l){for(var u=0,c=0,f=i,p=0,d=0,h=0,m=1,v=1,g=1,y=0,b="",w=o,x=a,E=r,S=b;v;)switch(h=y,y=jp()){case 40:if(108!=h&&58==S.charCodeAt(f-1)){-1!=dp(S+=pp(Fp(y),"&","&\f"),"&\f")&&(g=-1);break}case 34:case 39:case 91:S+=Fp(y);break;case 9:case 10:case 13:case 32:S+=Lp(h);break;case 92:S+=Dp(Ip()-1,7);continue;case 47:switch(Ap()){case 42:case 47:yp(td(Up(jp(),Ip()),t,n),l);break;default:S+="/"}break;case 123*m:s[u++]=vp(S)*g;case 125*m:case 59:case 0:switch(y){case 0:case 125:v=0;case 59+c:d>0&&vp(S)-f&&yp(d>32?nd(S+";",r,n,f-1):nd(pp(S," ","")+";",r,n,f-2),l);break;case 59:S+=";";default:if(yp(E=ed(S,t,n,u,c,o,s,b,w=[],x=[],f),a),123===y)if(0===c)Zp(S,t,E,E,w,a,f,s,x);else switch(p){case 100:case 109:case 115:Zp(e,E,E,r&&yp(ed(e,E,E,0,0,o,s,b,o,w=[],f),x),o,x,f,s,r?w:x);break;default:Zp(S,E,E,E,[""],x,0,s,x)}}u=c=d=0,m=g=1,b=S="",f=i;break;case 58:f=1+vp(S),d=h;default:if(m<1)if(123==y)--m;else if(125==y&&0==m++&&125==Pp())continue;switch(S+=up(y),y*m){case 38:g=c>0?1:(S+="\f",-1);break;case 44:s[u++]=(vp(S)-1)*g,g=1;break;case 64:45===Ap()&&(S+=Fp(jp())),p=Ap(),c=f=vp(b=S+=Vp(Ip())),y++;break;case 45:45===h&&2==vp(S)&&(m=0)}}return a}function ed(e,t,n,r,o,a,i,s,l,u,c){for(var f=o-1,p=0===o?a:[""],d=gp(p),h=0,m=0,v=0;h<r;++h)for(var g=0,y=mp(e,f+1,f=lp(m=i[h])),b=e;g<d;++g)(b=fp(m>0?p[g]+" "+y:pp(y,/&\f/g,p[g])))&&(l[v++]=b);return Op(e,t,n,0===o?Gp:s,l,u,c)}function td(e,t,n){return Op(e,t,n,$p,up(kp),mp(e,2,-2),0)}function nd(e,t,n,r){return Op(e,t,n,Yp,mp(e,0,r),mp(e,r+1,-1),r)}var rd=function(e,t,n){for(var r=0,o=0;r=o,o=Ap(),38===r&&12===o&&(t[n]=1),!Rp(o);)jp();return Tp(e,Sp)},od=new WeakMap,ad=function(e){if("rule"===e.type&&e.parent&&!(e.length<1)){for(var t=e.value,n=e.parent,r=e.column===n.column&&e.line===n.line;"rule"!==n.type;)if(!(n=n.parent))return;if((1!==e.props.length||58===t.charCodeAt(0)||od.get(n))&&!r){od.set(e,!0);for(var o=[],a=function(e,t){return Mp(function(e,t){var n=-1,r=44;do{switch(Rp(r)){case 0:38===r&&12===Ap()&&(t[n]=1),e[n]+=rd(Sp-1,t,n);break;case 2:e[n]+=Fp(r);break;case 4:if(44===r){e[++n]=58===Ap()?"&\f":"",t[n]=e[n].length;break}default:e[n]+=up(r)}}while(r=jp());return e}(Np(e),t))}(t,o),i=n.props,s=0,l=0;s<a.length;s++)for(var u=0;u<i.length;u++,l++)e.props[l]=o[s]?a[s].replace(/&\f/g,i[u]):i[u]+" "+a[s]}}},id=function(e){if("decl"===e.type){var t=e.value;108===t.charCodeAt(0)&&98===t.charCodeAt(2)&&(e.return="",e.value="")}},sd=[function(e,t,n,r){if(e.length>-1&&!e.return)switch(e.type){case Yp:e.return=Kp(e.value,e.length);break;case qp:return Qp([Cp(e,{value:pp(e.value,"@","@"+Hp)})],r);case Gp:if(e.length)return function(e,t){return e.map(t).join("")}(e.props,(function(t){switch(function(e,t){return(e=/(::plac\w+|:read-\w+)/.exec(e))?e[0]:e}(t)){case":read-only":case":read-write":return Qp([Cp(e,{props:[pp(t,/:(read-\w+)/,":-moz-$1")]})],r);case"::placeholder":return Qp([Cp(e,{props:[pp(t,/:(plac\w+)/,":-webkit-input-$1")]}),Cp(e,{props:[pp(t,/:(plac\w+)/,":-moz-$1")]}),Cp(e,{props:[pp(t,/:(plac\w+)/,Bp+"input-$1")]})],r)}return""}))}}];const ld=function(e){var t=e.key;if("css"===t){var n=document.querySelectorAll("style[data-emotion]:not([data-s])");Array.prototype.forEach.call(n,(function(e){-1!==e.getAttribute("data-emotion").indexOf(" ")&&(document.head.appendChild(e),e.setAttribute("data-s",""))}))}var r,o,a=e.stylisPlugins||sd,i={},s=[];r=e.container||document.head,Array.prototype.forEach.call(document.querySelectorAll('style[data-emotion^="'+t+' "]'),(function(e){for(var t=e.getAttribute("data-emotion").split(" "),n=1;n<t.length;n++)i[t[n]]=!0;s.push(e)}));var l,u,c,f,p=[Xp,(f=function(e){l.insert(e)},function(e){e.root||(e=e.return)&&f(e)})],d=(u=[ad,id].concat(a,p),c=gp(u),function(e,t,n,r){for(var o="",a=0;a<c;a++)o+=u[a](e,t,n,r)||"";return o});o=function(e,t,n,r){l=n,function(e){Qp(Jp(e),d)}(e?e+"{"+t.styles+"}":t.styles),r&&(h.inserted[t.name]=!0)};var h={key:t,sheet:new sp({key:t,container:r,nonce:e.nonce,speedy:e.speedy,prepend:e.prepend,insertionPoint:e.insertionPoint}),nonce:e.nonce,inserted:i,registered:{},insert:o};return h.sheet.hydrate(s),h};function ud(e,t,n){var r="";return n.split(" ").forEach((function(n){void 0!==e[n]?t.push(e[n]+";"):r+=n+" "})),r}var cd=function(e,t,n){var r=e.key+"-"+t.name;!1===n&&void 0===e.registered[r]&&(e.registered[r]=t.styles)},fd=function(e,t,n){cd(e,t,n);var r=e.key+"-"+t.name;if(void 0===e.inserted[t.name]){var o=t;do{e.insert(t===o?"."+r:"",o,e.sheet,!0),o=o.next}while(void 0!==o)}};const pd=function(e){for(var t,n=0,r=0,o=e.length;o>=4;++r,o-=4)t=1540483477*(65535&(t=255&e.charCodeAt(r)|(255&e.charCodeAt(++r))<<8|(255&e.charCodeAt(++r))<<16|(255&e.charCodeAt(++r))<<24))+(59797*(t>>>16)<<16),n=1540483477*(65535&(t^=t>>>24))+(59797*(t>>>16)<<16)^1540483477*(65535&n)+(59797*(n>>>16)<<16);switch(o){case 3:n^=(255&e.charCodeAt(r+2))<<16;case 2:n^=(255&e.charCodeAt(r+1))<<8;case 1:n=1540483477*(65535&(n^=255&e.charCodeAt(r)))+(59797*(n>>>16)<<16)}return(((n=1540483477*(65535&(n^=n>>>13))+(59797*(n>>>16)<<16))^n>>>15)>>>0).toString(36)};var dd=/[A-Z]|^ms/g,hd=/_EMO_([^_]+?)_([^]*?)_EMO_/g,md=function(e){return 45===e.charCodeAt(1)},vd=function(e){return null!=e&&"boolean"!=typeof e},gd=fe((function(e){return md(e)?e:e.replace(dd,"-$&").toLowerCase()})),yd=function(e,t){switch(e){case"animation":case"animationName":if("string"==typeof t)return t.replace(hd,(function(e,t,n){return wd={name:t,styles:n,next:wd},t}))}return 1===ce[e]||md(e)||"number"!=typeof t||0===t?t:t+"px"};function bd(e,t,n){if(null==n)return"";if(void 0!==n.__emotion_styles)return n;switch(typeof n){case"boolean":return"";case"object":if(1===n.anim)return wd={name:n.name,styles:n.styles,next:wd},n.name;if(void 0!==n.styles){var r=n.next;if(void 0!==r)for(;void 0!==r;)wd={name:r.name,styles:r.styles,next:wd},r=r.next;return n.styles+";"}return function(e,t,n){var r="";if(Array.isArray(n))for(var o=0;o<n.length;o++)r+=bd(e,t,n[o])+";";else for(var a in n){var i=n[a];if("object"!=typeof i)null!=t&&void 0!==t[i]?r+=a+"{"+t[i]+"}":vd(i)&&(r+=gd(a)+":"+yd(a,i)+";");else if(!Array.isArray(i)||"string"!=typeof i[0]||null!=t&&void 0!==t[i[0]]){var s=bd(e,t,i);switch(a){case"animation":case"animationName":r+=gd(a)+":"+s+";";break;default:r+=a+"{"+s+"}"}}else for(var l=0;l<i.length;l++)vd(i[l])&&(r+=gd(a)+":"+yd(a,i[l])+";")}return r}(e,t,n);case"function":if(void 0!==e){var o=wd,a=n(e);return wd=o,bd(e,t,a)}}if(null==t)return n;var i=t[n];return void 0!==i?i:n}var wd,xd=/label:\s*([^\s;\n{]+)\s*(;|$)/g,Ed=function(e,t,n){if(1===e.length&&"object"==typeof e[0]&&null!==e[0]&&void 0!==e[0].styles)return e[0];var r=!0,o="";wd=void 0;var a=e[0];null==a||void 0===a.raw?(r=!1,o+=bd(n,t,a)):o+=a[0];for(var i=1;i<e.length;i++)o+=bd(n,t,e[i]),r&&(o+=a[i]);xd.lastIndex=0;for(var s,l="";null!==(s=xd.exec(o));)l+="-"+s[1];return{name:pd(o)+l,styles:o,next:wd}},Sd={}.hasOwnProperty,kd=(0,e.createContext)("undefined"!=typeof HTMLElement?ld({key:"css"}):null);kd.Provider;var _d=function(t){return(0,e.forwardRef)((function(n,r){var o=(0,e.useContext)(kd);return t(n,o,r)}))},Od=(0,e.createContext)({}),Cd=t.useInsertionEffect?t.useInsertionEffect:function(e){e()};function Pd(e){Cd(e)}var jd="__EMOTION_TYPE_PLEASE_DO_NOT_USE__",Ad=function(e,t){var n={};for(var r in t)Sd.call(t,r)&&(n[r]=t[r]);return n[jd]=e,n},Id=function(e){var t=e.cache,n=e.serialized,r=e.isStringTag;return cd(t,n,r),Pd((function(){return fd(t,n,r)})),null},Td=_d((function(t,n,r){var o=t.css;"string"==typeof o&&void 0!==n.registered[o]&&(o=n.registered[o]);var a=t[jd],i=[o],s="";"string"==typeof t.className?s=ud(n.registered,i,t.className):null!=t.className&&(s=t.className+" ");var l=Ed(i,void 0,(0,e.useContext)(Od));s+=n.key+"-"+l.name;var u={};for(var c in t)Sd.call(t,c)&&"css"!==c&&c!==jd&&(u[c]=t[c]);return u.ref=r,u.className=s,(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Id,{cache:n,serialized:l,isStringTag:"string"==typeof a}),(0,e.createElement)(a,u))})),Rd=function(t,n){var r=arguments;if(null==n||!Sd.call(n,"css"))return e.createElement.apply(void 0,r);var o=r.length,a=new Array(o);a[0]=Td,a[1]=Ad(t,n);for(var i=2;i<o;i++)a[i]=r[i];return e.createElement.apply(null,a)};function Nd(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return Ed(t)}t.useInsertionEffect?t.useInsertionEffect:e.useLayoutEffect;var Md=function e(t){for(var n=t.length,r=0,o="";r<n;r++){var a=t[r];if(null!=a){var i=void 0;switch(typeof a){case"boolean":break;case"object":if(Array.isArray(a))i=e(a);else for(var s in i="",a)a[s]&&s&&(i&&(i+=" "),i+=s);break;default:i=a}i&&(o&&(o+=" "),o+=i)}}return o};function Fd(e,t,n){var r=[],o=ud(e,r,n);return r.length<2?n:o+t(r)}var Ld=function(e){var t=e.cache,n=e.serializedArr;return Pd((function(){for(var e=0;e<n.length;e++)fd(t,n[e],!1)})),null},Dd=_d((function(t,n){var r=[],o=function(){for(var e=arguments.length,t=new Array(e),o=0;o<e;o++)t[o]=arguments[o];var a=Ed(t,n.registered);return r.push(a),cd(n,a,!1),n.key+"-"+a.name},a={css:o,cx:function(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];return Fd(n.registered,o,Md(t))},theme:(0,e.useContext)(Od)},i=t.children(a);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)(Ld,{cache:n,serializedArr:r}),i)}));function zd(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function Ud(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 Vd(e,t){if(e){if("string"==typeof e)return Ud(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Ud(e,t):void 0}}function Bd(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,a=[],i=!0,s=!1;try{for(n=n.call(e);!(i=(r=n.next()).done)&&(a.push(r.value),!t||a.length!==t);i=!0);}catch(e){s=!0,o=e}finally{try{i||null==n.return||n.return()}finally{if(s)throw o}}return a}}(e,t)||Vd(e,t)||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 Wd(e){return Wd="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},Wd(e)}function Hd(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function $d(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Gd(e,t,n){return t&&$d(e.prototype,t),n&&$d(e,n),Object.defineProperty(e,"prototype",{writable:!1}),e}function Yd(e,t){return Yd=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},Yd(e,t)}function qd(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&Yd(e,t)}function Qd(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Xd(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Kd(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Jd(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Kd(Object(n),!0).forEach((function(t){Xd(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Kd(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Zd(e){return Zd=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},Zd(e)}function eh(e,t){return!t||"object"!=typeof t&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function th(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=Zd(e);if(t){var o=Zd(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return eh(this,n)}}var nh=["className","clearValue","cx","getStyles","getValue","hasValue","isMulti","isRtl","options","selectOption","selectProps","setValue","theme"],rh=function(){};function oh(e,t){return t?"-"===t[0]?e+t:e+"__"+t:e}function ah(e,t,n){var r=[n];if(t&&e)for(var o in t)t.hasOwnProperty(o)&&t[o]&&r.push("".concat(oh(e,o)));return r.filter((function(e){return e})).map((function(e){return String(e).trim()})).join(" ")}var ih=function(e){return t=e,Array.isArray(t)?e.filter(Boolean):"object"===Wd(e)&&null!==e?[e]:[];var t},sh=function(e){return e.className,e.clearValue,e.cx,e.getStyles,e.getValue,e.hasValue,e.isMulti,e.isRtl,e.options,e.selectOption,e.selectProps,e.setValue,e.theme,Jd({},zd(e,nh))};function lh(e){return[document.documentElement,document.body,window].indexOf(e)>-1}function uh(e){return lh(e)?window.pageYOffset:e.scrollTop}function ch(e,t){lh(e)?window.scrollTo(0,t):e.scrollTop=t}function fh(e,t,n,r){return n*((e=e/r-1)*e*e+1)+t}function ph(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:200,r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:rh,o=uh(e),a=t-o,i=10,s=0;function l(){var t=fh(s+=i,o,a,n);ch(e,t),s<n?window.requestAnimationFrame(l):r(e)}l()}function dh(){try{return document.createEvent("TouchEvent"),!0}catch(e){return!1}}var hh=!1,mh={get passive(){return hh=!0}},vh="undefined"!=typeof window?window:{};vh.addEventListener&&vh.removeEventListener&&(vh.addEventListener("p",rh,mh),vh.removeEventListener("p",rh,!1));var gh=hh;function yh(e){return null!=e}function bh(e,t,n){return e?t:n}function wh(e){var t=e.maxHeight,n=e.menuEl,r=e.minHeight,o=e.placement,a=e.shouldScroll,i=e.isFixedPosition,s=e.theme.spacing,l=function(e){var t=getComputedStyle(e),n="absolute"===t.position,r=/(auto|scroll)/;if("fixed"===t.position)return document.documentElement;for(var o=e;o=o.parentElement;)if(t=getComputedStyle(o),(!n||"static"!==t.position)&&r.test(t.overflow+t.overflowY+t.overflowX))return o;return document.documentElement}(n),u={placement:"bottom",maxHeight:t};if(!n||!n.offsetParent)return u;var c=l.getBoundingClientRect().height,f=n.getBoundingClientRect(),p=f.bottom,d=f.height,h=f.top,m=n.offsetParent.getBoundingClientRect().top,v=window.innerHeight,g=uh(l),y=parseInt(getComputedStyle(n).marginBottom,10),b=parseInt(getComputedStyle(n).marginTop,10),w=m-b,x=v-h,E=w+g,S=c-g-h,k=p-v+g+y,_=g+h-b,O=160;switch(o){case"auto":case"bottom":if(x>=d)return{placement:"bottom",maxHeight:t};if(S>=d&&!i)return a&&ph(l,k,O),{placement:"bottom",maxHeight:t};if(!i&&S>=r||i&&x>=r)return a&&ph(l,k,O),{placement:"bottom",maxHeight:i?x-y:S-y};if("auto"===o||i){var C=t,P=i?w:E;return P>=r&&(C=Math.min(P-y-s.controlHeight,t)),{placement:"top",maxHeight:C}}if("bottom"===o)return a&&ch(l,k),{placement:"bottom",maxHeight:t};break;case"top":if(w>=d)return{placement:"top",maxHeight:t};if(E>=d&&!i)return a&&ph(l,_,O),{placement:"top",maxHeight:t};if(!i&&E>=r||i&&w>=r){var j=t;return(!i&&E>=r||i&&w>=r)&&(j=i?w-b:E-b),a&&ph(l,_,O),{placement:"top",maxHeight:j}}return{placement:"bottom",maxHeight:t};default:throw new Error('Invalid placement provided "'.concat(o,'".'))}return u}var xh=function(e){return"auto"===e?"bottom":e},Eh=(0,e.createContext)({getPortalPlacement:null}),Sh=function(e){qd(n,e);var t=th(n);function n(){var e;Hd(this,n);for(var r=arguments.length,o=new Array(r),a=0;a<r;a++)o[a]=arguments[a];return(e=t.call.apply(t,[this].concat(o))).state={maxHeight:e.props.maxMenuHeight,placement:null},e.context=void 0,e.getPlacement=function(t){var n=e.props,r=n.minMenuHeight,o=n.maxMenuHeight,a=n.menuPlacement,i=n.menuPosition,s=n.menuShouldScrollIntoView,l=n.theme;if(t){var u="fixed"===i,c=wh({maxHeight:o,menuEl:t,minHeight:r,placement:a,shouldScroll:s&&!u,isFixedPosition:u,theme:l}),f=e.context.getPortalPlacement;f&&f(c),e.setState(c)}},e.getUpdatedProps=function(){var t=e.props.menuPlacement,n=e.state.placement||xh(t);return Jd(Jd({},e.props),{},{placement:n,maxHeight:e.state.maxHeight})},e}return Gd(n,[{key:"render",value:function(){return(0,this.props.children)({ref:this.getPlacement,placerProps:this.getUpdatedProps()})}}]),n}(e.Component);Sh.contextType=Eh;var kh=function(e){var t=e.theme,n=t.spacing.baseUnit;return{color:t.colors.neutral40,padding:"".concat(2*n,"px ").concat(3*n,"px"),textAlign:"center"}},_h=kh,Oh=kh,Ch=function(e){var t=e.children,n=e.className,r=e.cx,o=e.getStyles,a=e.innerProps;return Rd("div",ip({css:o("noOptionsMessage",e),className:r({"menu-notice":!0,"menu-notice--no-options":!0},n)},a),t)};Ch.defaultProps={children:"No options"};var Ph=function(e){var t=e.children,n=e.className,r=e.cx,o=e.getStyles,a=e.innerProps;return Rd("div",ip({css:o("loadingMessage",e),className:r({"menu-notice":!0,"menu-notice--loading":!0},n)},a),t)};Ph.defaultProps={children:"Loading..."};var jh,Ah,Ih,Th=function(e){qd(r,e);var t=th(r);function r(){var e;Hd(this,r);for(var n=arguments.length,o=new Array(n),a=0;a<n;a++)o[a]=arguments[a];return(e=t.call.apply(t,[this].concat(o))).state={placement:null},e.getPortalPlacement=function(t){var n=t.placement;n!==xh(e.props.menuPlacement)&&e.setState({placement:n})},e}return Gd(r,[{key:"render",value:function(){var e=this.props,t=e.appendTo,r=e.children,o=e.className,a=e.controlElement,i=e.cx,s=e.innerProps,l=e.menuPlacement,u=e.menuPosition,c=e.getStyles,f="fixed"===u;if(!t&&!f||!a)return null;var p=this.state.placement||xh(l),d=function(e){var t=e.getBoundingClientRect();return{bottom:t.bottom,height:t.height,left:t.left,right:t.right,top:t.top,width:t.width}}(a),h=f?0:window.pageYOffset,m=d[p]+h,v=Rd("div",ip({css:c("menuPortal",{offset:m,position:u,rect:d}),className:i({"menu-portal":!0},o)},s),r);return Rd(Eh.Provider,{value:{getPortalPlacement:this.getPortalPlacement}},t?(0,n.createPortal)(v,t):v)}}]),r}(e.Component),Rh=["size"],Nh={name:"8mmkcg",styles:"display:inline-block;fill:currentColor;line-height:1;stroke:currentColor;stroke-width:0"},Mh=function(e){var t=e.size,n=zd(e,Rh);return Rd("svg",ip({height:t,width:t,viewBox:"0 0 20 20","aria-hidden":"true",focusable:"false",css:Nh},n))},Fh=function(e){return Rd(Mh,ip({size:20},e),Rd("path",{d:"M14.348 14.849c-0.469 0.469-1.229 0.469-1.697 0l-2.651-3.030-2.651 3.029c-0.469 0.469-1.229 0.469-1.697 0-0.469-0.469-0.469-1.229 0-1.697l2.758-3.15-2.759-3.152c-0.469-0.469-0.469-1.228 0-1.697s1.228-0.469 1.697 0l2.652 3.031 2.651-3.031c0.469-0.469 1.228-0.469 1.697 0s0.469 1.229 0 1.697l-2.758 3.152 2.758 3.15c0.469 0.469 0.469 1.229 0 1.698z"}))},Lh=function(e){return Rd(Mh,ip({size:20},e),Rd("path",{d:"M4.516 7.548c0.436-0.446 1.043-0.481 1.576 0l3.908 3.747 3.908-3.747c0.533-0.481 1.141-0.446 1.574 0 0.436 0.445 0.408 1.197 0 1.615-0.406 0.418-4.695 4.502-4.695 4.502-0.217 0.223-0.502 0.335-0.787 0.335s-0.57-0.112-0.789-0.335c0 0-4.287-4.084-4.695-4.502s-0.436-1.17 0-1.615z"}))},Dh=function(e){var t=e.isFocused,n=e.theme,r=n.spacing.baseUnit,o=n.colors;return{label:"indicatorContainer",color:t?o.neutral60:o.neutral20,display:"flex",padding:2*r,transition:"color 150ms",":hover":{color:t?o.neutral80:o.neutral40}}},zh=Dh,Uh=Dh,Vh=function(){var e=Nd.apply(void 0,arguments),t="animation-"+e.name;return{name:t,styles:"@keyframes "+t+"{"+e.styles+"}",anim:1,toString:function(){return"_EMO_"+this.name+"_"+this.styles+"_EMO_"}}}(jh||(Ah=["\n 0%, 80%, 100% { opacity: 0; }\n 40% { opacity: 1; }\n"],Ih||(Ih=Ah.slice(0)),jh=Object.freeze(Object.defineProperties(Ah,{raw:{value:Object.freeze(Ih)}})))),Bh=function(e){var t=e.delay,n=e.offset;return Rd("span",{css:Nd({animation:"".concat(Vh," 1s ease-in-out ").concat(t,"ms infinite;"),backgroundColor:"currentColor",borderRadius:"1em",display:"inline-block",marginLeft:n?"1em":void 0,height:"1em",verticalAlign:"top",width:"1em"},"","")})},Wh=function(e){var t=e.className,n=e.cx,r=e.getStyles,o=e.innerProps,a=e.isRtl;return Rd("div",ip({css:r("loadingIndicator",e),className:n({indicator:!0,"loading-indicator":!0},t)},o),Rd(Bh,{delay:0,offset:a}),Rd(Bh,{delay:160,offset:!0}),Rd(Bh,{delay:320,offset:!a}))};Wh.defaultProps={size:4};var Hh=["data"],$h=["innerRef","isDisabled","isHidden","inputClassName"],Gh={gridArea:"1 / 2",font:"inherit",minWidth:"2px",border:0,margin:0,outline:0,padding:0},Yh={flex:"1 1 auto",display:"inline-grid",gridArea:"1 / 1 / 2 / 3",gridTemplateColumns:"0 min-content","&:after":Jd({content:'attr(data-value) " "',visibility:"hidden",whiteSpace:"pre"},Gh)},qh=function(e){return Jd({label:"input",color:"inherit",background:0,opacity:e?0:1,width:"100%"},Gh)},Qh=function(e){var t=e.children,n=e.innerProps;return Rd("div",n,t)},Xh={ClearIndicator:function(e){var t=e.children,n=e.className,r=e.cx,o=e.getStyles,a=e.innerProps;return Rd("div",ip({css:o("clearIndicator",e),className:r({indicator:!0,"clear-indicator":!0},n)},a),t||Rd(Fh,null))},Control:function(e){var t=e.children,n=e.cx,r=e.getStyles,o=e.className,a=e.isDisabled,i=e.isFocused,s=e.innerRef,l=e.innerProps,u=e.menuIsOpen;return Rd("div",ip({ref:s,css:r("control",e),className:n({control:!0,"control--is-disabled":a,"control--is-focused":i,"control--menu-is-open":u},o)},l),t)},DropdownIndicator:function(e){var t=e.children,n=e.className,r=e.cx,o=e.getStyles,a=e.innerProps;return Rd("div",ip({css:o("dropdownIndicator",e),className:r({indicator:!0,"dropdown-indicator":!0},n)},a),t||Rd(Lh,null))},DownChevron:Lh,CrossIcon:Fh,Group:function(e){var t=e.children,n=e.className,r=e.cx,o=e.getStyles,a=e.Heading,i=e.headingProps,s=e.innerProps,l=e.label,u=e.theme,c=e.selectProps;return Rd("div",ip({css:o("group",e),className:r({group:!0},n)},s),Rd(a,ip({},i,{selectProps:c,theme:u,getStyles:o,cx:r}),l),Rd("div",null,t))},GroupHeading:function(e){var t=e.getStyles,n=e.cx,r=e.className,o=sh(e);o.data;var a=zd(o,Hh);return Rd("div",ip({css:t("groupHeading",e),className:n({"group-heading":!0},r)},a))},IndicatorsContainer:function(e){var t=e.children,n=e.className,r=e.cx,o=e.innerProps,a=e.getStyles;return Rd("div",ip({css:a("indicatorsContainer",e),className:r({indicators:!0},n)},o),t)},IndicatorSeparator:function(e){var t=e.className,n=e.cx,r=e.getStyles,o=e.innerProps;return Rd("span",ip({},o,{css:r("indicatorSeparator",e),className:n({"indicator-separator":!0},t)}))},Input:function(e){var t=e.className,n=e.cx,r=e.getStyles,o=e.value,a=sh(e),i=a.innerRef,s=a.isDisabled,l=a.isHidden,u=a.inputClassName,c=zd(a,$h);return Rd("div",{className:n({"input-container":!0},t),css:r("input",e),"data-value":o||""},Rd("input",ip({className:n({input:!0},u),ref:i,style:qh(l),disabled:s},c)))},LoadingIndicator:Wh,Menu:function(e){var t=e.children,n=e.className,r=e.cx,o=e.getStyles,a=e.innerRef,i=e.innerProps;return Rd("div",ip({css:o("menu",e),className:r({menu:!0},n),ref:a},i),t)},MenuList:function(e){var t=e.children,n=e.className,r=e.cx,o=e.getStyles,a=e.innerProps,i=e.innerRef,s=e.isMulti;return Rd("div",ip({css:o("menuList",e),className:r({"menu-list":!0,"menu-list--is-multi":s},n),ref:i},a),t)},MenuPortal:Th,LoadingMessage:Ph,NoOptionsMessage:Ch,MultiValue:function(e){var t=e.children,n=e.className,r=e.components,o=e.cx,a=e.data,i=e.getStyles,s=e.innerProps,l=e.isDisabled,u=e.removeProps,c=e.selectProps,f=r.Container,p=r.Label,d=r.Remove;return Rd(Dd,null,(function(r){var h=r.css,m=r.cx;return Rd(f,{data:a,innerProps:Jd({className:m(h(i("multiValue",e)),o({"multi-value":!0,"multi-value--is-disabled":l},n))},s),selectProps:c},Rd(p,{data:a,innerProps:{className:m(h(i("multiValueLabel",e)),o({"multi-value__label":!0},n))},selectProps:c},t),Rd(d,{data:a,innerProps:Jd({className:m(h(i("multiValueRemove",e)),o({"multi-value__remove":!0},n)),"aria-label":"Remove ".concat(t||"option")},u),selectProps:c}))}))},MultiValueContainer:Qh,MultiValueLabel:Qh,MultiValueRemove:function(e){var t=e.children,n=e.innerProps;return Rd("div",ip({role:"button"},n),t||Rd(Fh,{size:14}))},Option:function(e){var t=e.children,n=e.className,r=e.cx,o=e.getStyles,a=e.isDisabled,i=e.isFocused,s=e.isSelected,l=e.innerRef,u=e.innerProps;return Rd("div",ip({css:o("option",e),className:r({option:!0,"option--is-disabled":a,"option--is-focused":i,"option--is-selected":s},n),ref:l,"aria-disabled":a},u),t)},Placeholder:function(e){var t=e.children,n=e.className,r=e.cx,o=e.getStyles,a=e.innerProps;return Rd("div",ip({css:o("placeholder",e),className:r({placeholder:!0},n)},a),t)},SelectContainer:function(e){var t=e.children,n=e.className,r=e.cx,o=e.getStyles,a=e.innerProps,i=e.isDisabled,s=e.isRtl;return Rd("div",ip({css:o("container",e),className:r({"--is-disabled":i,"--is-rtl":s},n)},a),t)},SingleValue:function(e){var t=e.children,n=e.className,r=e.cx,o=e.getStyles,a=e.isDisabled,i=e.innerProps;return Rd("div",ip({css:o("singleValue",e),className:r({"single-value":!0,"single-value--is-disabled":a},n)},i),t)},ValueContainer:function(e){var t=e.children,n=e.className,r=e.cx,o=e.innerProps,a=e.isMulti,i=e.getStyles,s=e.hasValue;return Rd("div",ip({css:i("valueContainer",e),className:r({"value-container":!0,"value-container--is-multi":a,"value-container--has-value":s},n)},o),t)}};function Kh(e){return function(e){if(Array.isArray(e))return Ud(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||Vd(e)||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.")}()}var Jh=Number.isNaN||function(e){return"number"==typeof e&&e!=e};function Zh(e,t){return e===t||!(!Jh(e)||!Jh(t))}function em(e,t){if(e.length!==t.length)return!1;for(var n=0;n<e.length;n++)if(!Zh(e[n],t[n]))return!1;return!0}for(var tm={name:"7pg0cj-a11yText",styles:"label:a11yText;z-index:9999;border:0;clip:rect(1px, 1px, 1px, 1px);height:1px;width:1px;position:absolute;overflow:hidden;padding:0;white-space:nowrap"},nm=function(e){return Rd("span",ip({css:tm},e))},rm={guidance:function(e){var t=e.isSearchable,n=e.isMulti,r=e.isDisabled,o=e.tabSelectsValue;switch(e.context){case"menu":return"Use Up and Down to choose options".concat(r?"":", press Enter to select the currently focused option",", press Escape to exit the menu").concat(o?", press Tab to select the option and exit the menu":"",".");case"input":return"".concat(e["aria-label"]||"Select"," is focused ").concat(t?",type to refine list":"",", press Down to open the menu, ").concat(n?" press left to focus selected values":"");case"value":return"Use left and right to toggle between focused values, press Backspace to remove the currently focused value";default:return""}},onChange:function(e){var t=e.action,n=e.label,r=void 0===n?"":n,o=e.labels,a=e.isDisabled;switch(t){case"deselect-option":case"pop-value":case"remove-value":return"option ".concat(r,", deselected.");case"clear":return"All selected options have been cleared.";case"initial-input-focus":return"option".concat(o.length>1?"s":""," ").concat(o.join(","),", selected.");case"select-option":return"option ".concat(r,a?" is disabled. Select another option.":", selected.");default:return""}},onFocus:function(e){var t=e.context,n=e.focused,r=e.options,o=e.label,a=void 0===o?"":o,i=e.selectValue,s=e.isDisabled,l=e.isSelected,u=function(e,t){return e&&e.length?"".concat(e.indexOf(t)+1," of ").concat(e.length):""};if("value"===t&&i)return"value ".concat(a," focused, ").concat(u(i,n),".");if("menu"===t){var c=s?" disabled":"",f="".concat(l?"selected":"focused").concat(c);return"option ".concat(a," ").concat(f,", ").concat(u(r,n),".")}return""},onFilter:function(e){var t=e.inputValue,n=e.resultsMessage;return"".concat(n).concat(t?" for search term "+t:"",".")}},om=function(t){var n=t.ariaSelection,r=t.focusedOption,o=t.focusedValue,a=t.focusableOptions,i=t.isFocused,s=t.selectValue,l=t.selectProps,u=t.id,c=l.ariaLiveMessages,f=l.getOptionLabel,p=l.inputValue,d=l.isMulti,h=l.isOptionDisabled,m=l.isSearchable,v=l.menuIsOpen,g=l.options,y=l.screenReaderStatus,b=l.tabSelectsValue,w=l["aria-label"],x=l["aria-live"],E=(0,e.useMemo)((function(){return Jd(Jd({},rm),c||{})}),[c]),S=(0,e.useMemo)((function(){var e,t="";if(n&&E.onChange){var r=n.option,o=n.options,a=n.removedValue,i=n.removedValues,l=n.value,u=a||r||(e=l,Array.isArray(e)?null:e),c=u?f(u):"",p=o||i||void 0,d=p?p.map(f):[],m=Jd({isDisabled:u&&h(u,s),label:c,labels:d},n);t=E.onChange(m)}return t}),[n,E,h,s,f]),k=(0,e.useMemo)((function(){var e="",t=r||o,n=!!(r&&s&&s.includes(r));if(t&&E.onFocus){var a={focused:t,label:f(t),isDisabled:h(t,s),isSelected:n,options:g,context:t===r?"menu":"value",selectValue:s};e=E.onFocus(a)}return e}),[r,o,f,h,E,g,s]),_=(0,e.useMemo)((function(){var e="";if(v&&g.length&&E.onFilter){var t=y({count:a.length});e=E.onFilter({inputValue:p,resultsMessage:t})}return e}),[a,p,v,E,g,y]),O=(0,e.useMemo)((function(){var e="";if(E.guidance){var t=o?"value":v?"menu":"input";e=E.guidance({"aria-label":w,context:t,isDisabled:r&&h(r,s),isMulti:d,isSearchable:m,tabSelectsValue:b})}return e}),[w,r,o,d,h,m,v,E,s,b]),C="".concat(k," ").concat(_," ").concat(O),P=Rd(e.Fragment,null,Rd("span",{id:"aria-selection"},S),Rd("span",{id:"aria-context"},C)),j="initial-input-focus"===(null==n?void 0:n.action);return Rd(e.Fragment,null,Rd(nm,{id:u},j&&P),Rd(nm,{"aria-live":x,"aria-atomic":"false","aria-relevant":"additions text"},i&&!j&&P))},am=[{base:"A",letters:"AⒶAÀÁÂẦẤẪẨÃĀĂẰẮẴẲȦǠÄǞẢÅǺǍȀȂẠẬẶḀĄȺⱯ"},{base:"AA",letters:"Ꜳ"},{base:"AE",letters:"ÆǼǢ"},{base:"AO",letters:"Ꜵ"},{base:"AU",letters:"Ꜷ"},{base:"AV",letters:"ꜸꜺ"},{base:"AY",letters:"Ꜽ"},{base:"B",letters:"BⒷBḂḄḆɃƂƁ"},{base:"C",letters:"CⒸCĆĈĊČÇḈƇȻꜾ"},{base:"D",letters:"DⒹDḊĎḌḐḒḎĐƋƊƉꝹ"},{base:"DZ",letters:"DZDŽ"},{base:"Dz",letters:"DzDž"},{base:"E",letters:"EⒺEÈÉÊỀẾỄỂẼĒḔḖĔĖËẺĚȄȆẸỆȨḜĘḘḚƐƎ"},{base:"F",letters:"FⒻFḞƑꝻ"},{base:"G",letters:"GⒼGǴĜḠĞĠǦĢǤƓꞠꝽꝾ"},{base:"H",letters:"HⒽHĤḢḦȞḤḨḪĦⱧⱵꞍ"},{base:"I",letters:"IⒾIÌÍÎĨĪĬİÏḮỈǏȈȊỊĮḬƗ"},{base:"J",letters:"JⒿJĴɈ"},{base:"K",letters:"KⓀKḰǨḲĶḴƘⱩꝀꝂꝄꞢ"},{base:"L",letters:"LⓁLĿĹĽḶḸĻḼḺŁȽⱢⱠꝈꝆꞀ"},{base:"LJ",letters:"LJ"},{base:"Lj",letters:"Lj"},{base:"M",letters:"MⓂMḾṀṂⱮƜ"},{base:"N",letters:"NⓃNǸŃÑṄŇṆŅṊṈȠƝꞐꞤ"},{base:"NJ",letters:"NJ"},{base:"Nj",letters:"Nj"},{base:"O",letters:"OⓄOÒÓÔỒỐỖỔÕṌȬṎŌṐṒŎȮȰÖȪỎŐǑȌȎƠỜỚỠỞỢỌỘǪǬØǾƆƟꝊꝌ"},{base:"OI",letters:"Ƣ"},{base:"OO",letters:"Ꝏ"},{base:"OU",letters:"Ȣ"},{base:"P",letters:"PⓅPṔṖƤⱣꝐꝒꝔ"},{base:"Q",letters:"QⓆQꝖꝘɊ"},{base:"R",letters:"RⓇRŔṘŘȐȒṚṜŖṞɌⱤꝚꞦꞂ"},{base:"S",letters:"SⓈSẞŚṤŜṠŠṦṢṨȘŞⱾꞨꞄ"},{base:"T",letters:"TⓉTṪŤṬȚŢṰṮŦƬƮȾꞆ"},{base:"TZ",letters:"Ꜩ"},{base:"U",letters:"UⓊUÙÚÛŨṸŪṺŬÜǛǗǕǙỦŮŰǓȔȖƯỪỨỮỬỰỤṲŲṶṴɄ"},{base:"V",letters:"VⓋVṼṾƲꝞɅ"},{base:"VY",letters:"Ꝡ"},{base:"W",letters:"WⓌWẀẂŴẆẄẈⱲ"},{base:"X",letters:"XⓍXẊẌ"},{base:"Y",letters:"YⓎYỲÝŶỸȲẎŸỶỴƳɎỾ"},{base:"Z",letters:"ZⓏZŹẐŻŽẒẔƵȤⱿⱫꝢ"},{base:"a",letters:"aⓐaẚàáâầấẫẩãāăằắẵẳȧǡäǟảåǻǎȁȃạậặḁąⱥɐ"},{base:"aa",letters:"ꜳ"},{base:"ae",letters:"æǽǣ"},{base:"ao",letters:"ꜵ"},{base:"au",letters:"ꜷ"},{base:"av",letters:"ꜹꜻ"},{base:"ay",letters:"ꜽ"},{base:"b",letters:"bⓑbḃḅḇƀƃɓ"},{base:"c",letters:"cⓒcćĉċčçḉƈȼꜿↄ"},{base:"d",letters:"dⓓdḋďḍḑḓḏđƌɖɗꝺ"},{base:"dz",letters:"dzdž"},{base:"e",letters:"eⓔeèéêềếễểẽēḕḗĕėëẻěȅȇẹệȩḝęḙḛɇɛǝ"},{base:"f",letters:"fⓕfḟƒꝼ"},{base:"g",letters:"gⓖgǵĝḡğġǧģǥɠꞡᵹꝿ"},{base:"h",letters:"hⓗhĥḣḧȟḥḩḫẖħⱨⱶɥ"},{base:"hv",letters:"ƕ"},{base:"i",letters:"iⓘiìíîĩīĭïḯỉǐȉȋịįḭɨı"},{base:"j",letters:"jⓙjĵǰɉ"},{base:"k",letters:"kⓚkḱǩḳķḵƙⱪꝁꝃꝅꞣ"},{base:"l",letters:"lⓛlŀĺľḷḹļḽḻſłƚɫⱡꝉꞁꝇ"},{base:"lj",letters:"lj"},{base:"m",letters:"mⓜmḿṁṃɱɯ"},{base:"n",letters:"nⓝnǹńñṅňṇņṋṉƞɲʼnꞑꞥ"},{base:"nj",letters:"nj"},{base:"o",letters:"oⓞoòóôồốỗổõṍȭṏōṑṓŏȯȱöȫỏőǒȍȏơờớỡởợọộǫǭøǿɔꝋꝍɵ"},{base:"oi",letters:"ƣ"},{base:"ou",letters:"ȣ"},{base:"oo",letters:"ꝏ"},{base:"p",letters:"pⓟpṕṗƥᵽꝑꝓꝕ"},{base:"q",letters:"qⓠqɋꝗꝙ"},{base:"r",letters:"rⓡrŕṙřȑȓṛṝŗṟɍɽꝛꞧꞃ"},{base:"s",letters:"sⓢsßśṥŝṡšṧṣṩșşȿꞩꞅẛ"},{base:"t",letters:"tⓣtṫẗťṭțţṱṯŧƭʈⱦꞇ"},{base:"tz",letters:"ꜩ"},{base:"u",letters:"uⓤuùúûũṹūṻŭüǜǘǖǚủůűǔȕȗưừứữửựụṳųṷṵʉ"},{base:"v",letters:"vⓥvṽṿʋꝟʌ"},{base:"vy",letters:"ꝡ"},{base:"w",letters:"wⓦwẁẃŵẇẅẘẉⱳ"},{base:"x",letters:"xⓧxẋẍ"},{base:"y",letters:"yⓨyỳýŷỹȳẏÿỷẙỵƴɏỿ"},{base:"z",letters:"zⓩzźẑżžẓẕƶȥɀⱬꝣ"}],im=new RegExp("["+am.map((function(e){return e.letters})).join("")+"]","g"),sm={},lm=0;lm<am.length;lm++)for(var um=am[lm],cm=0;cm<um.letters.length;cm++)sm[um.letters[cm]]=um.base;var fm=function(e){return e.replace(im,(function(e){return sm[e]}))},pm=function(e,t){var n;void 0===t&&(t=em);var r,o=[],a=!1;return function(){for(var i=[],s=0;s<arguments.length;s++)i[s]=arguments[s];return a&&n===this&&t(i,o)||(r=e.apply(this,i),a=!0,n=this,o=i),r}}(fm),dm=function(e){return e.replace(/^\s+|\s+$/g,"")},hm=function(e){return"".concat(e.label," ").concat(e.value)},mm=["innerRef"];function vm(e){var t=e.innerRef,n=function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];var o=Object.entries(e).filter((function(e){var t=Bd(e,1)[0];return!n.includes(t)}));return o.reduce((function(e,t){var n=Bd(t,2),r=n[0],o=n[1];return e[r]=o,e}),{})}(zd(e,mm),"onExited","in","enter","exit","appear");return Rd("input",ip({ref:t},n,{css:Nd({label:"dummyInput",background:0,border:0,caretColor:"transparent",fontSize:"inherit",gridArea:"1 / 1 / 2 / 3",outline:0,padding:0,width:1,color:"transparent",left:-100,opacity:0,position:"relative",transform:"scale(.01)"},"","")}))}var gm=["boxSizing","height","overflow","paddingRight","position"],ym={boxSizing:"border-box",overflow:"hidden",position:"relative",height:"100%"};function bm(e){e.preventDefault()}function wm(e){e.stopPropagation()}function xm(){var e=this.scrollTop,t=this.scrollHeight,n=e+this.offsetHeight;0===e?this.scrollTop=1:n===t&&(this.scrollTop=e-1)}function Em(){return"ontouchstart"in window||navigator.maxTouchPoints}var Sm=!("undefined"==typeof window||!window.document||!window.document.createElement),km=0,_m={capture:!1,passive:!1},Om=function(){return document.activeElement&&document.activeElement.blur()},Cm={name:"1kfdb0e",styles:"position:fixed;left:0;bottom:0;right:0;top:0"};function Pm(t){var n=t.children,r=t.lockEnabled,o=t.captureEnabled,a=function(t){var n=t.isEnabled,r=t.onBottomArrive,o=t.onBottomLeave,a=t.onTopArrive,i=t.onTopLeave,s=(0,e.useRef)(!1),l=(0,e.useRef)(!1),u=(0,e.useRef)(0),c=(0,e.useRef)(null),f=(0,e.useCallback)((function(e,t){if(null!==c.current){var n=c.current,u=n.scrollTop,f=n.scrollHeight,p=n.clientHeight,d=c.current,h=t>0,m=f-p-u,v=!1;m>t&&s.current&&(o&&o(e),s.current=!1),h&&l.current&&(i&&i(e),l.current=!1),h&&t>m?(r&&!s.current&&r(e),d.scrollTop=f,v=!0,s.current=!0):!h&&-t>u&&(a&&!l.current&&a(e),d.scrollTop=0,v=!0,l.current=!0),v&&function(e){e.preventDefault(),e.stopPropagation()}(e)}}),[r,o,a,i]),p=(0,e.useCallback)((function(e){f(e,e.deltaY)}),[f]),d=(0,e.useCallback)((function(e){u.current=e.changedTouches[0].clientY}),[]),h=(0,e.useCallback)((function(e){var t=u.current-e.changedTouches[0].clientY;f(e,t)}),[f]),m=(0,e.useCallback)((function(e){if(e){var t=!!gh&&{passive:!1};e.addEventListener("wheel",p,t),e.addEventListener("touchstart",d,t),e.addEventListener("touchmove",h,t)}}),[h,d,p]),v=(0,e.useCallback)((function(e){e&&(e.removeEventListener("wheel",p,!1),e.removeEventListener("touchstart",d,!1),e.removeEventListener("touchmove",h,!1))}),[h,d,p]);return(0,e.useEffect)((function(){if(n){var e=c.current;return m(e),function(){v(e)}}}),[n,m,v]),function(e){c.current=e}}({isEnabled:void 0===o||o,onBottomArrive:t.onBottomArrive,onBottomLeave:t.onBottomLeave,onTopArrive:t.onTopArrive,onTopLeave:t.onTopLeave}),i=function(t){var n=t.isEnabled,r=t.accountForScrollbars,o=void 0===r||r,a=(0,e.useRef)({}),i=(0,e.useRef)(null),s=(0,e.useCallback)((function(e){if(Sm){var t=document.body,n=t&&t.style;if(o&&gm.forEach((function(e){var t=n&&n[e];a.current[e]=t})),o&&km<1){var r=parseInt(a.current.paddingRight,10)||0,i=document.body?document.body.clientWidth:0,s=window.innerWidth-i+r||0;Object.keys(ym).forEach((function(e){var t=ym[e];n&&(n[e]=t)})),n&&(n.paddingRight="".concat(s,"px"))}t&&Em()&&(t.addEventListener("touchmove",bm,_m),e&&(e.addEventListener("touchstart",xm,_m),e.addEventListener("touchmove",wm,_m))),km+=1}}),[o]),l=(0,e.useCallback)((function(e){if(Sm){var t=document.body,n=t&&t.style;km=Math.max(km-1,0),o&&km<1&&gm.forEach((function(e){var t=a.current[e];n&&(n[e]=t)})),t&&Em()&&(t.removeEventListener("touchmove",bm,_m),e&&(e.removeEventListener("touchstart",xm,_m),e.removeEventListener("touchmove",wm,_m)))}}),[o]);return(0,e.useEffect)((function(){if(n){var e=i.current;return s(e),function(){l(e)}}}),[n,s,l]),function(e){i.current=e}}({isEnabled:r});return Rd(e.Fragment,null,r&&Rd("div",{onClick:Om,css:Cm}),n((function(e){a(e),i(e)})))}var jm=function(e){return e.label},Am=function(e){return e.value},Im={clearIndicator:Uh,container:function(e){var t=e.isDisabled;return{label:"container",direction:e.isRtl?"rtl":void 0,pointerEvents:t?"none":void 0,position:"relative"}},control:function(e){var t=e.isDisabled,n=e.isFocused,r=e.theme,o=r.colors,a=r.borderRadius,i=r.spacing;return{label:"control",alignItems:"center",backgroundColor:t?o.neutral5:o.neutral0,borderColor:t?o.neutral10:n?o.primary:o.neutral20,borderRadius:a,borderStyle:"solid",borderWidth:1,boxShadow:n?"0 0 0 1px ".concat(o.primary):void 0,cursor:"default",display:"flex",flexWrap:"wrap",justifyContent:"space-between",minHeight:i.controlHeight,outline:"0 !important",position:"relative",transition:"all 100ms","&:hover":{borderColor:n?o.primary:o.neutral30}}},dropdownIndicator:zh,group:function(e){var t=e.theme.spacing;return{paddingBottom:2*t.baseUnit,paddingTop:2*t.baseUnit}},groupHeading:function(e){var t=e.theme.spacing;return{label:"group",color:"#999",cursor:"default",display:"block",fontSize:"75%",fontWeight:500,marginBottom:"0.25em",paddingLeft:3*t.baseUnit,paddingRight:3*t.baseUnit,textTransform:"uppercase"}},indicatorsContainer:function(){return{alignItems:"center",alignSelf:"stretch",display:"flex",flexShrink:0}},indicatorSeparator:function(e){var t=e.isDisabled,n=e.theme,r=n.spacing.baseUnit,o=n.colors;return{label:"indicatorSeparator",alignSelf:"stretch",backgroundColor:t?o.neutral10:o.neutral20,marginBottom:2*r,marginTop:2*r,width:1}},input:function(e){var t=e.isDisabled,n=e.value,r=e.theme,o=r.spacing,a=r.colors;return Jd({margin:o.baseUnit/2,paddingBottom:o.baseUnit/2,paddingTop:o.baseUnit/2,visibility:t?"hidden":"visible",color:a.neutral80,transform:n?"translateZ(0)":""},Yh)},loadingIndicator:function(e){var t=e.isFocused,n=e.size,r=e.theme,o=r.colors,a=r.spacing.baseUnit;return{label:"loadingIndicator",color:t?o.neutral60:o.neutral20,display:"flex",padding:2*a,transition:"color 150ms",alignSelf:"center",fontSize:n,lineHeight:1,marginRight:n,textAlign:"center",verticalAlign:"middle"}},loadingMessage:Oh,menu:function(e){var t,n=e.placement,r=e.theme,o=r.borderRadius,a=r.spacing,i=r.colors;return Qd(t={label:"menu"},function(e){return e?{bottom:"top",top:"bottom"}[e]:"bottom"}(n),"100%"),Qd(t,"backgroundColor",i.neutral0),Qd(t,"borderRadius",o),Qd(t,"boxShadow","0 0 0 1px hsla(0, 0%, 0%, 0.1), 0 4px 11px hsla(0, 0%, 0%, 0.1)"),Qd(t,"marginBottom",a.menuGutter),Qd(t,"marginTop",a.menuGutter),Qd(t,"position","absolute"),Qd(t,"width","100%"),Qd(t,"zIndex",1),t},menuList:function(e){var t=e.maxHeight,n=e.theme.spacing.baseUnit;return{maxHeight:t,overflowY:"auto",paddingBottom:n,paddingTop:n,position:"relative",WebkitOverflowScrolling:"touch"}},menuPortal:function(e){var t=e.rect,n=e.offset,r=e.position;return{left:t.left,position:r,top:n,width:t.width,zIndex:1}},multiValue:function(e){var t=e.theme,n=t.spacing,r=t.borderRadius;return{label:"multiValue",backgroundColor:t.colors.neutral10,borderRadius:r/2,display:"flex",margin:n.baseUnit/2,minWidth:0}},multiValueLabel:function(e){var t=e.theme,n=t.borderRadius,r=t.colors,o=e.cropWithEllipsis;return{borderRadius:n/2,color:r.neutral80,fontSize:"85%",overflow:"hidden",padding:3,paddingLeft:6,textOverflow:o||void 0===o?"ellipsis":void 0,whiteSpace:"nowrap"}},multiValueRemove:function(e){var t=e.theme,n=t.spacing,r=t.borderRadius,o=t.colors;return{alignItems:"center",borderRadius:r/2,backgroundColor:e.isFocused?o.dangerLight:void 0,display:"flex",paddingLeft:n.baseUnit,paddingRight:n.baseUnit,":hover":{backgroundColor:o.dangerLight,color:o.danger}}},noOptionsMessage:_h,option:function(e){var t=e.isDisabled,n=e.isFocused,r=e.isSelected,o=e.theme,a=o.spacing,i=o.colors;return{label:"option",backgroundColor:r?i.primary:n?i.primary25:"transparent",color:t?i.neutral20:r?i.neutral0:"inherit",cursor:"default",display:"block",fontSize:"inherit",padding:"".concat(2*a.baseUnit,"px ").concat(3*a.baseUnit,"px"),width:"100%",userSelect:"none",WebkitTapHighlightColor:"rgba(0, 0, 0, 0)",":active":{backgroundColor:t?void 0:r?i.primary:i.primary50}}},placeholder:function(e){var t=e.theme,n=t.spacing;return{label:"placeholder",color:t.colors.neutral50,gridArea:"1 / 1 / 2 / 3",marginLeft:n.baseUnit/2,marginRight:n.baseUnit/2}},singleValue:function(e){var t=e.isDisabled,n=e.theme,r=n.spacing,o=n.colors;return{label:"singleValue",color:t?o.neutral40:o.neutral80,gridArea:"1 / 1 / 2 / 3",marginLeft:r.baseUnit/2,marginRight:r.baseUnit/2,maxWidth:"100%",overflow:"hidden",textOverflow:"ellipsis",whiteSpace:"nowrap"}},valueContainer:function(e){var t=e.theme.spacing,n=e.isMulti,r=e.hasValue,o=e.selectProps.controlShouldRenderValue;return{alignItems:"center",display:n&&r&&o?"flex":"grid",flex:1,flexWrap:"wrap",padding:"".concat(t.baseUnit/2,"px ").concat(2*t.baseUnit,"px"),WebkitOverflowScrolling:"touch",position:"relative",overflow:"hidden"}}},Tm={borderRadius:4,colors:{primary:"#2684FF",primary75:"#4C9AFF",primary50:"#B2D4FF",primary25:"#DEEBFF",danger:"#DE350B",dangerLight:"#FFBDAD",neutral0:"hsl(0, 0%, 100%)",neutral5:"hsl(0, 0%, 95%)",neutral10:"hsl(0, 0%, 90%)",neutral20:"hsl(0, 0%, 80%)",neutral30:"hsl(0, 0%, 70%)",neutral40:"hsl(0, 0%, 60%)",neutral50:"hsl(0, 0%, 50%)",neutral60:"hsl(0, 0%, 40%)",neutral70:"hsl(0, 0%, 30%)",neutral80:"hsl(0, 0%, 20%)",neutral90:"hsl(0, 0%, 10%)"},spacing:{baseUnit:4,controlHeight:38,menuGutter:8}},Rm={"aria-live":"polite",backspaceRemovesValue:!0,blurInputOnSelect:dh(),captureMenuScroll:!dh(),closeMenuOnSelect:!0,closeMenuOnScroll:!1,components:{},controlShouldRenderValue:!0,escapeClearsValue:!1,filterOption:function(e,t){if(e.data.__isNew__)return!0;var n=Jd({ignoreCase:!0,ignoreAccents:!0,stringify:hm,trim:!0,matchFrom:"any"},undefined),r=n.ignoreCase,o=n.ignoreAccents,a=n.stringify,i=n.trim,s=n.matchFrom,l=i?dm(t):t,u=i?dm(a(e)):a(e);return r&&(l=l.toLowerCase(),u=u.toLowerCase()),o&&(l=pm(l),u=fm(u)),"start"===s?u.substr(0,l.length)===l:u.indexOf(l)>-1},formatGroupLabel:function(e){return e.label},getOptionLabel:jm,getOptionValue:Am,isDisabled:!1,isLoading:!1,isMulti:!1,isRtl:!1,isSearchable:!0,isOptionDisabled:function(e){return!!e.isDisabled},loadingMessage:function(){return"Loading..."},maxMenuHeight:300,minMenuHeight:140,menuIsOpen:!1,menuPlacement:"bottom",menuPosition:"absolute",menuShouldBlockScroll:!1,menuShouldScrollIntoView:!function(){try{return/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)}catch(e){return!1}}(),noOptionsMessage:function(){return"No options"},openMenuOnFocus:!1,openMenuOnClick:!0,options:[],pageSize:5,placeholder:"Select...",screenReaderStatus:function(e){var t=e.count;return"".concat(t," result").concat(1!==t?"s":""," available")},styles:{},tabIndex:0,tabSelectsValue:!0};function Nm(e,t,n,r){return{type:"option",data:t,isDisabled:Um(e,t,n),isSelected:Vm(e,t,n),label:Dm(e,t),value:zm(e,t),index:r}}function Mm(e,t){return e.options.map((function(n,r){if("options"in n){var o=n.options.map((function(n,r){return Nm(e,n,t,r)})).filter((function(t){return Lm(e,t)}));return o.length>0?{type:"group",data:n,options:o,index:r}:void 0}var a=Nm(e,n,t,r);return Lm(e,a)?a:void 0})).filter(yh)}function Fm(e){return e.reduce((function(e,t){return"group"===t.type?e.push.apply(e,Kh(t.options.map((function(e){return e.data})))):e.push(t.data),e}),[])}function Lm(e,t){var n=e.inputValue,r=void 0===n?"":n,o=t.data,a=t.isSelected,i=t.label,s=t.value;return(!Wm(e)||!a)&&Bm(e,{label:i,value:s,data:o},r)}var Dm=function(e,t){return e.getOptionLabel(t)},zm=function(e,t){return e.getOptionValue(t)};function Um(e,t,n){return"function"==typeof e.isOptionDisabled&&e.isOptionDisabled(t,n)}function Vm(e,t,n){if(n.indexOf(t)>-1)return!0;if("function"==typeof e.isOptionSelected)return e.isOptionSelected(t,n);var r=zm(e,t);return n.some((function(t){return zm(e,t)===r}))}function Bm(e,t,n){return!e.filterOption||e.filterOption(t,n)}var Wm=function(e){var t=e.hideSelectedOptions,n=e.isMulti;return void 0===t?n:t},Hm=1,$m=function(t){qd(r,t);var n=th(r);function r(e){var t;return Hd(this,r),(t=n.call(this,e)).state={ariaSelection:null,focusedOption:null,focusedValue:null,inputIsHidden:!1,isFocused:!1,selectValue:[],clearFocusValueOnUpdate:!1,prevWasFocused:!1,inputIsHiddenAfterUpdate:void 0,prevProps:void 0},t.blockOptionHover=!1,t.isComposing=!1,t.commonProps=void 0,t.initialTouchX=0,t.initialTouchY=0,t.instancePrefix="",t.openAfterFocus=!1,t.scrollToFocusedOptionOnUpdate=!1,t.userIsDragging=void 0,t.controlRef=null,t.getControlRef=function(e){t.controlRef=e},t.focusedOptionRef=null,t.getFocusedOptionRef=function(e){t.focusedOptionRef=e},t.menuListRef=null,t.getMenuListRef=function(e){t.menuListRef=e},t.inputRef=null,t.getInputRef=function(e){t.inputRef=e},t.focus=t.focusInput,t.blur=t.blurInput,t.onChange=function(e,n){var r=t.props,o=r.onChange,a=r.name;n.name=a,t.ariaOnChange(e,n),o(e,n)},t.setValue=function(e,n,r){var o=t.props,a=o.closeMenuOnSelect,i=o.isMulti,s=o.inputValue;t.onInputChange("",{action:"set-value",prevInputValue:s}),a&&(t.setState({inputIsHiddenAfterUpdate:!i}),t.onMenuClose()),t.setState({clearFocusValueOnUpdate:!0}),t.onChange(e,{action:n,option:r})},t.selectOption=function(e){var n=t.props,r=n.blurInputOnSelect,o=n.isMulti,a=n.name,i=t.state.selectValue,s=o&&t.isOptionSelected(e,i),l=t.isOptionDisabled(e,i);if(s){var u=t.getOptionValue(e);t.setValue(i.filter((function(e){return t.getOptionValue(e)!==u})),"deselect-option",e)}else{if(l)return void t.ariaOnChange(e,{action:"select-option",option:e,name:a});o?t.setValue([].concat(Kh(i),[e]),"select-option",e):t.setValue(e,"select-option")}r&&t.blurInput()},t.removeValue=function(e){var n=t.props.isMulti,r=t.state.selectValue,o=t.getOptionValue(e),a=r.filter((function(e){return t.getOptionValue(e)!==o})),i=bh(n,a,a[0]||null);t.onChange(i,{action:"remove-value",removedValue:e}),t.focusInput()},t.clearValue=function(){var e=t.state.selectValue;t.onChange(bh(t.props.isMulti,[],null),{action:"clear",removedValues:e})},t.popValue=function(){var e=t.props.isMulti,n=t.state.selectValue,r=n[n.length-1],o=n.slice(0,n.length-1),a=bh(e,o,o[0]||null);t.onChange(a,{action:"pop-value",removedValue:r})},t.getValue=function(){return t.state.selectValue},t.cx=function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];return ah.apply(void 0,[t.props.classNamePrefix].concat(n))},t.getOptionLabel=function(e){return Dm(t.props,e)},t.getOptionValue=function(e){return zm(t.props,e)},t.getStyles=function(e,n){var r=Im[e](n);r.boxSizing="border-box";var o=t.props.styles[e];return o?o(r,n):r},t.getElementId=function(e){return"".concat(t.instancePrefix,"-").concat(e)},t.getComponents=function(){return e=t.props,Jd(Jd({},Xh),e.components);var e},t.buildCategorizedOptions=function(){return Mm(t.props,t.state.selectValue)},t.getCategorizedOptions=function(){return t.props.menuIsOpen?t.buildCategorizedOptions():[]},t.buildFocusableOptions=function(){return Fm(t.buildCategorizedOptions())},t.getFocusableOptions=function(){return t.props.menuIsOpen?t.buildFocusableOptions():[]},t.ariaOnChange=function(e,n){t.setState({ariaSelection:Jd({value:e},n)})},t.onMenuMouseDown=function(e){0===e.button&&(e.stopPropagation(),e.preventDefault(),t.focusInput())},t.onMenuMouseMove=function(e){t.blockOptionHover=!1},t.onControlMouseDown=function(e){if(!e.defaultPrevented){var n=t.props.openMenuOnClick;t.state.isFocused?t.props.menuIsOpen?"INPUT"!==e.target.tagName&&"TEXTAREA"!==e.target.tagName&&t.onMenuClose():n&&t.openMenu("first"):(n&&(t.openAfterFocus=!0),t.focusInput()),"INPUT"!==e.target.tagName&&"TEXTAREA"!==e.target.tagName&&e.preventDefault()}},t.onDropdownIndicatorMouseDown=function(e){if(!(e&&"mousedown"===e.type&&0!==e.button||t.props.isDisabled)){var n=t.props,r=n.isMulti,o=n.menuIsOpen;t.focusInput(),o?(t.setState({inputIsHiddenAfterUpdate:!r}),t.onMenuClose()):t.openMenu("first"),e.preventDefault()}},t.onClearIndicatorMouseDown=function(e){e&&"mousedown"===e.type&&0!==e.button||(t.clearValue(),e.preventDefault(),t.openAfterFocus=!1,"touchend"===e.type?t.focusInput():setTimeout((function(){return t.focusInput()})))},t.onScroll=function(e){"boolean"==typeof t.props.closeMenuOnScroll?e.target instanceof HTMLElement&&lh(e.target)&&t.props.onMenuClose():"function"==typeof t.props.closeMenuOnScroll&&t.props.closeMenuOnScroll(e)&&t.props.onMenuClose()},t.onCompositionStart=function(){t.isComposing=!0},t.onCompositionEnd=function(){t.isComposing=!1},t.onTouchStart=function(e){var n=e.touches,r=n&&n.item(0);r&&(t.initialTouchX=r.clientX,t.initialTouchY=r.clientY,t.userIsDragging=!1)},t.onTouchMove=function(e){var n=e.touches,r=n&&n.item(0);if(r){var o=Math.abs(r.clientX-t.initialTouchX),a=Math.abs(r.clientY-t.initialTouchY);t.userIsDragging=o>5||a>5}},t.onTouchEnd=function(e){t.userIsDragging||(t.controlRef&&!t.controlRef.contains(e.target)&&t.menuListRef&&!t.menuListRef.contains(e.target)&&t.blurInput(),t.initialTouchX=0,t.initialTouchY=0)},t.onControlTouchEnd=function(e){t.userIsDragging||t.onControlMouseDown(e)},t.onClearIndicatorTouchEnd=function(e){t.userIsDragging||t.onClearIndicatorMouseDown(e)},t.onDropdownIndicatorTouchEnd=function(e){t.userIsDragging||t.onDropdownIndicatorMouseDown(e)},t.handleInputChange=function(e){var n=t.props.inputValue,r=e.currentTarget.value;t.setState({inputIsHiddenAfterUpdate:!1}),t.onInputChange(r,{action:"input-change",prevInputValue:n}),t.props.menuIsOpen||t.onMenuOpen()},t.onInputFocus=function(e){t.props.onFocus&&t.props.onFocus(e),t.setState({inputIsHiddenAfterUpdate:!1,isFocused:!0}),(t.openAfterFocus||t.props.openMenuOnFocus)&&t.openMenu("first"),t.openAfterFocus=!1},t.onInputBlur=function(e){var n=t.props.inputValue;t.menuListRef&&t.menuListRef.contains(document.activeElement)?t.inputRef.focus():(t.props.onBlur&&t.props.onBlur(e),t.onInputChange("",{action:"input-blur",prevInputValue:n}),t.onMenuClose(),t.setState({focusedValue:null,isFocused:!1}))},t.onOptionHover=function(e){t.blockOptionHover||t.state.focusedOption===e||t.setState({focusedOption:e})},t.shouldHideSelectedOptions=function(){return Wm(t.props)},t.onKeyDown=function(e){var n=t.props,r=n.isMulti,o=n.backspaceRemovesValue,a=n.escapeClearsValue,i=n.inputValue,s=n.isClearable,l=n.isDisabled,u=n.menuIsOpen,c=n.onKeyDown,f=n.tabSelectsValue,p=n.openMenuOnFocus,d=t.state,h=d.focusedOption,m=d.focusedValue,v=d.selectValue;if(!(l||"function"==typeof c&&(c(e),e.defaultPrevented))){switch(t.blockOptionHover=!0,e.key){case"ArrowLeft":if(!r||i)return;t.focusValue("previous");break;case"ArrowRight":if(!r||i)return;t.focusValue("next");break;case"Delete":case"Backspace":if(i)return;if(m)t.removeValue(m);else{if(!o)return;r?t.popValue():s&&t.clearValue()}break;case"Tab":if(t.isComposing)return;if(e.shiftKey||!u||!f||!h||p&&t.isOptionSelected(h,v))return;t.selectOption(h);break;case"Enter":if(229===e.keyCode)break;if(u){if(!h)return;if(t.isComposing)return;t.selectOption(h);break}return;case"Escape":u?(t.setState({inputIsHiddenAfterUpdate:!1}),t.onInputChange("",{action:"menu-close",prevInputValue:i}),t.onMenuClose()):s&&a&&t.clearValue();break;case" ":if(i)return;if(!u){t.openMenu("first");break}if(!h)return;t.selectOption(h);break;case"ArrowUp":u?t.focusOption("up"):t.openMenu("last");break;case"ArrowDown":u?t.focusOption("down"):t.openMenu("first");break;case"PageUp":if(!u)return;t.focusOption("pageup");break;case"PageDown":if(!u)return;t.focusOption("pagedown");break;case"Home":if(!u)return;t.focusOption("first");break;case"End":if(!u)return;t.focusOption("last");break;default:return}e.preventDefault()}},t.instancePrefix="react-select-"+(t.props.instanceId||++Hm),t.state.selectValue=ih(e.value),t}return Gd(r,[{key:"componentDidMount",value:function(){this.startListeningComposition(),this.startListeningToTouch(),this.props.closeMenuOnScroll&&document&&document.addEventListener&&document.addEventListener("scroll",this.onScroll,!0),this.props.autoFocus&&this.focusInput()}},{key:"componentDidUpdate",value:function(e){var t,n,r,o,a,i=this.props,s=i.isDisabled,l=i.menuIsOpen,u=this.state.isFocused;(u&&!s&&e.isDisabled||u&&l&&!e.menuIsOpen)&&this.focusInput(),u&&s&&!e.isDisabled&&this.setState({isFocused:!1},this.onMenuClose),this.menuListRef&&this.focusedOptionRef&&this.scrollToFocusedOptionOnUpdate&&(t=this.menuListRef,n=this.focusedOptionRef,r=t.getBoundingClientRect(),o=n.getBoundingClientRect(),a=n.offsetHeight/3,o.bottom+a>r.bottom?ch(t,Math.min(n.offsetTop+n.clientHeight-t.offsetHeight+a,t.scrollHeight)):o.top-a<r.top&&ch(t,Math.max(n.offsetTop-a,0)),this.scrollToFocusedOptionOnUpdate=!1)}},{key:"componentWillUnmount",value:function(){this.stopListeningComposition(),this.stopListeningToTouch(),document.removeEventListener("scroll",this.onScroll,!0)}},{key:"onMenuOpen",value:function(){this.props.onMenuOpen()}},{key:"onMenuClose",value:function(){this.onInputChange("",{action:"menu-close",prevInputValue:this.props.inputValue}),this.props.onMenuClose()}},{key:"onInputChange",value:function(e,t){this.props.onInputChange(e,t)}},{key:"focusInput",value:function(){this.inputRef&&this.inputRef.focus()}},{key:"blurInput",value:function(){this.inputRef&&this.inputRef.blur()}},{key:"openMenu",value:function(e){var t=this,n=this.state,r=n.selectValue,o=n.isFocused,a=this.buildFocusableOptions(),i="first"===e?0:a.length-1;if(!this.props.isMulti){var s=a.indexOf(r[0]);s>-1&&(i=s)}this.scrollToFocusedOptionOnUpdate=!(o&&this.menuListRef),this.setState({inputIsHiddenAfterUpdate:!1,focusedValue:null,focusedOption:a[i]},(function(){return t.onMenuOpen()}))}},{key:"focusValue",value:function(e){var t=this.state,n=t.selectValue,r=t.focusedValue;if(this.props.isMulti){this.setState({focusedOption:null});var o=n.indexOf(r);r||(o=-1);var a=n.length-1,i=-1;if(n.length){switch(e){case"previous":i=0===o?0:-1===o?a:o-1;break;case"next":o>-1&&o<a&&(i=o+1)}this.setState({inputIsHidden:-1!==i,focusedValue:n[i]})}}}},{key:"focusOption",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"first",t=this.props.pageSize,n=this.state.focusedOption,r=this.getFocusableOptions();if(r.length){var o=0,a=r.indexOf(n);n||(a=-1),"up"===e?o=a>0?a-1:r.length-1:"down"===e?o=(a+1)%r.length:"pageup"===e?(o=a-t)<0&&(o=0):"pagedown"===e?(o=a+t)>r.length-1&&(o=r.length-1):"last"===e&&(o=r.length-1),this.scrollToFocusedOptionOnUpdate=!0,this.setState({focusedOption:r[o],focusedValue:null})}}},{key:"getTheme",value:function(){return this.props.theme?"function"==typeof this.props.theme?this.props.theme(Tm):Jd(Jd({},Tm),this.props.theme):Tm}},{key:"getCommonProps",value:function(){var e=this.clearValue,t=this.cx,n=this.getStyles,r=this.getValue,o=this.selectOption,a=this.setValue,i=this.props,s=i.isMulti,l=i.isRtl,u=i.options;return{clearValue:e,cx:t,getStyles:n,getValue:r,hasValue:this.hasValue(),isMulti:s,isRtl:l,options:u,selectOption:o,selectProps:i,setValue:a,theme:this.getTheme()}}},{key:"hasValue",value:function(){return this.state.selectValue.length>0}},{key:"hasOptions",value:function(){return!!this.getFocusableOptions().length}},{key:"isClearable",value:function(){var e=this.props,t=e.isClearable,n=e.isMulti;return void 0===t?n:t}},{key:"isOptionDisabled",value:function(e,t){return Um(this.props,e,t)}},{key:"isOptionSelected",value:function(e,t){return Vm(this.props,e,t)}},{key:"filterOption",value:function(e,t){return Bm(this.props,e,t)}},{key:"formatOptionLabel",value:function(e,t){if("function"==typeof this.props.formatOptionLabel){var n=this.props.inputValue,r=this.state.selectValue;return this.props.formatOptionLabel(e,{context:t,inputValue:n,selectValue:r})}return this.getOptionLabel(e)}},{key:"formatGroupLabel",value:function(e){return this.props.formatGroupLabel(e)}},{key:"startListeningComposition",value:function(){document&&document.addEventListener&&(document.addEventListener("compositionstart",this.onCompositionStart,!1),document.addEventListener("compositionend",this.onCompositionEnd,!1))}},{key:"stopListeningComposition",value:function(){document&&document.removeEventListener&&(document.removeEventListener("compositionstart",this.onCompositionStart),document.removeEventListener("compositionend",this.onCompositionEnd))}},{key:"startListeningToTouch",value:function(){document&&document.addEventListener&&(document.addEventListener("touchstart",this.onTouchStart,!1),document.addEventListener("touchmove",this.onTouchMove,!1),document.addEventListener("touchend",this.onTouchEnd,!1))}},{key:"stopListeningToTouch",value:function(){document&&document.removeEventListener&&(document.removeEventListener("touchstart",this.onTouchStart),document.removeEventListener("touchmove",this.onTouchMove),document.removeEventListener("touchend",this.onTouchEnd))}},{key:"renderInput",value:function(){var t=this.props,n=t.isDisabled,r=t.isSearchable,o=t.inputId,a=t.inputValue,i=t.tabIndex,s=t.form,l=t.menuIsOpen,u=this.getComponents().Input,c=this.state,f=c.inputIsHidden,p=c.ariaSelection,d=this.commonProps,h=o||this.getElementId("input"),m=Jd(Jd(Jd({"aria-autocomplete":"list","aria-expanded":l,"aria-haspopup":!0,"aria-errormessage":this.props["aria-errormessage"],"aria-invalid":this.props["aria-invalid"],"aria-label":this.props["aria-label"],"aria-labelledby":this.props["aria-labelledby"],role:"combobox"},l&&{"aria-controls":this.getElementId("listbox"),"aria-owns":this.getElementId("listbox")}),!r&&{"aria-readonly":!0}),this.hasValue()?"initial-input-focus"===(null==p?void 0:p.action)&&{"aria-describedby":this.getElementId("live-region")}:{"aria-describedby":this.getElementId("placeholder")});return r?e.createElement(u,ip({},d,{autoCapitalize:"none",autoComplete:"off",autoCorrect:"off",id:h,innerRef:this.getInputRef,isDisabled:n,isHidden:f,onBlur:this.onInputBlur,onChange:this.handleInputChange,onFocus:this.onInputFocus,spellCheck:"false",tabIndex:i,form:s,type:"text",value:a},m)):e.createElement(vm,ip({id:h,innerRef:this.getInputRef,onBlur:this.onInputBlur,onChange:rh,onFocus:this.onInputFocus,disabled:n,tabIndex:i,inputMode:"none",form:s,value:""},m))}},{key:"renderPlaceholderOrValue",value:function(){var t=this,n=this.getComponents(),r=n.MultiValue,o=n.MultiValueContainer,a=n.MultiValueLabel,i=n.MultiValueRemove,s=n.SingleValue,l=n.Placeholder,u=this.commonProps,c=this.props,f=c.controlShouldRenderValue,p=c.isDisabled,d=c.isMulti,h=c.inputValue,m=c.placeholder,v=this.state,g=v.selectValue,y=v.focusedValue,b=v.isFocused;if(!this.hasValue()||!f)return h?null:e.createElement(l,ip({},u,{key:"placeholder",isDisabled:p,isFocused:b,innerProps:{id:this.getElementId("placeholder")}}),m);if(d)return g.map((function(n,s){var l=n===y,c="".concat(t.getOptionLabel(n),"-").concat(t.getOptionValue(n));return e.createElement(r,ip({},u,{components:{Container:o,Label:a,Remove:i},isFocused:l,isDisabled:p,key:c,index:s,removeProps:{onClick:function(){return t.removeValue(n)},onTouchEnd:function(){return t.removeValue(n)},onMouseDown:function(e){e.preventDefault()}},data:n}),t.formatOptionLabel(n,"value"))}));if(h)return null;var w=g[0];return e.createElement(s,ip({},u,{data:w,isDisabled:p}),this.formatOptionLabel(w,"value"))}},{key:"renderClearIndicator",value:function(){var t=this.getComponents().ClearIndicator,n=this.commonProps,r=this.props,o=r.isDisabled,a=r.isLoading,i=this.state.isFocused;if(!this.isClearable()||!t||o||!this.hasValue()||a)return null;var s={onMouseDown:this.onClearIndicatorMouseDown,onTouchEnd:this.onClearIndicatorTouchEnd,"aria-hidden":"true"};return e.createElement(t,ip({},n,{innerProps:s,isFocused:i}))}},{key:"renderLoadingIndicator",value:function(){var t=this.getComponents().LoadingIndicator,n=this.commonProps,r=this.props,o=r.isDisabled,a=r.isLoading,i=this.state.isFocused;return t&&a?e.createElement(t,ip({},n,{innerProps:{"aria-hidden":"true"},isDisabled:o,isFocused:i})):null}},{key:"renderIndicatorSeparator",value:function(){var t=this.getComponents(),n=t.DropdownIndicator,r=t.IndicatorSeparator;if(!n||!r)return null;var o=this.commonProps,a=this.props.isDisabled,i=this.state.isFocused;return e.createElement(r,ip({},o,{isDisabled:a,isFocused:i}))}},{key:"renderDropdownIndicator",value:function(){var t=this.getComponents().DropdownIndicator;if(!t)return null;var n=this.commonProps,r=this.props.isDisabled,o=this.state.isFocused,a={onMouseDown:this.onDropdownIndicatorMouseDown,onTouchEnd:this.onDropdownIndicatorTouchEnd,"aria-hidden":"true"};return e.createElement(t,ip({},n,{innerProps:a,isDisabled:r,isFocused:o}))}},{key:"renderMenu",value:function(){var t=this,n=this.getComponents(),r=n.Group,o=n.GroupHeading,a=n.Menu,i=n.MenuList,s=n.MenuPortal,l=n.LoadingMessage,u=n.NoOptionsMessage,c=n.Option,f=this.commonProps,p=this.state.focusedOption,d=this.props,h=d.captureMenuScroll,m=d.inputValue,v=d.isLoading,g=d.loadingMessage,y=d.minMenuHeight,b=d.maxMenuHeight,w=d.menuIsOpen,x=d.menuPlacement,E=d.menuPosition,S=d.menuPortalTarget,k=d.menuShouldBlockScroll,_=d.menuShouldScrollIntoView,O=d.noOptionsMessage,C=d.onMenuScrollToTop,P=d.onMenuScrollToBottom;if(!w)return null;var j,A=function(n,r){var o=n.type,a=n.data,i=n.isDisabled,s=n.isSelected,l=n.label,u=n.value,d=p===a,h=i?void 0:function(){return t.onOptionHover(a)},m=i?void 0:function(){return t.selectOption(a)},v="".concat(t.getElementId("option"),"-").concat(r),g={id:v,onClick:m,onMouseMove:h,onMouseOver:h,tabIndex:-1};return e.createElement(c,ip({},f,{innerProps:g,data:a,isDisabled:i,isSelected:s,key:v,label:l,type:o,value:u,isFocused:d,innerRef:d?t.getFocusedOptionRef:void 0}),t.formatOptionLabel(n.data,"menu"))};if(this.hasOptions())j=this.getCategorizedOptions().map((function(n){if("group"===n.type){var a=n.data,i=n.options,s=n.index,l="".concat(t.getElementId("group"),"-").concat(s),u="".concat(l,"-heading");return e.createElement(r,ip({},f,{key:l,data:a,options:i,Heading:o,headingProps:{id:u,data:n.data},label:t.formatGroupLabel(n.data)}),n.options.map((function(e){return A(e,"".concat(s,"-").concat(e.index))})))}if("option"===n.type)return A(n,"".concat(n.index))}));else if(v){var I=g({inputValue:m});if(null===I)return null;j=e.createElement(l,f,I)}else{var T=O({inputValue:m});if(null===T)return null;j=e.createElement(u,f,T)}var R={minMenuHeight:y,maxMenuHeight:b,menuPlacement:x,menuPosition:E,menuShouldScrollIntoView:_},N=e.createElement(Sh,ip({},f,R),(function(n){var r=n.ref,o=n.placerProps,s=o.placement,l=o.maxHeight;return e.createElement(a,ip({},f,R,{innerRef:r,innerProps:{onMouseDown:t.onMenuMouseDown,onMouseMove:t.onMenuMouseMove,id:t.getElementId("listbox")},isLoading:v,placement:s}),e.createElement(Pm,{captureEnabled:h,onTopArrive:C,onBottomArrive:P,lockEnabled:k},(function(n){return e.createElement(i,ip({},f,{innerRef:function(e){t.getMenuListRef(e),n(e)},isLoading:v,maxHeight:l,focusedOption:p}),j)})))}));return S||"fixed"===E?e.createElement(s,ip({},f,{appendTo:S,controlElement:this.controlRef,menuPlacement:x,menuPosition:E}),N):N}},{key:"renderFormField",value:function(){var t=this,n=this.props,r=n.delimiter,o=n.isDisabled,a=n.isMulti,i=n.name,s=this.state.selectValue;if(i&&!o){if(a){if(r){var l=s.map((function(e){return t.getOptionValue(e)})).join(r);return e.createElement("input",{name:i,type:"hidden",value:l})}var u=s.length>0?s.map((function(n,r){return e.createElement("input",{key:"i-".concat(r),name:i,type:"hidden",value:t.getOptionValue(n)})})):e.createElement("input",{name:i,type:"hidden"});return e.createElement("div",null,u)}var c=s[0]?this.getOptionValue(s[0]):"";return e.createElement("input",{name:i,type:"hidden",value:c})}}},{key:"renderLiveRegion",value:function(){var t=this.commonProps,n=this.state,r=n.ariaSelection,o=n.focusedOption,a=n.focusedValue,i=n.isFocused,s=n.selectValue,l=this.getFocusableOptions();return e.createElement(om,ip({},t,{id:this.getElementId("live-region"),ariaSelection:r,focusedOption:o,focusedValue:a,isFocused:i,selectValue:s,focusableOptions:l}))}},{key:"render",value:function(){var t=this.getComponents(),n=t.Control,r=t.IndicatorsContainer,o=t.SelectContainer,a=t.ValueContainer,i=this.props,s=i.className,l=i.id,u=i.isDisabled,c=i.menuIsOpen,f=this.state.isFocused,p=this.commonProps=this.getCommonProps();return e.createElement(o,ip({},p,{className:s,innerProps:{id:l,onKeyDown:this.onKeyDown},isDisabled:u,isFocused:f}),this.renderLiveRegion(),e.createElement(n,ip({},p,{innerRef:this.getControlRef,innerProps:{onMouseDown:this.onControlMouseDown,onTouchEnd:this.onControlTouchEnd},isDisabled:u,isFocused:f,menuIsOpen:c}),e.createElement(a,ip({},p,{isDisabled:u}),this.renderPlaceholderOrValue(),this.renderInput()),e.createElement(r,ip({},p,{isDisabled:u}),this.renderClearIndicator(),this.renderLoadingIndicator(),this.renderIndicatorSeparator(),this.renderDropdownIndicator())),this.renderMenu(),this.renderFormField())}}],[{key:"getDerivedStateFromProps",value:function(e,t){var n=t.prevProps,r=t.clearFocusValueOnUpdate,o=t.inputIsHiddenAfterUpdate,a=t.ariaSelection,i=t.isFocused,s=t.prevWasFocused,l=e.options,u=e.value,c=e.menuIsOpen,f=e.inputValue,p=e.isMulti,d=ih(u),h={};if(n&&(u!==n.value||l!==n.options||c!==n.menuIsOpen||f!==n.inputValue)){var m=c?function(e,t){return Fm(Mm(e,t))}(e,d):[],v=r?function(e,t){var n=e.focusedValue,r=e.selectValue.indexOf(n);if(r>-1){if(t.indexOf(n)>-1)return n;if(r<t.length)return t[r]}return null}(t,d):null,g=function(e,t){var n=e.focusedOption;return n&&t.indexOf(n)>-1?n:t[0]}(t,m);h={selectValue:d,focusedOption:g,focusedValue:v,clearFocusValueOnUpdate:!1}}var y=null!=o&&e!==n?{inputIsHidden:o,inputIsHiddenAfterUpdate:void 0}:{},b=a,w=i&&s;return i&&!w&&(b={value:bh(p,d,d[0]||null),options:d,action:"initial-input-focus"},w=!s),"initial-input-focus"===(null==a?void 0:a.action)&&(b=null),Jd(Jd(Jd({},h),y),{},{prevProps:e,ariaSelection:b,prevWasFocused:w})}}]),r}(e.Component);$m.defaultProps=Rm;var Gm=["defaultInputValue","defaultMenuIsOpen","defaultValue","inputValue","menuIsOpen","onChange","onInputChange","onMenuClose","onMenuOpen","value"],Ym=["allowCreateWhileLoading","createOptionPosition","formatCreateLabel","isValidNewOption","getNewOptionData","onCreateOption","options","onChange"],qm=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=arguments.length>1?arguments[1]:void 0,n=arguments.length>2?arguments[2]:void 0,r=String(e).toLowerCase(),o=String(n.getOptionValue(t)).toLowerCase(),a=String(n.getOptionLabel(t)).toLowerCase();return o===r||a===r},Qm={formatCreateLabel:function(e){return'Create "'.concat(e,'"')},isValidNewOption:function(e,t,n,r){return!(!e||t.some((function(t){return qm(e,t,r)}))||n.some((function(t){return qm(e,t,r)})))},getNewOptionData:function(e,t){return{label:t,value:e,__isNew__:!0}}},Xm=(0,e.forwardRef)((function(t,n){var r=function(t){var n=t.defaultInputValue,r=void 0===n?"":n,o=t.defaultMenuIsOpen,a=void 0!==o&&o,i=t.defaultValue,s=void 0===i?null:i,l=t.inputValue,u=t.menuIsOpen,c=t.onChange,f=t.onInputChange,p=t.onMenuClose,d=t.onMenuOpen,h=t.value,m=zd(t,Gm),v=Bd((0,e.useState)(void 0!==l?l:r),2),g=v[0],y=v[1],b=Bd((0,e.useState)(void 0!==u?u:a),2),w=b[0],x=b[1],E=Bd((0,e.useState)(void 0!==h?h:s),2),S=E[0],k=E[1],_=(0,e.useCallback)((function(e,t){"function"==typeof c&&c(e,t),k(e)}),[c]),O=(0,e.useCallback)((function(e,t){var n;"function"==typeof f&&(n=f(e,t)),y(void 0!==n?n:e)}),[f]),C=(0,e.useCallback)((function(){"function"==typeof d&&d(),x(!0)}),[d]),P=(0,e.useCallback)((function(){"function"==typeof p&&p(),x(!1)}),[p]),j=void 0!==l?l:g,A=void 0!==u?u:w,I=void 0!==h?h:S;return Jd(Jd({},m),{},{inputValue:j,menuIsOpen:A,onChange:_,onInputChange:O,onMenuClose:P,onMenuOpen:C,value:I})}(t),o=function(t){var n=t.allowCreateWhileLoading,r=void 0!==n&&n,o=t.createOptionPosition,a=void 0===o?"last":o,i=t.formatCreateLabel,s=void 0===i?Qm.formatCreateLabel:i,l=t.isValidNewOption,u=void 0===l?Qm.isValidNewOption:l,c=t.getNewOptionData,f=void 0===c?Qm.getNewOptionData:c,p=t.onCreateOption,d=t.options,h=void 0===d?[]:d,m=t.onChange,v=zd(t,Ym),g=v.getOptionValue,y=void 0===g?Am:g,b=v.getOptionLabel,w=void 0===b?jm:b,x=v.inputValue,E=v.isLoading,S=v.isMulti,k=v.value,_=v.name,O=(0,e.useMemo)((function(){return u(x,ih(k),h,{getOptionValue:y,getOptionLabel:w})?f(x,s(x)):void 0}),[s,f,w,y,x,u,h,k]),C=(0,e.useMemo)((function(){return!r&&E||!O?h:"first"===a?[O].concat(Kh(h)):[].concat(Kh(h),[O])}),[r,a,E,O,h]),P=(0,e.useCallback)((function(e,t){if("select-option"!==t.action)return m(e,t);var n=Array.isArray(e)?e:[e];if(n[n.length-1]!==O)m(e,t);else if(p)p(x);else{var r=f(x,x),o={action:"create-option",name:_,option:r};m(bh(S,[].concat(Kh(ih(k)),[r]),r),o)}}),[f,x,S,_,O,p,m,k]);return Jd(Jd({},v),{},{options:C,onChange:P})}(r);return e.createElement($m,ip({ref:n},o))}));const Km=Xm;function Jm(e,t,n,r,o,a,i){try{var s=e[a](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}var Zm=function(e){var t=e.postId,n=e.targetKeywords,r=void 0===n?"":n;return"".concat(SEOPRESS_DATA.REST_URL,"seopress/v1/posts/").concat(t,"/content-analysis?target_keywords=").concat(r)},ev=function(){var e,t=(e=regeneratorRuntime.mark((function e(t,n){var r,o,a,i;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return r=t.postId,o=t.targetKeywords,a=void 0===o?"":o,e.next=3,fetch(Zm({postId:r,targetKeywords:a.replace(/\s/g,"")}),{headers:{"Content-Type":"application/json","X-WP-Nonce":Zr(SEOPRESS_DATA,"NONCE",null)},signal:n.signal});case 3:return i=e.sent,e.next=6,i.json();case 6:return e.abrupt("return",e.sent);case 7:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(r,o){var a=e.apply(t,n);function i(e){Jm(a,r,o,i,s,"next",e)}function s(e){Jm(a,r,o,i,s,"throw",e)}i(void 0)}))});return function(e,n){return t.apply(this,arguments)}}(),tv=o(7739),nv=o.n(tv);const rv=function(t){var n=t.className,r=void 0===n?"":n;return e.createElement("span",{className:"dashicons dashicons-yes ".concat(r)})};var ov=wp.i18n.__,av="canonical",iv=function(){return e.createElement("p",null,ov("A canonical URL is required by search engines to handle duplicate content."))},sv=function(e){return Z()($t()(e,{key:"_seopress_robots_index"}),"value",null)};const lv={key:av,title:ov("Canonical URL","wp-seopress"),severity:function(e,t){return An()(Z()(e,[av,"value"],[]))?sv(t)?"good":"high":Z()(e,[av,"value"],[]).length>1?"high":"good"},component:function(t){var n=t.data,r=t.options,o=void 0===r?{}:r;if(An()(Z()(n,[av,"value"],[]))){var a=sv(o);return e.createElement(e.Fragment,null,e.createElement(iv,null),a&&e.createElement("p",null,e.createElement(rv,{className:"sp-dashicons-ok"}),ov("This page doesn't have any canonical URL because your post is set to <strong>noindex</strong>. This is normal.","wp-seopress")),!a&&e.createElement("p",null,e.createElement(us,{className:"sp-dashicons-not"}),ov("This page doesn't have any canonical URL.","wp-seopress")))}var i=Z()(n,[av,"value"],[]);return e.createElement(e.Fragment,null,e.createElement(iv,null),e.createElement("p",null,ov("We found ".concat(i.length," canonical URL in your source code. Below, the list:"),"wp-seopress")),e.createElement("ul",null,i.map((function(t,n){return e.createElement("li",{key:"canonical_".concat(n)},e.createElement("span",{className:"dashicons dashicons-minus"}),e.createElement("a",{href:t,target:"_blank"},t),e.createElement("span",{className:"dashicons dashicons-external"}))}))),i.length>1&&e.createElement("p",null,e.createElement(us,{className:"sp-dashicons-not"}),ov("You must fix this. Canonical URL duplication is bad for SEO.","wp-seopress")))}},uv=[{key:0,name:"good"},{key:1,name:"low"},{key:2,name:"medium"},{key:3,name:"high"}];function cv(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function fv(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?cv(Object(n),!0).forEach((function(t){pv(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):cv(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function pv(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var dv=wp.i18n.__,hv=function(e){return e.charAt(e.length-1)},mv=function(t){var n=t.type,r=hv(n);return e.createElement(e.Fragment,null,e.createElement("p",null,e.createElement("span",{className:"sp-dashicons-ok dashicons dashicons-yes"}),dv("Target keywords were found in Heading ".concat(r," (H").concat(r,")."),"wp-seopress")))},vv=function(t){var n=t.data,r=t.options,o=(void 0===r?{}:r).type,a=Z()(n,[o],[]),i=a.value.length,s=hv(o);return 0===i&&"h1"===o?e.createElement(e.Fragment,null,e.createElement("p",{style:{color:"rgb(29, 35, 39)",margin:"10px 0px",fontWeight:"bold",borderBottom:"1px solid var(--borderColorCard)",paddingBottom:"10px"}},"H",s," (",dv("Heading","wp-seopress"),s,")"),e.createElement("p",null,e.createElement(us,{className:"sp-dashicons-not"}),e.createElement("strong",null,dv("No Heading ".concat(s," (H").concat(s,") found in your content. This is required for both SEO and Accessibility!"),"wp-seopress")))):e.createElement(e.Fragment,null,e.createElement("p",{style:{color:"rgb(29, 35, 39)",margin:"10px 0px",fontWeight:"bold",borderBottom:"1px solid var(--borderColorCard)",paddingBottom:"10px"}},"H",s," (",dv("Heading","wp-seopress"),s,")"),a.matches.length>0&&e.createElement(mv,{type:o}),0===a.matches.length&&e.createElement("p",null,e.createElement(us,{className:"sp-dashicons-not"}),dv("None of your target keywords were found in Heading ".concat(hv(o)," (H").concat(hv(o),")."),"wp-seopress")),e.createElement("ul",null,a.matches.map((function(t,n){if(!Wt()(t))return 0===t.count?null:e.createElement("li",{key:"matches_heading_".concat(o,"_").concat(n)},e.createElement("span",{className:"dashicons dashicons-minus"}),dv("".concat(t.key," was found ").concat(t.count," times."),"wp-seopress"))}))),i>1&&"h1"===o&&e.createElement(e.Fragment,null,e.createElement("p",null,e.createElement(us,{className:"sp-dashicons-not"}),dv("We found ".concat(i," Heading 1 (H1) in your content."),"wp-seopress")),e.createElement("p",null,dv("You should not use more than one H1 heading in your post content. The rule is simple: only one H1 for each web page. It is better for both SEO and accessibility. Below, the list:","wp-seopress"))),"h1"===o&&a.value.length>1&&e.createElement(e.Fragment,null,e.createElement("p",null,dv("Below the list:","wp-seopress")),e.createElement("ul",null,a.value.map((function(t,n){return e.createElement("li",{key:"heading_".concat(o,"_").concat(n)},e.createElement("span",{className:"dashicons dashicons-minus"})," ",t)})))))},gv=function(t){return{key:t,title:dv("Heading H".concat(hv(t)),"wp-seopress"),severity:function(e,n){return function(e,t){var n=t.type,r=Z()(e,[n,"matches"],[]),o=Z()(e,[n,"value"],[]);return(An()(r)||An()(o))&&"h1"===n||o.length>1&&"h1"===n?"high":An()(r)&&"h3"===n?"low":An()(r)?"medium":"good"}(e,fv(fv({},n),{},{type:t}))},component:function(n){var r=n.data,o=n.options,a=void 0===o?{}:o;return e.createElement(vv,{data:r,options:fv(fv({},a),{},{type:t})})}}},yv=[gv("h1"),gv("h2"),gv("h3")];const bv={key:"heading",title:dv("Headings","wp-seopress"),severity:function(e,t){var n=0;return yv.map((function(r){var o=r.severity(e,t),a=$t()(uv,{name:o});a.key>n&&(n=a.key)})),$t()(uv,{key:n}).name},items:yv};var wv=o(9995),xv=o.n(wv),Ev=wp.i18n.__,Sv="images";const kv={key:Sv,title:Ev("Alternative texts of images","wp-seopress"),severity:function(e,t){var n=Z()(e,[Sv,"value"],[]);return An()(n)?"medium":xv()(n,(function(e){return!An()(e.alt)})).true!=n.length?"high":"good"},component:function(t){var n=t.data,r=(t.options,Z()(n,[Sv,"value"],[]));return An()(r)?e.createElement(e.Fragment,null,e.createElement("p",null,e.createElement(us,{className:"sp-dashicons-not"}),Ev("We could not find any image in your content. Content with media is a plus for your SEO.","wp-seopress"))):xv()(r,(function(e){return!An()(e.alt)})).true===r.length?e.createElement(e.Fragment,null,e.createElement("p",null,e.createElement(rv,{className:"sp-dashicons-ok"}),Ev("All alternative tags are filled in. Good work!","wp-seopress"))):e.createElement(e.Fragment,null,e.createElement("p",null,e.createElement(us,{className:"sp-dashicons-not"}),Ev("No alternative text found for these images. Alt tags are important for both SEO and accessibility. Edit your images using the media library or your favorite page builder and fill in alternative text fields.","wp-seopress")),e.createElement("ul",{style:{display:"flex",flexWrap:"wrap"}},r.map((function(t,n){return An()(t.alt)?e.createElement("li",{style:{position:"relative",float:"left",padding:"8px",margin:0,color:"#3c434a",cursor:"pointer",listStyle:"none",textAlign:"center",userSelect:"none",width:"25%",boxSizing:"border-box"},key:"attachment_".concat(n)},e.createElement("img",{style:{maxWidth:"150px",maxHeight:"150px",objectFit:"cover",border:"1px solid var(--borderColorLight)",cursor:"default",padding:"1px"},src:t.src,width:64})):null}))),e.createElement("p",null,Ev("Note that we scan all your source code, it means, some missing alternative texts of images might be located in your header, sidebar or footer.","wp-seopress")))}};var _v=wp.i18n.__,Ov="internal_links";const Cv={key:Ov,title:_v("Internal Links","wp-seopress"),severity:function(e,t){var n=Z()(e,[Ov,"value"],[]);return An()(n)?"medium":"good"},component:function(t){var n=t.data,r=(t.options,Z()(n,[Ov,"value"],[]));return e.createElement(e.Fragment,null,e.createElement("p",null,_v("Internal links are important for SEO and user experience. Always try to link your content together, with quality link anchors.")),An()(r)&&e.createElement("p",null,e.createElement(us,{className:"sp-dashicons-not"}),_v("This page doesn't have any internal links from other content. Links from archive pages are not considered internal links due to lack of context.","wp-seopress")),!An()(r)&&e.createElement(e.Fragment,null,e.createElement("p",null,_v("We found ".concat(r.length," internal links in your page. Below, the list:"),"wp-seopress")),e.createElement("ul",null,r.map((function(t,n){return e.createElement("li",{key:"internal_".concat(n)},e.createElement("span",{className:"dashicons dashicons-minus"}),e.createElement("a",{href:t.url,target:"_blank"},t.value),e.createElement("a",{href:t.edit_post_link,title:t.title},t.value),e.createElement("span",{className:"dashicons dashicons-edit-large"}))})))))}};var Pv=wp.i18n.__,jv="description",Av=function(e){return $t()(e,{key:jv})},Iv=function(e){return Z()(Av(e),"value","")};const Tv={key:jv,title:Pv("Meta description","wp-seopress"),severity:function(e,t){if(!Wt()(Av(t))&&An()(Iv(t)))return"medium";if(Iv(t).length>160)return"medium";var n=Z()(e,[jv,"matches"],[]);return An()(n)?"low":"good"},component:function(t){var n=t.data,r=t.options,o=void 0===r?{}:r;if(!Wt()(Av(o))&&An()(Iv(o)))return e.createElement("p",null,e.createElement(us,{className:"sp-dashicons-not"}),Pv("No custom meta description is set for this post. If the global meta description suits you, you can ignore this recommendation.","wp-seopress"));var a=Iv(o),i=Z()(n,"title"),s=Z()(i,"matches",[]);return e.createElement(e.Fragment,null," ",!An()(s)&&e.createElement(e.Fragment,null,e.createElement("p",null,e.createElement(rv,{className:"sp-dashicons-ok"}),Pv("Target keywords were found in the Meta description.","wp-seopress")),e.createElement("ul",null,s.map((function(t,n){return e.createElement("li",{key:"metaDescription_".concat(n)},e.createElement("span",{className:"dashicons dashicons-minus"}),Pv("".concat(t.key," was found ").concat(t.count," times."),"wp-seopress"))})))),An()(s)&&e.createElement("p",null,e.createElement(us,{className:"sp-dashicons-not"}),Pv("None of your target keywords were found in the Meta description.","wp-seopress")),a.length>160&&e.createElement("p",null,e.createElement(us,{className:"sp-dashicons-not"}),Pv("You custom meta description is too long.","wp-seopress")),a.length<=160&&e.createElement("p",null,e.createElement(rv,{className:"sp-dashicons-ok"}),Pv("The length of your meta description is correct","wp-seopress")))}};var Rv=wp.i18n.__,Nv="meta_robots",Mv=function(){return e.createElement(e.Fragment,null,e.createElement("p",null,e.createElement(rv,{className:"sp-dashicons-ok"}),e.createElement("strong",null,"noimageindex")," ",Rv("is off. Google will index the images on this page.","wp-seopress")),e.createElement("p",null,e.createElement(rv,{className:"sp-dashicons-ok"}),e.createElement("strong",null,"nositelinkssearchbox")," ",Rv("is off. Google will probably display a sitelinks searchbox in search results.","wp-seopress")))};const Fv={key:Nv,title:Rv("Meta robots","wp-seopress"),severity:function(e,t){var n=Z()(e,[Nv,"value"],[]);if(!An()(n)&&n.length>1)return"high";if(An()(n))return"good";var r=te()(n);if(!Wt()(r.match("noindex")))return"high";if(!Wt()(r.match("nofollow")))return"high";if(!Wt()(r.match("noarchive")))return"medium";if(!Wt()(r.match("nosnippet")))return"medium";var o=Z()(e,["meta_google","value"],[]);if(An()(o))return"good";var a=te()(o);return Wt()(a.match("noimageindex"))?Wt()(a.match("nositelinkssearchbox"))?"good":"medium":"high"},component:function(t){var n=t.data,r=(t.options,Z()(n,[Nv,"value"],[])),o=Z()(n,["meta_google","value"],[]);if(An()(r)&&r.length>1)return e.createElement(e.Fragment,null,e.createElement("p",null,e.createElement(rv,{className:"sp-dashicons-ok"}),Rv("We found no meta robots on this page. It means, your page is index,follow. Search engines will index it, and follow links. ","wp-seopress")),An()(o)&&e.createElement(Mv,null));var a=te()(r),i=a.match("noindex"),s=a.match("nofollow"),l=a.match("noarchive"),u=a.match("nosnippet"),c=null,f=null;if(!An()(o)){var p=o.reduce((function(e,t){return"".concat(e," ").concat(t)}),"");c=p.match("noimageindex"),f=p.match("nositelinkssearchbox")}return e.createElement(e.Fragment,null,r.length>1&&e.createElement("p",null,e.createElement(us,{className:"sp-dashicons-not"}),Rv("We found ".concat(r.length," meta robots in your page. There is probably something wrong with your theme!"),"wp-seopress")),!Wt()(i)&&e.createElement("p",null,e.createElement(us,{className:"sp-dashicons-not"}),e.createElement("strong",null,"noindex")," ",Rv("is on! Search engines can't index this page.","wp-seopress")),Wt()(i)&&e.createElement("p",null,e.createElement(rv,{className:"sp-dashicons-ok"}),e.createElement("strong",null,"noindex")," ",Rv("is off. Search engines will index this page.","wp-seopress")),!Wt()(s)&&e.createElement("p",null,e.createElement(us,{className:"sp-dashicons-not"}),e.createElement("strong",null,"nofollow")," ",Rv("is on! Search engines can't follow your links on this page.","wp-seopress")),Wt()(s)&&e.createElement("p",null,e.createElement(rv,{className:"sp-dashicons-ok"}),e.createElement("strong",null,"nofollow")," ",Rv("is off. Search engines will follow links on this page.","wp-seopress")),!Wt()(l)&&e.createElement("p",null,e.createElement(us,{className:"sp-dashicons-not"}),e.createElement("strong",null,"noarchive")," ",Rv("is on! Search engines will not cache your page.","wp-seopress")),Wt()(l)&&e.createElement("p",null,e.createElement(rv,{className:"sp-dashicons-ok"}),e.createElement("strong",null,"noarchive")," ",Rv("is off. Search engines will probably cache your page.","wp-seopress")),!Wt()(u)&&e.createElement("p",null,e.createElement(us,{className:"sp-dashicons-not"}),e.createElement("strong",null,"nosnippet")," ",Rv("is on! Search engines will not display a snippet of this page in search results.","wp-seopress")),Wt()(u)&&e.createElement("p",null,e.createElement(rv,{className:"sp-dashicons-ok"}),e.createElement("strong",null,"nosnippet")," ",Rv("is off. Search engines will display a snippet of this page in search results.","wp-seopress")),An()(o)&&e.createElement(Mv,null),!An()(o)&&e.createElement(e.Fragment,null,!Wt()(c)&&e.createElement("p",null,e.createElement(us,{className:"sp-dashicons-not"}),e.createElement("strong",null,"noimageindex")," ",Rv("is on! Google will not index your images on this page (but if someone makes a direct link to one of your image in this page, it will be indexed).","wp-seopress")),Wt()(c)&&e.createElement("p",null,e.createElement(rv,{className:"sp-dashicons-ok"}),e.createElement("strong",null,"noimageindex")," ",Rv("is off. Google will index the images on this page.","wp-seopress")),!Wt()(f)&&e.createElement("p",null,e.createElement(us,{className:"sp-dashicons-not"}),e.createElement("strong",null,"nositelinkssearchbox")," ",Rv("is on! Google will not display a sitelinks searchbox in search results.","wp-seopress")),Wt()(f)&&e.createElement("p",null,e.createElement(rv,{className:"sp-dashicons-ok"}),e.createElement("strong",null,"nositelinkssearchbox")," ",Rv("is off. Google will probably display a sitelinks searchbox in search results.","wp-seopress"))))}};var Lv=wp.i18n.__,Dv="title",zv=function(e){return $t()(e,{key:Dv})},Uv=function(e){return Z()(zv(e),"value","")};const Vv={key:Dv,title:Lv("Meta title","wp-seopress"),severity:function(e,t){if(!Wt()(zv(t))&&An()(Uv(t)))return"medium";if(Uv(t).length>65)return"medium";var n=Z()(e,[Dv,"matches"],[]);return An()(n)?"medium":"good"},component:function(t){var n=t.data,r=t.options,o=void 0===r?{}:r;if(!Wt()(zv(o))&&An()(Uv(o)))return e.createElement("p",null,e.createElement(us,{className:"sp-dashicons-not"}),Lv("No custom title is set for this post. If the global meta title suits you, you can ignore this recommendation.","wp-seopress"));var a=Uv(o),i=Z()(n,"title"),s=Z()(i,"matches",[]);return e.createElement(e.Fragment,null,!An()(s)&&e.createElement(e.Fragment,null,e.createElement("p",null,e.createElement(rv,{className:"sp-dashicons-ok"}),Lv("Target keywords were found in the Meta Title.","wp-seopress")),e.createElement("ul",null,s.map((function(t,n){return e.createElement("li",{key:"metatitle_".concat(n)},e.createElement("span",{className:"dashicons dashicons-minus"}),Lv("".concat(t.key," was found ").concat(t.count," times."),"wp-seopress"))})))),An()(s)&&e.createElement("p",null,e.createElement(us,{className:"sp-dashicons-not"}),Lv("None of your target keywords were found in the Meta Title.","wp-seopress")),a.length>65&&e.createElement("p",null,e.createElement(us,{className:"sp-dashicons-not"}),Lv("Your custom title is too long.","wp-seopress")),a.length<=65&&e.createElement("p",null,e.createElement(rv,{className:"sp-dashicons-ok"}),Lv("The length of your title is correct.","wp-seopress")))}};var Bv=wp.i18n.__,Wv="links_no_follow";const Hv={key:Wv,title:Bv("NoFollow Links","wp-seopress"),severity:function(e,t){var n=Z()(e,[Wv,"value"],[]);return!An()(n)&&n.length>3?"low":"good"},component:function(t){var n=t.data,r=(t.options,Z()(n,[Wv,"value"],[]));return An()(r)?e.createElement(e.Fragment,null,e.createElement("p",null,e.createElement(rv,{className:"sp-dashicons-ok"}),Bv("This page doesn't have any nofollow links.","wp-seopress"))):e.createElement(e.Fragment,null,e.createElement("p",null,e.createElement(us,{className:"sp-dashicons-not"}),Bv("We found ".concat(r.length," links with nofollow attribute in your page. Do not overuse nofollow attribute in links. Below, the list:"),"wp-seopress")),e.createElement("ul",null,r.map((function(t,n){return e.createElement("li",{key:"link_".concat(n)},e.createElement("span",{className:"dashicons dashicons-minus"}),e.createElement("a",{href:t.url,target:"_blank"},t.value),e.createElement("span",{className:"dashicons dashicons-external"}))}))))}};var $v=wp.i18n.__,Gv="outbound_links";const Yv={key:Gv,title:$v("Outbound Links","wp-seopress"),severity:function(e,t){var n=Z()(e,[Gv,"value"],[]);return An()(n)?"medium":"good"},component:function(t){var n=t.data,r=(t.options,Z()(n,[Gv,"value"],[]));return e.createElement(e.Fragment,null,e.createElement("p",null,$v('Internet is built on the principle of hyperlink. It is therefore perfectly normal to make links between different websites. However, avoid making links to low quality sites, SPAM... If you are not sure about the quality of a site, add the attribute "nofollow" to your link.')),An()(r)&&e.createElement("p",null,e.createElement(us,{className:"sp-dashicons-not"}),$v("This page doesn't have any outbound links.","wp-seopress")),!An()(r)&&e.createElement(e.Fragment,null,e.createElement("p",null,$v("We found ".concat(r.length," outbound links in your page. Below, the list:"),"wp-seopress")),e.createElement("ul",null,r.map((function(t,n){return e.createElement("li",{key:"outbound_".concat(n)},e.createElement("span",{className:"dashicons dashicons-minus"}),e.createElement("a",{href:t.url,target:"_blank"},t.value),e.createElement("span",{className:"dashicons dashicons-external"}))})))))}};var qv=wp.i18n.__,Qv="schemas";const Xv={key:Qv,title:qv("Structured Data Types (schemas)","wp-seopress"),severity:function(e,t){if(An()(Z()(e,[Qv,"value"],[])))return"medium";var n=Z()(e,[Qv,"value"],[]).reduce((function(e,t){return e[t]=t in e?e[t]+1:1,e}),{}),r=Object.values(n),o=Object.keys(n),a="good";return r.map((function(e,t){e>1&&"Review"===o[t]&&(a="high")})),a},component:function(t){var n=t.data;if(t.options,An()(Z()(n,[Qv,"value"],[])))return e.createElement(e.Fragment,null,e.createElement("p",null,qv("No schemas found in the source code of this page.","wp-seopress")));var r=Z()(n,[Qv,"value"],[]).reduce((function(e,t){return e[t]=t in e?e[t]+1:1,e}),{}),o=Object.values(r),a=Object.keys(r);return e.createElement(e.Fragment,null,e.createElement("p",null,qv("We found these schemas in the source code of this page:","wp-seopress")),e.createElement("ul",null,o.map((function(t,n){return e.createElement("li",{key:"schema_".concat(n)},e.createElement("span",{className:"dashicons dashicons-minus"}),a[n],t>1&&"Review"===a[n]&&e.createElement(e.Fragment,null,e.createElement("span",{className:"impact high"},qv("duplicated schema - x","wp-seopress"),t)),t>1&&"Review"!==a[n]&&e.createElement(e.Fragment,null,e.createElement("span",{className:"impact"},qv("x","wp-seopress")," ",t)))}))))}};function Kv(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Jv(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Kv(Object(n),!0).forEach((function(t){Zv(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Kv(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Zv(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var eg=wp.i18n.__,tg=function(e){switch(e){case"twitter:title":return eg("Twitter Title","wp-seopress");case"og:title":return eg("Title","wp-seopress");case"twitter:description":return eg("Twitter Description","wp-seopress");case"og:description":return eg("Description","wp-seopress");case"twitter:image":return eg("Twitter Image","wp-seopress");case"og:image":return eg("Image","wp-seopress");case"og:url":return eg("URL","wp-seopress");case"og:site_name":return eg("Site Name","wp-seopress")}},ng=function(e,t){var n=t.type;if(An()(Z()(e,[n,"value"],[])))return"high";var r=Z()(e,[n,"value"],[]);return r.length>1||An()(r[0])?"high":"good"},rg=function(t){var n=t.type;return e.createElement("div",{style:{color:"rgb(29, 35, 39)",margin:"10px 0px",fontWeight:"bold",borderBottom:"1px solid var(--borderColorCard)",paddingBottom:"10px"}},eg("Open Graph")," ",tg(n))},og=function(t){var n=t.type;return e.createElement("div",{style:{color:"rgb(29, 35, 39)",margin:"10px 0px",fontWeight:"bold",borderBottom:"1px solid var(--borderColorCard)",paddingBottom:"10px"}},eg("Twitter")," ",tg(n))},ag=function(t){var n=t.data,r=t.options,o=(void 0===r?{}:r).type;if(An()(Z()(n,[o,"value"],[])))return e.createElement(e.Fragment,null,e.createElement(rg,{type:o}),e.createElement("p",null,e.createElement(us,{className:"sp-dashicons-not"}),e.createElement("strong",null,eg("Your Open Graph ".concat(tg(o)," is missing!"),"wp-seopress"))));var a=Z()(n,[o,"value"],[]);return e.createElement(e.Fragment,null,e.createElement(rg,{type:o}),a.length>1&&e.createElement(e.Fragment,null,e.createElement("p",null,e.createElement(us,{className:"sp-dashicons-not"}),eg("We found","wp-seopress")," ",a.length," ",o," ",eg("in your content.","wp-seopress")),e.createElement("p",null,"og:title"===o&&eg("You should not use more than one og:title in your post content to avoid conflicts when sharing on social networks. Facebook will take the last og:title tag from your source code. Below, the list:","wp-seopress"),"og:description"===o&&eg("You should not use more than one og:description in your post content to avoid conflicts when sharing on social networks. Facebook will take the last og:description tag from your source code. Below, the list:","wp-seopress"),"og:url"===o&&eg("You should not use more than one og:url in your post content to avoid conflicts when sharing on social networks. Facebook will take the last og:url tag from your source code. Below, the list:","wp-seopress"),"og:site_name"===o&&eg("You should not use more than one og:site_name in your post content to avoid conflicts when sharing on social networks. Facebook will take the last og:site_name tag from your source code. Below, the list:","wp-seopress"))),1===a.length&&e.createElement("p",null,e.createElement(rv,{className:"sp-dashicons-ok"}),eg("We found an Open Graph","wp-seopress")," ",tg(o)," ",eg("tag in your source code.","wp-seopress")),An()(a[0])&&e.createElement("p",null,e.createElement(us,{className:"sp-dashicons-not"}),eg("Your Open Graph ".concat(tg(o)," tag is empty!"),"wp-seopress")),e.createElement("ul",null,a.map((function(t,n){return e.createElement("li",{key:"og_".concat(o,"_").concat(n)},e.createElement("span",{className:"dashicons dashicons-minus"}),t)}))))},ig=function(t){var n=t.data,r=t.options,o=(void 0===r?{}:r).type;if(An()(Z()(n,[o,"value"],[])))return e.createElement(e.Fragment,null,e.createElement(og,{type:o}),e.createElement("p",null,e.createElement(us,{className:"sp-dashicons-not"}),e.createElement("strong",null,eg("Your ".concat(tg(o)," is missing!"),"wp-seopress"))));var a=Z()(n,[o,"value"],[]);return e.createElement(e.Fragment,null,e.createElement(og,{type:o}),a.length>1&&e.createElement(e.Fragment,null,e.createElement("p",null,e.createElement(us,{className:"sp-dashicons-not"}),eg("We found","wp-seopress")," ",a.length," ",o," ",eg("in your content.","wp-seopress")),e.createElement("p",null,"twitter:title"===o&&eg("You should not use more than one twitter:title in your post content to avoid conflicts when sharing on social networks. Twitter will take the last twitter:title tag from your source code. Below, the list:","wp-seopress"),"twitter:description"===o&&eg("You should not use more than one twitter:description in your post content to avoid conflicts when sharing on social networks. Twitter will take the last twitter:description tag from your source code. Below, the list:","wp-seopress"))),1===a.length&&e.createElement("p",null,e.createElement(rv,{className:"sp-dashicons-ok"}),eg("We found a","wp-seopress")," ",tg(o)," ",eg("tag in your source code.","wp-seopress")),An()(a[0])&&e.createElement("p",null,e.createElement(us,{className:"sp-dashicons-not"}),eg("Your ".concat(tg(o)," tag is empty!"),"wp-seopress")),e.createElement("ul",null,a.map((function(t,n){return e.createElement("li",{key:"twitter_".concat(o,"_").concat(n)},e.createElement("span",{className:"dashicons dashicons-minus"}),t)}))))},sg=function(t){return{key:t,severity:function(e,n){return ng(e,Jv(Jv({},n),{},{type:t}))},component:function(n){var r=n.data,o=n.options,a=void 0===o?{}:o;return e.createElement(ag,{data:r,options:Jv(Jv({},a),{},{type:t})})}}},lg=function(t){return{key:t,severity:function(e,n){return ng(e,Jv(Jv({},n),{},{type:t}))},component:function(n){var r=n.data,o=n.options,a=void 0===o?{}:o;return e.createElement(ig,{data:r,options:Jv(Jv({},a),{},{type:t})})}}},ug=[sg("og:title"),sg("og:description"),sg("og:image"),sg("og:url"),sg("og:site_name"),lg("twitter:title"),lg("twitter:description"),lg("twitter:image")];const cg={key:"social_meta_tags",title:eg("Social meta tags","wp-seopress"),severity:function(e,t){var n=null;return ug.map((function(r){n=r.severity(e,t)})),n},items:ug};var fg=wp.i18n.__,pg="words_counter",dg=function(e,t){return Wt()(e.words_counter)?"high":Z()(e,pg,0)<299?"medium":"good"};const hg={key:pg,title:fg("Words counter","wp-seopress"),severity:dg,component:function(t){var n=t.data;return t.options,"high"===dg(n)?e.createElement("p",null,e.createElement(us,{className:"sp-dashicons-not"}),fg("No content? Add a few more paragraphs!","wp-seopress")):e.createElement(e.Fragment,null,e.createElement("p",null,fg("Words counter is not a direct ranking factor. But, your content must be as qualitative as possible, with relevant and unique information. To fulfill these conditions, your article requires a minimum of paragraphs, so words.","wp-seopress")),e.createElement("p",null,Z()(n,pg,0)," ",fg("words found.","wp-seopress")),e.createElement("p",null,Z()(n,"words_counter_unique",0)," ",fg("unique words found.","wp-seopress")),Z()(n,pg,0)>=299&&e.createElement("p",null,e.createElement(rv,{className:"sp-dashicons-ok"}),fg("Your content is composed of more than 300 words, which is the minimum for a post.","wp-seopress")),Z()(n,pg,0)<299&&e.createElement("p",null,e.createElement(us,{className:"sp-dashicons-not"}),fg("Your content is too short. Add a few more paragraphs!","wp-seopress")))}};var mg=wp.i18n.__,vg="kws_permalink",gg=function(e){return $t()(e,{key:"id"}).value},yg=function(e){return $t()(e,{key:"id_homepage"}).value};const bg={key:vg,title:mg("Keywords in permalink","wp-seopress"),severity:function(e,t){var n=Z()(e,[vg,"matches"],[]);return An()(n)&&gg(t)===yg(t)?"good":An()(n)&&gg(t)!==yg(t)?"medium":"good"},component:function(t){var n=t.data,r=t.options,o=void 0===r?{}:r,a=Z()(n,[vg,"matches"],[]);return e.createElement(e.Fragment,null,An()(a)&&gg(o)===yg(o)&&e.createElement("p",null,e.createElement(rv,{className:"sp-dashicons-ok"}),mg("This is your homepage. This check doesn't apply here because there is no slug.","wp-seopress")),An()(a)&&gg(o)!==yg(o)&&e.createElement("p",null,e.createElement(us,{className:"sp-dashicons-not"}),mg("You should add one of your target keyword in your permalink.","wp-seopress")),!An()(a)&&e.createElement(e.Fragment,null,mg("Cool, one of your target keyword is used in your permalink.","wp-seopress"),e.createElement("ul",null,a.map((function(t,n){return e.createElement("li",{key:"density_".concat(n)},e.createElement("span",{className:"dashicons dashicons-minus"}),t.key)}))),e.createElement("p",{dangerouslySetInnerHTML:{__html:mg('Learn more about <a href="https://www.youtube.com/watch?v=Rk4qgQdp2UA" target="_blank">keywords stuffing</a>.',"wp-seopress")}})))}};var wg=wp.i18n.__,xg="kws_density";const Eg={key:xg,title:wg("Keywords density","wp-seopress"),severity:function(e,t){var n=Z()(e,[xg,"matches"],[]);return An()(n)?"high":"good"},component:function(t){var n=t.data,r=(t.options,Z()(n,[xg,"matches"],[]));return e.createElement(e.Fragment,null,An()(r)&&e.createElement(e.Fragment,null,wg("We were unable to calculate the density of your keywords. You probably haven‘t added any content or your target keywords were not find in your post content.","wp-seopress")),!An()(r)&&e.createElement(e.Fragment,null,e.createElement("ul",null,r.map((function(t,r){var o=Math.round(t.count/Z()(n,"words_counter",0)*100).toFixed(2);return e.createElement("li",{key:"density_".concat(r)},e.createElement("span",{className:"dashicons dashicons-minus"}),wg("".concat(t.key," was found ").concat(t.count," times in your content, a keyword density of ").concat(o,"%"),"wp-seopress"))}))),e.createElement("p",{dangerouslySetInnerHTML:{__html:wg('Learn more about <a href="https://www.youtube.com/watch?v=Rk4qgQdp2UA" target="_blank">keywords stuffing</a>.',"wp-seopress")}})))}};var Sg=wp.i18n.__,kg="old_post";const _g={key:kg,title:Sg("Last modified date","wp-seopress"),severity:function(e,t){return Z()(e,[kg,"value"],!1)?"medium":"good"},component:function(t){var n=t.data,r=(t.options,Z()(n,[kg,"value"],!1));return e.createElement(e.Fragment,null,r&&e.createElement("p",null,e.createElement(us,{className:"sp-dashicons-not"}),Sg("This post is a little old!","wp-seopress")),!r&&e.createElement("p",null,e.createElement(rv,{className:"sp-dashicons-ok"}),Sg("The last modified date of this article is less than 1 year. Cool!","wp-seopress")),e.createElement("p",null,Sg("Search engines love fresh content. Update regularly your articles without entirely rewriting your content and give them a boost in search rankings. SEOPress takes care of the technical part.","wp-seopress")))}};function Og(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 Cg=function(e,t){var n,r="good",o=function(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 Og(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Og(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}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,i=!0,s=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return i=e.done,e},e:function(e){s=!0,a=e},f:function(){try{i||null==n.return||n.return()}finally{if(s)throw a}}}}(e);try{for(o.s();!(n=o.n()).done;){var a=n.value.severity(t.data,t.options);"good"===r&&"good"!==a&&"low"!==a&&(r=a)}}catch(e){o.e(e)}finally{o.f()}return r};const Pg=function(){return[hg,lv,bv,Vv,Tv,cg,Fv,Xv,kv,Hv,Yv,Cv,bg,Eg,_g]},jg=Dt.div.withConfig({componentId:"sc-1malvzg-0"})(["&&&&{display:flex;align-items:center;padding:10px 0px;font-weight:bold;position:relative;}"]);var Ag=Dt.span.withConfig({componentId:"sc-1l6x77i-0"})(["&&&&{display:block;width:10px;height:10px;border-radius:50px;padding:0;margin:0;border:1px solid #fff;"," "," "," ","}"],(function(e){return"good"===e.severity&&"\n background: var(--colorSuccess);\n box-shadow: 0 0 5px var(--colorSuccess);\n "}),(function(e){return"low"===e.severity&&"\n background: var(--colorWarning);\n box-shadow: 0 0 5px var(--colorWarning);\n "}),(function(e){return"medium"===e.severity&&"\n background: var(--colorLowAlert);\n box-shadow: 0 0 5px var(--colorLowAlert);\n "}),(function(e){return"high"===e.severity&&"\n background: var(--colorAlert);\n box-shadow: 0 0 5px var(--colorAlert);\n "}));const Ig=Ag;function Tg(e){return Tg="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},Tg(e)}function Rg(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function Ng(e,t){return Ng=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},Ng(e,t)}function Mg(e,t){if(t&&("object"===Tg(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}function Fg(e){return Fg=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},Fg(e)}const Lg=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&Ng(e,t)}(s,e);var t,n,r,o,a,i=(o=s,a=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}}(),function(){var e,t=Fg(o);if(a){var n=Fg(this).constructor;e=Reflect.construct(t,arguments,n)}else e=t.apply(this,arguments);return Mg(this,e)});function s(e){var t;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,s),(t=i.call(this,e)).state={hasError:!1},t}return t=s,r=[{key:"getDerivedStateFromError",value:function(e){return{hasError:!0}}}],(n=[{key:"componentDidCatch",value:function(e,t){console.error("[error]",e),console.error("[errorInfo]",t)}},{key:"render",value:function(){return this.state.hasError?null:this.props.children}}])&&Rg(t.prototype,n),r&&Rg(t,r),Object.defineProperty(t,"prototype",{writable:!1}),s}(e.Component);function Dg(e,t,n,r,o,a,i){try{var s=e[a](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}var zg=function(){var e,t=(e=regeneratorRuntime.mark((function e(t,n){var r;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,fetch("".concat(SEOPRESS_DATA.REST_URL,"seopress/v1/posts/").concat(t,"/target-keywords"),{method:"PUT",headers:{"Content-Type":"application/json","X-WP-Nonce":Z()(SEOPRESS_DATA,"NONCE",null)},body:JSON.stringify(n)});case 2:return r=e.sent,e.next=5,r.json();case 5:return e.abrupt("return",e.sent);case 6:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(r,o){var a=e.apply(t,n);function i(e){Dg(a,r,o,i,s,"next",e)}function s(e){Dg(a,r,o,i,s,"throw",e)}i(void 0)}))});return function(e,n){return t.apply(this,arguments)}}();const Ug=function(t){var n=t.severity,r=void 0===n?"good":n,o="good"!==r?"notgood":"good";return e.createElement("div",{className:ks()("analysis-score",o)},e.createElement("svg",{role:"img","aria-hidden":"true",focusable:"false",width:"100%",height:"100%",viewBox:"0 0 200 200",version:"1.1",xmlns:"http://www.w3.org/2000/svg"},e.createElement("circle",{r:"90",cx:"100",cy:"100",fill:"transparent",strokeDasharray:"565.48",strokeDashoffset:"0"}),e.createElement("circle",{id:"bar",r:"90",cx:"100",cy:"100",fill:"transparent",strokeDasharray:"565.48",strokeDashoffset:"0",style:{strokeDashoffset:"good"!==r?"101.788px":0}})))};function Vg(e,t,n,r,o,a,i){try{var s=e[a](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}var Bg=function(){var e,t=(e=regeneratorRuntime.mark((function e(t,n){var r;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,fetch(Zm({postId:t}),{method:"POST",headers:{"Content-Type":"application/json","X-WP-Nonce":Z()(SEOPRESS_DATA,"NONCE",null)},body:JSON.stringify(n)});case 2:return r=e.sent,e.next=5,r.json();case 5:return e.abrupt("return",e.sent);case 6:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(r,o){var a=e.apply(t,n);function i(e){Vg(a,r,o,i,s,"next",e)}function s(e){Vg(a,r,o,i,s,"throw",e)}i(void 0)}))});return function(e,n){return t.apply(this,arguments)}}();const Wg=Dt.div.withConfig({componentId:"sc-160v63j-0"})(["&&&{background:#fff;border:1px solid #c3c4c7;border-width:1px 1px 1px 4px;border-style:solid;box-shadow:0 1px 1px rgb(0 0 0 / 4%);margin:0 0 15px 0;padding:5px 12px;border-left-color:#dba617;}"]);function Hg(e,t,n,r,o,a,i){try{var s=e[a](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function $g(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var a=e.apply(t,n);function i(e){Hg(a,r,o,i,s,"next",e)}function s(e){Hg(a,r,o,i,s,"throw",e)}i(void 0)}))}}function Gg(e){return function(e){if(Array.isArray(e))return Qg(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||qg(e)||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.")}()}function Yg(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,a=[],i=!0,s=!1;try{for(n=n.call(e);!(i=(r=n.next()).done)&&(a.push(r.value),!t||a.length!==t);i=!0);}catch(e){s=!0,o=e}finally{try{i||null==n.return||n.return()}finally{if(s)throw o}}return a}}(e,t)||qg(e,t)||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 qg(e,t){if(e){if("string"==typeof e)return Qg(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Qg(e,t):void 0}}function Qg(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 Xg(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Kg(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Xg(Object(n),!0).forEach((function(t){Jg(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Xg(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Jg(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Zg=Dt.div.withConfig({componentId:"sc-11zbbyy-0"})(["&&&&{margin-right:4px;color:var(--backgroundPrimary);min-height:26px;line-height:2.18181818;padding:0 8px;font-size:11px;color:var(--primaryColor);border-color:var(--primaryColor);background:none;cursor:pointer;border-width:1px;border-style:solid;border-radius:3px;white-space:nowrap;box-sizing:border-box;}"]),ey=(Dt.div.withConfig({componentId:"sc-11zbbyy-1"})(["&&&&{border:0;cursor:pointer;display:block;margin:0;position:relative;text-align:left;width:100%;align-items:center;border-top:1px solid var(--borderColorCard);}"]),wp.i18n),ty=ey.__,ny=ey._n,ry=function(t){var n=t.item,r=t.keyCondition,o=t.args,a=o.data,i=o.options,s=n.component;return e.createElement("div",{key:"analysisCondition_".concat(r),style:{paddingBottom:16}},e.createElement(s,{data:a,options:i}))},oy=function(t){var n=t.itemContent,r=t.args,o=t.expandAll,a=t.setExpandAll,i=n.severity(r.data,r.options),s=function(e){e.preventDefault(),a((function(e){return e.map((function(e){return e.key!==n.key?e:Kg(Kg({},e),{},{open:!e.open})}))}))};return e.createElement(Fc,{dangerouslySetExpanded:$t()(o,{key:n.key}).open},e.createElement($c,null,e.createElement(Bc,{onClick:s,onKeyUp:function(e){13===e.keyCode&&(e.preventDefault(),s(e))}},e.createElement(Uc,null,e.createElement(jg,null,e.createElement(Ig,{"aria-hidden":"true",severity:i}),e.createElement("span",{style:{border:0,clip:"rect(1px, 1px, 1px, 1px)",WebkitClipPath:"inset(50%)",clipPath:"inset(50%)",height:"1px",margin:"-1px",overflow:"hidden",padding:0,position:"absolute",width:"1px",wordWrap:"normal !important"}},ty("Degree of severity: ".concat(i),"wp- seopress")),e.createElement("span",{style:{marginLeft:10}},n.title),e.createElement("span",{className:"seopress-arrow","aria-hidden":"true"})))),e.createElement(Wc,null,!ap()(n,"items")&&e.createElement(ry,{item:n,args:r}),ap()(n,"items")&&e.createElement(e.Fragment,null,n.items.map((function(t,n){return e.createElement("div",{key:"analysisConditionMultiple_".concat(n)},e.createElement(ry,{item:t,key:n,args:r}))}))))))};const ay=function(t){var n=t.mainBarRef,r=eo(),o=mn(),a=function(e){var t=e.postId;return K(function(e){var t=e.postId;return"".concat(SEOPRESS_DATA.REST_URL,"seopress/v1/posts/").concat(t,"/target-keywords")}({postId:t}),{suspense:!0})}({postId:r}),i=a.data,s=a.mutate,l=Yg((0,e.useState)(!0),2),u=l[0],c=l[1],f=Yg((0,e.useState)({}),2),p=f[0],d=f[1],h=Yg((0,e.useState)([]),2),m=h[0],v=h[1],g=Yg((0,e.useState)(""),2),y=g[0],b=g[1],w=Yg((0,e.useState)(Z()(i,"value",[]).map((function(e){return{label:e,value:e}}))),2),x=w[0],E=w[1],S=If({postId:r}),k=S.data,_=S.abort,O=tu({postId:r}),C=O.data,P=O.abort;(0,e.useEffect)((function(){return function(){_(),P()}}));var j=Pg(),A=Yg((0,e.useState)(j.map((function(e){return{key:e.key,open:!1}}))),2),I=A[0],T=A[1];window.seopressGetGoogleSuggestion=function(e){Wt()(e[1])||v(e[1])};var R=function(e){return e.reduce((function(e,t){return An()(e)?t:"".concat(e,", ").concat(t)}),"")},N=function(){return[].concat(Gg(Object.values(k)),Gg(Object.values(C).map((function(e,t){return{key:Object.keys(C)[t],value:e}}))),[{key:"id",value:Number(r)},{key:"id_homepage",value:Number(Z()(o,"id_homepage.value",null))}])},M={data:p,options:N()},F=function(e,t){return nv()(e,(function(e){return e.severity(t.data,t.options)}))}(j,M),L=function(){var e=$g(regeneratorRuntime.mark((function e(t){var n;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,ev({postId:r},t);case 2:n=e.sent,d(n),Bg(r,{words_counter:Z()(n,"words_counter",null),score:Cg(Pg(),{data:n,options:N()})}),c(!1);case 6:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}();(0,e.useEffect)((function(){var e=new AbortController;return L(e),function(){e.abort()}}),[]),(0,e.useEffect)((function(){E(Z()(i,"value",[]).map((function(e){return{label:e,value:e}})))}),[i]);var D,z=function(){var e=$g(regeneratorRuntime.mark((function e(){var t,n;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return t=new AbortController,n=R(x.map((function(e){return e.value}))),c(!0),e.next=5,zg(r,{_seopress_analysis_target_kw:n});case 5:return s(),e.next=8,L(t);case 8:case"end":return e.stop()}}),e)})));return function(){return e.apply(this,arguments)}}(),U=0,V=function(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=qg(e))){n&&(e=n);var r=0,o=function(){};return{s:o,n:function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}},e:function(e){throw e},f:o}}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,i=!0,s=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return i=e.done,e},e:function(e){s=!0,a=e},f:function(){try{i||null==n.return||n.return()}finally{if(s)throw a}}}}(i.usage);try{for(V.s();!(D=V.n()).done;)D.value.rows.length>1&&U++}catch(e){V.e(e)}finally{V.f()}var B=Cg(j,M);return e.createElement("div",{ref:n,tabIndex:"0"},e.createElement("p",null,ty("Enter a few keywords for analysis to help you write optimized content.","wp-seopress")),e.createElement("p",{className:"description-alt desc-fb"},e.createElement("svg",{width:"24",height:"24",viewBox:"0 0 24 24",role:"img","aria-hidden":"true",focusable:"false"},e.createElement("path",{d:"M12 15.8c-3.7 0-6.8-3-6.8-6.8s3-6.8 6.8-6.8c3.7 0 6.8 3 6.8 6.8s-3.1 6.8-6.8 6.8zm0-12C9.1 3.8 6.8 6.1 6.8 9s2.4 5.2 5.2 5.2c2.9 0 5.2-2.4 5.2-5.2S14.9 3.8 12 3.8zM8 17.5h8V19H8zM10 20.5h4V22h-4z"})),ty("Writing content for your users is the most important thing! If it doesn‘t feel natural, your visitors will leave your site, Google will know it and your ranking will be affected.","wp-seopress")),e.createElement("div",{className:"flex"},e.createElement("div",{className:"w-1/2"},e.createElement(Ts,{htmlFor:"_seopress_analysis_target_kw"},ty("Target keywords","wp-seopress"),e.createElement(Ul,{title:ty("Target keywords","wp-seopress"),description:e.createElement(e.Fragment,null,ty("Separate target keywords with commas. Do not use spaces after the commas, unless you want to include them","wp-seopress")),code:"my super keyword,another keyword,keyword"})),U>0&&e.createElement(Wg,null,ny("The keyword:","These keywords:",U,"wp-seopress"),e.createElement("ul",null,Z()(i,"usage",[]).map((function(t){return t.rows.length<2?null:e.createElement("li",{key:t.key,style:{listStyle:"disc",marginLeft:20}},e.createElement("strong",null,t.key)," ",ty("is already used ".concat(t.rows.length," times"),"wp-seopress"))}))),e.createElement("p",null,ty("You should avoid using multiple times the same keyword for different pages. Try to consolidate your content into one single page.","wp-seopress"))),e.createElement(Km,{isMulti:!0,isClearable:!0,placeholder:ty("Enter your target keywords","wp-seopress"),value:x,onChange:function(e,t){E(e)}}),e.createElement(Fs,{style:{marginTop:10},secondary:!0,loading:u,onClick:z},ty("Refresh analysis","wp-seopress")),e.createElement("p",null,ty("To get the most accurate analysis, save your post first. We analyze all of your source code as a search engine would.","wp-seopress"))),!0===Z()(SEOPRESS_DATA,"GOOGLE_SUGGEST.ACTIVE",!1)&&e.createElement("div",{className:"sp-google-preview w-1/2"},e.createElement(Ts,{htmlFor:"suggestion"},ty("Google suggestions","wp-seopress"),e.createElement(Ul,{title:ty("Google suggestions","wp-seopress"),description:e.createElement(e.Fragment,null,ty("Enter a keyword, or a phrase, to find the top 10 Google suggestions instantly. This is useful if you want to work with the long tail technique.","wp-seopress")),code:"my super keyword,another keyword,keyword"})),e.createElement(ds,{name:"suggestion",id:"suggestion",value:y,placeholder:ty("Get suggestions from Google","wp-seopress"),onChange:function(e){return b(e.target.value)}}),e.createElement(Fs,{style:{marginTop:10},secondary:!0,onClick:$g(regeneratorRuntime.mark((function e(){var t;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:v([]),(t=document.createElement("script")).src="https://www.google.com/complete/search?client=firefox&hl=".concat(Z()(SEOPRESS_DATA,"GOOGLE_SUGGEST.LOCALE"),"&q=").concat(y,"&gl=").concat(Z()(SEOPRESS_DATA,"GOOGLE_SUGGEST.COUNTRY_CODE"),"&callback=seopressGetGoogleSuggestion"),document.body.appendChild(t);case 4:case"end":return e.stop()}}),e)})))},ty("Get suggestions!","wp-seopress")),!An()(m)&&e.createElement("div",{style:{marginTop:16,display:"flex",flexWrap:"wrap"}},m.map((function(t,n){var r=function(){E([].concat(Gg(x),[{label:t,value:t}]))};return e.createElement(Zg,{key:"suggest_".concat(n),onClick:r,onKeyUp:function(e){13===e.keyCode&&(e.preventDefault(),r())},tabIndex:"0",style:{marginBottom:10}},t)}))))),e.createElement("div",{className:"flex items-center",style:{marginTop:10}},e.createElement(Ug,{severity:Cg(j,M)}),e.createElement("span",{style:{fontSize:18,fontWeight:"bold"}},"good"!==B&&ty("Should be improved","wp-seopress"),"good"===B&&ty("Good","wp-seopress")),e.createElement("div",{style:{marginLeft:"auto"}},e.createElement("a",{href:"#",onClick:function(e){e.preventDefault(),T((function(e){return e.map((function(e){return Kg(Kg({},e),{},{open:!0})}))}))}},ty("Expand","wp-seopress"))," ","/"," ",e.createElement("a",{href:"#",onClick:function(e){e.preventDefault(),T((function(e){return e.map((function(e){return Kg(Kg({},e),{},{open:!1})}))}))}},ty("Close","wp-seopress")))),null!==Z()(p,"title",null)&&e.createElement(Lg,null,e.createElement(Cc,{style:{marginTop:10},allowMultipleExpanded:!0,allowZeroExpanded:!0},"no_data"!==Z()(j,"code",null)&&e.createElement(e.Fragment,null,Z()(F,"high",[]).map((function(t,n){return e.createElement(e.Fragment,{key:n},e.createElement(oy,{expandAll:I,setExpandAll:T,itemContent:t,args:M}))})),Z()(F,"medium",[]).map((function(t,n){return e.createElement(e.Fragment,{key:n},e.createElement(oy,{expandAll:I,setExpandAll:T,itemContent:t,args:M}))})),Z()(F,"low",[]).map((function(t,n){return e.createElement(e.Fragment,{key:n},e.createElement(oy,{expandAll:I,setExpandAll:T,itemContent:t,args:M}))})),Z()(F,"good",[]).map((function(t,n){return e.createElement(e.Fragment,{key:n},e.createElement(oy,{expandAll:I,setExpandAll:T,itemContent:t,args:M}))}))))))};var iy=function(e){var t=e.postId;return"".concat(SEOPRESS_DATA.REST_URL,"seopress/v1/posts/").concat(t,"/google-news-settings")};function sy(e,t,n,r,o,a,i){try{var s=e[a](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}var ly=function(){var e,t=(e=regeneratorRuntime.mark((function e(t,n){var r;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,fetch(iy({postId:t}),{method:"PUT",headers:{"Content-Type":"application/json","X-WP-Nonce":Z()(SEOPRESS_DATA,"NONCE",null)},body:JSON.stringify(n)});case 2:return r=e.sent,e.next=5,r.json();case 5:return e.abrupt("return",e.sent);case 6:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(r,o){var a=e.apply(t,n);function i(e){sy(a,r,o,i,s,"next",e)}function s(e){sy(a,r,o,i,s,"throw",e)}i(void 0)}))});return function(e,n){return t.apply(this,arguments)}}(),uy=["values"];function cy(){return cy=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},cy.apply(this,arguments)}function fy(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function py(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?fy(Object(n),!0).forEach((function(t){dy(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):fy(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function dy(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function hy(e,t,n,r,o,a,i){try{var s=e[a](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function my(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 vy=wp.i18n.__;const gy=function(t){var n=t.mainBarRef,r=eo(),o=function(e){var t=e.postId;return oo(iy({postId:t}),{suspense:!0})}({postId:r}),a=o.data,i=o.mutate,s=o.abort;(0,e.useEffect)((function(){return function(){s()}}));var l,u,c=(l=(0,e.useState)(!1),u=2,function(e){if(Array.isArray(e))return e}(l)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,a=[],i=!0,s=!1;try{for(n=n.call(e);!(i=(r=n.next()).done)&&(a.push(r.value),!t||a.length!==t);i=!0);}catch(e){s=!0,o=e}finally{try{i||null==n.return||n.return()}finally{if(s)throw o}}return a}}(l,u)||function(e,t){if(e){if("string"==typeof e)return my(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?my(e,t):void 0}}(l,u)||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.")}()),f=c[0],p=c[1],d=(0,e.useContext)(Rn).actions,h=function(){var e,t=(e=regeneratorRuntime.mark((function e(t){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return p(!0),e.next=3,ly(r,py(py({},t),{},{_seopress_news_disabled:t._seopress_news_disabled?"yes":""}));case 3:e.sent,i(),p(!1),d.setMessage(vy("Your settings have been saved.","wp-seopress"));case 7:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(r,o){var a=e.apply(t,n);function i(e){hy(a,r,o,i,s,"next",e)}function s(e){hy(a,r,o,i,s,"throw",e)}i(void 0)}))});return function(e){return t.apply(this,arguments)}}(),m=fu()(du()(a,"key"),(function(e){return Z()(e,"value",!1)}));return e.createElement("div",{ref:n,tabIndex:"0"},e.createElement(Yi,{enableReinitialize:!0,onSubmit:h,initialValues:m},(function(t){var n=t.values,r=function(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}(t,uy);return e.createElement(Zi,null,a.map((function(t,o){if(t.visible)return e.createElement(e.Fragment,{key:"social_form_".concat(o)},e.createElement("div",{className:"mt-3"},e.createElement(mf,cy({item:t,values:n,checkboxLegacyValue:"_seopress_news_disabled"===t.key},r))))})),e.createElement("div",{className:"sp-fixed"},e.createElement(Fs,{blue:!0,loading:f,onClick:function(){return h(n)}},vy("Save","wp-seopress"))))})))};var yy=function(e){var t=e.postId;return"".concat(SEOPRESS_DATA.REST_URL,"seopress/v1/posts/").concat(t,"/video-sitemap")};function by(e,t,n,r,o,a,i){try{var s=e[a](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}var wy=function(){var e,t=(e=regeneratorRuntime.mark((function e(t,n){var r;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,fetch(yy({postId:t}),{method:"PUT",headers:{"Content-Type":"application/json","X-WP-Nonce":Z()(SEOPRESS_DATA,"NONCE",null)},body:JSON.stringify(n)});case 2:return r=e.sent,e.next=5,r.json();case 5:return e.abrupt("return",e.sent);case 6:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(r,o){var a=e.apply(t,n);function i(e){by(a,r,o,i,s,"next",e)}function s(e){by(a,r,o,i,s,"throw",e)}i(void 0)}))});return function(e,n){return t.apply(this,arguments)}}(),xy=["fields","values"],Ey=["values"];function Sy(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function ky(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Sy(Object(n),!0).forEach((function(t){_y(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Sy(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function _y(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Oy(e,t,n,r,o,a,i){try{var s=e[a](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function Cy(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 Py(){return Py=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Py.apply(this,arguments)}function jy(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}var Ay=wp.i18n.__,Iy=function(t){var n=t.fields,r=t.values,o=jy(t,xy);return e.createElement(Cc,{style:{marginTop:10},allowMultipleExpanded:!0,allowZeroExpanded:!0},e.createElement(os,{name:"videos",render:function(t){return e.createElement(e.Fragment,null,r.videos.map((function(a,i){var s=Z()(a,"title","Video ".concat(i));return e.createElement(e.Fragment,{key:"video_sitemap_form_repeat_".concat(i)},e.createElement(Fc,null,e.createElement($c,null,e.createElement(Bc,null,e.createElement(Uc,null,e.createElement(Gc,null,An()(s)?"Video ".concat(i):s,e.createElement("span",{className:"seopress-arrow","aria-hidden":"true"})))),e.createElement(Wc,null,Object.keys(a).map((function(t,a){var s=$t()(n,{key:t});return Wt()(s)?null:e.createElement(e.Fragment,{key:"video_sitemap_form_repeat_".concat(i,"_").concat(a)},e.createElement("div",{style:{marginTop:20}},e.createElement(mf,Py({item:s,nameInput:"videos[".concat(i,"].").concat(t),values:r,itemValue:Z()(r,["videos",i,t],"")},o))))})),e.createElement(Ao,{type:"button",style:{borderColor:"#cc1818",color:"#cc1818",boxShadow:"inset 0 0 0 1px #cc1818",margin:"20px 0"},onClick:function(e){e.stopPropagation,t.remove(i)}},Ay("Remove video","wp-seopress"))))))})),e.createElement(Ao,{type:"button",secondary:!0,onClick:function(e){e.stopPropagation,t.push({url:"",title:"New video",desc:"",thumbnail:"",duration:"",rating:"",view_count:"",cat:"",tag:"",family_friendly:""})}},Ay("Add video","wp-seopress")))}}))};const Ty=function(t){var n=t.mainBarRef,r=eo(),o=function(e){var t=e.postId;return oo(yy({postId:t}),{suspense:!0})}({postId:r}),a=o.data,i=o.mutate,s=o.abort;(0,e.useEffect)((function(){return function(){s()}}));var l,u,c=(l=(0,e.useState)(!1),u=2,function(e){if(Array.isArray(e))return e}(l)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,a=[],i=!0,s=!1;try{for(n=n.call(e);!(i=(r=n.next()).done)&&(a.push(r.value),!t||a.length!==t);i=!0);}catch(e){s=!0,o=e}finally{try{i||null==n.return||n.return()}finally{if(s)throw o}}return a}}(l,u)||function(e,t){if(e){if("string"==typeof e)return Cy(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Cy(e,t):void 0}}(l,u)||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.")}()),f=c[0],p=c[1],d=(0,e.useContext)(Rn).actions,h=function(){var e,t=(e=regeneratorRuntime.mark((function e(t){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return p(!0),e.next=3,wy(r,ky(ky({},t),{},{_seopress_news_disabled:t._seopress_news_disabled?"yes":""}));case 3:e.sent,i(),p(!1),d.setMessage(Ay("Your settings have been saved.","wp-seopress"));case 7:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(r,o){var a=e.apply(t,n);function i(e){Oy(a,r,o,i,s,"next",e)}function s(e){Oy(a,r,o,i,s,"throw",e)}i(void 0)}))});return function(e){return t.apply(this,arguments)}}(),m=fu()(du()(a.data,"key"),(function(e){return Z()(e,"value",!1)})),v=a.fields_video;return e.createElement("div",{ref:n,tabIndex:"0"},e.createElement(Yi,{enableReinitialize:!0,onSubmit:h,initialValues:ky(ky({},m),{},{videos:$t()(a.data,{key:"videos"}).data.map((function(e){return e.reduce((function(e,t,n){return ky(ky({},e),{},_y({},t.key,t.value))}),{})}))})},(function(t){var n=t.values,r=jy(t,Ey);return e.createElement(Zi,null,a.data.map((function(t,o){if(t.visible)return"videos"!==t.key?e.createElement(e.Fragment,{key:"video_sitemap_form_".concat(o)},e.createElement("div",{className:"mt-3"},e.createElement(mf,Py({item:t,values:n,checkboxLegacyValue:"_seopress_news_disabled"===t.key},r)))):e.createElement(e.Fragment,{key:"video_sitemap_form_".concat(o)},e.createElement(Iy,Py({fields:v,values:n},r)))})),e.createElement("div",{className:"sp-fixed"},e.createElement(Fs,{blue:!0,loading:f,onClick:function(){return h(n)}},Ay("Save","wp-seopress"))))})))};var Ry=o(1469),Ny=o.n(Ry);function My(e,t,n,r,o,a,i){try{var s=e[a](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}var Fy=function(e){var t=e.postId;return"".concat(SEOPRESS_DATA.REST_URL,"seopress/v1/posts/").concat(t,"/inspect")},Ly=function(){var e,t=(e=regeneratorRuntime.mark((function e(t){var n,r;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=t.postId,e.next=3,fetch(Fy({postId:n}),{method:"POST",headers:{"Content-Type":"application/json","X-WP-Nonce":Zr(SEOPRESS_DATA,"NONCE",null)}});case 3:return r=e.sent,e.next=6,r.json();case 6:return e.abrupt("return",e.sent);case 7:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(r,o){var a=e.apply(t,n);function i(e){My(a,r,o,i,s,"next",e)}function s(e){My(a,r,o,i,s,"throw",e)}i(void 0)}))});return function(e){return t.apply(this,arguments)}}();function Dy(e,t){if(t.length<e)throw new TypeError(e+" argument"+(e>1?"s":"")+" required, but only "+t.length+" present")}function zy(e){return Dy(1,arguments),e instanceof Date||"object"==typeof e&&"[object Date]"===Object.prototype.toString.call(e)}function Uy(e){Dy(1,arguments);var t=Object.prototype.toString.call(e);return e instanceof Date||"object"==typeof e&&"[object Date]"===t?new Date(e.getTime()):"number"==typeof e||"[object Number]"===t?new Date(e):("string"!=typeof e&&"[object String]"!==t||"undefined"==typeof console||(console.warn("Starting with v2.0.0-beta.1 date-fns doesn't accept strings as date arguments. Please use `parseISO` to parse strings. See: https://git.io/fjule"),console.warn((new Error).stack)),new Date(NaN))}function Vy(e){if(Dy(1,arguments),!zy(e)&&"number"!=typeof e)return!1;var t=Uy(e);return!isNaN(Number(t))}var By={lessThanXSeconds:{one:"less than a second",other:"less than {{count}} seconds"},xSeconds:{one:"1 second",other:"{{count}} seconds"},halfAMinute:"half a minute",lessThanXMinutes:{one:"less than a minute",other:"less than {{count}} minutes"},xMinutes:{one:"1 minute",other:"{{count}} minutes"},aboutXHours:{one:"about 1 hour",other:"about {{count}} hours"},xHours:{one:"1 hour",other:"{{count}} hours"},xDays:{one:"1 day",other:"{{count}} days"},aboutXWeeks:{one:"about 1 week",other:"about {{count}} weeks"},xWeeks:{one:"1 week",other:"{{count}} weeks"},aboutXMonths:{one:"about 1 month",other:"about {{count}} months"},xMonths:{one:"1 month",other:"{{count}} months"},aboutXYears:{one:"about 1 year",other:"about {{count}} years"},xYears:{one:"1 year",other:"{{count}} years"},overXYears:{one:"over 1 year",other:"over {{count}} years"},almostXYears:{one:"almost 1 year",other:"almost {{count}} years"}};function Wy(e){return function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=t.width?String(t.width):e.defaultWidth,r=e.formats[n]||e.formats[e.defaultWidth];return r}}const Hy={date:Wy({formats:{full:"EEEE, MMMM do, y",long:"MMMM do, y",medium:"MMM d, y",short:"MM/dd/yyyy"},defaultWidth:"full"}),time:Wy({formats:{full:"h:mm:ss a zzzz",long:"h:mm:ss a z",medium:"h:mm:ss a",short:"h:mm a"},defaultWidth:"full"}),dateTime:Wy({formats:{full:"{{date}} 'at' {{time}}",long:"{{date}} 'at' {{time}}",medium:"{{date}}, {{time}}",short:"{{date}}, {{time}}"},defaultWidth:"full"})};var $y={lastWeek:"'last' eeee 'at' p",yesterday:"'yesterday at' p",today:"'today at' p",tomorrow:"'tomorrow at' p",nextWeek:"eeee 'at' p",other:"P"};function Gy(e){return function(t,n){var r,o=n||{};if("formatting"===(o.context?String(o.context):"standalone")&&e.formattingValues){var a=e.defaultFormattingWidth||e.defaultWidth,i=o.width?String(o.width):a;r=e.formattingValues[i]||e.formattingValues[a]}else{var s=e.defaultWidth,l=o.width?String(o.width):e.defaultWidth;r=e.values[l]||e.values[s]}return r[e.argumentCallback?e.argumentCallback(t):t]}}const Yy={ordinalNumber:function(e,t){var n=Number(e),r=n%100;if(r>20||r<10)switch(r%10){case 1:return n+"st";case 2:return n+"nd";case 3:return n+"rd"}return n+"th"},era:Gy({values:{narrow:["B","A"],abbreviated:["BC","AD"],wide:["Before Christ","Anno Domini"]},defaultWidth:"wide"}),quarter:Gy({values:{narrow:["1","2","3","4"],abbreviated:["Q1","Q2","Q3","Q4"],wide:["1st quarter","2nd quarter","3rd quarter","4th quarter"]},defaultWidth:"wide",argumentCallback:function(e){return e-1}}),month:Gy({values:{narrow:["J","F","M","A","M","J","J","A","S","O","N","D"],abbreviated:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],wide:["January","February","March","April","May","June","July","August","September","October","November","December"]},defaultWidth:"wide"}),day:Gy({values:{narrow:["S","M","T","W","T","F","S"],short:["Su","Mo","Tu","We","Th","Fr","Sa"],abbreviated:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],wide:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},defaultWidth:"wide"}),dayPeriod:Gy({values:{narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"morning",afternoon:"afternoon",evening:"evening",night:"night"}},defaultWidth:"wide",formattingValues:{narrow:{am:"a",pm:"p",midnight:"mi",noon:"n",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},abbreviated:{am:"AM",pm:"PM",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"},wide:{am:"a.m.",pm:"p.m.",midnight:"midnight",noon:"noon",morning:"in the morning",afternoon:"in the afternoon",evening:"in the evening",night:"at night"}},defaultFormattingWidth:"wide"})};function qy(e){return function(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=n.width,o=r&&e.matchPatterns[r]||e.matchPatterns[e.defaultMatchWidth],a=t.match(o);if(!a)return null;var i,s=a[0],l=r&&e.parsePatterns[r]||e.parsePatterns[e.defaultParseWidth],u=Array.isArray(l)?Xy(l,(function(e){return e.test(s)})):Qy(l,(function(e){return e.test(s)}));i=e.valueCallback?e.valueCallback(u):u,i=n.valueCallback?n.valueCallback(i):i;var c=t.slice(s.length);return{value:i,rest:c}}}function Qy(e,t){for(var n in e)if(e.hasOwnProperty(n)&&t(e[n]))return n}function Xy(e,t){for(var n=0;n<e.length;n++)if(t(e[n]))return n}var Ky,Jy={ordinalNumber:(Ky={matchPattern:/^(\d+)(th|st|nd|rd)?/i,parsePattern:/\d+/i,valueCallback:function(e){return parseInt(e,10)}},function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=e.match(Ky.matchPattern);if(!n)return null;var r=n[0],o=e.match(Ky.parsePattern);if(!o)return null;var a=Ky.valueCallback?Ky.valueCallback(o[0]):o[0];a=t.valueCallback?t.valueCallback(a):a;var i=e.slice(r.length);return{value:a,rest:i}}),era:qy({matchPatterns:{narrow:/^(b|a)/i,abbreviated:/^(b\.?\s?c\.?|b\.?\s?c\.?\s?e\.?|a\.?\s?d\.?|c\.?\s?e\.?)/i,wide:/^(before christ|before common era|anno domini|common era)/i},defaultMatchWidth:"wide",parsePatterns:{any:[/^b/i,/^(a|c)/i]},defaultParseWidth:"any"}),quarter:qy({matchPatterns:{narrow:/^[1234]/i,abbreviated:/^q[1234]/i,wide:/^[1234](th|st|nd|rd)? quarter/i},defaultMatchWidth:"wide",parsePatterns:{any:[/1/i,/2/i,/3/i,/4/i]},defaultParseWidth:"any",valueCallback:function(e){return e+1}}),month:qy({matchPatterns:{narrow:/^[jfmasond]/i,abbreviated:/^(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)/i,wide:/^(january|february|march|april|may|june|july|august|september|october|november|december)/i},defaultMatchWidth:"wide",parsePatterns:{narrow:[/^j/i,/^f/i,/^m/i,/^a/i,/^m/i,/^j/i,/^j/i,/^a/i,/^s/i,/^o/i,/^n/i,/^d/i],any:[/^ja/i,/^f/i,/^mar/i,/^ap/i,/^may/i,/^jun/i,/^jul/i,/^au/i,/^s/i,/^o/i,/^n/i,/^d/i]},defaultParseWidth:"any"}),day:qy({matchPatterns:{narrow:/^[smtwf]/i,short:/^(su|mo|tu|we|th|fr|sa)/i,abbreviated:/^(sun|mon|tue|wed|thu|fri|sat)/i,wide:/^(sunday|monday|tuesday|wednesday|thursday|friday|saturday)/i},defaultMatchWidth:"wide",parsePatterns:{narrow:[/^s/i,/^m/i,/^t/i,/^w/i,/^t/i,/^f/i,/^s/i],any:[/^su/i,/^m/i,/^tu/i,/^w/i,/^th/i,/^f/i,/^sa/i]},defaultParseWidth:"any"}),dayPeriod:qy({matchPatterns:{narrow:/^(a|p|mi|n|(in the|at) (morning|afternoon|evening|night))/i,any:/^([ap]\.?\s?m\.?|midnight|noon|(in the|at) (morning|afternoon|evening|night))/i},defaultMatchWidth:"any",parsePatterns:{any:{am:/^a/i,pm:/^p/i,midnight:/^mi/i,noon:/^no/i,morning:/morning/i,afternoon:/afternoon/i,evening:/evening/i,night:/night/i}},defaultParseWidth:"any"})};const Zy={code:"en-US",formatDistance:function(e,t,n){var r,o=By[e];return r="string"==typeof o?o:1===t?o.one:o.other.replace("{{count}}",t.toString()),null!=n&&n.addSuffix?n.comparison&&n.comparison>0?"in "+r:r+" ago":r},formatLong:Hy,formatRelative:function(e,t,n,r){return $y[e]},localize:Yy,match:Jy,options:{weekStartsOn:0,firstWeekContainsDate:1}};function eb(e){if(null===e||!0===e||!1===e)return NaN;var t=Number(e);return isNaN(t)?t:t<0?Math.ceil(t):Math.floor(t)}function tb(e,t){Dy(2,arguments);var n=Uy(e).getTime(),r=eb(t);return new Date(n+r)}function nb(e,t){Dy(2,arguments);var n=eb(t);return tb(e,-n)}var rb=864e5;function ob(e){Dy(1,arguments);var t=1,n=Uy(e),r=n.getUTCDay(),o=(r<t?7:0)+r-t;return n.setUTCDate(n.getUTCDate()-o),n.setUTCHours(0,0,0,0),n}function ab(e){Dy(1,arguments);var t=Uy(e),n=t.getUTCFullYear(),r=new Date(0);r.setUTCFullYear(n+1,0,4),r.setUTCHours(0,0,0,0);var o=ob(r),a=new Date(0);a.setUTCFullYear(n,0,4),a.setUTCHours(0,0,0,0);var i=ob(a);return t.getTime()>=o.getTime()?n+1:t.getTime()>=i.getTime()?n:n-1}function ib(e){Dy(1,arguments);var t=ab(e),n=new Date(0);n.setUTCFullYear(t,0,4),n.setUTCHours(0,0,0,0);var r=ob(n);return r}var sb=6048e5;function lb(e,t){Dy(1,arguments);var n=t||{},r=n.locale,o=r&&r.options&&r.options.weekStartsOn,a=null==o?0:eb(o),i=null==n.weekStartsOn?a:eb(n.weekStartsOn);if(!(i>=0&&i<=6))throw new RangeError("weekStartsOn must be between 0 and 6 inclusively");var s=Uy(e),l=s.getUTCDay(),u=(l<i?7:0)+l-i;return s.setUTCDate(s.getUTCDate()-u),s.setUTCHours(0,0,0,0),s}function ub(e,t){Dy(1,arguments);var n=Uy(e),r=n.getUTCFullYear(),o=t||{},a=o.locale,i=a&&a.options&&a.options.firstWeekContainsDate,s=null==i?1:eb(i),l=null==o.firstWeekContainsDate?s:eb(o.firstWeekContainsDate);if(!(l>=1&&l<=7))throw new RangeError("firstWeekContainsDate must be between 1 and 7 inclusively");var u=new Date(0);u.setUTCFullYear(r+1,0,l),u.setUTCHours(0,0,0,0);var c=lb(u,t),f=new Date(0);f.setUTCFullYear(r,0,l),f.setUTCHours(0,0,0,0);var p=lb(f,t);return n.getTime()>=c.getTime()?r+1:n.getTime()>=p.getTime()?r:r-1}function cb(e,t){Dy(1,arguments);var n=t||{},r=n.locale,o=r&&r.options&&r.options.firstWeekContainsDate,a=null==o?1:eb(o),i=null==n.firstWeekContainsDate?a:eb(n.firstWeekContainsDate),s=ub(e,t),l=new Date(0);l.setUTCFullYear(s,0,i),l.setUTCHours(0,0,0,0);var u=lb(l,t);return u}var fb=6048e5;function pb(e,t){for(var n=e<0?"-":"",r=Math.abs(e).toString();r.length<t;)r="0"+r;return n+r}var db={y:function(e,t){var n=e.getUTCFullYear(),r=n>0?n:1-n;return pb("yy"===t?r%100:r,t.length)},M:function(e,t){var n=e.getUTCMonth();return"M"===t?String(n+1):pb(n+1,2)},d:function(e,t){return pb(e.getUTCDate(),t.length)},a:function(e,t){var n=e.getUTCHours()/12>=1?"pm":"am";switch(t){case"a":case"aa":return n.toUpperCase();case"aaa":return n;case"aaaaa":return n[0];default:return"am"===n?"a.m.":"p.m."}},h:function(e,t){return pb(e.getUTCHours()%12||12,t.length)},H:function(e,t){return pb(e.getUTCHours(),t.length)},m:function(e,t){return pb(e.getUTCMinutes(),t.length)},s:function(e,t){return pb(e.getUTCSeconds(),t.length)},S:function(e,t){var n=t.length,r=e.getUTCMilliseconds();return pb(Math.floor(r*Math.pow(10,n-3)),t.length)}};const hb=db;var mb={G:function(e,t,n){var r=e.getUTCFullYear()>0?1:0;switch(t){case"G":case"GG":case"GGG":return n.era(r,{width:"abbreviated"});case"GGGGG":return n.era(r,{width:"narrow"});default:return n.era(r,{width:"wide"})}},y:function(e,t,n){if("yo"===t){var r=e.getUTCFullYear(),o=r>0?r:1-r;return n.ordinalNumber(o,{unit:"year"})}return hb.y(e,t)},Y:function(e,t,n,r){var o=ub(e,r),a=o>0?o:1-o;return"YY"===t?pb(a%100,2):"Yo"===t?n.ordinalNumber(a,{unit:"year"}):pb(a,t.length)},R:function(e,t){return pb(ab(e),t.length)},u:function(e,t){return pb(e.getUTCFullYear(),t.length)},Q:function(e,t,n){var r=Math.ceil((e.getUTCMonth()+1)/3);switch(t){case"Q":return String(r);case"QQ":return pb(r,2);case"Qo":return n.ordinalNumber(r,{unit:"quarter"});case"QQQ":return n.quarter(r,{width:"abbreviated",context:"formatting"});case"QQQQQ":return n.quarter(r,{width:"narrow",context:"formatting"});default:return n.quarter(r,{width:"wide",context:"formatting"})}},q:function(e,t,n){var r=Math.ceil((e.getUTCMonth()+1)/3);switch(t){case"q":return String(r);case"qq":return pb(r,2);case"qo":return n.ordinalNumber(r,{unit:"quarter"});case"qqq":return n.quarter(r,{width:"abbreviated",context:"standalone"});case"qqqqq":return n.quarter(r,{width:"narrow",context:"standalone"});default:return n.quarter(r,{width:"wide",context:"standalone"})}},M:function(e,t,n){var r=e.getUTCMonth();switch(t){case"M":case"MM":return hb.M(e,t);case"Mo":return n.ordinalNumber(r+1,{unit:"month"});case"MMM":return n.month(r,{width:"abbreviated",context:"formatting"});case"MMMMM":return n.month(r,{width:"narrow",context:"formatting"});default:return n.month(r,{width:"wide",context:"formatting"})}},L:function(e,t,n){var r=e.getUTCMonth();switch(t){case"L":return String(r+1);case"LL":return pb(r+1,2);case"Lo":return n.ordinalNumber(r+1,{unit:"month"});case"LLL":return n.month(r,{width:"abbreviated",context:"standalone"});case"LLLLL":return n.month(r,{width:"narrow",context:"standalone"});default:return n.month(r,{width:"wide",context:"standalone"})}},w:function(e,t,n,r){var o=function(e,t){Dy(1,arguments);var n=Uy(e),r=lb(n,t).getTime()-cb(n,t).getTime();return Math.round(r/fb)+1}(e,r);return"wo"===t?n.ordinalNumber(o,{unit:"week"}):pb(o,t.length)},I:function(e,t,n){var r=function(e){Dy(1,arguments);var t=Uy(e),n=ob(t).getTime()-ib(t).getTime();return Math.round(n/sb)+1}(e);return"Io"===t?n.ordinalNumber(r,{unit:"week"}):pb(r,t.length)},d:function(e,t,n){return"do"===t?n.ordinalNumber(e.getUTCDate(),{unit:"date"}):hb.d(e,t)},D:function(e,t,n){var r=function(e){Dy(1,arguments);var t=Uy(e),n=t.getTime();t.setUTCMonth(0,1),t.setUTCHours(0,0,0,0);var r=t.getTime(),o=n-r;return Math.floor(o/rb)+1}(e);return"Do"===t?n.ordinalNumber(r,{unit:"dayOfYear"}):pb(r,t.length)},E:function(e,t,n){var r=e.getUTCDay();switch(t){case"E":case"EE":case"EEE":return n.day(r,{width:"abbreviated",context:"formatting"});case"EEEEE":return n.day(r,{width:"narrow",context:"formatting"});case"EEEEEE":return n.day(r,{width:"short",context:"formatting"});default:return n.day(r,{width:"wide",context:"formatting"})}},e:function(e,t,n,r){var o=e.getUTCDay(),a=(o-r.weekStartsOn+8)%7||7;switch(t){case"e":return String(a);case"ee":return pb(a,2);case"eo":return n.ordinalNumber(a,{unit:"day"});case"eee":return n.day(o,{width:"abbreviated",context:"formatting"});case"eeeee":return n.day(o,{width:"narrow",context:"formatting"});case"eeeeee":return n.day(o,{width:"short",context:"formatting"});default:return n.day(o,{width:"wide",context:"formatting"})}},c:function(e,t,n,r){var o=e.getUTCDay(),a=(o-r.weekStartsOn+8)%7||7;switch(t){case"c":return String(a);case"cc":return pb(a,t.length);case"co":return n.ordinalNumber(a,{unit:"day"});case"ccc":return n.day(o,{width:"abbreviated",context:"standalone"});case"ccccc":return n.day(o,{width:"narrow",context:"standalone"});case"cccccc":return n.day(o,{width:"short",context:"standalone"});default:return n.day(o,{width:"wide",context:"standalone"})}},i:function(e,t,n){var r=e.getUTCDay(),o=0===r?7:r;switch(t){case"i":return String(o);case"ii":return pb(o,t.length);case"io":return n.ordinalNumber(o,{unit:"day"});case"iii":return n.day(r,{width:"abbreviated",context:"formatting"});case"iiiii":return n.day(r,{width:"narrow",context:"formatting"});case"iiiiii":return n.day(r,{width:"short",context:"formatting"});default:return n.day(r,{width:"wide",context:"formatting"})}},a:function(e,t,n){var r=e.getUTCHours()/12>=1?"pm":"am";switch(t){case"a":case"aa":return n.dayPeriod(r,{width:"abbreviated",context:"formatting"});case"aaa":return n.dayPeriod(r,{width:"abbreviated",context:"formatting"}).toLowerCase();case"aaaaa":return n.dayPeriod(r,{width:"narrow",context:"formatting"});default:return n.dayPeriod(r,{width:"wide",context:"formatting"})}},b:function(e,t,n){var r,o=e.getUTCHours();switch(r=12===o?"noon":0===o?"midnight":o/12>=1?"pm":"am",t){case"b":case"bb":return n.dayPeriod(r,{width:"abbreviated",context:"formatting"});case"bbb":return n.dayPeriod(r,{width:"abbreviated",context:"formatting"}).toLowerCase();case"bbbbb":return n.dayPeriod(r,{width:"narrow",context:"formatting"});default:return n.dayPeriod(r,{width:"wide",context:"formatting"})}},B:function(e,t,n){var r,o=e.getUTCHours();switch(r=o>=17?"evening":o>=12?"afternoon":o>=4?"morning":"night",t){case"B":case"BB":case"BBB":return n.dayPeriod(r,{width:"abbreviated",context:"formatting"});case"BBBBB":return n.dayPeriod(r,{width:"narrow",context:"formatting"});default:return n.dayPeriod(r,{width:"wide",context:"formatting"})}},h:function(e,t,n){if("ho"===t){var r=e.getUTCHours()%12;return 0===r&&(r=12),n.ordinalNumber(r,{unit:"hour"})}return hb.h(e,t)},H:function(e,t,n){return"Ho"===t?n.ordinalNumber(e.getUTCHours(),{unit:"hour"}):hb.H(e,t)},K:function(e,t,n){var r=e.getUTCHours()%12;return"Ko"===t?n.ordinalNumber(r,{unit:"hour"}):pb(r,t.length)},k:function(e,t,n){var r=e.getUTCHours();return 0===r&&(r=24),"ko"===t?n.ordinalNumber(r,{unit:"hour"}):pb(r,t.length)},m:function(e,t,n){return"mo"===t?n.ordinalNumber(e.getUTCMinutes(),{unit:"minute"}):hb.m(e,t)},s:function(e,t,n){return"so"===t?n.ordinalNumber(e.getUTCSeconds(),{unit:"second"}):hb.s(e,t)},S:function(e,t){return hb.S(e,t)},X:function(e,t,n,r){var o=(r._originalDate||e).getTimezoneOffset();if(0===o)return"Z";switch(t){case"X":return gb(o);case"XXXX":case"XX":return yb(o);default:return yb(o,":")}},x:function(e,t,n,r){var o=(r._originalDate||e).getTimezoneOffset();switch(t){case"x":return gb(o);case"xxxx":case"xx":return yb(o);default:return yb(o,":")}},O:function(e,t,n,r){var o=(r._originalDate||e).getTimezoneOffset();switch(t){case"O":case"OO":case"OOO":return"GMT"+vb(o,":");default:return"GMT"+yb(o,":")}},z:function(e,t,n,r){var o=(r._originalDate||e).getTimezoneOffset();switch(t){case"z":case"zz":case"zzz":return"GMT"+vb(o,":");default:return"GMT"+yb(o,":")}},t:function(e,t,n,r){var o=r._originalDate||e;return pb(Math.floor(o.getTime()/1e3),t.length)},T:function(e,t,n,r){return pb((r._originalDate||e).getTime(),t.length)}};function vb(e,t){var n=e>0?"-":"+",r=Math.abs(e),o=Math.floor(r/60),a=r%60;if(0===a)return n+String(o);var i=t||"";return n+String(o)+i+pb(a,2)}function gb(e,t){return e%60==0?(e>0?"-":"+")+pb(Math.abs(e)/60,2):yb(e,t)}function yb(e,t){var n=t||"",r=e>0?"-":"+",o=Math.abs(e);return r+pb(Math.floor(o/60),2)+n+pb(o%60,2)}const bb=mb;function wb(e,t){switch(e){case"P":return t.date({width:"short"});case"PP":return t.date({width:"medium"});case"PPP":return t.date({width:"long"});default:return t.date({width:"full"})}}function xb(e,t){switch(e){case"p":return t.time({width:"short"});case"pp":return t.time({width:"medium"});case"ppp":return t.time({width:"long"});default:return t.time({width:"full"})}}const Eb={p:xb,P:function(e,t){var n,r=e.match(/(P+)(p+)?/)||[],o=r[1],a=r[2];if(!a)return wb(e,t);switch(o){case"P":n=t.dateTime({width:"short"});break;case"PP":n=t.dateTime({width:"medium"});break;case"PPP":n=t.dateTime({width:"long"});break;default:n=t.dateTime({width:"full"})}return n.replace("{{date}}",wb(o,t)).replace("{{time}}",xb(a,t))}};function Sb(e){var t=new Date(Date.UTC(e.getFullYear(),e.getMonth(),e.getDate(),e.getHours(),e.getMinutes(),e.getSeconds(),e.getMilliseconds()));return t.setUTCFullYear(e.getFullYear()),e.getTime()-t.getTime()}var kb=["D","DD"],_b=["YY","YYYY"];function Ob(e){return-1!==kb.indexOf(e)}function Cb(e){return-1!==_b.indexOf(e)}function Pb(e,t,n){if("YYYY"===e)throw new RangeError("Use `yyyy` instead of `YYYY` (in `".concat(t,"`) for formatting years to the input `").concat(n,"`; see: https://git.io/fxCyr"));if("YY"===e)throw new RangeError("Use `yy` instead of `YY` (in `".concat(t,"`) for formatting years to the input `").concat(n,"`; see: https://git.io/fxCyr"));if("D"===e)throw new RangeError("Use `d` instead of `D` (in `".concat(t,"`) for formatting days of the month to the input `").concat(n,"`; see: https://git.io/fxCyr"));if("DD"===e)throw new RangeError("Use `dd` instead of `DD` (in `".concat(t,"`) for formatting days of the month to the input `").concat(n,"`; see: https://git.io/fxCyr"))}var jb=/[yYQqMLwIdDecihHKkms]o|(\w)\1*|''|'(''|[^'])+('|$)|./g,Ab=/P+p+|P+|p+|''|'(''|[^'])+('|$)|./g,Ib=/^'([^]*?)'?$/,Tb=/''/g,Rb=/[a-zA-Z]/;function Nb(e){return e.match(Ib)[1].replace(Tb,"'")}function Mb(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Fb(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Mb(Object(n),!0).forEach((function(t){Lb(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Mb(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Lb(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Db(e,t,n,r,o,a,i){try{var s=e[a](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function zb(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 Ub=wp.i18n.__,Vb=(new AbortController,function(t){var n=function(t){var n=Z()(t,"inspectionResult.indexStatusResult.verdict");if(Wt()(n))return{title:"",description:"",class:""};switch(n){case"VERDICT_UNSPECIFIED":return{title:e.createElement(e.Fragment,null,e.createElement("span",{className:"dashicons dashicons-info"}),Ub("Unknown verdict","wp-seopress")),description:Ub("The URL has been indexed, can appear in Google Search results, and no problems were found with any enhancements found in the page (structured data, linked AMP pages, and so on).","wp-seopress")};case"PASS":return{title:e.createElement(e.Fragment,null,e.createElement("span",{className:"dashicons dashicons-yes-alt"}),Ub("URL is on Google","wp-seopress")),description:Ub("The URL has been indexed, can appear in Google Search results, and no problems were found with any enhancements found in the page (structured data, linked AMP pages, and so on).","wp-seopress"),class:"is-success"};case"PARTIAL":return{title:e.createElement(e.Fragment,null,e.createElement("span",{className:"dashicons dashicons-warning"}),Ub("URL is on Google, but has issues","wp-seopress")),description:Ub("The URL has been indexed and can appear in Google Search results, but there are some problems that might prevent it from appearing with the enhancements that you applied to the page. This might mean a problem with an associated AMP page, or malformed structured data for a rich result (such as a recipe or job posting) on the page.","wp-seopress"),class:"is-warning"};case"FAIL":return{title:e.createElement(e.Fragment,null,e.createElement("span",{className:"dashicons dashicons-dismiss"}),Ub("URL is not on Google: Indexing errors","wp-seopress")),description:Ub("There was at least one critical error that prevented the URL from being indexed, and it cannot appear in Google Search until those issues are fixed.","wp-seopress"),class:"is-error"};case"NEUTRAL":return{title:e.createElement(e.Fragment,null,e.createElement("span",{className:"dashicons dashicons-dismiss"}),Ub("URL is not on Google","wp-seopress")),description:Ub("This URL won‘t appear in Google Search results, but we think that was your intention. Common reasons include that the page is password-protected or robots.txt protected, or blocked by a noindex directive.","wp-seopress"),class:"is-error"}}}(t),r=Z()(t,"inspectionResult.indexStatusResult.coverageState",""),o=function(t){var n=Z()(t,"inspectionResult.indexStatusResult.indexingState","");if(An()(n))return"";switch(n){case"INDEXING_STATE_UNSPECIFIED":return e.createElement(e.Fragment,null,e.createElement("span",{className:"dashicons dashicons-info"}),Ub("Unknown indexing status.","wp-seopress"));case"INDEXING_ALLOWED":return e.createElement(e.Fragment,null,e.createElement("span",{className:"dashicons dashicons-yes-alt"}),Ub("Indexing allowed.","wp-seopress"));case"BLOCKED_BY_META_TAG":return e.createElement(e.Fragment,null,e.createElement("span",{className:"dashicons dashicons-warning"}),Ub("Indexing not allowed, 'noindex' detected in 'robots' meta tag.","wp-seopress"));case"BLOCKED_BY_HTTP_HEADER":return e.createElement(e.Fragment,null,e.createElement("span",{className:"dashicons dashicons-dismiss"}),Ub("Indexing not allowed, 'noindex' detected in 'X-Robots-Tag' http header.","wp-seopress"));case"BLOCKED_BY_ROBOTS_TXT":return e.createElement(e.Fragment,null,e.createElement("span",{className:"dashicons dashicons-dismiss"}),Ub("Indexing not allowed, blocked to Googlebot with a robots.txt file.","wp-seopress"))}}(t),a=function(e){var t=Z()(e,"inspectionResult.indexStatusResult.pageFetchState","");if(An()(t))return"";switch(t){case"PAGE_FETCH_STATE_UNSPECIFIED":return Ub("Unknown fetch state.","wp-seopress");case"SUCCESSFUL":return Ub("Successful fetch.","wp-seopress");case"SOFT_404":return Ub("Soft 404.","wp-seopress");case"BLOCKED_ROBOTS_TXT":return Ub("Blocked by robots.txt.","wp-seopress");case"NOT_FOUND":return Ub("Not found (404).","wp-seopress");case"ACCESS_DENIED":return Ub("Blocked due to unauthorized request (401).","wp-seopress");case"SERVER_ERROR":return Ub("Server error (5xx).","wp-seopress");case"REDIRECT_ERROR":return Ub("Redirection error.","wp-seopress");case"ACCESS_FORBIDDEN":return Ub("Blocked due to access forbidden (403).","wp-seopress");case"BLOCKED_4XX":return Ub("Blocked due to other 4xx issue (not 403, 404).","wp-seopress");case"INTERNAL_CRAWL_ERROR":return Ub("Internal error.","wp-seopress");case"INVALID_URL":return Ub("Invalid URL.","wp-seopress")}}(t),i=Z()(t,"inspectionResult.indexStatusResult.lastCrawlTime",null);try{i=function(e,t,n){Dy(2,arguments);var r=String(t),o=n||{},a=o.locale||Zy,i=a.options&&a.options.firstWeekContainsDate,s=null==i?1:eb(i),l=null==o.firstWeekContainsDate?s:eb(o.firstWeekContainsDate);if(!(l>=1&&l<=7))throw new RangeError("firstWeekContainsDate must be between 1 and 7 inclusively");var u=a.options&&a.options.weekStartsOn,c=null==u?0:eb(u),f=null==o.weekStartsOn?c:eb(o.weekStartsOn);if(!(f>=0&&f<=6))throw new RangeError("weekStartsOn must be between 0 and 6 inclusively");if(!a.localize)throw new RangeError("locale must contain localize property");if(!a.formatLong)throw new RangeError("locale must contain formatLong property");var p=Uy(e);if(!Vy(p))throw new RangeError("Invalid time value");var d=Sb(p),h=nb(p,d),m={firstWeekContainsDate:l,weekStartsOn:f,locale:a,_originalDate:p};return r.match(Ab).map((function(e){var t=e[0];return"p"===t||"P"===t?(0,Eb[t])(e,a.formatLong,m):e})).join("").match(jb).map((function(n){if("''"===n)return"'";var r=n[0];if("'"===r)return Nb(n);var i=bb[r];if(i)return!o.useAdditionalWeekYearTokens&&Cb(n)&&Pb(n,t,e),!o.useAdditionalDayOfYearTokens&&Ob(n)&&Pb(n,t,e),i(h,n,a.localize,m);if(r.match(Rb))throw new RangeError("Format string contains an unescaped latin alphabet character `"+r+"`");return n})).join("")}(new Date(i),"MMMM dd, yyyy - hh:mm:ss a")}catch(e){i=Z()(t,"inspectionResult.indexStatusResult.lastCrawlTime",null)}var s=function(e){var t=Z()(e,"inspectionResult.indexStatusResult.crawledAs","");if(An()(t))return"";switch(t){case"CRAWLING_USER_AGENT_UNSPECIFIED":return Ub("Unknown user agent.","wp-seopress");case"DESKTOP":return Ub("Googlebot desktop","wp-seopress");case"MOBILE":return Ub("Googlebot smartphone","wp-seopress")}}(t),l=function(e){var t=Z()(e,"inspectionResult.indexStatusResult.robotsTxtState","");if(An()(t))return"";switch(t){case"ROBOTS_TXT_STATE_UNSPECIFIED":return Ub("Unknown robots.txt state, typically because the page wasn‘t fetched or found, or because robots.txt itself couldn‘t be reached.","wp-seopress");case"ALLOWED":return Ub("Yes","wp-seopress");case"DISALLOWED":return Ub("Crawl blocked by robots.txt.","wp-seopress")}}(t),u=Z()(t,"inspectionResult.indexStatusResult.userCanonical",""),c=Z()(t,"inspectionResult.indexStatusResult.googleCanonical",""),f=Z()(t,"inspectionResult.indexStatusResult.sitemap","N/A");(An()(f)||Wt()(f))&&(f="N/A");var p=Z()(t,"inspectionResult.indexStatusResult.referringUrls",[]),d=function(t){var n=Z()(t,"inspectionResult.mobileUsabilityResult","");if(An()(n))return{title:"",description:""};switch(n){case"VERDICT_UNSPECIFIED":return{title:e.createElement(e.Fragment,null,e.createElement("span",{className:"dashicons dashicons-info"}),Ub("No data available","wp-seopress"),","),description:Ub("For some reason we couldn't retrieve the page or test its mobile-friendliness. Please wait a bit and try again.","wp-seopress")};case"PASS":return{title:e.createElement(e.Fragment,null,e.createElement("span",{className:"dashicons dashicons-yes-alt"}),Ub("Page is mobile friendly","wp-seopress")),description:Ub("The page should probably work well on a mobile device.","wp-seopress")};case"PARTIAL":case"FAIL":case"NEUTRAL":return{title:e.createElement(e.Fragment,null,e.createElement("span",{className:"dashicons dashicons-dismiss"}),Ub("Page is not mobile friendly","wp-seopress")),description:Ub("The page won‘t work well on a mobile device because of a few issues.","wp-seopress")}}}(t),h=function(t){var n=Z()(t,"inspectionResult.richResultsResult.verdict","");if(An()(n))return"";switch(n){case"VERDICT_UNSPECIFIED":return e.createElement(e.Fragment,null,e.createElement("span",{className:"dashicons dashicons-info"}),Ub("No data available","wp-seopress"));case"PASS":return e.createElement(e.Fragment,null,e.createElement("span",{className:"dashicons dashicons-yes-alt"}),Ub("Your Rich Snippets are valid","wp-seopress"));case"PARTIAL":case"FAIL":case"NEUTRAL":return e.createElement(e.Fragment,null,e.createElement("span",{className:"dashicons dashicons-dismiss"}),Ub("Your Rich Snippets are not valid","wp-seopress"))}}(t),m=Z()(t,"inspectionResult.richResultsResult.detectedItems",[]);return{general:n,discovery:{title:Ub("Discovery","wp-seopress"),analysis:[[Ub("Sitemaps","wp-seopress"),f],[Ub("Referring page","wp-seopress"),p]]},crawl:{title:Ub("Crawl","wp-seopress"),descscription:r,analysis:[[Ub("Last crawl","wp-seopress"),i],[Ub("Crawled as","wp-seopress"),s],[Ub("Crawl allowed?","wp-seopress"),l],[Ub("Page fetch","wp-seopress"),a],[Ub("Indexing allowed?","wp-seopress"),o]]},indexing:{title:Ub("Indexing","wp-seopress"),analysis:[[Ub("User-declared canonical","wp-seopress"),u],[Ub("Google-selected canonical","wp-seopress"),c]]},enhancements:{title:Ub("Enhancements","wp-seopress"),analysis:[[Ub("Mobile Usability","wp-seopress"),d],[Ub("Rich Snippets detected","wp-seopress"),{verdict:h,schemas:m}]]}}});const Bb=function(t){var n,r,o=t.mainBarRef,a=(n=(0,e.useState)(!1),r=2,function(e){if(Array.isArray(e))return e}(n)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,a=[],i=!0,s=!1;try{for(n=n.call(e);!(i=(r=n.next()).done)&&(a.push(r.value),!t||a.length!==t);i=!0);}catch(e){s=!0,o=e}finally{try{i||null==n.return||n.return()}finally{if(s)throw o}}return a}}(n,r)||function(e,t){if(e){if("string"==typeof e)return zb(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?zb(e,t):void 0}}(n,r)||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.")}()),i=a[0],s=a[1],l=function(e){var t=e.postId;return K(Fy({postId:t}),{suspense:!0,revalidateOnFocus:!1,revalidateOnReconnect:!1})}({postId:eo()}),u=l.data,c=l.mutate,f=function(){var e,t=(e=regeneratorRuntime.mark((function e(){var t,n;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return s(!0),e.prev=1,e.next=4,Ly({postId:eo()});case 4:t=e.sent,n=Z()(t,"data",null),c(Fb(Fb({},u),{},{data:n})),e.next=11;break;case 9:e.prev=9,e.t0=e.catch(1);case 11:s(!1);case 12:case"end":return e.stop()}}),e,null,[[1,9]])})),function(){var t=this,n=arguments;return new Promise((function(r,o){var a=e.apply(t,n);function i(e){Db(a,r,o,i,s,"next",e)}function s(e){Db(a,r,o,i,s,"throw",e)}i(void 0)}))});return function(){return t.apply(this,arguments)}}(),p=function(e){return Wt()(Z()(e,"inspectionResult.inspectionResultLink"))?"":Z()(e,"inspectionResult.inspectionResultLink")},d=Vb(Z()(u,"data",{}));return e.createElement("div",{ref:o,tabIndex:"0"},e.createElement("p",{className:"description-alt"},Ub("Inspect the current post URL with Google Search Console and get informations about your indexing, crawling, rich snippets and more.","wp-seopress")),e.createElement(Fs,{secondary:!0,loading:i,onClick:f},Ub("Inspect URL with Google","wp-seopress")),(Z()(u,"google_api_key_is_empty",!0)||Wt()(Z()(u,"data",null)))&&e.createElement("p",null,Ub("No data found, click Inspect URL button above.","wp-seopress")),!Z()(u,"google_api_key_is_empty",!0)&&e.createElement(e.Fragment,null,!Wt()(Z()(u,"data.error",null))&&e.createElement("p",{className:"seopress-notice is-error"},e.createElement("strong",{dangerouslySetInnerHTML:{__html:Z()(u,"data.error.code","")}}),":"," ",e.createElement("span",{dangerouslySetInnerHTML:{__html:Z()(u,"data.error.message","")}})),Wt()(Z()(u,"data.error",null))&&!Wt()(Z()(u,"data",null))&&e.createElement(e.Fragment,null,!An()(p(u.data))&&e.createElement(Fs,{as:"a",href:p(u.data),target:"_blank",style:{marginLeft:10}},Ub("View Full Report","wp-seopress")),e.createElement("div",{className:"seopress-gsc-render"},Object.keys(d).map((function(t){var n=d[t];return e.createElement(e.Fragment,{key:t},"general"===t&&e.createElement(e.Fragment,null,e.createElement("div",{className:ks()("seopress-gsc-analysis seopress-gsc-summary seopress-notice",n.class)},e.createElement("div",{className:"seopress-gsc-verdict"},Z()(n,"title","")),e.createElement("p",null,Z()(n,"description","")))),"general"!==t&&e.createElement(e.Fragment,null,!Wt()(Z()(n,"title",""))&&!An()(Z()(n,"title",""))&&e.createElement("div",{className:"seopress-gsc-cat"},Z()(n,"title","")),!Wt()(Z()(n,"description",""))&&!An()(Z()(n,"description",""))&&e.createElement("p",null,Z()(n,"description","")),!Wt()(Z()(n,"analysis",[]))&&!An()(Z()(n,"analysis",[]))&&e.createElement("div",{className:"seopress-gsc-analysis"},Z()(n,"analysis",[]).map((function(t,n){return e.createElement("div",{className:"seopress-gsc-item",key:"analysis_".concat(n)},e.createElement("div",{className:"seopress-gsc-item-name"},t[0]),e.createElement("div",{className:"seopress-gsc-item-value"},ap()(t[1],"verdict")&&ap()(t[1],"schemas")&&e.createElement("ul",null,Object.keys(t[1]).map((function(n,r){var o=t[1][n];if(!Wt()(o))return e.createElement(e.Fragment,{key:"obj_content_analysis_".concat(r)},e.createElement("ul",null,Ny()(o)?e.createElement(e.Fragment,null,o.map((function(t,n){return e.createElement(e.Fragment,{key:"obj_s_content_analysis".concat(n)},!Wt()(t.richResultType)&&!An()(t.richResultType)&&e.createElement("li",null,e.createElement("strong",null,t.richResultType)),!Wt()(t.items)&&!An()(t.items)&&e.createElement("li",null,e.createElement("ul",null,t.items.map((function(t,n){return e.createElement("li",{key:"sub_item_".concat(n)},e.createElement("span",{className:"dashicons dashicons-minus"}),Z()(t,"name",""))})))))}))):o))}))),Ny()(t[1])&&e.createElement("ul",null,t[1].map((function(t,n){return e.createElement(e.Fragment,{key:"item_analysis_".concat(n)},e.createElement("li",null,e.createElement("span",{className:"dashicons dashicons-minus"}),t))}))),!ap()(t[1],"verdict")&&!Ny()(t[1])&&!ap()(t[1],"title")&&t[1],!ap()(t[1],"verdict")&&!Ny()(t[1])&&ap()(t[1],"title")&&e.createElement(e.Fragment,null,t[1].title&&!An()(t[1].title)&&e.createElement("div",{className:"seopress-gsc-cat"},t[1].title),!Wt()(t[1].description)&&!An()(t[1].description)&&e.createElement("p",null,t[1].description))))})))))}))))))};var Wb=o(4855);var Hb=wp.i18n.__,$b=Dt.div.withConfig({componentId:"sc-1c4a3qh-0"})(["&&&{&:hover{cursor:pointer;}}"]);const Gb=function(t){var n=t.mainBarRef,r=function(e){return oo(function(e){var t=e.postId;return"".concat(SEOPRESS_DATA.REST_URL,"seopress/v1/posts/").concat(t,"/significant-keywords")}({postId:e.postId}),{suspense:!0})}({postId:eo()}),o=r.data,a=(r.mutate,r.abort);(0,e.useEffect)((function(){return function(){a()}}));var i=(0,e.useContext)(Rn).actions,s=Z()(o,"suggestions",[]);return e.createElement("div",{ref:n,tabIndex:"0"},e.createElement("p",{className:"description-alt desc-fb"},e.createElement("svg",{width:"24",height:"24",viewBox:"0 0 24 24",role:"img","aria-hidden":"true",focusable:"false"},e.createElement("path",{d:"M12 15.8c-3.7 0-6.8-3-6.8-6.8s3-6.8 6.8-6.8c3.7 0 6.8 3 6.8 6.8s-3.1 6.8-6.8 6.8zm0-12C9.1 3.8 6.8 6.1 6.8 9s2.4 5.2 5.2 5.2c2.9 0 5.2-2.4 5.2-5.2S14.9 3.8 12 3.8zM8 17.5h8V19H8zM10 20.5h4V22h-4z"})),Hb("Internal links are important for SEO and user experience. Always try to link your content together, with quality link anchors.","wp-seopress")),e.createElement("p",null,Hb("Here is a list of articles related to your content, sorted by relevance, that you should link to.","wp-seopress")),An()(s)&&e.createElement(e.Fragment,null,Hb("No suggestion of internal links.","wp-seopress")),s.map((function(t,n){return e.createElement("div",{style:{display:"flex",marginBottom:"15px"},key:"keyword_".concat(n)},e.createElement(Wb.CopyToClipboard,{text:t.permalink,onCopy:function(){return i.setMessage(Hb("Link copied in the clipboard","wp-seopress"))}},e.createElement($b,null,e.createElement("span",{className:"dashicons dashicons-admin-page",style:{padding:"5px",background:"var(--borderColorLight40)",borderRadius:"4px",width:"30px",height:"30px",display:"flex",alignItems:"center",lineHeight:"30px",justifyContent:"center"},"aria-label":sprintf(Hb("Copy %s link","wp-seopress"),t.title)}))),e.createElement("a",{href:t.permalink,title:Hb("Open this link in a new window","wp-seopress"),target:"_blank",style:{marginRight:"10px",marginLeft:"10px",lineHeight:"30px"}},t.title),e.createElement("span",{className:"dashicons dashicons-external"}),e.createElement("a",{href:t.edit_link,target:"_blank",style:{textDecoration:"none"},title:Hb("Edit this link in a new window","wp-seopress")},e.createElement("span",{className:"dashicons dashicons-edit","aria-label":sprintf(Hb("Edit %s link","wp-seopress"),t.title)})))})))};var Yb=function(e){var t=e.postId;return"".concat(SEOPRESS_DATA.REST_URL,"seopress/v1/posts/").concat(t,"/schemas-manual")};function qb(e,t,n,r,o,a,i){try{var s=e[a](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}var Qb=function(){var e,t=(e=regeneratorRuntime.mark((function e(t,n){var r;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,fetch(Yb({postId:t}),{method:"PUT",headers:{"Content-Type":"application/json","X-WP-Nonce":Z()(SEOPRESS_DATA,"NONCE",null)},body:JSON.stringify(n)});case 2:return r=e.sent,e.next=5,r.json();case 5:return e.abrupt("return",e.sent);case 6:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(r,o){var a=e.apply(t,n);function i(e){qb(a,r,o,i,s,"next",e)}function s(e){qb(a,r,o,i,s,"throw",e)}i(void 0)}))});return function(e,n){return t.apply(this,arguments)}}(),Xb=["schemasAvailable","fields","schema","arrayHelpers","index","fieldsAvailable","setExpandAll","expandAll"],Kb=["values","fields","schemas","loading","handleOnSubmit"],Jb=["values"];function Zb(e,t,n,r,o,a,i){try{var s=e[a](i),l=s.value}catch(e){return void n(e)}s.done?t(l):Promise.resolve(l).then(r,o)}function ew(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,a=[],i=!0,s=!1;try{for(n=n.call(e);!(i=(r=n.next()).done)&&(a.push(r.value),!t||a.length!==t);i=!0);}catch(e){s=!0,o=e}finally{try{i||null==n.return||n.return()}finally{if(s)throw o}}return a}}(e,t)||tw(e,t)||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 tw(e,t){if(e){if("string"==typeof e)return nw(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?nw(e,t):void 0}}function nw(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 rw(){return rw=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},rw.apply(this,arguments)}
1
  /*! For license information please see metaboxe.js.LICENSE.txt */