Version Description
Read the blog post update = * NEW Inspect URL with Google Search Console when you create / edit a post content (PRO) * NEW Matomo On-Premise (self-hosted) tracking * NEW Automatically activate your SEOPress PRO license key with the define SEOPRESS_LICENSE_KEY (PRO) * NEW Automatically add your YouTube videos to XML video sitemap (PRO) * NEW Breadcrumbs block for Gutenberg * NEW How-to block for Gutenberg * NEW 'seopress_sitemaps_video_xsl' hook to filter video XML stylesheet (https://www.seopress.org/support/hooks/filter-xsl-video-sitemap/) * NEW 'seopress_inspect_url_permalink' hook to filter inspected URL (https://www.seopress.org/support/hooks/filter-url-to-inspect-with-google-inspect-url-api/) * NEW 'seopress_inspect_url_home_url' hook to filter home URL with inspect URL tool (https://www.seopress.org/support/hooks/filter-home-url-for-google-inspect-url-api/) * INFO Remove deprecated xml sitemaps tags by Google for Video, Image and News sitemaps * INFO Add post thumbnail to Google mobile preview * INFO Add post date to Google preview for Universal SEO metabox * INFO Improve accessibility for SEO Dashboard and Content Analysis metabox * INFO Upgrade our universal SEO metabox to React 18 * INFO Strengthening of security * INFO Update Monolog 3rd party library * INFO Improve performance for GA stats in Dashboard widget if disabled * FIX Universal SEO metabox: disable News and Video sitemaps tabs if disabled from global settings * FIX Compatibility issue with TranslatePress: missing a trailing slash for post type archive link in XML sitemaps * FIX Compatibility issue with The Event Calendar (single event and category event archive page) * FIX OG and Twitter image if a user directly paste a URL to set these fields * FIX Content analysis with Oxygen Builder in specific cases * FIX HTML sitemap shortcode with FSE themes * FIX Fatal error with WC and oembed if not a singular product
View our complete changelog
Release Info
Developer | rainbowgeek |
Plugin | SEOPress |
Version | 5.7 |
Comparing to | |
See all releases |
Code changes from version 5.6 to 5.7
- assets/css/seopress.css +559 -11
- assets/css/seopress.min.css +1 -1
- assets/js/seopress-counters.js +43 -0
- assets/js/seopress-counters.min.js +1 -1
- assets/js/seopress-dashboard.js +2 -0
- assets/js/seopress-dashboard.min.js +1 -1
- assets/js/seopress-media-uploader.js +12 -0
- assets/js/seopress-media-uploader.min.js +1 -1
- assets/js/seopress-migrate.js +64 -0
- assets/js/seopress-migrate.min.js +1 -1
- assets/js/seopress-tabs.js +2 -2
- assets/js/seopress-tabs.min.js +1 -1
- inc/admin/admin-features-list.php +33 -28
- inc/admin/admin-pages/Tools.php +38 -0
- inc/admin/ajax.php +63 -2
- inc/admin/blocks/insights.php +11 -10
- inc/admin/blocks/notifications-center.php +31 -0
- inc/admin/callbacks/Analytics.php +38 -4
- inc/admin/callbacks/Sitemaps.php +5 -1
- inc/admin/callbacks/Titles.php +1 -1
- inc/admin/docs/DocsLinks.php +16 -2
- inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php +105 -89
- inc/admin/metaboxes/admin-metaboxes-form.php +21 -23
- inc/admin/metaboxes/admin-metaboxes.php +6 -0
- inc/admin/page-builders/elementor/assets/css/social-preview.css +55 -80
- inc/admin/page-builders/elementor/assets/js/base.js +7 -1
- inc/admin/page-builders/elementor/inc/controls/class-social-preview-control.php +9 -1
- inc/admin/sections/Analytics.php +2 -2
- inc/admin/sections/Sitemaps.php +1 -0
- inc/admin/settings/Analytics.php +8 -0
- inc/functions/options-instant-indexing.php +2 -2
- inc/functions/options-matomo.php +34 -18
- inc/functions/options-sitemap.php +129 -127
- inc/functions/options-titles-metas.php +15 -4
- inc/functions/sitemap/template-xml-sitemaps-single.php +0 -420
- inc/functions/sitemap/template-xml-sitemaps.php +6 -0
- inc/functions/variables/dynamic-variables.php +14 -11
- languages/wp-seopress.pot +918 -525
- public/metaboxe.js +0 -1
@@ -5,6 +5,7 @@
|
|
5 |
#seopress_pro_cpt * {
|
6 |
box-sizing: border-box;
|
7 |
}
|
|
|
8 |
@font-face {
|
9 |
font-family: seopress;
|
10 |
src: url(../fonts/seopress.eot?81521271);
|
@@ -16,12 +17,14 @@
|
|
16 |
font-weight: 400;
|
17 |
font-style: normal;
|
18 |
}
|
|
|
19 |
[class*=" icon-seopress"],
|
20 |
[class^="icon-seopress-"] {
|
21 |
font-family: seopress !important;
|
22 |
font-size: 14px !important;
|
23 |
line-height: 24px !important;
|
24 |
}
|
|
|
25 |
#adminmenu div.wp-menu-image.dashicons-admin-seopress::before {
|
26 |
content: "\e800";
|
27 |
font-family: seopress;
|
@@ -29,6 +32,7 @@
|
|
29 |
font-size: 12px;
|
30 |
line-height: 20px;
|
31 |
}
|
|
|
32 |
#wpadminbar,
|
33 |
.seopress-option #wpcontent,
|
34 |
.seopress-styles #wpcontent,
|
@@ -66,10 +70,12 @@
|
|
66 |
--borderColorCard: #e2e4e7;
|
67 |
--borderColorTab: #c3c4c7;
|
68 |
}
|
|
|
69 |
.seopress-option .text-center,
|
70 |
.seopress-styles .text-center {
|
71 |
text-align: center;
|
72 |
}
|
|
|
73 |
/* Button */
|
74 |
.seopress-option .btn,
|
75 |
.seopress-styles .btn,
|
@@ -93,6 +99,7 @@
|
|
93 |
white-space: nowrap;
|
94 |
outline: 1px solid transparent;
|
95 |
}
|
|
|
96 |
.seopress-option .btnPrimary,
|
97 |
.seopress-styles .btnPrimary,
|
98 |
.post-type-seopress_404 .btnPrimary,
|
@@ -101,6 +108,7 @@
|
|
101 |
color: #fff;
|
102 |
text-decoration: none;
|
103 |
}
|
|
|
104 |
.seopress-option .btnPrimary:hover,
|
105 |
.seopress-styles .btnPrimary:hover,
|
106 |
.post-type-seopress_404 .btnPrimary:hover,
|
@@ -108,6 +116,7 @@
|
|
108 |
background: var(--backgroundPrimaryHover);
|
109 |
color: #fff;
|
110 |
}
|
|
|
111 |
.seopress-option .btnSecondary,
|
112 |
.seopress-styles .btnSecondary,
|
113 |
.post-type-seopress_404 .btnSecondary,
|
@@ -116,12 +125,14 @@
|
|
116 |
color: var(--primaryColor);
|
117 |
background: transparent;
|
118 |
}
|
|
|
119 |
.seopress-option .btnSecondary.is-deletable,
|
120 |
.seopress-styles .btnSecondary.is-deletable {
|
121 |
border-color: rgb(204, 24, 24);
|
122 |
color: rgb(204, 24, 24);
|
123 |
box-shadow: rgb(204 24 24) 0px 0px 0px 1px inset;
|
124 |
}
|
|
|
125 |
.seopress-option .btnTertiary,
|
126 |
.seopress-styles .btnTertiary,
|
127 |
.post-type-seopress_404 .btnTertiary,
|
@@ -129,12 +140,14 @@
|
|
129 |
color: var(--primaryColor);
|
130 |
background: transparent;
|
131 |
}
|
|
|
132 |
.seopress-option .btnTertiary:hover,
|
133 |
.seopress-styles .btnTertiary:hover,
|
134 |
.post-type-seopress_404 .btnTertiary:hover,
|
135 |
.post-type-seopress_schemas .btnTertiary:hover {
|
136 |
box-shadow: inset 0 0 0 1px var(--primaryColor);
|
137 |
}
|
|
|
138 |
.seopress-option hr,
|
139 |
.seopress-styles hr,
|
140 |
.seopress-setup hr {
|
@@ -146,22 +159,27 @@
|
|
146 |
border-top: 1px solid #dcdcde;
|
147 |
border-bottom: 1px solid #f6f7f7;
|
148 |
}
|
|
|
149 |
.seopress-setup hr {
|
150 |
margin-left: 10px;
|
151 |
}
|
|
|
152 |
#seopress-tabs.wrap .list-none {
|
153 |
list-style: none;
|
154 |
padding-left: 0;
|
155 |
}
|
|
|
156 |
.seopress-option .dashicons,
|
157 |
.seopress-page-list .dashicons {
|
158 |
vertical-align: middle;
|
159 |
margin-right: 5px;
|
160 |
text-decoration: none;
|
161 |
}
|
|
|
162 |
#seopress-news-panel .seopress-item-inner .dashicons {
|
163 |
vertical-align: top;
|
164 |
}
|
|
|
165 |
.seopress-button {
|
166 |
text-transform: uppercase;
|
167 |
background: #fff;
|
@@ -183,13 +201,16 @@
|
|
183 |
-moz-appearance: none;
|
184 |
appearance: none;
|
185 |
}
|
|
|
186 |
.seopress-button:hover {
|
187 |
border-color: #a8bece;
|
188 |
color: #00a0d2;
|
189 |
}
|
|
|
190 |
.seopress-button .dashicons {
|
191 |
vertical-align: middle;
|
192 |
}
|
|
|
193 |
/* Headings */
|
194 |
body .seopress-option h2 {
|
195 |
color: var(--titleColor);
|
@@ -197,11 +218,13 @@ body .seopress-option h2 {
|
|
197 |
line-height: 24px;
|
198 |
font-weight: normal;
|
199 |
}
|
|
|
200 |
body .seopress-option h3 {
|
201 |
color: var(--titleColor);
|
202 |
font-size: 16px;
|
203 |
line-height: 20px;
|
204 |
}
|
|
|
205 |
#seopress_content_analysis input[type="text"],
|
206 |
#seopress_content_analysis textarea,
|
207 |
#seopress_cpt input[type="text"],
|
@@ -211,12 +234,15 @@ body .seopress-option h3 {
|
|
211 |
width: 100%;
|
212 |
display: inline-block;
|
213 |
}
|
|
|
214 |
#seopress_cpt #tabs-6 input[type="number"] {
|
215 |
min-width: 200px;
|
216 |
}
|
|
|
217 |
#seopress_cpt #tabs-6 #wrap-videos .video:first-child .remove-video {
|
218 |
display: none;
|
219 |
}
|
|
|
220 |
#seopress_pro_cpt label,
|
221 |
#seopress_cpt label,
|
222 |
#seopress_content_analysis label {
|
@@ -224,9 +250,11 @@ body .seopress-option h3 {
|
|
224 |
display: inline-block;
|
225 |
width: 100%;
|
226 |
}
|
|
|
227 |
#seopress_cpt #tabs-6 {
|
228 |
padding: 0;
|
229 |
}
|
|
|
230 |
/* Forms */
|
231 |
body .seopress-option input[type="text"],
|
232 |
body .seopress-option input[type="password"],
|
@@ -237,17 +265,21 @@ body .seopress-option textarea {
|
|
237 |
box-shadow: 0 2px 6px rgb(0 0 0 / 5%);
|
238 |
width: 100%;
|
239 |
}
|
|
|
240 |
body .seopress-option select {
|
241 |
min-height: 50px;
|
242 |
}
|
|
|
243 |
.wrap-opening-hours select {
|
244 |
width: inherit;
|
245 |
}
|
|
|
246 |
body .seopress-option input[type="text"],
|
247 |
body .seopress-option input[type="password"],
|
248 |
body .seopress-option input[type="number"] {
|
249 |
line-height: 46px;
|
250 |
}
|
|
|
251 |
body .seopress-option input[type="text"]:hover,
|
252 |
body .seopress-option input[type="password"]:hover,
|
253 |
body .seopress-option input[type="number"]:hover,
|
@@ -255,6 +287,7 @@ body .seopress-option select:hover,
|
|
255 |
body .seopress-option textarea:hover {
|
256 |
border-color: #787c82;
|
257 |
}
|
|
|
258 |
body .seopress-option input[type="text"]:focus,
|
259 |
body .seopress-option input[type="password"]:focus,
|
260 |
body .seopress-option input[type="number"]:focus,
|
@@ -268,6 +301,7 @@ body .seopress-option select:active {
|
|
268 |
box-shadow: 0 0 0 2px var(--primaryColor);
|
269 |
border-color: transparent;
|
270 |
}
|
|
|
271 |
@media only screen and (max-width: 1024px) {
|
272 |
body .seopress-option input[type="text"],
|
273 |
body .seopress-option input[type="password"],
|
@@ -277,6 +311,7 @@ body .seopress-option select:active {
|
|
277 |
width: 100%;
|
278 |
}
|
279 |
}
|
|
|
280 |
body .seopress-option input[type="checkbox"],
|
281 |
#seopress_cpt input[type="checkbox"],
|
282 |
#seopress_content_analysis input[type="checkbox"],
|
@@ -310,6 +345,7 @@ body .seopress-option input[type="checkbox"],
|
|
310 |
appearance: none;
|
311 |
transition: 0.1s border-color ease-in-out;
|
312 |
}
|
|
|
313 |
body .seopress-option input[type="checkbox"]:checked::before,
|
314 |
#seopress_cpt input[type="checkbox"]:checked::before,
|
315 |
#seopress_content_analysis input[type="checkbox"]:checked::before,
|
@@ -320,6 +356,7 @@ body .seopress-option input[type="checkbox"]:checked::before,
|
|
320 |
width: 20px;
|
321 |
height: 20px;
|
322 |
}
|
|
|
323 |
body .seopress-option input[type="checkbox"]:focus,
|
324 |
#seopress_cpt input[type="checkbox"]:focus,
|
325 |
#seopress_content_analysis input[type="checkbox"]:focus,
|
@@ -331,26 +368,33 @@ body .seopress-option input[type="checkbox"]:active,
|
|
331 |
box-shadow: 0 0 0 2px var(--primaryColor);
|
332 |
border-color: transparent;
|
333 |
}
|
|
|
334 |
.field-required,
|
335 |
.field-recommended {
|
336 |
font-weight: bold;
|
337 |
}
|
|
|
338 |
.field-required {
|
339 |
color: var(--colorAlert);
|
340 |
}
|
|
|
341 |
.field-recommended {
|
342 |
color: var(--colorWarning);
|
343 |
}
|
|
|
344 |
/* Table */
|
345 |
.form-table td {
|
346 |
padding: 15px 0;
|
347 |
}
|
|
|
348 |
.form-table td p {
|
349 |
margin: 4px 0;
|
350 |
}
|
|
|
351 |
.form-table td p.seopress_wrap_archive_cpt {
|
352 |
margin-bottom: 15px;
|
353 |
}
|
|
|
354 |
table.wp-list-table .manage_column.column-seopress_noindex,
|
355 |
table.wp-list-table .manage_column.column-seopress_tkw,
|
356 |
table.wp-list-table .manage_column.column-seopress_redirect_url,
|
@@ -361,10 +405,12 @@ table.wp-list-table .manage_column.column-seopress_title,
|
|
361 |
table.wp-list-table .manage_column.column-seopress_insights {
|
362 |
width: 7% !important;
|
363 |
}
|
|
|
364 |
.post-type-product table.fixed thead .column-seopress_title,
|
365 |
.post-type-product table.fixed thead .column-seopress_desc {
|
366 |
width: 8%;
|
367 |
}
|
|
|
368 |
.post-type-product table.fixed thead .column-seopress_redirect_enable,
|
369 |
.post-type-product table.fixed thead .column-seopress_redirect_url,
|
370 |
.post-type-product table.fixed thead .column-seopress_canonical,
|
@@ -373,13 +419,16 @@ table.wp-list-table .manage_column.column-seopress_insights {
|
|
373 |
.post-type-product .fixed .column-seopress_ps {
|
374 |
width: 6%;
|
375 |
}
|
|
|
376 |
.post-type-product .fixed .column-seopress_score {
|
377 |
width: 50px;
|
378 |
}
|
|
|
379 |
table.fixed thead .column-seopress_nofollow,
|
380 |
table.fixed thead .column-seopress_noindex {
|
381 |
width: 100px;
|
382 |
}
|
|
|
383 |
@media only screen and (max-width: 1200px) {
|
384 |
table.fixed .column-seopress_title > div,
|
385 |
table.fixed .column-seopress_desc > div,
|
@@ -390,6 +439,7 @@ table.fixed thead .column-seopress_noindex {
|
|
390 |
overflow: hidden;
|
391 |
text-overflow: ellipsis;
|
392 |
}
|
|
|
393 |
table.fixed thead .column-seopress_redirect_enable,
|
394 |
table.fixed thead .column-seopress_redirect_url,
|
395 |
table.fixed thead .column-seopress_canonical,
|
@@ -404,14 +454,17 @@ table.fixed thead .column-seopress_noindex {
|
|
404 |
text-overflow: ellipsis;
|
405 |
}
|
406 |
}
|
|
|
407 |
.post-type-seopress_backlinks .wp-list-table .column-seopress_backlinks_url {
|
408 |
width: 35%;
|
409 |
}
|
|
|
410 |
.post-type-seopress_backlinks
|
411 |
.wp-list-table
|
412 |
.column-seopress_backlinks_anchor_text {
|
413 |
width: 20%;
|
414 |
}
|
|
|
415 |
/* SEOPress header */
|
416 |
.seopress-styles #seopress-header {
|
417 |
padding: 22px 120px 22px 40px;
|
@@ -426,9 +479,11 @@ table.fixed thead .column-seopress_noindex {
|
|
426 |
justify-content: space-between;
|
427 |
align-items: center;
|
428 |
}
|
|
|
429 |
.folded.seopress-styles #seopress-header {
|
430 |
width: calc(100% - 35px);
|
431 |
}
|
|
|
432 |
@media only screen and (max-width: 782px) {
|
433 |
.seopress-styles #seopress-header {
|
434 |
width: 100%;
|
@@ -437,10 +492,12 @@ table.fixed thead .column-seopress_noindex {
|
|
437 |
position: absolute;
|
438 |
}
|
439 |
}
|
|
|
440 |
#seopress-header #seopress-navbar ul {
|
441 |
margin: 0;
|
442 |
padding: 0;
|
443 |
}
|
|
|
444 |
#seopress-header #seopress-navbar ul li {
|
445 |
margin: 0;
|
446 |
display: inline-block;
|
@@ -448,6 +505,7 @@ table.fixed thead .column-seopress_noindex {
|
|
448 |
padding: 0 20px 0 0;
|
449 |
font-weight: bold;
|
450 |
}
|
|
|
451 |
#seopress-header #seopress-navbar ul li::after {
|
452 |
content: "/";
|
453 |
color: var(--paragraphColor);
|
@@ -456,18 +514,22 @@ table.fixed thead .column-seopress_noindex {
|
|
456 |
top: 0;
|
457 |
left: calc(100% - 10px);
|
458 |
}
|
|
|
459 |
#seopress-header #seopress-navbar ul li:last-child:after {
|
460 |
content: none;
|
461 |
}
|
|
|
462 |
/* Dashboard */
|
463 |
.sp-dashboard-card-highlight {
|
464 |
border: 1px dashed #c3c4c7;
|
465 |
margin: 20px 0;
|
466 |
}
|
|
|
467 |
.seopress-summary-items {
|
468 |
display: flex;
|
469 |
flex-wrap: wrap;
|
470 |
}
|
|
|
471 |
.seopress-summary-item {
|
472 |
display: flex;
|
473 |
flex-direction: column;
|
@@ -480,11 +542,13 @@ table.fixed thead .column-seopress_noindex {
|
|
480 |
color: var(--colorDark);
|
481 |
justify-content: center;
|
482 |
}
|
|
|
483 |
@media only screen and (max-width: 782px) {
|
484 |
.seopress-summary-item {
|
485 |
width: 100%;
|
486 |
}
|
487 |
}
|
|
|
488 |
.seopress-summary-item-label {
|
489 |
display: block;
|
490 |
margin-bottom: 16px;
|
@@ -492,6 +556,7 @@ table.fixed thead .column-seopress_noindex {
|
|
492 |
font-size: 14px;
|
493 |
line-height: 20px;
|
494 |
}
|
|
|
495 |
.seopress-summary-item-data {
|
496 |
margin-bottom: 4px;
|
497 |
font-weight: 500;
|
@@ -499,14 +564,18 @@ table.fixed thead .column-seopress_noindex {
|
|
499 |
font-size: 20px;
|
500 |
line-height: 28px;
|
501 |
}
|
|
|
502 |
.seopress-summary-item-data small {
|
503 |
font-weight: normal;
|
504 |
font-size: 11px;
|
505 |
text-transform: uppercase;
|
506 |
}
|
507 |
-
|
|
|
|
|
508 |
padding: 20px;
|
509 |
}
|
|
|
510 |
#seopress-admin-tabs.ui-tabs {
|
511 |
position: relative;
|
512 |
padding: 0.2em;
|
@@ -514,6 +583,7 @@ table.fixed thead .column-seopress_noindex {
|
|
514 |
font-family: inherit;
|
515 |
font-size: inherit;
|
516 |
}
|
|
|
517 |
#seopress-admin-tabs.ui-tabs .ui-tabs-nav li {
|
518 |
list-style: none;
|
519 |
float: left;
|
@@ -525,15 +595,18 @@ table.fixed thead .column-seopress_noindex {
|
|
525 |
border: none;
|
526 |
background: 0 0;
|
527 |
}
|
|
|
528 |
#seopress-admin-tabs.ui-tabs .ui-tabs-nav li a {
|
529 |
float: left;
|
530 |
padding: 0.38em 1em 0.75rem;
|
531 |
outline: 0;
|
532 |
border-bottom: 2px solid #fff;
|
533 |
}
|
|
|
534 |
#seopress-admin-tabs.ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
535 |
margin-bottom: -1px;
|
536 |
}
|
|
|
537 |
#seopress-admin-tabs.ui-tabs .ui-tabs-nav li.ui-state-disabled a,
|
538 |
#seopress-admin-tabs.ui-tabs .ui-tabs-nav li.ui-tabs-active a,
|
539 |
#seopress-admin-tabs.ui-tabs .ui-tabs-nav li.ui-tabs-loading a {
|
@@ -541,20 +614,24 @@ table.fixed thead .column-seopress_noindex {
|
|
541 |
border-bottom: 2px solid #23282d;
|
542 |
color: #23282d;
|
543 |
}
|
|
|
544 |
#seopress-admin-tabs.ui-tabs .ui-tabs-nav li a,
|
545 |
#seopress-admin-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a {
|
546 |
cursor: pointer;
|
547 |
color: #0073aa;
|
548 |
text-decoration: none;
|
549 |
}
|
|
|
550 |
#seopress-admin-tabs.ui-tabs-vertical {
|
551 |
width: 55em;
|
552 |
}
|
|
|
553 |
#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-nav {
|
554 |
padding: 0.2em 0.1em 0.2em 0.2em;
|
555 |
float: left;
|
556 |
width: 12em;
|
557 |
}
|
|
|
558 |
#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-nav li {
|
559 |
clear: left;
|
560 |
width: 100%;
|
@@ -562,16 +639,19 @@ table.fixed thead .column-seopress_noindex {
|
|
562 |
border-right-width: 0 !important;
|
563 |
margin: 0 -1px 0.2em 0;
|
564 |
}
|
|
|
565 |
#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-nav li.ui-tabs-active {
|
566 |
padding-bottom: 0;
|
567 |
padding-right: 0.1em;
|
568 |
border-right-width: 1px;
|
569 |
}
|
|
|
570 |
#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-panel {
|
571 |
padding: 1em;
|
572 |
float: right;
|
573 |
width: 40em;
|
574 |
}
|
|
|
575 |
#seopress-admin-tabs.wrap {
|
576 |
background: #fff;
|
577 |
display: block;
|
@@ -579,15 +659,18 @@ table.fixed thead .column-seopress_noindex {
|
|
579 |
max-width: 100%;
|
580 |
margin: 0 auto;
|
581 |
}
|
|
|
582 |
@media only screen and (max-width: 1024px) {
|
583 |
#seopress-admin-tabs.wrap {
|
584 |
width: 100%;
|
585 |
}
|
586 |
}
|
|
|
587 |
#seopress-admin-tabs .seopress-tab {
|
588 |
width: 100%;
|
589 |
display: none;
|
590 |
}
|
|
|
591 |
#seopress-admin-tabs .seopress-tab.active {
|
592 |
visibility: visible;
|
593 |
overflow: inherit;
|
@@ -596,6 +679,7 @@ table.fixed thead .column-seopress_noindex {
|
|
596 |
display: inherit;
|
597 |
position: relative;
|
598 |
}
|
|
|
599 |
.seopress-dashboard-columns {
|
600 |
display: flex;
|
601 |
max-width: 64rem;
|
@@ -603,20 +687,24 @@ table.fixed thead .column-seopress_noindex {
|
|
603 |
justify-content: space-between;
|
604 |
flex-direction: row;
|
605 |
}
|
|
|
606 |
.seopress-dashboard-column {
|
607 |
align-self: flex-start;
|
608 |
width: calc(50% - 12px);
|
609 |
margin: 0;
|
610 |
}
|
|
|
611 |
@media only screen and (max-width: 782px) {
|
612 |
.seopress-dashboard-columns {
|
613 |
max-width: 100%;
|
614 |
flex-direction: column;
|
615 |
}
|
|
|
616 |
.seopress-dashboard-column {
|
617 |
width: 100%;
|
618 |
}
|
619 |
}
|
|
|
620 |
#seopress-admin-tabs .ui-tabs-nav,
|
621 |
.seopress-get-started {
|
622 |
margin: 0 auto 20px;
|
@@ -625,25 +713,30 @@ table.fixed thead .column-seopress_noindex {
|
|
625 |
width: 100%;
|
626 |
border-radius: 0 0 4px 4px;
|
627 |
}
|
|
|
628 |
.seopress-get-started {
|
629 |
background: #fff url(../img/bg-hero-started.svg) no-repeat 100% 50% /
|
630 |
contain;
|
631 |
position: relative;
|
632 |
}
|
|
|
633 |
.seopress-get-started .inside {
|
634 |
padding: 2rem;
|
635 |
}
|
|
|
636 |
.seopress-get-started .preheader {
|
637 |
text-transform: uppercase;
|
638 |
font-size: 11px;
|
639 |
font-weight: 600;
|
640 |
color: var(--paragraphColor);
|
641 |
}
|
|
|
642 |
.seopress-activity-panel-tabs {
|
643 |
height: 60px;
|
644 |
display: flex;
|
645 |
align-items: center;
|
646 |
}
|
|
|
647 |
.seopress-activity-panel-tabs .btn {
|
648 |
display: flex;
|
649 |
flex-direction: column;
|
@@ -653,13 +746,16 @@ table.fixed thead .column-seopress_noindex {
|
|
653 |
padding: 10px 26px;
|
654 |
border-bottom: 3px solid transparent;
|
655 |
}
|
|
|
656 |
.seopress-activity-panel-tabs .btn:hover {
|
657 |
background: var(--backgroundSecondaryHover);
|
658 |
}
|
|
|
659 |
.seopress-activity-panel-tabs .btn.is-active {
|
660 |
border-bottom: 3px solid var(--backgroundPrimary);
|
661 |
color: var(--colorDark);
|
662 |
}
|
|
|
663 |
.seopress-activity-panel-wrapper {
|
664 |
height: calc(100vh - 92px);
|
665 |
top: 92px;
|
@@ -674,33 +770,41 @@ table.fixed thead .column-seopress_noindex {
|
|
674 |
overflow-x: hidden;
|
675 |
overflow-y: auto;
|
676 |
}
|
|
|
677 |
@media only screen and (max-width: 782px) {
|
678 |
.seopress-activity-panel-wrapper {
|
679 |
top: 106px;
|
680 |
}
|
681 |
}
|
|
|
682 |
.seopress-activity-panel-wrapper.is-open {
|
683 |
transform: none;
|
684 |
box-shadow: 0 12px 12px 0 rgb(85 93 102 / 30%);
|
685 |
}
|
|
|
686 |
.seopress-activity-panel-header {
|
687 |
background: #e0e0e0;
|
688 |
padding: 16px 24px;
|
689 |
}
|
|
|
690 |
.seopress-activity-panel-content {
|
691 |
background: #fff;
|
692 |
padding: 16px 24px;
|
693 |
}
|
|
|
694 |
.seopress-list-items,
|
695 |
.seopress-list-items .seopress-item {
|
696 |
margin: 0;
|
697 |
}
|
|
|
698 |
.seopress-list-items .seopress-item {
|
699 |
border-bottom: 1px solid var(--borderColorLight40);
|
700 |
}
|
|
|
701 |
.seopress-list-items .seopress-item:last-child {
|
702 |
border-bottom: none;
|
703 |
}
|
|
|
704 |
.seopress-list-items .seopress-item .seopress-item-inner {
|
705 |
color: var(--primaryColor);
|
706 |
text-decoration: none;
|
@@ -710,18 +814,22 @@ table.fixed thead .column-seopress_noindex {
|
|
710 |
font-weight: bold;
|
711 |
width: 100%;
|
712 |
}
|
|
|
713 |
.seopress-option .has-action {
|
714 |
display: flex;
|
715 |
align-items: center;
|
716 |
}
|
|
|
717 |
.seopress-list-items .seopress-item .seopress-item-inner:hover {
|
718 |
background: var(--backgroundSecondaryHover);
|
719 |
}
|
|
|
720 |
.seopress-list-items .seopress-item-before,
|
721 |
.seopress-list-items .seopress-item-after {
|
722 |
margin: 0px 20px 0 10px;
|
723 |
position: relative;
|
724 |
}
|
|
|
725 |
.seopress-list-items .seopress-item-before::before,
|
726 |
.seopress-list-items .seopress-item-after::after {
|
727 |
content: "\f330";
|
@@ -730,32 +838,39 @@ table.fixed thead .column-seopress_noindex {
|
|
730 |
font-size: 20px;
|
731 |
font-weight: normal;
|
732 |
}
|
|
|
733 |
.seopress-list-items .seopress-item-after {
|
734 |
margin-left: auto;
|
735 |
padding-left: 20px;
|
736 |
margin-right: 0;
|
737 |
}
|
|
|
738 |
.seopress-list-items .seopress-item-after::after {
|
739 |
content: "\f345";
|
740 |
}
|
|
|
741 |
.seopress-list-items .seopress-item .seopress-item-title {
|
742 |
margin: 5px 0;
|
743 |
color: var(--primaryColor);
|
744 |
}
|
|
|
745 |
.seopress-list-items .seopress-item .seopress-item-date {
|
746 |
color: var(--paragraphColor);
|
747 |
font-weight: normal;
|
748 |
margin: 0;
|
749 |
}
|
|
|
750 |
.seopress-list-items .seopress-item .seopress-item-content {
|
751 |
color: var(--colorDark);
|
752 |
font-weight: normal;
|
753 |
margin: 0;
|
754 |
}
|
|
|
755 |
.seopress-list-items .seopress-item .seopress-item-inner.check,
|
756 |
.indexing-log {
|
757 |
position: relative;
|
758 |
}
|
|
|
759 |
.seopress-list-items .seopress-item .seopress-item-inner.check::before,
|
760 |
.indexing-log::before {
|
761 |
content: "";
|
@@ -771,6 +886,7 @@ table.fixed thead .column-seopress_noindex {
|
|
771 |
line-height: 32px;
|
772 |
text-align: center;
|
773 |
}
|
|
|
774 |
.seopress-list-items .seopress-item .seopress-item-inner.done::before,
|
775 |
.indexing-log.indexing-done::before,
|
776 |
.indexing-log.indexing-failed::before {
|
@@ -779,13 +895,16 @@ table.fixed thead .column-seopress_noindex {
|
|
779 |
content: "\f15e";
|
780 |
font-family: "Dashicons";
|
781 |
}
|
|
|
782 |
.indexing-log.indexing-done::before {
|
783 |
background: var(--colorSuccess);
|
784 |
}
|
|
|
785 |
.indexing-log.indexing-failed::before {
|
786 |
background: var(--colorAlert);
|
787 |
content: "\f335";
|
788 |
}
|
|
|
789 |
/* Tooltip */
|
790 |
.sp-tooltip {
|
791 |
position: relative;
|
@@ -798,9 +917,11 @@ table.fixed thead .column-seopress_noindex {
|
|
798 |
border: none;
|
799 |
padding: 0;
|
800 |
}
|
|
|
801 |
.sp-tooltip .dashicons {
|
802 |
color: var(--colorDark);
|
803 |
}
|
|
|
804 |
.sp-tooltip .sp-tooltiptext {
|
805 |
visibility: hidden;
|
806 |
position: absolute;
|
@@ -816,14 +937,17 @@ table.fixed thead .column-seopress_noindex {
|
|
816 |
word-break: break-word;
|
817 |
text-transform: none;
|
818 |
}
|
|
|
819 |
.sp-tooltip .sp-tooltiptext::before {
|
820 |
border: 8px solid var(--borderColorLight40);
|
821 |
top: -8px;
|
822 |
}
|
|
|
823 |
.sp-tooltip .sp-tooltiptext::after {
|
824 |
border: 8px solid #fff;
|
825 |
top: -6px;
|
826 |
}
|
|
|
827 |
.sp-tooltip .sp-tooltiptext::before,
|
828 |
.sp-tooltip .sp-tooltiptext::after {
|
829 |
border-bottom-style: solid;
|
@@ -838,17 +962,20 @@ table.fixed thead .column-seopress_noindex {
|
|
838 |
line-height: 0;
|
839 |
left: 30px;
|
840 |
}
|
|
|
841 |
.sp-tooltip:hover .sp-tooltiptext,
|
842 |
.sp-tooltip:focus .sp-tooltiptext,
|
843 |
.sp-tooltip:active .sp-tooltiptext {
|
844 |
visibility: visible;
|
845 |
}
|
|
|
846 |
.sp-tooltip .sp-tooltip-headings {
|
847 |
font-size: 18px;
|
848 |
font-weight: 600;
|
849 |
margin-bottom: 20px;
|
850 |
display: block;
|
851 |
}
|
|
|
852 |
.sp-tooltip .sp-tooltip-desc {
|
853 |
margin-bottom: 20px;
|
854 |
display: block;
|
@@ -857,6 +984,7 @@ table.fixed thead .column-seopress_noindex {
|
|
857 |
font-size: var(--fontSize);
|
858 |
line-height: 1.5;
|
859 |
}
|
|
|
860 |
.sp-tooltip .sp-tooltip-code {
|
861 |
font-family: Menlo, Monaco, Andale Mono, Courier New, monospace;
|
862 |
display: block;
|
@@ -864,37 +992,46 @@ table.fixed thead .column-seopress_noindex {
|
|
864 |
color: var(--colorPre);
|
865 |
font-size: 11px;
|
866 |
}
|
|
|
867 |
/* Content Analysis */
|
868 |
.analysis-score .sp-tooltip {
|
869 |
vertical-align: middle;
|
870 |
font-size: 0.75em;
|
871 |
}
|
|
|
872 |
#seopress_content_analysis .wrap-insights-post .sp-tooltip * {
|
873 |
font-weight: normal;
|
874 |
}
|
|
|
875 |
#seopress_content_analysis .wrap-insights-post .sp-tooltip-headings {
|
876 |
font-weight: bold;
|
877 |
}
|
|
|
878 |
#seopress_content_analysis a {
|
879 |
color: var(--backgroundPrimary);
|
880 |
}
|
|
|
881 |
#seopress_content_analysis a.nounderline,
|
882 |
#seopress_content_analysis a.nounderline:hover {
|
883 |
text-decoration: none;
|
884 |
}
|
|
|
885 |
#seopress_content_analysis .wrap-seopress-analysis {
|
886 |
display: inline-block;
|
887 |
width: 100%;
|
888 |
}
|
|
|
889 |
#seopress_content_analysis .col-left {
|
890 |
width: calc(50% - 30px);
|
891 |
float: left;
|
892 |
margin-right: 30px;
|
893 |
}
|
|
|
894 |
#seopress_content_analysis .col-right {
|
895 |
float: right;
|
896 |
width: 50%;
|
897 |
}
|
|
|
898 |
#seopress_content_analysis #seopress_suggestions {
|
899 |
display: inline-block;
|
900 |
width: 100%;
|
@@ -904,11 +1041,13 @@ table.fixed thead .column-seopress_noindex {
|
|
904 |
position: relative;
|
905 |
left: -5px;
|
906 |
}
|
|
|
907 |
#seopress_content_analysis #seopress_suggestions li {
|
908 |
list-style: none;
|
909 |
margin: 5px;
|
910 |
display: inline-block;
|
911 |
}
|
|
|
912 |
#seopress_content_analysis .analysis-score {
|
913 |
clear: both;
|
914 |
border-top: 1px solid var(--borderColorCard);
|
@@ -916,6 +1055,7 @@ table.fixed thead .column-seopress_noindex {
|
|
916 |
justify-content: space-between;
|
917 |
align-items: center;
|
918 |
}
|
|
|
919 |
.column-seopress_score .analysis-score {
|
920 |
display: flex;
|
921 |
align-content: center;
|
@@ -925,6 +1065,59 @@ table.fixed thead .column-seopress_noindex {
|
|
925 |
font-weight: bold;
|
926 |
font-size: 1.2em;
|
927 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
928 |
#seopress_content_analysis .analysis-score svg,
|
929 |
.column-seopress_score .analysis-score svg {
|
930 |
display: inline-block;
|
@@ -939,35 +1132,43 @@ table.fixed thead .column-seopress_noindex {
|
|
939 |
vertical-align: middle;
|
940 |
margin-right: 15px;
|
941 |
}
|
|
|
942 |
.column-seopress_score .analysis-score p,
|
943 |
.column-seopress_score .analysis-score svg {
|
944 |
margin: 0;
|
945 |
}
|
|
|
946 |
@keyframes loadingPulse {
|
947 |
0% {
|
948 |
stroke: #adc5d2;
|
949 |
}
|
|
|
950 |
50% {
|
951 |
stroke: #00a0d2;
|
952 |
}
|
|
|
953 |
100% {
|
954 |
stroke: #adc5d2;
|
955 |
}
|
956 |
}
|
|
|
957 |
#seopress_content_analysis .analysis-score .loading #bar {
|
958 |
stroke-dashoffset: 0 !important;
|
959 |
stroke: #adc5d2 !important;
|
960 |
animation: loadingPulse 3s infinite ease-in-out;
|
961 |
}
|
|
|
962 |
#seopress_content_analysis .analysis-score .good #bar,
|
963 |
.column-seopress_score .analysis-score #bar.good {
|
964 |
stroke: var(--colorSuccess);
|
965 |
}
|
|
|
966 |
#seopress_content_analysis .analysis-score .notgood #bar,
|
967 |
.column-seopress_score .analysis-score #bar.notgood {
|
968 |
stroke-dashoffset: 101px;
|
969 |
stroke: var(--colorWarning);
|
970 |
}
|
|
|
971 |
#seopress_content_analysis .analysis-score svg circle,
|
972 |
.column-seopress_score .analysis-score svg circle {
|
973 |
stroke-dashoffset: 0;
|
@@ -975,22 +1176,26 @@ table.fixed thead .column-seopress_noindex {
|
|
975 |
stroke: #ccc;
|
976 |
stroke-width: 2em;
|
977 |
}
|
|
|
978 |
#tab_seopress_page_speed .ps-score svg path,
|
979 |
#tab_seopress_ps .ps-score svg path {
|
980 |
stroke-linecap: round;
|
981 |
stroke-width: 2.8;
|
982 |
fill: none;
|
983 |
}
|
|
|
984 |
#tab_seopress_page_speed .ps-score,
|
985 |
#tab_seopress_ps .ps-score {
|
986 |
position: relative;
|
987 |
display: inline-block;
|
988 |
}
|
|
|
989 |
#tab_seopress_page_speed .ps-score svg,
|
990 |
#tab_seopress_ps .ps-score svg {
|
991 |
width: 80px;
|
992 |
height: 80px;
|
993 |
}
|
|
|
994 |
#tab_seopress_page_speed .ps-score span,
|
995 |
#tab_seopress_ps .ps-score span {
|
996 |
font-weight: bold;
|
@@ -1004,18 +1209,22 @@ table.fixed thead .column-seopress_noindex {
|
|
1004 |
justify-content: center;
|
1005 |
margin: 0;
|
1006 |
}
|
|
|
1007 |
#tab_seopress_page_speed .ps-score.green #bar,
|
1008 |
#tab_seopress_ps .ps-score.green #bar {
|
1009 |
stroke: var(--colorSuccess);
|
1010 |
}
|
|
|
1011 |
#tab_seopress_page_speed .ps-score.yellow #bar,
|
1012 |
#tab_seopress_ps .ps-score.yellow #bar {
|
1013 |
stroke: var(--colorWarning);
|
1014 |
}
|
|
|
1015 |
#tab_seopress_page_speed .ps-score.red #bar,
|
1016 |
#tab_seopress_ps .ps-score.red #bar {
|
1017 |
stroke: var(--colorAlert);
|
1018 |
}
|
|
|
1019 |
#tab_seopress_ps .score,
|
1020 |
.wrap-seopress-score .score {
|
1021 |
width: 12px;
|
@@ -1024,6 +1233,7 @@ table.fixed thead .column-seopress_noindex {
|
|
1024 |
margin-right: 10px;
|
1025 |
vertical-align: middle;
|
1026 |
}
|
|
|
1027 |
#tab_seopress_ps .score.red,
|
1028 |
.wrap-seopress-score .score.red {
|
1029 |
border-bottom-color: var(--colorAlert);
|
@@ -1036,37 +1246,46 @@ table.fixed thead .column-seopress_noindex {
|
|
1036 |
border-right-style: solid;
|
1037 |
border-right-width: 6px;
|
1038 |
}
|
|
|
1039 |
.wrap-seopress-score small {
|
1040 |
font-size: 12px;
|
1041 |
}
|
|
|
1042 |
.wrap-seopress-score small.red,
|
1043 |
.wrap-seopress-score small.yellow {
|
1044 |
color: var(--colorAlert);
|
1045 |
}
|
|
|
1046 |
#tab_seopress_ps .score.yellow,
|
1047 |
.wrap-seopress-score .score.yellow {
|
1048 |
background-color: var(--colorWarning);
|
1049 |
display: inline-block;
|
1050 |
}
|
|
|
1051 |
#tab_seopress_ps .score.green,
|
1052 |
.wrap-seopress-score .score.green {
|
1053 |
border-radius: 100%;
|
1054 |
background-color: var(--colorSuccess);
|
1055 |
}
|
|
|
1056 |
.wrap-seopress-score small.green {
|
1057 |
color: var(--colorSuccess);
|
1058 |
}
|
|
|
1059 |
.wrap-seopress-score .score.null {
|
1060 |
background: #ccc;
|
1061 |
border-radius: 100%;
|
1062 |
}
|
|
|
1063 |
#seopress_content_analysis .gr-analysis {
|
1064 |
clear: both;
|
1065 |
}
|
|
|
1066 |
#seopress_content_analysis .gr-analysis-title {
|
1067 |
border-top: 1px solid var(--borderColorCard);
|
1068 |
position: relative;
|
1069 |
}
|
|
|
1070 |
#seopress_cpt .impact,
|
1071 |
#seopress_content_analysis .gr-analysis-title .impact {
|
1072 |
position: absolute;
|
@@ -1079,23 +1298,28 @@ table.fixed thead .column-seopress_noindex {
|
|
1079 |
margin: 0;
|
1080 |
border: 1px solid #fff;
|
1081 |
}
|
|
|
1082 |
#seopress_content_analysis .gr-analysis .impact.good {
|
1083 |
background: var(--colorSuccess);
|
1084 |
box-shadow: 0 0 5px var(--colorSuccess);
|
1085 |
}
|
|
|
1086 |
#seopress_content_analysis .gr-analysis .impact.low {
|
1087 |
background: var(--colorWarning);
|
1088 |
box-shadow: 0 0 5px var(--colorWarning);
|
1089 |
}
|
|
|
1090 |
#seopress_content_analysis .gr-analysis .impact.medium {
|
1091 |
background: var(--colorLowAlert);
|
1092 |
box-shadow: 0 0 5px var(--colorLowAlert);
|
1093 |
}
|
|
|
1094 |
#seopress_cpt .impact.high,
|
1095 |
#seopress_content_analysis .gr-analysis .impact.high {
|
1096 |
background: var(--colorAlert);
|
1097 |
box-shadow: 0 0 5px var(--colorAlert);
|
1098 |
}
|
|
|
1099 |
#seopress_content_analysis .gr-analysis-content .impact.high {
|
1100 |
background: var(--colorAlert);
|
1101 |
box-shadow: none;
|
@@ -1105,6 +1329,7 @@ table.fixed thead .column-seopress_noindex {
|
|
1105 |
border-radius: 4px;
|
1106 |
font-weight: bold;
|
1107 |
}
|
|
|
1108 |
#seopress_cpt .impact.high {
|
1109 |
position: relative;
|
1110 |
top: calc(50% - 18px);
|
@@ -1112,6 +1337,7 @@ table.fixed thead .column-seopress_noindex {
|
|
1112 |
left: inherit;
|
1113 |
right: -10px;
|
1114 |
}
|
|
|
1115 |
#seopress_cpt .description,
|
1116 |
#seopress_pro_cpt .description,
|
1117 |
#seopress_content_analysis .description,
|
@@ -1120,6 +1346,7 @@ table.fixed thead .column-seopress_noindex {
|
|
1120 |
font-size: 12px;
|
1121 |
color: var(--color);
|
1122 |
}
|
|
|
1123 |
@media only screen and (max-width: 782px) {
|
1124 |
#seopress_cpt .description,
|
1125 |
#seopress_pro_cpt .description,
|
@@ -1128,6 +1355,7 @@ table.fixed thead .column-seopress_noindex {
|
|
1128 |
word-break: break-word;
|
1129 |
}
|
1130 |
}
|
|
|
1131 |
#seopress_cpt input ~ span.description,
|
1132 |
#seopress_cpt span.description ~ input,
|
1133 |
#seopress_content_analysis input ~ span.description,
|
@@ -1136,6 +1364,7 @@ table.fixed thead .column-seopress_noindex {
|
|
1136 |
#seopress_pro_cpt span.description ~ input {
|
1137 |
margin-top: 5px;
|
1138 |
}
|
|
|
1139 |
#seopress_content_analysis .gr-analysis-title button {
|
1140 |
background: #fff;
|
1141 |
border: 0;
|
@@ -1149,9 +1378,11 @@ table.fixed thead .column-seopress_noindex {
|
|
1149 |
align-items: center;
|
1150 |
transition: all 300ms linear;
|
1151 |
}
|
|
|
1152 |
#seopress_content_analysis .gr-analysis-title button:hover {
|
1153 |
background: #f3f4f5;
|
1154 |
}
|
|
|
1155 |
#seopress_content_analysis .gr-analysis-title button:focus {
|
1156 |
color: #191e23;
|
1157 |
border: none;
|
@@ -1159,6 +1390,7 @@ table.fixed thead .column-seopress_noindex {
|
|
1159 |
outline-offset: -2px;
|
1160 |
outline: 1px dotted #555d66;
|
1161 |
}
|
|
|
1162 |
#seopress_content_analysis .gr-analysis-title button .seopress-arrow::after {
|
1163 |
content: "\f343";
|
1164 |
font-family: "Dashicons";
|
@@ -1166,45 +1398,54 @@ table.fixed thead .column-seopress_noindex {
|
|
1166 |
right: 10px;
|
1167 |
top: calc(50% - 7px);
|
1168 |
}
|
|
|
1169 |
#seopress_content_analysis
|
1170 |
.gr-analysis-title
|
1171 |
button.open
|
1172 |
.seopress-arrow::after {
|
1173 |
content: "\f347";
|
1174 |
}
|
|
|
1175 |
#seopress_content_analysis .gr-analysis-content {
|
1176 |
padding: 0 1rem 0.5rem 1rem;
|
1177 |
display: none;
|
1178 |
width: 100%;
|
1179 |
border-top: 1px solid var(--borderColorCard);
|
1180 |
}
|
|
|
1181 |
#seopress_content_analysis h3 {
|
1182 |
margin: 0;
|
1183 |
font-size: 1em;
|
1184 |
}
|
|
|
1185 |
#seopress_content_analysis h4 {
|
1186 |
border-bottom: 1px solid var(--borderColorCard);
|
1187 |
padding-bottom: 0.5rem;
|
1188 |
text-transform: uppercase;
|
1189 |
font-size: 0.85em;
|
1190 |
-
position: -webkit-sticky;
|
|
|
1191 |
position: sticky;
|
1192 |
top: 0;
|
1193 |
background: #fff;
|
1194 |
}
|
|
|
1195 |
#seopress_content_analysis .wrap-analysis-img ul {
|
1196 |
display: flex;
|
1197 |
flex-wrap: wrap;
|
1198 |
}
|
|
|
1199 |
#seopress_content_analysis .wrap-analysis-img ul li {
|
1200 |
padding: 0;
|
1201 |
text-align: left;
|
1202 |
cursor: default;
|
1203 |
}
|
|
|
1204 |
#seopress_content_analysis .wrap-analysis-img h4 {
|
1205 |
border-bottom: 1px solid var(--borderColorLight);
|
1206 |
padding-bottom: 10px;
|
1207 |
}
|
|
|
1208 |
#seopress_content_analysis .wrap-analysis-img ul li img {
|
1209 |
max-width: 150px;
|
1210 |
max-height: 150px;
|
@@ -1213,13 +1454,16 @@ table.fixed thead .column-seopress_noindex {
|
|
1213 |
cursor: default;
|
1214 |
padding: 1px;
|
1215 |
}
|
|
|
1216 |
#seopress_cpt .dashicons,
|
1217 |
#seopress-analysis-tabs .dashicons {
|
1218 |
vertical-align: middle;
|
1219 |
}
|
|
|
1220 |
#seopress-analysis-tabs {
|
1221 |
clear: both;
|
1222 |
}
|
|
|
1223 |
#seopress_content_analysis .dashicons-no-alt,
|
1224 |
#seopress_content_analysis .dashicons-yes,
|
1225 |
#seopress_pro_cpt .dashicons-no-alt,
|
@@ -1229,10 +1473,12 @@ table.fixed thead .column-seopress_noindex {
|
|
1229 |
border-radius: 50px;
|
1230 |
margin-right: 10px;
|
1231 |
}
|
|
|
1232 |
#seopress_content_analysis .dashicons-no-alt,
|
1233 |
#seopress_pro_cpt .dashicons-no-alt {
|
1234 |
background: var(--colorAlert);
|
1235 |
}
|
|
|
1236 |
/* SEO metabox */
|
1237 |
#seopress_cpt .description-alt,
|
1238 |
#seopress_content_analysis .description-alt {
|
@@ -1241,10 +1487,12 @@ table.fixed thead .column-seopress_noindex {
|
|
1241 |
border-bottom: 1px solid var(--borderColorLight);
|
1242 |
display: flex;
|
1243 |
}
|
|
|
1244 |
#seopress_cpt .desc-fb {
|
1245 |
margin-top: 0;
|
1246 |
border-top: none;
|
1247 |
}
|
|
|
1248 |
#seopress_cpt .description-alt svg,
|
1249 |
#seopress_content_analysis .description-alt svg {
|
1250 |
vertical-align: middle;
|
@@ -1253,14 +1501,17 @@ table.fixed thead .column-seopress_noindex {
|
|
1253 |
flex-shrink: 0;
|
1254 |
margin-right: 16px;
|
1255 |
}
|
|
|
1256 |
#seopress_cpt .notice {
|
1257 |
padding: 10px 14px;
|
1258 |
margin: 0;
|
1259 |
}
|
|
|
1260 |
#seopress_cpt .inside {
|
1261 |
margin: 0;
|
1262 |
padding: 0;
|
1263 |
}
|
|
|
1264 |
#seopress_cpt .ui-tabs .ui-tabs-nav {
|
1265 |
display: flex;
|
1266 |
position: relative;
|
@@ -1280,17 +1531,21 @@ table.fixed thead .column-seopress_noindex {
|
|
1280 |
border-left: none;
|
1281 |
border-right: none;
|
1282 |
}
|
|
|
1283 |
#seopress_cpt .ui-tabs .sp-section {
|
1284 |
font-weight: 700;
|
1285 |
font-size: var(--fontSize);
|
1286 |
}
|
|
|
1287 |
#seopress_cpt .ui-helper-clearfix:after {
|
1288 |
content: none;
|
1289 |
}
|
|
|
1290 |
.seopress_page_seopress-titles #seopress-tabs .form-table td,
|
1291 |
.seopress_page_seopress-titles #seopress_content_analysis .form-table td {
|
1292 |
padding: 0;
|
1293 |
}
|
|
|
1294 |
#seopress_cpt .ui-tabs .ui-tabs-panel {
|
1295 |
background: #fff;
|
1296 |
border-radius: 0;
|
@@ -1298,6 +1553,7 @@ table.fixed thead .column-seopress_noindex {
|
|
1298 |
padding: 1em 1.4em;
|
1299 |
width: 100%;
|
1300 |
}
|
|
|
1301 |
#seopress_content_analysis .dashicons-info,
|
1302 |
#seopress_cpt .ui-tabs .ui-tabs-panel .dashicons-info,
|
1303 |
#seopress_pro_cpt .dashicons-info {
|
@@ -1306,10 +1562,12 @@ table.fixed thead .column-seopress_noindex {
|
|
1306 |
height: 16px;
|
1307 |
width: 16px;
|
1308 |
}
|
|
|
1309 |
#seopress_cpt .ui-tabs .ui-tabs-nav li,
|
1310 |
#seopress_cpt .ui-tabs-anchor {
|
1311 |
cursor: pointer !important;
|
1312 |
}
|
|
|
1313 |
body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
1314 |
position: relative;
|
1315 |
z-index: 60;
|
@@ -1317,49 +1575,61 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1317 |
border-radius: 0;
|
1318 |
border-bottom: 4px solid var(--backgroundPrimary) !important;
|
1319 |
}
|
|
|
1320 |
#seopress_cpt .wp-color-result {
|
1321 |
margin: 0;
|
1322 |
}
|
|
|
1323 |
#seopress_cpt #tabs-6 #wrap-videos .video .accordion-section-content,
|
1324 |
#seopress_cpt #tabs-6 > p {
|
1325 |
padding: 0 1.4em;
|
1326 |
}
|
|
|
1327 |
#seopress_cpt #tabs-6 #wrap-videos .video .accordion-section-content {
|
1328 |
padding: 0 1.4em 1em;
|
1329 |
}
|
|
|
1330 |
#seopress_cpt #tabs-6 #wrap-videos .video {
|
1331 |
border-top: 1px solid var(--borderColorLight);
|
1332 |
}
|
|
|
1333 |
#seopress_cpt #tabs-6 #wrap-videos .video .accordion-section-title {
|
1334 |
border-left: none;
|
1335 |
border-right: none;
|
1336 |
font-size: 1em;
|
1337 |
padding: 1em 1.4em;
|
1338 |
}
|
|
|
1339 |
#seopress_cpt #tabs-6 #wrap-videos .video:last-child .accordion-section-content,
|
1340 |
#seopress_cpt #tabs-6 #wrap-videos .video:last-child .accordion-section-title {
|
1341 |
border-bottom: 1px solid var(--borderColorLight);
|
1342 |
}
|
|
|
1343 |
#seopress_content_analysis .mandatory,
|
1344 |
#seopress_cpt .mandatory {
|
1345 |
color: var(--colorAlert);
|
1346 |
}
|
|
|
1347 |
#seopress_cpt .box-left {
|
1348 |
float: left;
|
1349 |
width: 49%;
|
1350 |
margin-right: 1%;
|
1351 |
}
|
|
|
1352 |
#seopress_cpt .box-right {
|
1353 |
float: left;
|
1354 |
width: 49%;
|
1355 |
margin-left: 1%;
|
1356 |
}
|
|
|
1357 |
#seopress_cpt #tabs-3 .box-left {
|
1358 |
width: 44%;
|
1359 |
}
|
|
|
1360 |
#seopress_cpt #tabs-3 .box-right {
|
1361 |
width: 54%;
|
1362 |
}
|
|
|
1363 |
@media only screen and (max-width: 1200px) {
|
1364 |
#seopress_cpt .box-left,
|
1365 |
#seopress_cpt .box-right {
|
@@ -1368,6 +1638,7 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1368 |
margin: 0;
|
1369 |
}
|
1370 |
}
|
|
|
1371 |
@media only screen and (max-width: 1500px) {
|
1372 |
#seopress_cpt #tabs-3 .box-left,
|
1373 |
#seopress_cpt #tabs-3 .box-right {
|
@@ -1376,19 +1647,23 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1376 |
margin: 0;
|
1377 |
}
|
1378 |
}
|
|
|
1379 |
#edittag #seopress_cpt #tabs-3 .box-left,
|
1380 |
#edittag #seopress_cpt #tabs-3 .box-right {
|
1381 |
float: none;
|
1382 |
width: 100%;
|
1383 |
margin: 0;
|
1384 |
}
|
|
|
1385 |
#seopress-tabs .seopress_media_upload,
|
1386 |
#seopress_pro_cpt .seopress_media_upload {
|
1387 |
margin-top: 0.5rem;
|
1388 |
}
|
|
|
1389 |
#term-seopress #seopress_cpt {
|
1390 |
width: 95%;
|
1391 |
}
|
|
|
1392 |
#seopress_cpt .ui-tabs {
|
1393 |
position: relative;
|
1394 |
padding: 0;
|
@@ -1398,6 +1673,7 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1398 |
display: inline-block;
|
1399 |
width: 100%;
|
1400 |
}
|
|
|
1401 |
#seopress_cpt .ui-tabs .ui-tabs-nav li {
|
1402 |
list-style: none;
|
1403 |
position: relative;
|
@@ -1408,24 +1684,29 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1408 |
height: 48px;
|
1409 |
background: 0 0;
|
1410 |
}
|
|
|
1411 |
#seopress_cpt .ui-tabs .ui-tabs-nav li a {
|
1412 |
display: flex;
|
1413 |
padding: 3px 15px;
|
1414 |
align-items: center;
|
1415 |
}
|
|
|
1416 |
#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-nav li a,
|
1417 |
#seopress_cpt .ui-tabs-vertical .ui-tabs-nav li a {
|
1418 |
display: block;
|
1419 |
}
|
|
|
1420 |
#seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
1421 |
margin-bottom: 0px;
|
1422 |
padding-bottom: 0px;
|
1423 |
}
|
|
|
1424 |
#seopress_cpt .ui-tabs .ui-tabs-nav li.ui-state-disabled a,
|
1425 |
#seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active a,
|
1426 |
#seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-loading a {
|
1427 |
font-weight: 500;
|
1428 |
}
|
|
|
1429 |
#seopress_cpt .ui-tabs .ui-tabs-nav li a,
|
1430 |
#seopress_cpt .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a {
|
1431 |
cursor: pointer;
|
@@ -1433,6 +1714,7 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1433 |
text-decoration: none;
|
1434 |
height: 48px;
|
1435 |
}
|
|
|
1436 |
#seopress_cpt .ui-tabs .ui-tabs-nav li a:focus,
|
1437 |
#seopress_cpt .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a:focus {
|
1438 |
outline: 3px solid transparent;
|
@@ -1440,14 +1722,17 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1440 |
var(--backgroundPrimary),
|
1441 |
inset 0 -4px 0 0 var(--backgroundPrimary);
|
1442 |
}
|
|
|
1443 |
#seopress_cpt .ui-tabs-vertical {
|
1444 |
width: 55em;
|
1445 |
}
|
|
|
1446 |
#seopress_cpt .ui-tabs-vertical .ui-tabs-nav {
|
1447 |
padding: 0.2em 0.1em 0.2em 0.2em;
|
1448 |
float: left;
|
1449 |
width: 12em;
|
1450 |
}
|
|
|
1451 |
#seopress_cpt .ui-tabs-vertical .ui-tabs-nav li {
|
1452 |
clear: left;
|
1453 |
width: 100%;
|
@@ -1455,33 +1740,40 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1455 |
border-right-width: 0 !important;
|
1456 |
margin: 0 -1px 0.2em 0;
|
1457 |
}
|
|
|
1458 |
#seopress_cpt .ui-tabs-vertical .ui-tabs-nav li.ui-tabs-active {
|
1459 |
padding-bottom: 0;
|
1460 |
padding-right: 0.1em;
|
1461 |
border-right-width: 1px;
|
1462 |
}
|
|
|
1463 |
#seopress_cpt .ui-tabs-vertical .ui-tabs-panel {
|
1464 |
padding: 1em;
|
1465 |
float: right;
|
1466 |
width: 40em;
|
1467 |
}
|
|
|
1468 |
#seopress_cpt .ui-tabs .ui-tabs-nav li a .dashicons {
|
1469 |
margin-right: 2px;
|
1470 |
}
|
|
|
1471 |
/* Google / Social Preview */
|
1472 |
#seopress_cpt .google-snippet-preview {
|
1473 |
font-family: arial, sans-serif;
|
1474 |
word-break: break-all;
|
1475 |
}
|
|
|
1476 |
#seopress_cpt .google-snippet-preview.mobile-preview .wrap-snippet {
|
1477 |
margin: 0 0 10px 0;
|
1478 |
box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
|
1479 |
border-radius: 8px;
|
1480 |
padding: 12px 16px;
|
1481 |
}
|
|
|
1482 |
#seopress_cpt .google-snippet-preview > p {
|
1483 |
word-break: normal;
|
1484 |
}
|
|
|
1485 |
#seopress_cpt .google-snippet-preview .snippet-title,
|
1486 |
#seopress_cpt .google-snippet-preview .snippet-title-custom,
|
1487 |
#seopress_cpt .google-snippet-preview .snippet-title-default {
|
@@ -1490,6 +1782,7 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1490 |
font-weight: 400;
|
1491 |
line-height: 21.6px;
|
1492 |
}
|
|
|
1493 |
#seopress_cpt .google-snippet-preview.mobile-preview .snippet-title,
|
1494 |
#seopress_cpt .google-snippet-preview.mobile-preview .snippet-title-custom,
|
1495 |
#seopress_cpt .google-snippet-preview.mobile-preview .snippet-title-default {
|
@@ -1497,6 +1790,7 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1497 |
line-height: 20px;
|
1498 |
margin-bottom: 12px;
|
1499 |
}
|
|
|
1500 |
#seopress_cpt .google-snippet-preview .snippet-permalink {
|
1501 |
color: #006621;
|
1502 |
font-size: 14px;
|
@@ -1507,10 +1801,37 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1507 |
text-overflow: ellipsis;
|
1508 |
white-space: nowrap;
|
1509 |
}
|
|
|
1510 |
#seopress_cpt .google-snippet-preview .wrap-snippet .wrap-m-icon-permalink,
|
1511 |
#seopress_cpt .google-snippet-preview.mobile-preview .snippet-permalink {
|
1512 |
display: none;
|
1513 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1514 |
#seopress_cpt .google-snippet-preview.mobile-preview .wrap-m-icon-permalink {
|
1515 |
overflow: hidden;
|
1516 |
text-overflow: ellipsis;
|
@@ -1518,6 +1839,7 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1518 |
margin-bottom: 12px;
|
1519 |
display: flex;
|
1520 |
}
|
|
|
1521 |
#seopress_cpt
|
1522 |
.google-snippet-preview.mobile-preview
|
1523 |
.wrap-m-icon-permalink
|
@@ -1526,15 +1848,18 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1526 |
color: #3c4043;
|
1527 |
font-size: 12px;
|
1528 |
}
|
|
|
1529 |
#seopress_cpt .google-snippet-preview.mobile-preview .snippet-favicon {
|
1530 |
margin-right: 12px;
|
1531 |
vertical-align: middle;
|
1532 |
}
|
|
|
1533 |
#seopress_cpt .google-snippet-preview.mobile-preview .snippet-favicon img {
|
1534 |
width: 16px;
|
1535 |
height: 16px;
|
1536 |
max-width: inherit;
|
1537 |
}
|
|
|
1538 |
#seopress_cpt
|
1539 |
.google-snippet-preview.mobile-preview
|
1540 |
.wrap-snippet
|
@@ -1544,6 +1869,7 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1544 |
font-size: 12px;
|
1545 |
display: block;
|
1546 |
}
|
|
|
1547 |
#seopress_cpt .google-snippet-preview .snippet-description,
|
1548 |
#seopress_cpt .google-snippet-preview .snippet-description-custom,
|
1549 |
#seopress_cpt .google-snippet-preview .snippet-description-default {
|
@@ -1555,6 +1881,7 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1555 |
hyphens: none;
|
1556 |
word-break: normal;
|
1557 |
}
|
|
|
1558 |
#seopress_cpt .google-snippet-preview.mobile-preview .snippet-description,
|
1559 |
#seopress_cpt
|
1560 |
.google-snippet-preview.mobile-preview
|
@@ -1566,31 +1893,37 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1566 |
font-size: 14px;
|
1567 |
line-height: 20px;
|
1568 |
}
|
|
|
1569 |
#seopress_cpt .google-snippet-preview .snippet-date {
|
1570 |
color: grey;
|
1571 |
display: inline;
|
1572 |
}
|
|
|
1573 |
#seopress_cpt .facebook-snippet-box {
|
1574 |
color: #4b4f56;
|
1575 |
font-size: 14px;
|
1576 |
width: 524px;
|
1577 |
max-width: 100%;
|
1578 |
}
|
|
|
1579 |
#seopress_cpt .facebook-snippet-box .notice,
|
1580 |
#seopress_cpt .twitter-snippet-box .notice {
|
1581 |
padding: 10px 14px;
|
1582 |
margin: 0 0 10px 0;
|
1583 |
width: 100%;
|
1584 |
}
|
|
|
1585 |
#seopress_cpt .facebook-snippet-box .notice span,
|
1586 |
#seopress_cpt .twitter-snippet-box .notice span {
|
1587 |
font-weight: bold;
|
1588 |
}
|
|
|
1589 |
#seopress_cpt .snippet-meta {
|
1590 |
display: flex;
|
1591 |
overflow: hidden;
|
1592 |
max-height: 12px;
|
1593 |
}
|
|
|
1594 |
#seopress_cpt .snippet-fb-site-name,
|
1595 |
#seopress_cpt .snippet-fb-url,
|
1596 |
#seopress_cpt .fb-by {
|
@@ -1603,6 +1936,7 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1603 |
display: -webkit-box;
|
1604 |
text-overflow: ellipsis;
|
1605 |
}
|
|
|
1606 |
#seopress_cpt .fb-sep {
|
1607 |
padding-left: 5px;
|
1608 |
padding-right: 5px;
|
@@ -1610,15 +1944,18 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1610 |
line-height: 11px;
|
1611 |
font-size: 12px;
|
1612 |
}
|
|
|
1613 |
#seopress_cpt .facebook-snippet-box .facebook-snippet-text {
|
1614 |
border: 1px solid #dadde1;
|
1615 |
background-color: #f2f3f5;
|
1616 |
padding: 10px 12px;
|
1617 |
}
|
|
|
1618 |
#seopress_cpt .facebook-snippet-box .title-desc {
|
1619 |
max-height: 46px;
|
1620 |
overflow: hidden;
|
1621 |
}
|
|
|
1622 |
#seopress_cpt .facebook-snippet-box .snippet-fb-title,
|
1623 |
#seopress_cpt .facebook-snippet-box .snippet-fb-title-custom,
|
1624 |
#seopress_cpt .facebook-snippet-box .snippet-fb-title-default {
|
@@ -1636,6 +1973,7 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1636 |
word-break: break-word;
|
1637 |
max-height: 22px;
|
1638 |
}
|
|
|
1639 |
#seopress_cpt .facebook-snippet-box .snippet-fb-description,
|
1640 |
#seopress_cpt .facebook-snippet-box .snippet-fb-description-custom,
|
1641 |
#seopress_cpt .facebook-snippet-box .snippet-fb-description-default {
|
@@ -1652,6 +1990,7 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1652 |
white-space: normal;
|
1653 |
width: 100%;
|
1654 |
}
|
|
|
1655 |
#seopress_cpt .facebook-snippet-box img {
|
1656 |
display: block;
|
1657 |
height: 274px;
|
@@ -1661,11 +2000,13 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1661 |
text-align: center;
|
1662 |
border-bottom: none;
|
1663 |
}
|
|
|
1664 |
.term-php #seopress_cpt .facebook-snippet-box img,
|
1665 |
.term-php #seopress_cpt .twitter-snippet-box img {
|
1666 |
width: 100%;
|
1667 |
height: auto;
|
1668 |
}
|
|
|
1669 |
.seopress_social_fb_img_upload,
|
1670 |
.seopress_social_twitter_img_upload {
|
1671 |
position: absolute;
|
@@ -1675,11 +2016,12 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1675 |
left: 0;
|
1676 |
top: 0;
|
1677 |
}
|
|
|
1678 |
.seopress_social_fb_img_upload:hover::after,
|
1679 |
.seopress_social_twitter_img_upload:hover::after {
|
1680 |
-
content:
|
1681 |
position: absolute;
|
1682 |
-
font-family:
|
1683 |
width: 100%;
|
1684 |
height: 100%;
|
1685 |
top: 0;
|
@@ -1691,6 +2033,7 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1691 |
align-items: center;
|
1692 |
color: #1e1e1e;
|
1693 |
}
|
|
|
1694 |
.snippet-fb-img,
|
1695 |
.snippet-fb-img-custom,
|
1696 |
.snippet-fb-img-default,
|
@@ -1699,12 +2042,14 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1699 |
.snippet-twitter-img-default {
|
1700 |
position: relative;
|
1701 |
}
|
|
|
1702 |
#seopress_cpt .twitter-snippet-box {
|
1703 |
color: #4b4f56;
|
1704 |
font-size: 14px;
|
1705 |
width: 504px;
|
1706 |
max-width: 100%;
|
1707 |
}
|
|
|
1708 |
#seopress_cpt .snippet-twitter-url {
|
1709 |
color: #8899a6;
|
1710 |
font-size: 14px;
|
@@ -1715,22 +2060,26 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1715 |
display: -webkit-box;
|
1716 |
text-overflow: ellipsis;
|
1717 |
}
|
|
|
1718 |
#seopress_cpt .twitter-snippet-box .twitter-snippet-text {
|
1719 |
border: 1px solid #dadde1;
|
1720 |
background-color: #fff;
|
1721 |
padding: 10px 12px;
|
1722 |
border-radius: 0 0 10px 10px;
|
1723 |
}
|
|
|
1724 |
#seopress_cpt .twitter-snippet-box .title-desc {
|
1725 |
max-height: 46px;
|
1726 |
overflow: hidden;
|
1727 |
}
|
|
|
1728 |
#seopress_cpt .twitter-snippet-box .snippet-twitter-img,
|
1729 |
#seopress_cpt .twitter-snippet-box .snippet-twitter-img-default,
|
1730 |
#seopress_cpt .twitter-snippet-box .snippet-twitter-img-custom {
|
1731 |
border-radius: 10px 10px 0 0;
|
1732 |
overflow: hidden;
|
1733 |
}
|
|
|
1734 |
#seopress_cpt .twitter-snippet-box .snippet-twitter-title,
|
1735 |
#seopress_cpt .twitter-snippet-box .snippet-twitter-title-custom,
|
1736 |
#seopress_cpt .twitter-snippet-box .snippet-twitter-title-default {
|
@@ -1747,6 +2096,7 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1747 |
white-space: normal;
|
1748 |
word-break: break-word;
|
1749 |
}
|
|
|
1750 |
#seopress_cpt .twitter-snippet-box .snippet-twitter-description,
|
1751 |
#seopress_cpt .twitter-snippet-box .snippet-twitter-description-custom,
|
1752 |
#seopress_cpt .twitter-snippet-box .snippet-twitter-description-default {
|
@@ -1763,6 +2113,7 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1763 |
white-space: normal;
|
1764 |
width: 100%;
|
1765 |
}
|
|
|
1766 |
#seopress_cpt .twitter-snippet-box img {
|
1767 |
display: block;
|
1768 |
height: 263px;
|
@@ -1772,16 +2123,20 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1772 |
text-align: center;
|
1773 |
border-bottom: none;
|
1774 |
}
|
|
|
1775 |
.wrap-toggle-preview {
|
1776 |
position: relative;
|
1777 |
}
|
|
|
1778 |
.wrap-toggle-preview p {
|
1779 |
font-weight: bold;
|
1780 |
margin: 0 0 1rem 0;
|
1781 |
}
|
|
|
1782 |
#seopress_add_to_insights {
|
1783 |
margin-left: 1rem;
|
1784 |
}
|
|
|
1785 |
#seopress_add_to_insights_status {
|
1786 |
display: inline-block;
|
1787 |
font-weight: bold;
|
@@ -1790,10 +2145,12 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1790 |
padding: 0.3rem;
|
1791 |
font-style: italic;
|
1792 |
}
|
|
|
1793 |
/* Counters */
|
1794 |
.seo_page_seopress-instant-indexing .wrap-sp-progress {
|
1795 |
max-width: 35rem;
|
1796 |
}
|
|
|
1797 |
#seopress_cpt .wrap-seopress-counters,
|
1798 |
#seopress_pro_cpt .wrap-seopress-counters,
|
1799 |
.seopress-styles .wrap-seopress-counters,
|
@@ -1806,6 +2163,7 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1806 |
justify-content: flex-end;
|
1807 |
border-radius: 0 0 0.25rem 0.25rem;
|
1808 |
}
|
|
|
1809 |
#seopress_cpt .sp-progress,
|
1810 |
#seopress_pro_cpt .sp-progress,
|
1811 |
.seopress-styles .sp-progress,
|
@@ -1818,6 +2176,7 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1818 |
border-radius: 0.25rem 0.25rem 0 0;
|
1819 |
margin: -15px 0 0 0;
|
1820 |
}
|
|
|
1821 |
#seopress_cpt .sp-progress-bar,
|
1822 |
#seopress_pro_cpt .sp-progress-bar,
|
1823 |
.seopress-styles .sp-progress-bar,
|
@@ -1831,6 +2190,7 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1831 |
background-color: #0085ba;
|
1832 |
transition: width 0.6s ease;
|
1833 |
}
|
|
|
1834 |
#seopress_cpt #seopress_titles_desc_counters,
|
1835 |
#seopress_cpt #seopress_titles_title_counters,
|
1836 |
#seopress_pro_cpt #seopress_rich_snippets_articles_counters,
|
@@ -1838,6 +2198,7 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1838 |
display: inline;
|
1839 |
margin-right: 5px;
|
1840 |
}
|
|
|
1841 |
#seopress_cpt #seopress_titles_desc_counters_val,
|
1842 |
#seopress_cpt #seopress_titles_title_counters_val,
|
1843 |
#seopress_pro_cpt #seopress_rich_snippets_articles_counters_val,
|
@@ -1854,12 +2215,15 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1854 |
.seopress-styles .seopress-option {
|
1855 |
margin: 85px 40px 40px;
|
1856 |
}
|
|
|
1857 |
@media only screen and (max-width: 782px) {
|
1858 |
.seopress-styles .seopress-option {
|
1859 |
margin: 85px 22px 22px;
|
1860 |
}
|
1861 |
}
|
1862 |
-
|
|
|
|
|
1863 |
font-size: var(--titleFontSize);
|
1864 |
color: var(--titleColor);
|
1865 |
font-weight: var(--titleFontWeight);
|
@@ -1867,9 +2231,11 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1867 |
display: flex;
|
1868 |
justify-content: space-between;
|
1869 |
}
|
|
|
1870 |
.seopress-setup .seopress-option h1 {
|
1871 |
margin-bottom: 30px;
|
1872 |
}
|
|
|
1873 |
/* Titles & metas */
|
1874 |
.seopress_wrap_single_cpt,
|
1875 |
.seopress_wrap_tax,
|
@@ -1877,20 +2243,24 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1877 |
.seopress_wrap_single_tax {
|
1878 |
margin: 0 0 20px 0;
|
1879 |
}
|
|
|
1880 |
#tab_seopress_titles_single .form-table th:empty,
|
1881 |
#tab_seopress_titles_archives .form-table th:empty,
|
1882 |
#tab_seopress_titles_tax .form-table th:empty {
|
1883 |
display: none;
|
1884 |
}
|
|
|
1885 |
.seopress-styles .seopress-option .link-archive {
|
1886 |
font-size: var(--fontSize);
|
1887 |
}
|
|
|
1888 |
.seopress-styles .seopress-option .link-archive .dashicons {
|
1889 |
font-size: 18px;
|
1890 |
width: 20px;
|
1891 |
height: 20px;
|
1892 |
margin: inherit;
|
1893 |
}
|
|
|
1894 |
/* General options page */
|
1895 |
.seopress-option h1 .feature-state .dashicons {
|
1896 |
font-size: 16px;
|
@@ -1899,6 +2269,7 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1899 |
vertical-align: middle;
|
1900 |
margin: 0 10px 0 0;
|
1901 |
}
|
|
|
1902 |
.seopress-styles .seopress-option .submit {
|
1903 |
padding: 20px 0px 20px 0px;
|
1904 |
left: 0;
|
@@ -1908,18 +2279,22 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1908 |
z-index: 100;
|
1909 |
display: inline-block;
|
1910 |
}
|
|
|
1911 |
@media only screen and (max-width: 782px) {
|
1912 |
.seopress-styles .seopress-option .submit {
|
1913 |
position: relative;
|
1914 |
}
|
1915 |
}
|
|
|
1916 |
.seopress-styles .seopress-option .seopress-tab .submit {
|
1917 |
display: block;
|
1918 |
position: relative;
|
1919 |
}
|
|
|
1920 |
.seopress-styles #wpcontent {
|
1921 |
padding-left: 0;
|
1922 |
}
|
|
|
1923 |
.seopress-styles pre {
|
1924 |
font-family: Menlo, Monaco, Andale Mono, Courier New, monospace;
|
1925 |
padding: 10px;
|
@@ -1930,14 +2305,17 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1930 |
font-size: var(--fontSize);
|
1931 |
/* display: none; */
|
1932 |
}
|
|
|
1933 |
.seopress-option .seopress-settings {
|
1934 |
float: left;
|
1935 |
max-width: 750px;
|
1936 |
width: 100%;
|
1937 |
}
|
|
|
1938 |
.seopress-option .seopress-settings label {
|
1939 |
margin: 0 0 0 10px;
|
1940 |
}
|
|
|
1941 |
.wrap-seopress-tab-content {
|
1942 |
position: relative;
|
1943 |
display: block;
|
@@ -1945,23 +2323,28 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1945 |
max-width: 64rem;
|
1946 |
margin: 0 auto;
|
1947 |
}
|
|
|
1948 |
#seopress-tabs .seopress-tab {
|
1949 |
padding: 10px 1.5rem;
|
1950 |
width: 100%;
|
1951 |
display: none;
|
1952 |
}
|
|
|
1953 |
#seopress-tabs.full-width .seopress-tab {
|
1954 |
width: 100%;
|
1955 |
}
|
|
|
1956 |
@media only screen and (max-width: 1024px) {
|
1957 |
#seopress-tabs .seopress-tab {
|
1958 |
width: 100%;
|
1959 |
}
|
1960 |
}
|
|
|
1961 |
#seopress-tabs .seopress-tab.active {
|
1962 |
display: inline-block;
|
1963 |
background: #fff;
|
1964 |
}
|
|
|
1965 |
@media only screen and (max-width: 782px) {
|
1966 |
#seopress-tabs .seopress-tab.active {
|
1967 |
width: 100%;
|
@@ -1969,12 +2352,15 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1969 |
border-top: 1px solid RGB(238, 238, 238);
|
1970 |
}
|
1971 |
}
|
|
|
1972 |
#seopress_htaccess_file {
|
1973 |
width: 100%;
|
1974 |
}
|
|
|
1975 |
.seopress-option textarea {
|
1976 |
min-height: 100px;
|
1977 |
}
|
|
|
1978 |
.seopress-option .wp-picker-container button {
|
1979 |
box-shadow: none;
|
1980 |
border: 1px solid #0071a1;
|
@@ -1982,12 +2368,15 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1982 |
background: rgb(243, 245, 246);
|
1983 |
text-transform: none;
|
1984 |
}
|
|
|
1985 |
.seopress-option .wp-picker-container input[type="text"].wp-color-picker {
|
1986 |
min-width: inherit;
|
1987 |
}
|
|
|
1988 |
.seopress-option .wp-picker-container .wp-picker-default {
|
1989 |
margin: 0;
|
1990 |
}
|
|
|
1991 |
.seopress-option .wp-picker-container .wp-picker-clear {
|
1992 |
box-shadow: none;
|
1993 |
text-transform: none;
|
@@ -1995,58 +2384,71 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
1995 |
background: none;
|
1996 |
margin: 0;
|
1997 |
}
|
|
|
1998 |
.seopress-option .wp-picker-container .wp-picker-clear:hover {
|
1999 |
background: none;
|
2000 |
text-decoration: currentColor;
|
2001 |
color: inherit;
|
2002 |
}
|
|
|
2003 |
.seopress-inbox-title p {
|
2004 |
font-size: 20px;
|
2005 |
color: var(--titleColor);
|
2006 |
margin: 0;
|
2007 |
}
|
|
|
2008 |
#seopress-admin-tabs .ui-tabs-nav {
|
2009 |
display: flex;
|
2010 |
padding-top: 1rem;
|
2011 |
padding-bottom: 0;
|
2012 |
}
|
|
|
2013 |
#seopress-admin-tabs .nav-tab-wrapper a.nav-tab-active:focus {
|
2014 |
color: inherit;
|
2015 |
}
|
|
|
2016 |
.seopress-intro {
|
2017 |
padding: 20px;
|
2018 |
}
|
|
|
2019 |
.seopress-option .seopress-table {
|
2020 |
background: #fff;
|
2021 |
border: 1px solid var(--borderColorLight);
|
2022 |
}
|
|
|
2023 |
.seopress-option .seopress-table th {
|
2024 |
padding: 15px 10px;
|
2025 |
vertical-align: middle;
|
2026 |
}
|
|
|
2027 |
.wp-admin-ui_page_seopress-roles .seopress-option .seopress-table th {
|
2028 |
min-width: 200px;
|
2029 |
}
|
|
|
2030 |
.seopress-option .seopress-table .seopress-settings-section {
|
2031 |
background: #f1f1f1;
|
2032 |
}
|
|
|
2033 |
.seopress-option .seopress-table .seopress-table-head .seopress-feature {
|
2034 |
border-bottom: 1px solid var(--borderColorLight);
|
2035 |
font-weight: 700;
|
2036 |
background: #f1f1f1;
|
2037 |
}
|
|
|
2038 |
#seopress-content .feature-state,
|
2039 |
.seopress-option .feature-state {
|
2040 |
font-style: italic;
|
2041 |
font-size: 11px;
|
2042 |
font-weight: normal;
|
2043 |
}
|
|
|
2044 |
@media only screen and (max-width: 782px) {
|
2045 |
#seopress-content .feature-state,
|
2046 |
.seopress-option .feature-state {
|
2047 |
display: none;
|
2048 |
}
|
2049 |
}
|
|
|
2050 |
.seopress-option #tab_seopress_titles_single h3,
|
2051 |
.seopress-option #tab_seopress_titles_archives h3,
|
2052 |
.seopress-option #tab_seopress_titles_tax h3 {
|
@@ -2054,55 +2456,67 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
2054 |
border-top: 1px solid var(--borderColorLight);
|
2055 |
padding: 1em 0 0 0;
|
2056 |
}
|
|
|
2057 |
.seopress-option #tab_seopress_titles_single h3:first-child,
|
2058 |
.seopress-option #tab_seopress_titles_archives h3:first-child,
|
2059 |
.seopress-option #tab_seopress_titles_tax h3:first-child {
|
2060 |
margin: 0 0 1em 0;
|
2061 |
}
|
|
|
2062 |
.seopress-option #tab_seopress_titles_single h3 div,
|
2063 |
.seopress-option #tab_seopress_titles_archives h3 div,
|
2064 |
.seopress-option #tab_seopress_titles_tax h3 div {
|
2065 |
display: inline;
|
2066 |
}
|
|
|
2067 |
#seopress-content .feature-state-on,
|
2068 |
#seopress-content .feature-state.feature-state-on,
|
2069 |
.seopress-option .feature-state-on,
|
2070 |
.seopress-option .feature-state.feature-state-on {
|
2071 |
display: inline-block;
|
2072 |
}
|
|
|
2073 |
#seopress-content .feature-state-off,
|
2074 |
.seopress-option .feature-state-off {
|
2075 |
display: none;
|
2076 |
}
|
|
|
2077 |
.seopress-option .postbox .inside li {
|
2078 |
list-style: square inside;
|
2079 |
padding-left: 5px;
|
2080 |
}
|
|
|
2081 |
#tab_seopress_page_speed .inside li {
|
2082 |
list-style: none;
|
2083 |
padding-left: 0;
|
2084 |
word-break: break-word;
|
2085 |
}
|
|
|
2086 |
.seopress-option .log {
|
2087 |
display: none;
|
2088 |
font-weight: bold;
|
2089 |
}
|
|
|
2090 |
.seopress-option input[type="text"].seopress-admin-menu-input {
|
2091 |
min-width: inherit;
|
2092 |
width: 100%;
|
2093 |
}
|
|
|
2094 |
.seopress_page_seopress-import-export .postbox {
|
2095 |
width: calc(100% - 20px);
|
2096 |
}
|
|
|
2097 |
#seopress_cpt #seopress_titles_title_meta {
|
2098 |
margin-bottom: 0.2rem;
|
2099 |
}
|
|
|
2100 |
.seopress-option .section-tool {
|
2101 |
border: none;
|
2102 |
box-shadow: none;
|
2103 |
background: none;
|
2104 |
position: relative;
|
2105 |
}
|
|
|
2106 |
.seopress-option .section-tool::after {
|
2107 |
content: "";
|
2108 |
background: #dedede;
|
@@ -2110,25 +2524,31 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
2110 |
width: 100%;
|
2111 |
display: block;
|
2112 |
}
|
|
|
2113 |
.seopress-option .section-tool:last-child {
|
2114 |
margin-bottom: 0;
|
2115 |
}
|
|
|
2116 |
.seopress-option .section-tool:last-child::after {
|
2117 |
content: none;
|
2118 |
}
|
|
|
2119 |
.seopress-option .section-tool .inside {
|
2120 |
padding-left: 0;
|
2121 |
padding-right: 0;
|
2122 |
}
|
|
|
2123 |
.seopress-option .sp-section-header {
|
2124 |
width: 100%;
|
2125 |
display: flex;
|
2126 |
position: relative;
|
2127 |
align-items: center;
|
2128 |
}
|
|
|
2129 |
.seopress-option .sp-section-header h2 {
|
2130 |
font-size: 1.5em;
|
2131 |
}
|
|
|
2132 |
.seopress-option .sp-section-header > .dashicons {
|
2133 |
color: var(--primaryColor);
|
2134 |
padding: 10px;
|
@@ -2136,9 +2556,11 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
2136 |
margin-right: 10px;
|
2137 |
background: #c4f0ff;
|
2138 |
}
|
|
|
2139 |
.seopress-option .sp-section-header .wrap-toggle-checkboxes {
|
2140 |
display: flex;
|
2141 |
}
|
|
|
2142 |
.seopress-notice {
|
2143 |
margin: 5px 0 35px 15px;
|
2144 |
position: relative;
|
@@ -2150,6 +2572,7 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
2150 |
width: calc(100% - 108px);
|
2151 |
z-index: 10;
|
2152 |
}
|
|
|
2153 |
.seopress-setup .seopress-notice,
|
2154 |
#seopress-tabs .seopress-notice,
|
2155 |
#seopress_pro_cpt .seopress-notice,
|
@@ -2167,21 +2590,26 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
2167 |
.seopress-notice pre {
|
2168 |
background: #fff;
|
2169 |
}
|
|
|
2170 |
.seopress-notice.is-success {
|
2171 |
border-left-color: var(--colorSuccess);
|
2172 |
background: #eff9f1;
|
2173 |
}
|
|
|
2174 |
.seopress-notice.is-warning {
|
2175 |
border-left-color: #f0b849;
|
2176 |
background: #fef8ee;
|
2177 |
}
|
|
|
2178 |
.seopress-notice.is-error {
|
2179 |
border-left-color: #cc1818;
|
2180 |
background: rgb(244 162 162 / 30%);
|
2181 |
}
|
|
|
2182 |
#seopress-tabs.wrap {
|
2183 |
margin: 30px 0 0 0;
|
2184 |
}
|
|
|
2185 |
#seopress-tabs.wrap ul,
|
2186 |
#seopress-notifications-center .seopress-alert ul {
|
2187 |
list-style: square inside;
|
@@ -2190,6 +2618,7 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
2190 |
max-width: 35rem;
|
2191 |
width: 100%;
|
2192 |
}
|
|
|
2193 |
.post-type-seopress_404 .seopress-BlankState-message::before,
|
2194 |
.post-type-seopress_schemas .seopress-BlankState-message::before {
|
2195 |
font-family: "Dashicons";
|
@@ -2208,13 +2637,16 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
2208 |
text-align: center;
|
2209 |
content: "\f103";
|
2210 |
}
|
|
|
2211 |
.post-type-seopress_schemas .seopress-BlankState-message::before {
|
2212 |
content: "\f495";
|
2213 |
}
|
|
|
2214 |
.seopress-BlankState {
|
2215 |
text-align: center;
|
2216 |
padding: 5em 0 0;
|
2217 |
}
|
|
|
2218 |
.seopress-BlankState .seopress-BlankState-message {
|
2219 |
color: #aaa;
|
2220 |
margin: 0 auto 1.5em;
|
@@ -2222,6 +2654,7 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
2222 |
font-size: 1.2em;
|
2223 |
max-width: 500px;
|
2224 |
}
|
|
|
2225 |
.seopress-BlankState .seopress-BlankState-message::before {
|
2226 |
color: #ddd;
|
2227 |
text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(255, 255, 255, 0.8);
|
@@ -2233,27 +2666,33 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
2233 |
line-height: 1em;
|
2234 |
margin: 0 0 0.1875em;
|
2235 |
}
|
|
|
2236 |
.seopress-BlankState .seopress-BlankState-cta {
|
2237 |
font-size: 1.2em;
|
2238 |
padding: 0.75em 1.5em;
|
2239 |
margin: 0 0.25em;
|
2240 |
}
|
|
|
2241 |
.seopress-BlankState {
|
2242 |
max-width: 764px;
|
2243 |
text-align: center;
|
2244 |
margin: auto;
|
2245 |
}
|
|
|
2246 |
.seopress-BlankState .seopress-BlankState-message {
|
2247 |
color: var(--titleColor);
|
2248 |
font-size: 1.5em;
|
2249 |
margin: 0 auto 1em;
|
2250 |
}
|
|
|
2251 |
.seopress-BlankState .seopress-BlankState-message::before {
|
2252 |
font-size: 120px;
|
2253 |
}
|
|
|
2254 |
.seopress-BlankState .seopress-BlankState-buttons {
|
2255 |
margin-bottom: 4em;
|
2256 |
}
|
|
|
2257 |
#seopress_content_analysis .up,
|
2258 |
#seopress_content_analysis .up .dashicons {
|
2259 |
color: var(--colorSuccess);
|
@@ -2275,34 +2714,41 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
2275 |
#seopress_content_analysis .down .dashicons {
|
2276 |
transform: rotateZ(135deg);
|
2277 |
}
|
|
|
2278 |
#seopress_content_analysis .wrap-insights-post {
|
2279 |
clear: both;
|
2280 |
border-top: 1px solid var(--borderColorCard);
|
2281 |
display: flex;
|
2282 |
align-items: center;
|
2283 |
}
|
|
|
2284 |
#seopress_content_analysis .wrap-insights-post .widget-insights-title {
|
2285 |
margin: 0 1rem;
|
2286 |
}
|
|
|
2287 |
#seopress_content_analysis .wrap-insights-post span {
|
2288 |
font-weight: 700;
|
2289 |
margin: 0 0.2rem 0 0;
|
2290 |
}
|
|
|
2291 |
.wrap-user-roles {
|
2292 |
display: grid;
|
2293 |
grid-template-columns: repeat(4, 1fr);
|
2294 |
}
|
|
|
2295 |
@media only screen and (max-width: 782px) {
|
2296 |
.wrap-user-roles {
|
2297 |
display: block;
|
2298 |
}
|
2299 |
}
|
|
|
2300 |
/* Notifications */
|
2301 |
#seopress-notifications-center.is-active,
|
2302 |
#seopress-news-panel.is-active,
|
2303 |
#notice-insights-alert.is-active {
|
2304 |
display: block !important;
|
2305 |
}
|
|
|
2306 |
#seopress-notifications-center .seopress-alert {
|
2307 |
padding: 16px 25px;
|
2308 |
position: relative;
|
@@ -2310,10 +2756,12 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
2310 |
justify-content: space-between;
|
2311 |
margin-bottom: 20px;
|
2312 |
}
|
|
|
2313 |
#seopress-notifications-center .seopress-alert:last-child {
|
2314 |
margin-bottom: 0;
|
2315 |
border-bottom: none;
|
2316 |
}
|
|
|
2317 |
#seopress-notifications-center .dashicons {
|
2318 |
display: flex;
|
2319 |
align-self: normal;
|
@@ -2323,21 +2771,25 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
2323 |
font-size: 30px;
|
2324 |
margin: 0 0 10px 0;
|
2325 |
}
|
|
|
2326 |
#seopress-admin-tabs #tab_seopress_notifications.seopress-tab {
|
2327 |
background: 0 0;
|
2328 |
padding: 0;
|
2329 |
border-radius: 0;
|
2330 |
width: 100%;
|
2331 |
}
|
|
|
2332 |
/* Notice */
|
2333 |
.seopress-notice #message {
|
2334 |
margin: 5px 10px 2px 0;
|
2335 |
}
|
|
|
2336 |
#seopress-notice a {
|
2337 |
position: relative;
|
2338 |
text-decoration: none;
|
2339 |
margin: 0 0 0 0.3rem;
|
2340 |
}
|
|
|
2341 |
#seopress-notice a .tooltip {
|
2342 |
white-space: pre;
|
2343 |
z-index: 200;
|
@@ -2357,13 +2809,16 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
2357 |
left: -100%;
|
2358 |
overflow: hidden;
|
2359 |
}
|
|
|
2360 |
#seopress-notice a:hover .tooltip {
|
2361 |
opacity: 1;
|
2362 |
visibility: visible;
|
2363 |
}
|
|
|
2364 |
.seopress-page-list {
|
2365 |
margin: 1.5rem auto;
|
2366 |
}
|
|
|
2367 |
.post-type-seopress_404 .seopress-notice,
|
2368 |
.post-type-seopress_schemas .seopress-notice,
|
2369 |
.post-type-seopress_bot .seopress-notice {
|
@@ -2372,11 +2827,13 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
2372 |
margin: 0 0 50px;
|
2373 |
width: calc(100% - 48px);
|
2374 |
}
|
|
|
2375 |
/* Searchbox */
|
2376 |
.seopress-search {
|
2377 |
position: relative;
|
2378 |
padding: 20px;
|
2379 |
}
|
|
|
2380 |
.seopress-search::before {
|
2381 |
content: "\f179";
|
2382 |
font-family: "Dashicons";
|
@@ -2385,9 +2842,11 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
2385 |
left: 30px;
|
2386 |
font-size: 20px;
|
2387 |
}
|
|
|
2388 |
.seopress-search input {
|
2389 |
padding-left: 40px;
|
2390 |
}
|
|
|
2391 |
/* Item */
|
2392 |
.seopress-item-toggle-options {
|
2393 |
position: relative;
|
@@ -2398,12 +2857,14 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
2398 |
transform: rotate(90deg);
|
2399 |
display: inline-block;
|
2400 |
}
|
|
|
2401 |
.seopress-item-toggle-options::before {
|
2402 |
content: "\f11c";
|
2403 |
font-family: "Dashicons";
|
2404 |
font-size: 18px;
|
2405 |
vertical-align: middle;
|
2406 |
}
|
|
|
2407 |
/* Card */
|
2408 |
.seopress-card {
|
2409 |
background: #fff;
|
@@ -2411,9 +2872,11 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
2411 |
border-radius: 3px;
|
2412 |
position: relative;
|
2413 |
}
|
2414 |
-
|
|
|
2415 |
margin-left: 0.5em;
|
2416 |
}
|
|
|
2417 |
.seopress-card-title {
|
2418 |
border-bottom: 1px solid var(--borderColorCard);
|
2419 |
padding: 18px 24px;
|
@@ -2421,15 +2884,20 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
2421 |
justify-content: space-between;
|
2422 |
align-items: center;
|
2423 |
}
|
2424 |
-
|
|
|
|
|
|
|
2425 |
cursor: move;
|
2426 |
}
|
|
|
2427 |
.seopress-card-title h2 {
|
2428 |
margin: 0;
|
2429 |
}
|
|
|
2430 |
.seopress-cart-list {
|
2431 |
border-bottom: 1px solid var(--borderColorCard);
|
2432 |
-
padding:
|
2433 |
display: flex;
|
2434 |
align-items: center;
|
2435 |
text-decoration: none;
|
@@ -2437,20 +2905,34 @@ body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
|
2437 |
font-weight: bold;
|
2438 |
line-height: 20px;
|
2439 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2440 |
.seopress-cart-list:last-child {
|
2441 |
border-bottom: none;
|
2442 |
}
|
|
|
2443 |
.seopress-cart-list:hover,
|
2444 |
.seopress-cart-list:focus,
|
2445 |
.seopress-cart-list:active {
|
2446 |
background: var(--backgroundSecondaryHover);
|
2447 |
}
|
|
|
2448 |
body .seopress-cart-list h3 {
|
2449 |
font-size: var(--fontSize);
|
2450 |
color: var(--primaryColor);
|
2451 |
font-weight: bold;
|
2452 |
margin: 0;
|
2453 |
}
|
|
|
2454 |
.seopress-cart-list p {
|
2455 |
color: var(--titleColor);
|
2456 |
font-weight: normal;
|
@@ -2458,10 +2940,12 @@ body .seopress-cart-list h3 {
|
|
2458 |
font-size: 12px;
|
2459 |
line-height: 20px;
|
2460 |
}
|
|
|
2461 |
.seopress-card-footer {
|
2462 |
padding: 10px 20px;
|
2463 |
border-top: 1px solid var(--borderColorLight40);
|
2464 |
}
|
|
|
2465 |
.seopress-card-popover {
|
2466 |
display: none;
|
2467 |
background: #fff;
|
@@ -2473,9 +2957,11 @@ body .seopress-cart-list h3 {
|
|
2473 |
right: 28px;
|
2474 |
z-index: 20;
|
2475 |
}
|
|
|
2476 |
.seopress-card-popover.is-open {
|
2477 |
display: block;
|
2478 |
}
|
|
|
2479 |
/* Quick tags */
|
2480 |
#seopress_cpt .tag-title,
|
2481 |
.seopress-button,
|
@@ -2488,6 +2974,7 @@ body .seopress-cart-list h3 {
|
|
2488 |
border-radius: 4px;
|
2489 |
transition: all 0.3s linear;
|
2490 |
}
|
|
|
2491 |
#seopress_cpt .wrap-tags,
|
2492 |
.seopress-option .wrap-tags,
|
2493 |
#seopress_pro_cpt .wrap-tags {
|
@@ -2496,9 +2983,11 @@ body .seopress-cart-list h3 {
|
|
2496 |
width: 100%;
|
2497 |
margin: 10px 0;
|
2498 |
}
|
|
|
2499 |
.seopress-option .wrap-tags {
|
2500 |
flex-wrap: wrap;
|
2501 |
}
|
|
|
2502 |
.seopress-option .wrap-tags button {
|
2503 |
margin-bottom: 10px;
|
2504 |
}
|
@@ -2518,6 +3007,7 @@ body .seopress-cart-list h3 {
|
|
2518 |
float: left;
|
2519 |
display: none;
|
2520 |
}
|
|
|
2521 |
#seopress_cpt .sp-tag-variables-list,
|
2522 |
#seopress_pro_cpt .sp-tag-variables-list,
|
2523 |
#seopress-tabs.wrap .sp-tag-variables-list {
|
@@ -2537,11 +3027,13 @@ body .seopress-cart-list h3 {
|
|
2537 |
list-style: none;
|
2538 |
padding: 0;
|
2539 |
}
|
|
|
2540 |
#seopress_cpt .sp-wrap-tag-variables-list.open,
|
2541 |
#seopress_pro_cpt .sp-wrap-tag-variables-list.open,
|
2542 |
#seopress-tabs .sp-wrap-tag-variables-list.open {
|
2543 |
display: block;
|
2544 |
}
|
|
|
2545 |
#seopress_cpt .seopress-tag-single-all.tag-title .dashicons,
|
2546 |
#seopress_cpt .seopress-tag-single-all.seopress-tag-dropdown .dashicons,
|
2547 |
#seopress_pro_cpt .seopress-tag-single-all.tag-title .dashicons,
|
@@ -2550,11 +3042,13 @@ body .seopress-cart-list h3 {
|
|
2550 |
margin: 0;
|
2551 |
transition: all 150ms linear;
|
2552 |
}
|
|
|
2553 |
#seopress_cpt .seopress-tag-single-all.open .dashicons,
|
2554 |
#seopress_pro_cpt .seopress-tag-single-all.open .dashicons,
|
2555 |
#seopress-tabs .seopress-tag-single-all.open .dashicons {
|
2556 |
transform: rotateX(180deg);
|
2557 |
}
|
|
|
2558 |
#seopress_cpt .sp-tag-variables-list li,
|
2559 |
#seopress_pro_cpt .sp-tag-variables-list li,
|
2560 |
#seopress-tabs.wrap .sp-tag-variables-list li {
|
@@ -2563,6 +3057,7 @@ body .seopress-cart-list h3 {
|
|
2563 |
margin: 0;
|
2564 |
border-bottom: 1px solid var(--borderColorLight40);
|
2565 |
}
|
|
|
2566 |
#seopress_cpt .sp-tag-variables-list li span,
|
2567 |
#seopress_pro_cpt .sp-tag-variables-list li span,
|
2568 |
#seopress-tabs .sp-tag-variables-list li span {
|
@@ -2571,6 +3066,7 @@ body .seopress-cart-list h3 {
|
|
2571 |
font-size: 12px;
|
2572 |
margin-bottom: 2px;
|
2573 |
}
|
|
|
2574 |
#seopress_cpt .sp-tag-variables-list li:hover,
|
2575 |
#seopress_pro_cpt .sp-tag-variables-list li:hover,
|
2576 |
#seopress-tabs.wrap .sp-tag-variables-list li:hover {
|
@@ -2578,6 +3074,7 @@ body .seopress-cart-list h3 {
|
|
2578 |
color: #fff;
|
2579 |
border-bottom-color: #fff;
|
2580 |
}
|
|
|
2581 |
#seopress_cpt .sp-tag-variables-list li::after,
|
2582 |
#seopress_pro_cpt .sp-tag-variables-list li::after,
|
2583 |
#seopress-tabs.wrap .sp-tag-variables-list li::after {
|
@@ -2590,6 +3087,7 @@ body .seopress-cart-list h3 {
|
|
2590 |
border-radius: 3px;
|
2591 |
font-size: 11px;
|
2592 |
}
|
|
|
2593 |
#seopress_cpt .tag-title .dashicons,
|
2594 |
.seopress-option .tag-title .dashicons,
|
2595 |
#seopress_pro_cpt .tag-title .dashicons,
|
@@ -2603,6 +3101,7 @@ body .seopress-cart-list h3 {
|
|
2603 |
color: var(--primaryColor);
|
2604 |
vertical-align: middle;
|
2605 |
}
|
|
|
2606 |
#seopress_cpt .tag-title:hover .dashicons,
|
2607 |
.seopress-option .tag-title:hover .dashicons,
|
2608 |
#seopress_pro_cpt .tag-title:hover .dashicons,
|
@@ -2610,9 +3109,11 @@ body .seopress-cart-list h3 {
|
|
2610 |
#seopress-tabs.wrap .seopress-tag-dropdown:hover .dashicons {
|
2611 |
color: #fff;
|
2612 |
}
|
|
|
2613 |
#seopress-tabs.wrap .seopress-tag-dropdown .dashicons {
|
2614 |
margin: 0;
|
2615 |
}
|
|
|
2616 |
.seopress-overlay-tag-dropdown {
|
2617 |
position: absolute;
|
2618 |
display: none;
|
@@ -2622,9 +3123,11 @@ body .seopress-cart-list h3 {
|
|
2622 |
height: 100%;
|
2623 |
z-index: 50;
|
2624 |
}
|
|
|
2625 |
.seopress-overlay-tag-dropdown.active {
|
2626 |
display: block;
|
2627 |
}
|
|
|
2628 |
#seopress_cpt .tag-title,
|
2629 |
.seopress-option .tag-title,
|
2630 |
#seopress_pro_cpt .tag-title,
|
@@ -2639,6 +3142,7 @@ body .seopress-cart-list h3 {
|
|
2639 |
align-items: center;
|
2640 |
color: var(--primaryColor);
|
2641 |
}
|
|
|
2642 |
#seopress_cpt .tag-title:hover,
|
2643 |
#seopress_cpt .tag-title:focus,
|
2644 |
.seopress-option .tag-title:hover,
|
@@ -2653,6 +3157,7 @@ body .seopress-cart-list h3 {
|
|
2653 |
background: var(--backgroundPrimaryHover);
|
2654 |
color: #fff;
|
2655 |
}
|
|
|
2656 |
@media only screen and (max-width: 782px) {
|
2657 |
#seopress_cpt .tag-title,
|
2658 |
.seopress-option .tag-title,
|
@@ -2668,37 +3173,45 @@ body .seopress-cart-list h3 {
|
|
2668 |
margin: 0;
|
2669 |
border-bottom: 1px solid var(--borderColorLight);
|
2670 |
}
|
|
|
2671 |
#seopress-content .seopress-reverse label,
|
2672 |
#seopress-content .seopress-useful-tools .widget-whois ul li span {
|
2673 |
font-weight: 700;
|
2674 |
}
|
|
|
2675 |
#seopress-content #seopress-reverse-url {
|
2676 |
width: 100%;
|
2677 |
margin: 10px 0;
|
2678 |
}
|
|
|
2679 |
#seopress-content .widget-reverse p {
|
2680 |
margin: 0;
|
2681 |
}
|
|
|
2682 |
/* Help tab */
|
2683 |
.seopress-styles #screen-meta {
|
2684 |
position: relative;
|
2685 |
top: 60px;
|
2686 |
}
|
|
|
2687 |
.seopress-styles #screen-meta-links .show-settings {
|
2688 |
box-shadow: none;
|
2689 |
}
|
|
|
2690 |
.seopress-styles #screen-meta-links .screen-meta-toggle {
|
2691 |
position: fixed;
|
2692 |
top: 32px;
|
2693 |
z-index: 2000;
|
2694 |
right: 40px;
|
2695 |
}
|
|
|
2696 |
@media only screen and (max-width: 782px) {
|
2697 |
.seopress-styles #screen-meta-links .screen-meta-toggle {
|
2698 |
position: relative;
|
2699 |
top: 60px;
|
2700 |
}
|
2701 |
}
|
|
|
2702 |
#seopress-content input.toggle,
|
2703 |
.seopress-option input.toggle,
|
2704 |
#seopress_cpt input.toggle {
|
@@ -2707,9 +3220,11 @@ body .seopress-cart-list h3 {
|
|
2707 |
opacity: 0;
|
2708 |
position: relative;
|
2709 |
}
|
|
|
2710 |
.seopress-feature input.toggle {
|
2711 |
display: block;
|
2712 |
}
|
|
|
2713 |
.seopress_wrap_single_cpt input.toggle,
|
2714 |
.seopress_wrap_tax input.toggle,
|
2715 |
#seopress_cpt input.toggle {
|
@@ -2717,6 +3232,7 @@ body .seopress-cart-list h3 {
|
|
2717 |
border: none;
|
2718 |
min-width: 0;
|
2719 |
}
|
|
|
2720 |
#seopress-content input.toggle + label,
|
2721 |
.seopress-option input.toggle + label,
|
2722 |
#seopress_cpt #tabs-1 input.toggle + label {
|
@@ -2729,17 +3245,21 @@ body .seopress-cart-list h3 {
|
|
2729 |
border-radius: 15px;
|
2730 |
margin: 0 10px 0 0;
|
2731 |
}
|
|
|
2732 |
#seopress-content input.toggle + label {
|
2733 |
margin: 0 0px 0 0;
|
2734 |
left: -20px;
|
2735 |
}
|
|
|
2736 |
#seopress_cpt #tabs-1 input.toggle + label {
|
2737 |
margin: 0;
|
2738 |
}
|
|
|
2739 |
.wrap-toggle-checkboxes input.toggle + label {
|
2740 |
float: left;
|
2741 |
margin-right: 10px;
|
2742 |
}
|
|
|
2743 |
#seopress-content input.toggle + label:before,
|
2744 |
.seopress-option input.toggle + label:before,
|
2745 |
#seopress_cpt input.toggle + label:before {
|
@@ -2754,6 +3274,7 @@ body .seopress-cart-list h3 {
|
|
2754 |
background: rgba(19, 191, 17, 0);
|
2755 |
transition: 0.25s ease-in-out;
|
2756 |
}
|
|
|
2757 |
#seopress-content input.toggle + label:after,
|
2758 |
.seopress-option input.toggle + label:after,
|
2759 |
#seopress_cpt input.toggle + label:after {
|
@@ -2769,6 +3290,7 @@ body .seopress-cart-list h3 {
|
|
2769 |
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2), 0 2px 4px rgba(0, 0, 0, 0.2);
|
2770 |
transition: 0.25s ease-in-out;
|
2771 |
}
|
|
|
2772 |
.seopress_wrap_single_cpt input.toggle + label,
|
2773 |
.seopress_wrap_single_cpt input.toggle + label:before,
|
2774 |
.seopress_wrap_tax input.toggle + label,
|
@@ -2778,12 +3300,14 @@ body .seopress-cart-list h3 {
|
|
2778 |
width: 40px;
|
2779 |
height: 20px;
|
2780 |
}
|
|
|
2781 |
.seopress_wrap_single_cpt input.toggle + label:after,
|
2782 |
.seopress_wrap_tax input.toggle + label:after,
|
2783 |
#seopress_cpt input.toggle + label:after {
|
2784 |
width: 20px;
|
2785 |
height: 20px;
|
2786 |
}
|
|
|
2787 |
#seopress-content input.toggle[data-toggle="1"] + label:before,
|
2788 |
.seopress-option input.toggle[data-toggle="1"] + label:before,
|
2789 |
#seopress_cpt input.toggle[data-toggle="1"] + label:before,
|
@@ -2794,6 +3318,7 @@ body .seopress-cart-list h3 {
|
|
2794 |
width: 40px;
|
2795 |
background: var(--backgroundPrimary);
|
2796 |
}
|
|
|
2797 |
#seopress-content input.toggle[data-toggle="1"] + label:after,
|
2798 |
.seopress-option input.toggle[data-toggle="1"] + label:after,
|
2799 |
#seopress_cpt input.toggle[data-toggle="1"] + label:after {
|
@@ -2801,33 +3326,39 @@ body .seopress-cart-list h3 {
|
|
2801 |
box-shadow: inset 0 0 0 1px var(--backgroundPrimary),
|
2802 |
0 2px 4px rgba(0, 0, 0, 0.2);
|
2803 |
}
|
|
|
2804 |
.seopress_wrap_single_cpt input.toggle[data-toggle="1"] + label:after,
|
2805 |
.seopress_wrap_tax input.toggle[data-toggle="1"] + label:after,
|
2806 |
#seopress_cpt input.toggle[data-toggle="1"] + label:after {
|
2807 |
box-shadow: inset 0 0 0 1px var(--backgroundPrimary),
|
2808 |
0 2px 4px rgba(0, 0, 0, 0.2);
|
2809 |
}
|
|
|
2810 |
#seopress-content .seopress-page-list {
|
2811 |
position: relative;
|
2812 |
display: block;
|
2813 |
max-width: 64rem;
|
2814 |
}
|
|
|
2815 |
@media only screen and (max-width: 782px) {
|
2816 |
#seopress-content .seopress-page-list {
|
2817 |
grid-template-columns: repeat(1, 1fr);
|
2818 |
}
|
2819 |
}
|
2820 |
-
|
|
|
|
|
2821 |
margin: 0;
|
2822 |
display: flex;
|
2823 |
position: relative;
|
2824 |
}
|
2825 |
-
|
2826 |
-
.
|
2827 |
display: inherit;
|
2828 |
position: inherit;
|
2829 |
margin: inherit;
|
2830 |
}
|
|
|
2831 |
@media only screen and (max-width: 782px) {
|
2832 |
.seopress-setup .wrap,
|
2833 |
.seopress-styles .wrap {
|
@@ -2836,6 +3367,7 @@ body .seopress-cart-list h3 {
|
|
2836 |
margin: inherit;
|
2837 |
}
|
2838 |
}
|
|
|
2839 |
/* Nav */
|
2840 |
.seopress-option .wrap div.nav-tab-wrapper {
|
2841 |
margin: 0;
|
@@ -2855,6 +3387,7 @@ body .seopress-cart-list h3 {
|
|
2855 |
padding: 0;
|
2856 |
}
|
2857 |
}
|
|
|
2858 |
#seopress-admin-tabs.wrap div.nav-tab-wrapper {
|
2859 |
background: #fff;
|
2860 |
margin: 0 auto;
|
@@ -2886,6 +3419,7 @@ body .seopress-cart-list h3 {
|
|
2886 |
display: block;
|
2887 |
}
|
2888 |
}
|
|
|
2889 |
.seopress-option .nav-tab {
|
2890 |
border: 0;
|
2891 |
background: 0 0;
|
@@ -2904,6 +3438,7 @@ body .seopress-cart-list h3 {
|
|
2904 |
font-size: 14px;
|
2905 |
text-decoration: none;
|
2906 |
}
|
|
|
2907 |
#seopress-admin-tabs .nav-tab {
|
2908 |
background: 0 0;
|
2909 |
opacity: 0.5;
|
@@ -2914,9 +3449,11 @@ body .seopress-cart-list h3 {
|
|
2914 |
display: inline-block;
|
2915 |
font-weight: normal;
|
2916 |
}
|
|
|
2917 |
#seopress-admin-tabs .nav-tab {
|
2918 |
width: 100%;
|
2919 |
}
|
|
|
2920 |
#seopress-admin-tabs .nav-tab-active,
|
2921 |
#seopress-admin-tabs .nav-tab-active:focus,
|
2922 |
#seopress-admin-tabs .nav-tab-active:focus:active,
|
@@ -2933,6 +3470,7 @@ body .seopress-cart-list h3 {
|
|
2933 |
position: relative;
|
2934 |
border-left: 3px solid var(--backgroundPrimary);
|
2935 |
}
|
|
|
2936 |
#seopress-admin-tabs .nav-tab-active,
|
2937 |
#seopress-admin-tabs .nav-tab-active:focus,
|
2938 |
#seopress-admin-tabs .nav-tab-active:focus:active,
|
@@ -2941,15 +3479,18 @@ body .seopress-cart-list h3 {
|
|
2941 |
border-bottom: 4px solid var(--backgroundPrimary);
|
2942 |
border-left: none;
|
2943 |
}
|
|
|
2944 |
#seopress-admin-tabs .nav-tab:hover,
|
2945 |
.seopress-option .nav-tab:hover {
|
2946 |
opacity: 1;
|
2947 |
}
|
|
|
2948 |
#seopress-admin-tabs .nav-tab:focus,
|
2949 |
.seopress-option .nav-tab:focus {
|
2950 |
outline: 0;
|
2951 |
box-shadow: none;
|
2952 |
}
|
|
|
2953 |
/* Snackbar */
|
2954 |
@keyframes sp-fade-in-out {
|
2955 |
0% {
|
@@ -2957,20 +3498,24 @@ body .seopress-cart-list h3 {
|
|
2957 |
bottom: 0;
|
2958 |
visibility: hidden;
|
2959 |
}
|
|
|
2960 |
25% {
|
2961 |
opacity: 1;
|
2962 |
bottom: 40px;
|
2963 |
visibility: visible;
|
2964 |
}
|
|
|
2965 |
75% {
|
2966 |
opacity: 1;
|
2967 |
visibility: visible;
|
2968 |
}
|
|
|
2969 |
100% {
|
2970 |
opacity: 0;
|
2971 |
visibility: hidden;
|
2972 |
}
|
2973 |
}
|
|
|
2974 |
.sp-components-snackbar-list {
|
2975 |
position: fixed;
|
2976 |
right: 0;
|
@@ -2984,12 +3529,14 @@ body .seopress-cart-list h3 {
|
|
2984 |
visibility: hidden;
|
2985 |
z-index: 1;
|
2986 |
}
|
|
|
2987 |
.sp-components-snackbar__content {
|
2988 |
display: flex;
|
2989 |
align-items: center;
|
2990 |
justify-content: space-between;
|
2991 |
line-height: 1.4;
|
2992 |
}
|
|
|
2993 |
.sp-components-snackbar {
|
2994 |
font-family: var(--fontFamily);
|
2995 |
font-size: var(--fontSize);
|
@@ -3000,6 +3547,7 @@ body .seopress-cart-list h3 {
|
|
3000 |
padding: 16px 24px;
|
3001 |
cursor: pointer;
|
3002 |
}
|
|
|
3003 |
.sp-components-snackbar .dashicons {
|
3004 |
color: #fff;
|
3005 |
}
|
5 |
#seopress_pro_cpt * {
|
6 |
box-sizing: border-box;
|
7 |
}
|
8 |
+
|
9 |
@font-face {
|
10 |
font-family: seopress;
|
11 |
src: url(../fonts/seopress.eot?81521271);
|
17 |
font-weight: 400;
|
18 |
font-style: normal;
|
19 |
}
|
20 |
+
|
21 |
[class*=" icon-seopress"],
|
22 |
[class^="icon-seopress-"] {
|
23 |
font-family: seopress !important;
|
24 |
font-size: 14px !important;
|
25 |
line-height: 24px !important;
|
26 |
}
|
27 |
+
|
28 |
#adminmenu div.wp-menu-image.dashicons-admin-seopress::before {
|
29 |
content: "\e800";
|
30 |
font-family: seopress;
|
32 |
font-size: 12px;
|
33 |
line-height: 20px;
|
34 |
}
|
35 |
+
|
36 |
#wpadminbar,
|
37 |
.seopress-option #wpcontent,
|
38 |
.seopress-styles #wpcontent,
|
70 |
--borderColorCard: #e2e4e7;
|
71 |
--borderColorTab: #c3c4c7;
|
72 |
}
|
73 |
+
|
74 |
.seopress-option .text-center,
|
75 |
.seopress-styles .text-center {
|
76 |
text-align: center;
|
77 |
}
|
78 |
+
|
79 |
/* Button */
|
80 |
.seopress-option .btn,
|
81 |
.seopress-styles .btn,
|
99 |
white-space: nowrap;
|
100 |
outline: 1px solid transparent;
|
101 |
}
|
102 |
+
|
103 |
.seopress-option .btnPrimary,
|
104 |
.seopress-styles .btnPrimary,
|
105 |
.post-type-seopress_404 .btnPrimary,
|
108 |
color: #fff;
|
109 |
text-decoration: none;
|
110 |
}
|
111 |
+
|
112 |
.seopress-option .btnPrimary:hover,
|
113 |
.seopress-styles .btnPrimary:hover,
|
114 |
.post-type-seopress_404 .btnPrimary:hover,
|
116 |
background: var(--backgroundPrimaryHover);
|
117 |
color: #fff;
|
118 |
}
|
119 |
+
|
120 |
.seopress-option .btnSecondary,
|
121 |
.seopress-styles .btnSecondary,
|
122 |
.post-type-seopress_404 .btnSecondary,
|
125 |
color: var(--primaryColor);
|
126 |
background: transparent;
|
127 |
}
|
128 |
+
|
129 |
.seopress-option .btnSecondary.is-deletable,
|
130 |
.seopress-styles .btnSecondary.is-deletable {
|
131 |
border-color: rgb(204, 24, 24);
|
132 |
color: rgb(204, 24, 24);
|
133 |
box-shadow: rgb(204 24 24) 0px 0px 0px 1px inset;
|
134 |
}
|
135 |
+
|
136 |
.seopress-option .btnTertiary,
|
137 |
.seopress-styles .btnTertiary,
|
138 |
.post-type-seopress_404 .btnTertiary,
|
140 |
color: var(--primaryColor);
|
141 |
background: transparent;
|
142 |
}
|
143 |
+
|
144 |
.seopress-option .btnTertiary:hover,
|
145 |
.seopress-styles .btnTertiary:hover,
|
146 |
.post-type-seopress_404 .btnTertiary:hover,
|
147 |
.post-type-seopress_schemas .btnTertiary:hover {
|
148 |
box-shadow: inset 0 0 0 1px var(--primaryColor);
|
149 |
}
|
150 |
+
|
151 |
.seopress-option hr,
|
152 |
.seopress-styles hr,
|
153 |
.seopress-setup hr {
|
159 |
border-top: 1px solid #dcdcde;
|
160 |
border-bottom: 1px solid #f6f7f7;
|
161 |
}
|
162 |
+
|
163 |
.seopress-setup hr {
|
164 |
margin-left: 10px;
|
165 |
}
|
166 |
+
|
167 |
#seopress-tabs.wrap .list-none {
|
168 |
list-style: none;
|
169 |
padding-left: 0;
|
170 |
}
|
171 |
+
|
172 |
.seopress-option .dashicons,
|
173 |
.seopress-page-list .dashicons {
|
174 |
vertical-align: middle;
|
175 |
margin-right: 5px;
|
176 |
text-decoration: none;
|
177 |
}
|
178 |
+
|
179 |
#seopress-news-panel .seopress-item-inner .dashicons {
|
180 |
vertical-align: top;
|
181 |
}
|
182 |
+
|
183 |
.seopress-button {
|
184 |
text-transform: uppercase;
|
185 |
background: #fff;
|
201 |
-moz-appearance: none;
|
202 |
appearance: none;
|
203 |
}
|
204 |
+
|
205 |
.seopress-button:hover {
|
206 |
border-color: #a8bece;
|
207 |
color: #00a0d2;
|
208 |
}
|
209 |
+
|
210 |
.seopress-button .dashicons {
|
211 |
vertical-align: middle;
|
212 |
}
|
213 |
+
|
214 |
/* Headings */
|
215 |
body .seopress-option h2 {
|
216 |
color: var(--titleColor);
|
218 |
line-height: 24px;
|
219 |
font-weight: normal;
|
220 |
}
|
221 |
+
|
222 |
body .seopress-option h3 {
|
223 |
color: var(--titleColor);
|
224 |
font-size: 16px;
|
225 |
line-height: 20px;
|
226 |
}
|
227 |
+
|
228 |
#seopress_content_analysis input[type="text"],
|
229 |
#seopress_content_analysis textarea,
|
230 |
#seopress_cpt input[type="text"],
|
234 |
width: 100%;
|
235 |
display: inline-block;
|
236 |
}
|
237 |
+
|
238 |
#seopress_cpt #tabs-6 input[type="number"] {
|
239 |
min-width: 200px;
|
240 |
}
|
241 |
+
|
242 |
#seopress_cpt #tabs-6 #wrap-videos .video:first-child .remove-video {
|
243 |
display: none;
|
244 |
}
|
245 |
+
|
246 |
#seopress_pro_cpt label,
|
247 |
#seopress_cpt label,
|
248 |
#seopress_content_analysis label {
|
250 |
display: inline-block;
|
251 |
width: 100%;
|
252 |
}
|
253 |
+
|
254 |
#seopress_cpt #tabs-6 {
|
255 |
padding: 0;
|
256 |
}
|
257 |
+
|
258 |
/* Forms */
|
259 |
body .seopress-option input[type="text"],
|
260 |
body .seopress-option input[type="password"],
|
265 |
box-shadow: 0 2px 6px rgb(0 0 0 / 5%);
|
266 |
width: 100%;
|
267 |
}
|
268 |
+
|
269 |
body .seopress-option select {
|
270 |
min-height: 50px;
|
271 |
}
|
272 |
+
|
273 |
.wrap-opening-hours select {
|
274 |
width: inherit;
|
275 |
}
|
276 |
+
|
277 |
body .seopress-option input[type="text"],
|
278 |
body .seopress-option input[type="password"],
|
279 |
body .seopress-option input[type="number"] {
|
280 |
line-height: 46px;
|
281 |
}
|
282 |
+
|
283 |
body .seopress-option input[type="text"]:hover,
|
284 |
body .seopress-option input[type="password"]:hover,
|
285 |
body .seopress-option input[type="number"]:hover,
|
287 |
body .seopress-option textarea:hover {
|
288 |
border-color: #787c82;
|
289 |
}
|
290 |
+
|
291 |
body .seopress-option input[type="text"]:focus,
|
292 |
body .seopress-option input[type="password"]:focus,
|
293 |
body .seopress-option input[type="number"]:focus,
|
301 |
box-shadow: 0 0 0 2px var(--primaryColor);
|
302 |
border-color: transparent;
|
303 |
}
|
304 |
+
|
305 |
@media only screen and (max-width: 1024px) {
|
306 |
body .seopress-option input[type="text"],
|
307 |
body .seopress-option input[type="password"],
|
311 |
width: 100%;
|
312 |
}
|
313 |
}
|
314 |
+
|
315 |
body .seopress-option input[type="checkbox"],
|
316 |
#seopress_cpt input[type="checkbox"],
|
317 |
#seopress_content_analysis input[type="checkbox"],
|
345 |
appearance: none;
|
346 |
transition: 0.1s border-color ease-in-out;
|
347 |
}
|
348 |
+
|
349 |
body .seopress-option input[type="checkbox"]:checked::before,
|
350 |
#seopress_cpt input[type="checkbox"]:checked::before,
|
351 |
#seopress_content_analysis input[type="checkbox"]:checked::before,
|
356 |
width: 20px;
|
357 |
height: 20px;
|
358 |
}
|
359 |
+
|
360 |
body .seopress-option input[type="checkbox"]:focus,
|
361 |
#seopress_cpt input[type="checkbox"]:focus,
|
362 |
#seopress_content_analysis input[type="checkbox"]:focus,
|
368 |
box-shadow: 0 0 0 2px var(--primaryColor);
|
369 |
border-color: transparent;
|
370 |
}
|
371 |
+
|
372 |
.field-required,
|
373 |
.field-recommended {
|
374 |
font-weight: bold;
|
375 |
}
|
376 |
+
|
377 |
.field-required {
|
378 |
color: var(--colorAlert);
|
379 |
}
|
380 |
+
|
381 |
.field-recommended {
|
382 |
color: var(--colorWarning);
|
383 |
}
|
384 |
+
|
385 |
/* Table */
|
386 |
.form-table td {
|
387 |
padding: 15px 0;
|
388 |
}
|
389 |
+
|
390 |
.form-table td p {
|
391 |
margin: 4px 0;
|
392 |
}
|
393 |
+
|
394 |
.form-table td p.seopress_wrap_archive_cpt {
|
395 |
margin-bottom: 15px;
|
396 |
}
|
397 |
+
|
398 |
table.wp-list-table .manage_column.column-seopress_noindex,
|
399 |
table.wp-list-table .manage_column.column-seopress_tkw,
|
400 |
table.wp-list-table .manage_column.column-seopress_redirect_url,
|
405 |
table.wp-list-table .manage_column.column-seopress_insights {
|
406 |
width: 7% !important;
|
407 |
}
|
408 |
+
|
409 |
.post-type-product table.fixed thead .column-seopress_title,
|
410 |
.post-type-product table.fixed thead .column-seopress_desc {
|
411 |
width: 8%;
|
412 |
}
|
413 |
+
|
414 |
.post-type-product table.fixed thead .column-seopress_redirect_enable,
|
415 |
.post-type-product table.fixed thead .column-seopress_redirect_url,
|
416 |
.post-type-product table.fixed thead .column-seopress_canonical,
|
419 |
.post-type-product .fixed .column-seopress_ps {
|
420 |
width: 6%;
|
421 |
}
|
422 |
+
|
423 |
.post-type-product .fixed .column-seopress_score {
|
424 |
width: 50px;
|
425 |
}
|
426 |
+
|
427 |
table.fixed thead .column-seopress_nofollow,
|
428 |
table.fixed thead .column-seopress_noindex {
|
429 |
width: 100px;
|
430 |
}
|
431 |
+
|
432 |
@media only screen and (max-width: 1200px) {
|
433 |
table.fixed .column-seopress_title > div,
|
434 |
table.fixed .column-seopress_desc > div,
|
439 |
overflow: hidden;
|
440 |
text-overflow: ellipsis;
|
441 |
}
|
442 |
+
|
443 |
table.fixed thead .column-seopress_redirect_enable,
|
444 |
table.fixed thead .column-seopress_redirect_url,
|
445 |
table.fixed thead .column-seopress_canonical,
|
454 |
text-overflow: ellipsis;
|
455 |
}
|
456 |
}
|
457 |
+
|
458 |
.post-type-seopress_backlinks .wp-list-table .column-seopress_backlinks_url {
|
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 |
+
|
468 |
/* SEOPress header */
|
469 |
.seopress-styles #seopress-header {
|
470 |
padding: 22px 120px 22px 40px;
|
479 |
justify-content: space-between;
|
480 |
align-items: center;
|
481 |
}
|
482 |
+
|
483 |
.folded.seopress-styles #seopress-header {
|
484 |
width: calc(100% - 35px);
|
485 |
}
|
486 |
+
|
487 |
@media only screen and (max-width: 782px) {
|
488 |
.seopress-styles #seopress-header {
|
489 |
width: 100%;
|
492 |
position: absolute;
|
493 |
}
|
494 |
}
|
495 |
+
|
496 |
#seopress-header #seopress-navbar ul {
|
497 |
margin: 0;
|
498 |
padding: 0;
|
499 |
}
|
500 |
+
|
501 |
#seopress-header #seopress-navbar ul li {
|
502 |
margin: 0;
|
503 |
display: inline-block;
|
505 |
padding: 0 20px 0 0;
|
506 |
font-weight: bold;
|
507 |
}
|
508 |
+
|
509 |
#seopress-header #seopress-navbar ul li::after {
|
510 |
content: "/";
|
511 |
color: var(--paragraphColor);
|
514 |
top: 0;
|
515 |
left: calc(100% - 10px);
|
516 |
}
|
517 |
+
|
518 |
#seopress-header #seopress-navbar ul li:last-child:after {
|
519 |
content: none;
|
520 |
}
|
521 |
+
|
522 |
/* Dashboard */
|
523 |
.sp-dashboard-card-highlight {
|
524 |
border: 1px dashed #c3c4c7;
|
525 |
margin: 20px 0;
|
526 |
}
|
527 |
+
|
528 |
.seopress-summary-items {
|
529 |
display: flex;
|
530 |
flex-wrap: wrap;
|
531 |
}
|
532 |
+
|
533 |
.seopress-summary-item {
|
534 |
display: flex;
|
535 |
flex-direction: column;
|
542 |
color: var(--colorDark);
|
543 |
justify-content: center;
|
544 |
}
|
545 |
+
|
546 |
@media only screen and (max-width: 782px) {
|
547 |
.seopress-summary-item {
|
548 |
width: 100%;
|
549 |
}
|
550 |
}
|
551 |
+
|
552 |
.seopress-summary-item-label {
|
553 |
display: block;
|
554 |
margin-bottom: 16px;
|
556 |
font-size: 14px;
|
557 |
line-height: 20px;
|
558 |
}
|
559 |
+
|
560 |
.seopress-summary-item-data {
|
561 |
margin-bottom: 4px;
|
562 |
font-weight: 500;
|
564 |
font-size: 20px;
|
565 |
line-height: 28px;
|
566 |
}
|
567 |
+
|
568 |
.seopress-summary-item-data small {
|
569 |
font-weight: normal;
|
570 |
font-size: 11px;
|
571 |
text-transform: uppercase;
|
572 |
}
|
573 |
+
|
574 |
+
.seopress-tab.inside,
|
575 |
+
.seopress-summary-items .inside {
|
576 |
padding: 20px;
|
577 |
}
|
578 |
+
|
579 |
#seopress-admin-tabs.ui-tabs {
|
580 |
position: relative;
|
581 |
padding: 0.2em;
|
583 |
font-family: inherit;
|
584 |
font-size: inherit;
|
585 |
}
|
586 |
+
|
587 |
#seopress-admin-tabs.ui-tabs .ui-tabs-nav li {
|
588 |
list-style: none;
|
589 |
float: left;
|
595 |
border: none;
|
596 |
background: 0 0;
|
597 |
}
|
598 |
+
|
599 |
#seopress-admin-tabs.ui-tabs .ui-tabs-nav li a {
|
600 |
float: left;
|
601 |
padding: 0.38em 1em 0.75rem;
|
602 |
outline: 0;
|
603 |
border-bottom: 2px solid #fff;
|
604 |
}
|
605 |
+
|
606 |
#seopress-admin-tabs.ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
607 |
margin-bottom: -1px;
|
608 |
}
|
609 |
+
|
610 |
#seopress-admin-tabs.ui-tabs .ui-tabs-nav li.ui-state-disabled a,
|
611 |
#seopress-admin-tabs.ui-tabs .ui-tabs-nav li.ui-tabs-active a,
|
612 |
#seopress-admin-tabs.ui-tabs .ui-tabs-nav li.ui-tabs-loading a {
|
614 |
border-bottom: 2px solid #23282d;
|
615 |
color: #23282d;
|
616 |
}
|
617 |
+
|
618 |
#seopress-admin-tabs.ui-tabs .ui-tabs-nav li a,
|
619 |
#seopress-admin-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a {
|
620 |
cursor: pointer;
|
621 |
color: #0073aa;
|
622 |
text-decoration: none;
|
623 |
}
|
624 |
+
|
625 |
#seopress-admin-tabs.ui-tabs-vertical {
|
626 |
width: 55em;
|
627 |
}
|
628 |
+
|
629 |
#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-nav {
|
630 |
padding: 0.2em 0.1em 0.2em 0.2em;
|
631 |
float: left;
|
632 |
width: 12em;
|
633 |
}
|
634 |
+
|
635 |
#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-nav li {
|
636 |
clear: left;
|
637 |
width: 100%;
|
639 |
border-right-width: 0 !important;
|
640 |
margin: 0 -1px 0.2em 0;
|
641 |
}
|
642 |
+
|
643 |
#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-nav li.ui-tabs-active {
|
644 |
padding-bottom: 0;
|
645 |
padding-right: 0.1em;
|
646 |
border-right-width: 1px;
|
647 |
}
|
648 |
+
|
649 |
#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-panel {
|
650 |
padding: 1em;
|
651 |
float: right;
|
652 |
width: 40em;
|
653 |
}
|
654 |
+
|
655 |
#seopress-admin-tabs.wrap {
|
656 |
background: #fff;
|
657 |
display: block;
|
659 |
max-width: 100%;
|
660 |
margin: 0 auto;
|
661 |
}
|
662 |
+
|
663 |
@media only screen and (max-width: 1024px) {
|
664 |
#seopress-admin-tabs.wrap {
|
665 |
width: 100%;
|
666 |
}
|
667 |
}
|
668 |
+
|
669 |
#seopress-admin-tabs .seopress-tab {
|
670 |
width: 100%;
|
671 |
display: none;
|
672 |
}
|
673 |
+
|
674 |
#seopress-admin-tabs .seopress-tab.active {
|
675 |
visibility: visible;
|
676 |
overflow: inherit;
|
679 |
display: inherit;
|
680 |
position: relative;
|
681 |
}
|
682 |
+
|
683 |
.seopress-dashboard-columns {
|
684 |
display: flex;
|
685 |
max-width: 64rem;
|
687 |
justify-content: space-between;
|
688 |
flex-direction: row;
|
689 |
}
|
690 |
+
|
691 |
.seopress-dashboard-column {
|
692 |
align-self: flex-start;
|
693 |
width: calc(50% - 12px);
|
694 |
margin: 0;
|
695 |
}
|
696 |
+
|
697 |
@media only screen and (max-width: 782px) {
|
698 |
.seopress-dashboard-columns {
|
699 |
max-width: 100%;
|
700 |
flex-direction: column;
|
701 |
}
|
702 |
+
|
703 |
.seopress-dashboard-column {
|
704 |
width: 100%;
|
705 |
}
|
706 |
}
|
707 |
+
|
708 |
#seopress-admin-tabs .ui-tabs-nav,
|
709 |
.seopress-get-started {
|
710 |
margin: 0 auto 20px;
|
713 |
width: 100%;
|
714 |
border-radius: 0 0 4px 4px;
|
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 |
+
|
723 |
.seopress-get-started .inside {
|
724 |
padding: 2rem;
|
725 |
}
|
726 |
+
|
727 |
.seopress-get-started .preheader {
|
728 |
text-transform: uppercase;
|
729 |
font-size: 11px;
|
730 |
font-weight: 600;
|
731 |
color: var(--paragraphColor);
|
732 |
}
|
733 |
+
|
734 |
.seopress-activity-panel-tabs {
|
735 |
height: 60px;
|
736 |
display: flex;
|
737 |
align-items: center;
|
738 |
}
|
739 |
+
|
740 |
.seopress-activity-panel-tabs .btn {
|
741 |
display: flex;
|
742 |
flex-direction: column;
|
746 |
padding: 10px 26px;
|
747 |
border-bottom: 3px solid transparent;
|
748 |
}
|
749 |
+
|
750 |
.seopress-activity-panel-tabs .btn:hover {
|
751 |
background: var(--backgroundSecondaryHover);
|
752 |
}
|
753 |
+
|
754 |
.seopress-activity-panel-tabs .btn.is-active {
|
755 |
border-bottom: 3px solid var(--backgroundPrimary);
|
756 |
color: var(--colorDark);
|
757 |
}
|
758 |
+
|
759 |
.seopress-activity-panel-wrapper {
|
760 |
height: calc(100vh - 92px);
|
761 |
top: 92px;
|
770 |
overflow-x: hidden;
|
771 |
overflow-y: auto;
|
772 |
}
|
773 |
+
|
774 |
@media only screen and (max-width: 782px) {
|
775 |
.seopress-activity-panel-wrapper {
|
776 |
top: 106px;
|
777 |
}
|
778 |
}
|
779 |
+
|
780 |
.seopress-activity-panel-wrapper.is-open {
|
781 |
transform: none;
|
782 |
box-shadow: 0 12px 12px 0 rgb(85 93 102 / 30%);
|
783 |
}
|
784 |
+
|
785 |
.seopress-activity-panel-header {
|
786 |
background: #e0e0e0;
|
787 |
padding: 16px 24px;
|
788 |
}
|
789 |
+
|
790 |
.seopress-activity-panel-content {
|
791 |
background: #fff;
|
792 |
padding: 16px 24px;
|
793 |
}
|
794 |
+
|
795 |
.seopress-list-items,
|
796 |
.seopress-list-items .seopress-item {
|
797 |
margin: 0;
|
798 |
}
|
799 |
+
|
800 |
.seopress-list-items .seopress-item {
|
801 |
border-bottom: 1px solid var(--borderColorLight40);
|
802 |
}
|
803 |
+
|
804 |
.seopress-list-items .seopress-item:last-child {
|
805 |
border-bottom: none;
|
806 |
}
|
807 |
+
|
808 |
.seopress-list-items .seopress-item .seopress-item-inner {
|
809 |
color: var(--primaryColor);
|
810 |
text-decoration: none;
|
814 |
font-weight: bold;
|
815 |
width: 100%;
|
816 |
}
|
817 |
+
|
818 |
.seopress-option .has-action {
|
819 |
display: flex;
|
820 |
align-items: center;
|
821 |
}
|
822 |
+
|
823 |
.seopress-list-items .seopress-item .seopress-item-inner:hover {
|
824 |
background: var(--backgroundSecondaryHover);
|
825 |
}
|
826 |
+
|
827 |
.seopress-list-items .seopress-item-before,
|
828 |
.seopress-list-items .seopress-item-after {
|
829 |
margin: 0px 20px 0 10px;
|
830 |
position: relative;
|
831 |
}
|
832 |
+
|
833 |
.seopress-list-items .seopress-item-before::before,
|
834 |
.seopress-list-items .seopress-item-after::after {
|
835 |
content: "\f330";
|
838 |
font-size: 20px;
|
839 |
font-weight: normal;
|
840 |
}
|
841 |
+
|
842 |
.seopress-list-items .seopress-item-after {
|
843 |
margin-left: auto;
|
844 |
padding-left: 20px;
|
845 |
margin-right: 0;
|
846 |
}
|
847 |
+
|
848 |
.seopress-list-items .seopress-item-after::after {
|
849 |
content: "\f345";
|
850 |
}
|
851 |
+
|
852 |
.seopress-list-items .seopress-item .seopress-item-title {
|
853 |
margin: 5px 0;
|
854 |
color: var(--primaryColor);
|
855 |
}
|
856 |
+
|
857 |
.seopress-list-items .seopress-item .seopress-item-date {
|
858 |
color: var(--paragraphColor);
|
859 |
font-weight: normal;
|
860 |
margin: 0;
|
861 |
}
|
862 |
+
|
863 |
.seopress-list-items .seopress-item .seopress-item-content {
|
864 |
color: var(--colorDark);
|
865 |
font-weight: normal;
|
866 |
margin: 0;
|
867 |
}
|
868 |
+
|
869 |
.seopress-list-items .seopress-item .seopress-item-inner.check,
|
870 |
.indexing-log {
|
871 |
position: relative;
|
872 |
}
|
873 |
+
|
874 |
.seopress-list-items .seopress-item .seopress-item-inner.check::before,
|
875 |
.indexing-log::before {
|
876 |
content: "";
|
886 |
line-height: 32px;
|
887 |
text-align: center;
|
888 |
}
|
889 |
+
|
890 |
.seopress-list-items .seopress-item .seopress-item-inner.done::before,
|
891 |
.indexing-log.indexing-done::before,
|
892 |
.indexing-log.indexing-failed::before {
|
895 |
content: "\f15e";
|
896 |
font-family: "Dashicons";
|
897 |
}
|
898 |
+
|
899 |
.indexing-log.indexing-done::before {
|
900 |
background: var(--colorSuccess);
|
901 |
}
|
902 |
+
|
903 |
.indexing-log.indexing-failed::before {
|
904 |
background: var(--colorAlert);
|
905 |
content: "\f335";
|
906 |
}
|
907 |
+
|
908 |
/* Tooltip */
|
909 |
.sp-tooltip {
|
910 |
position: relative;
|
917 |
border: none;
|
918 |
padding: 0;
|
919 |
}
|
920 |
+
|
921 |
.sp-tooltip .dashicons {
|
922 |
color: var(--colorDark);
|
923 |
}
|
924 |
+
|
925 |
.sp-tooltip .sp-tooltiptext {
|
926 |
visibility: hidden;
|
927 |
position: absolute;
|
937 |
word-break: break-word;
|
938 |
text-transform: none;
|
939 |
}
|
940 |
+
|
941 |
.sp-tooltip .sp-tooltiptext::before {
|
942 |
border: 8px solid var(--borderColorLight40);
|
943 |
top: -8px;
|
944 |
}
|
945 |
+
|
946 |
.sp-tooltip .sp-tooltiptext::after {
|
947 |
border: 8px solid #fff;
|
948 |
top: -6px;
|
949 |
}
|
950 |
+
|
951 |
.sp-tooltip .sp-tooltiptext::before,
|
952 |
.sp-tooltip .sp-tooltiptext::after {
|
953 |
border-bottom-style: solid;
|
962 |
line-height: 0;
|
963 |
left: 30px;
|
964 |
}
|
965 |
+
|
966 |
.sp-tooltip:hover .sp-tooltiptext,
|
967 |
.sp-tooltip:focus .sp-tooltiptext,
|
968 |
.sp-tooltip:active .sp-tooltiptext {
|
969 |
visibility: visible;
|
970 |
}
|
971 |
+
|
972 |
.sp-tooltip .sp-tooltip-headings {
|
973 |
font-size: 18px;
|
974 |
font-weight: 600;
|
975 |
margin-bottom: 20px;
|
976 |
display: block;
|
977 |
}
|
978 |
+
|
979 |
.sp-tooltip .sp-tooltip-desc {
|
980 |
margin-bottom: 20px;
|
981 |
display: block;
|
984 |
font-size: var(--fontSize);
|
985 |
line-height: 1.5;
|
986 |
}
|
987 |
+
|
988 |
.sp-tooltip .sp-tooltip-code {
|
989 |
font-family: Menlo, Monaco, Andale Mono, Courier New, monospace;
|
990 |
display: block;
|
992 |
color: var(--colorPre);
|
993 |
font-size: 11px;
|
994 |
}
|
995 |
+
|
996 |
/* Content Analysis */
|
997 |
.analysis-score .sp-tooltip {
|
998 |
vertical-align: middle;
|
999 |
font-size: 0.75em;
|
1000 |
}
|
1001 |
+
|
1002 |
#seopress_content_analysis .wrap-insights-post .sp-tooltip * {
|
1003 |
font-weight: normal;
|
1004 |
}
|
1005 |
+
|
1006 |
#seopress_content_analysis .wrap-insights-post .sp-tooltip-headings {
|
1007 |
font-weight: bold;
|
1008 |
}
|
1009 |
+
|
1010 |
#seopress_content_analysis a {
|
1011 |
color: var(--backgroundPrimary);
|
1012 |
}
|
1013 |
+
|
1014 |
#seopress_content_analysis a.nounderline,
|
1015 |
#seopress_content_analysis a.nounderline:hover {
|
1016 |
text-decoration: none;
|
1017 |
}
|
1018 |
+
|
1019 |
#seopress_content_analysis .wrap-seopress-analysis {
|
1020 |
display: inline-block;
|
1021 |
width: 100%;
|
1022 |
}
|
1023 |
+
|
1024 |
#seopress_content_analysis .col-left {
|
1025 |
width: calc(50% - 30px);
|
1026 |
float: left;
|
1027 |
margin-right: 30px;
|
1028 |
}
|
1029 |
+
|
1030 |
#seopress_content_analysis .col-right {
|
1031 |
float: right;
|
1032 |
width: 50%;
|
1033 |
}
|
1034 |
+
|
1035 |
#seopress_content_analysis #seopress_suggestions {
|
1036 |
display: inline-block;
|
1037 |
width: 100%;
|
1041 |
position: relative;
|
1042 |
left: -5px;
|
1043 |
}
|
1044 |
+
|
1045 |
#seopress_content_analysis #seopress_suggestions li {
|
1046 |
list-style: none;
|
1047 |
margin: 5px;
|
1048 |
display: inline-block;
|
1049 |
}
|
1050 |
+
|
1051 |
#seopress_content_analysis .analysis-score {
|
1052 |
clear: both;
|
1053 |
border-top: 1px solid var(--borderColorCard);
|
1055 |
justify-content: space-between;
|
1056 |
align-items: center;
|
1057 |
}
|
1058 |
+
|
1059 |
.column-seopress_score .analysis-score {
|
1060 |
display: flex;
|
1061 |
align-content: center;
|
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;
|
1113 |
+
margin: 20px 0;
|
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;
|
1132 |
vertical-align: middle;
|
1133 |
margin-right: 15px;
|
1134 |
}
|
1135 |
+
|
1136 |
.column-seopress_score .analysis-score p,
|
1137 |
.column-seopress_score .analysis-score svg {
|
1138 |
margin: 0;
|
1139 |
}
|
1140 |
+
|
1141 |
@keyframes loadingPulse {
|
1142 |
0% {
|
1143 |
stroke: #adc5d2;
|
1144 |
}
|
1145 |
+
|
1146 |
50% {
|
1147 |
stroke: #00a0d2;
|
1148 |
}
|
1149 |
+
|
1150 |
100% {
|
1151 |
stroke: #adc5d2;
|
1152 |
}
|
1153 |
}
|
1154 |
+
|
1155 |
#seopress_content_analysis .analysis-score .loading #bar {
|
1156 |
stroke-dashoffset: 0 !important;
|
1157 |
stroke: #adc5d2 !important;
|
1158 |
animation: loadingPulse 3s infinite ease-in-out;
|
1159 |
}
|
1160 |
+
|
1161 |
#seopress_content_analysis .analysis-score .good #bar,
|
1162 |
.column-seopress_score .analysis-score #bar.good {
|
1163 |
stroke: var(--colorSuccess);
|
1164 |
}
|
1165 |
+
|
1166 |
#seopress_content_analysis .analysis-score .notgood #bar,
|
1167 |
.column-seopress_score .analysis-score #bar.notgood {
|
1168 |
stroke-dashoffset: 101px;
|
1169 |
stroke: var(--colorWarning);
|
1170 |
}
|
1171 |
+
|
1172 |
#seopress_content_analysis .analysis-score svg circle,
|
1173 |
.column-seopress_score .analysis-score svg circle {
|
1174 |
stroke-dashoffset: 0;
|
1176 |
stroke: #ccc;
|
1177 |
stroke-width: 2em;
|
1178 |
}
|
1179 |
+
|
1180 |
#tab_seopress_page_speed .ps-score svg path,
|
1181 |
#tab_seopress_ps .ps-score svg path {
|
1182 |
stroke-linecap: round;
|
1183 |
stroke-width: 2.8;
|
1184 |
fill: none;
|
1185 |
}
|
1186 |
+
|
1187 |
#tab_seopress_page_speed .ps-score,
|
1188 |
#tab_seopress_ps .ps-score {
|
1189 |
position: relative;
|
1190 |
display: inline-block;
|
1191 |
}
|
1192 |
+
|
1193 |
#tab_seopress_page_speed .ps-score svg,
|
1194 |
#tab_seopress_ps .ps-score svg {
|
1195 |
width: 80px;
|
1196 |
height: 80px;
|
1197 |
}
|
1198 |
+
|
1199 |
#tab_seopress_page_speed .ps-score span,
|
1200 |
#tab_seopress_ps .ps-score span {
|
1201 |
font-weight: bold;
|
1209 |
justify-content: center;
|
1210 |
margin: 0;
|
1211 |
}
|
1212 |
+
|
1213 |
#tab_seopress_page_speed .ps-score.green #bar,
|
1214 |
#tab_seopress_ps .ps-score.green #bar {
|
1215 |
stroke: var(--colorSuccess);
|
1216 |
}
|
1217 |
+
|
1218 |
#tab_seopress_page_speed .ps-score.yellow #bar,
|
1219 |
#tab_seopress_ps .ps-score.yellow #bar {
|
1220 |
stroke: var(--colorWarning);
|
1221 |
}
|
1222 |
+
|
1223 |
#tab_seopress_page_speed .ps-score.red #bar,
|
1224 |
#tab_seopress_ps .ps-score.red #bar {
|
1225 |
stroke: var(--colorAlert);
|
1226 |
}
|
1227 |
+
|
1228 |
#tab_seopress_ps .score,
|
1229 |
.wrap-seopress-score .score {
|
1230 |
width: 12px;
|
1233 |
margin-right: 10px;
|
1234 |
vertical-align: middle;
|
1235 |
}
|
1236 |
+
|
1237 |
#tab_seopress_ps .score.red,
|
1238 |
.wrap-seopress-score .score.red {
|
1239 |
border-bottom-color: var(--colorAlert);
|
1246 |
border-right-style: solid;
|
1247 |
border-right-width: 6px;
|
1248 |
}
|
1249 |
+
|
1250 |
.wrap-seopress-score small {
|
1251 |
font-size: 12px;
|
1252 |
}
|
1253 |
+
|
1254 |
.wrap-seopress-score small.red,
|
1255 |
.wrap-seopress-score small.yellow {
|
1256 |
color: var(--colorAlert);
|
1257 |
}
|
1258 |
+
|
1259 |
#tab_seopress_ps .score.yellow,
|
1260 |
.wrap-seopress-score .score.yellow {
|
1261 |
background-color: var(--colorWarning);
|
1262 |
display: inline-block;
|
1263 |
}
|
1264 |
+
|
1265 |
#tab_seopress_ps .score.green,
|
1266 |
.wrap-seopress-score .score.green {
|
1267 |
border-radius: 100%;
|
1268 |
background-color: var(--colorSuccess);
|
1269 |
}
|
1270 |
+
|
1271 |
.wrap-seopress-score small.green {
|
1272 |
color: var(--colorSuccess);
|
1273 |
}
|
1274 |
+
|
1275 |
.wrap-seopress-score .score.null {
|
1276 |
background: #ccc;
|
1277 |
border-radius: 100%;
|
1278 |
}
|
1279 |
+
|
1280 |
#seopress_content_analysis .gr-analysis {
|
1281 |
clear: both;
|
1282 |
}
|
1283 |
+
|
1284 |
#seopress_content_analysis .gr-analysis-title {
|
1285 |
border-top: 1px solid var(--borderColorCard);
|
1286 |
position: relative;
|
1287 |
}
|
1288 |
+
|
1289 |
#seopress_cpt .impact,
|
1290 |
#seopress_content_analysis .gr-analysis-title .impact {
|
1291 |
position: absolute;
|
1298 |
margin: 0;
|
1299 |
border: 1px solid #fff;
|
1300 |
}
|
1301 |
+
|
1302 |
#seopress_content_analysis .gr-analysis .impact.good {
|
1303 |
background: var(--colorSuccess);
|
1304 |
box-shadow: 0 0 5px var(--colorSuccess);
|
1305 |
}
|
1306 |
+
|
1307 |
#seopress_content_analysis .gr-analysis .impact.low {
|
1308 |
background: var(--colorWarning);
|
1309 |
box-shadow: 0 0 5px var(--colorWarning);
|
1310 |
}
|
1311 |
+
|
1312 |
#seopress_content_analysis .gr-analysis .impact.medium {
|
1313 |
background: var(--colorLowAlert);
|
1314 |
box-shadow: 0 0 5px var(--colorLowAlert);
|
1315 |
}
|
1316 |
+
|
1317 |
#seopress_cpt .impact.high,
|
1318 |
#seopress_content_analysis .gr-analysis .impact.high {
|
1319 |
background: var(--colorAlert);
|
1320 |
box-shadow: 0 0 5px var(--colorAlert);
|
1321 |
}
|
1322 |
+
|
1323 |
#seopress_content_analysis .gr-analysis-content .impact.high {
|
1324 |
background: var(--colorAlert);
|
1325 |
box-shadow: none;
|
1329 |
border-radius: 4px;
|
1330 |
font-weight: bold;
|
1331 |
}
|
1332 |
+
|
1333 |
#seopress_cpt .impact.high {
|
1334 |
position: relative;
|
1335 |
top: calc(50% - 18px);
|
1337 |
left: inherit;
|
1338 |
right: -10px;
|
1339 |
}
|
1340 |
+
|
1341 |
#seopress_cpt .description,
|
1342 |
#seopress_pro_cpt .description,
|
1343 |
#seopress_content_analysis .description,
|
1346 |
font-size: 12px;
|
1347 |
color: var(--color);
|
1348 |
}
|
1349 |
+
|
1350 |
@media only screen and (max-width: 782px) {
|
1351 |
#seopress_cpt .description,
|
1352 |
#seopress_pro_cpt .description,
|
1355 |
word-break: break-word;
|
1356 |
}
|
1357 |
}
|
1358 |
+
|
1359 |
#seopress_cpt input ~ span.description,
|
1360 |
#seopress_cpt span.description ~ input,
|
1361 |
#seopress_content_analysis input ~ span.description,
|
1364 |
#seopress_pro_cpt span.description ~ input {
|
1365 |
margin-top: 5px;
|
1366 |
}
|
1367 |
+
|
1368 |
#seopress_content_analysis .gr-analysis-title button {
|
1369 |
background: #fff;
|
1370 |
border: 0;
|
1378 |
align-items: center;
|
1379 |
transition: all 300ms linear;
|
1380 |
}
|
1381 |
+
|
1382 |
#seopress_content_analysis .gr-analysis-title button:hover {
|
1383 |
background: #f3f4f5;
|
1384 |
}
|
1385 |
+
|
1386 |
#seopress_content_analysis .gr-analysis-title button:focus {
|
1387 |
color: #191e23;
|
1388 |
border: none;
|
1390 |
outline-offset: -2px;
|
1391 |
outline: 1px dotted #555d66;
|
1392 |
}
|
1393 |
+
|
1394 |
#seopress_content_analysis .gr-analysis-title button .seopress-arrow::after {
|
1395 |
content: "\f343";
|
1396 |
font-family: "Dashicons";
|
1398 |
right: 10px;
|
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 |
+
|
1409 |
#seopress_content_analysis .gr-analysis-content {
|
1410 |
padding: 0 1rem 0.5rem 1rem;
|
1411 |
display: none;
|
1412 |
width: 100%;
|
1413 |
border-top: 1px solid var(--borderColorCard);
|
1414 |
}
|
1415 |
+
|
1416 |
#seopress_content_analysis h3 {
|
1417 |
margin: 0;
|
1418 |
font-size: 1em;
|
1419 |
}
|
1420 |
+
|
1421 |
#seopress_content_analysis h4 {
|
1422 |
border-bottom: 1px solid var(--borderColorCard);
|
1423 |
padding-bottom: 0.5rem;
|
1424 |
text-transform: uppercase;
|
1425 |
font-size: 0.85em;
|
1426 |
+
position: -webkit-sticky;
|
1427 |
+
/* Required for Safari */
|
1428 |
position: sticky;
|
1429 |
top: 0;
|
1430 |
background: #fff;
|
1431 |
}
|
1432 |
+
|
1433 |
#seopress_content_analysis .wrap-analysis-img ul {
|
1434 |
display: flex;
|
1435 |
flex-wrap: wrap;
|
1436 |
}
|
1437 |
+
|
1438 |
#seopress_content_analysis .wrap-analysis-img ul li {
|
1439 |
padding: 0;
|
1440 |
text-align: left;
|
1441 |
cursor: default;
|
1442 |
}
|
1443 |
+
|
1444 |
#seopress_content_analysis .wrap-analysis-img h4 {
|
1445 |
border-bottom: 1px solid var(--borderColorLight);
|
1446 |
padding-bottom: 10px;
|
1447 |
}
|
1448 |
+
|
1449 |
#seopress_content_analysis .wrap-analysis-img ul li img {
|
1450 |
max-width: 150px;
|
1451 |
max-height: 150px;
|
1454 |
cursor: default;
|
1455 |
padding: 1px;
|
1456 |
}
|
1457 |
+
|
1458 |
#seopress_cpt .dashicons,
|
1459 |
#seopress-analysis-tabs .dashicons {
|
1460 |
vertical-align: middle;
|
1461 |
}
|
1462 |
+
|
1463 |
#seopress-analysis-tabs {
|
1464 |
clear: both;
|
1465 |
}
|
1466 |
+
|
1467 |
#seopress_content_analysis .dashicons-no-alt,
|
1468 |
#seopress_content_analysis .dashicons-yes,
|
1469 |
#seopress_pro_cpt .dashicons-no-alt,
|
1473 |
border-radius: 50px;
|
1474 |
margin-right: 10px;
|
1475 |
}
|
1476 |
+
|
1477 |
#seopress_content_analysis .dashicons-no-alt,
|
1478 |
#seopress_pro_cpt .dashicons-no-alt {
|
1479 |
background: var(--colorAlert);
|
1480 |
}
|
1481 |
+
|
1482 |
/* SEO metabox */
|
1483 |
#seopress_cpt .description-alt,
|
1484 |
#seopress_content_analysis .description-alt {
|
1487 |
border-bottom: 1px solid var(--borderColorLight);
|
1488 |
display: flex;
|
1489 |
}
|
1490 |
+
|
1491 |
#seopress_cpt .desc-fb {
|
1492 |
margin-top: 0;
|
1493 |
border-top: none;
|
1494 |
}
|
1495 |
+
|
1496 |
#seopress_cpt .description-alt svg,
|
1497 |
#seopress_content_analysis .description-alt svg {
|
1498 |
vertical-align: middle;
|
1501 |
flex-shrink: 0;
|
1502 |
margin-right: 16px;
|
1503 |
}
|
1504 |
+
|
1505 |
#seopress_cpt .notice {
|
1506 |
padding: 10px 14px;
|
1507 |
margin: 0;
|
1508 |
}
|
1509 |
+
|
1510 |
#seopress_cpt .inside {
|
1511 |
margin: 0;
|
1512 |
padding: 0;
|
1513 |
}
|
1514 |
+
|
1515 |
#seopress_cpt .ui-tabs .ui-tabs-nav {
|
1516 |
display: flex;
|
1517 |
position: relative;
|
1531 |
border-left: none;
|
1532 |
border-right: none;
|
1533 |
}
|
1534 |
+
|
1535 |
#seopress_cpt .ui-tabs .sp-section {
|
1536 |
font-weight: 700;
|
1537 |
font-size: var(--fontSize);
|
1538 |
}
|
1539 |
+
|
1540 |
#seopress_cpt .ui-helper-clearfix:after {
|
1541 |
content: none;
|
1542 |
}
|
1543 |
+
|
1544 |
.seopress_page_seopress-titles #seopress-tabs .form-table td,
|
1545 |
.seopress_page_seopress-titles #seopress_content_analysis .form-table td {
|
1546 |
padding: 0;
|
1547 |
}
|
1548 |
+
|
1549 |
#seopress_cpt .ui-tabs .ui-tabs-panel {
|
1550 |
background: #fff;
|
1551 |
border-radius: 0;
|
1553 |
padding: 1em 1.4em;
|
1554 |
width: 100%;
|
1555 |
}
|
1556 |
+
|
1557 |
#seopress_content_analysis .dashicons-info,
|
1558 |
#seopress_cpt .ui-tabs .ui-tabs-panel .dashicons-info,
|
1559 |
#seopress_pro_cpt .dashicons-info {
|
1562 |
height: 16px;
|
1563 |
width: 16px;
|
1564 |
}
|
1565 |
+
|
1566 |
#seopress_cpt .ui-tabs .ui-tabs-nav li,
|
1567 |
#seopress_cpt .ui-tabs-anchor {
|
1568 |
cursor: pointer !important;
|
1569 |
}
|
1570 |
+
|
1571 |
body #seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
1572 |
position: relative;
|
1573 |
z-index: 60;
|
1575 |
border-radius: 0;
|
1576 |
border-bottom: 4px solid var(--backgroundPrimary) !important;
|
1577 |
}
|
1578 |
+
|
1579 |
#seopress_cpt .wp-color-result {
|
1580 |
margin: 0;
|
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 |
+
|
1588 |
#seopress_cpt #tabs-6 #wrap-videos .video .accordion-section-content {
|
1589 |
padding: 0 1.4em 1em;
|
1590 |
}
|
1591 |
+
|
1592 |
#seopress_cpt #tabs-6 #wrap-videos .video {
|
1593 |
border-top: 1px solid var(--borderColorLight);
|
1594 |
}
|
1595 |
+
|
1596 |
#seopress_cpt #tabs-6 #wrap-videos .video .accordion-section-title {
|
1597 |
border-left: none;
|
1598 |
border-right: none;
|
1599 |
font-size: 1em;
|
1600 |
padding: 1em 1.4em;
|
1601 |
}
|
1602 |
+
|
1603 |
#seopress_cpt #tabs-6 #wrap-videos .video:last-child .accordion-section-content,
|
1604 |
#seopress_cpt #tabs-6 #wrap-videos .video:last-child .accordion-section-title {
|
1605 |
border-bottom: 1px solid var(--borderColorLight);
|
1606 |
}
|
1607 |
+
|
1608 |
#seopress_content_analysis .mandatory,
|
1609 |
#seopress_cpt .mandatory {
|
1610 |
color: var(--colorAlert);
|
1611 |
}
|
1612 |
+
|
1613 |
#seopress_cpt .box-left {
|
1614 |
float: left;
|
1615 |
width: 49%;
|
1616 |
margin-right: 1%;
|
1617 |
}
|
1618 |
+
|
1619 |
#seopress_cpt .box-right {
|
1620 |
float: left;
|
1621 |
width: 49%;
|
1622 |
margin-left: 1%;
|
1623 |
}
|
1624 |
+
|
1625 |
#seopress_cpt #tabs-3 .box-left {
|
1626 |
width: 44%;
|
1627 |
}
|
1628 |
+
|
1629 |
#seopress_cpt #tabs-3 .box-right {
|
1630 |
width: 54%;
|
1631 |
}
|
1632 |
+
|
1633 |
@media only screen and (max-width: 1200px) {
|
1634 |
#seopress_cpt .box-left,
|
1635 |
#seopress_cpt .box-right {
|
1638 |
margin: 0;
|
1639 |
}
|
1640 |
}
|
1641 |
+
|
1642 |
@media only screen and (max-width: 1500px) {
|
1643 |
#seopress_cpt #tabs-3 .box-left,
|
1644 |
#seopress_cpt #tabs-3 .box-right {
|
1647 |
margin: 0;
|
1648 |
}
|
1649 |
}
|
1650 |
+
|
1651 |
#edittag #seopress_cpt #tabs-3 .box-left,
|
1652 |
#edittag #seopress_cpt #tabs-3 .box-right {
|
1653 |
float: none;
|
1654 |
width: 100%;
|
1655 |
margin: 0;
|
1656 |
}
|
1657 |
+
|
1658 |
#seopress-tabs .seopress_media_upload,
|
1659 |
#seopress_pro_cpt .seopress_media_upload {
|
1660 |
margin-top: 0.5rem;
|
1661 |
}
|
1662 |
+
|
1663 |
#term-seopress #seopress_cpt {
|
1664 |
width: 95%;
|
1665 |
}
|
1666 |
+
|
1667 |
#seopress_cpt .ui-tabs {
|
1668 |
position: relative;
|
1669 |
padding: 0;
|
1673 |
display: inline-block;
|
1674 |
width: 100%;
|
1675 |
}
|
1676 |
+
|
1677 |
#seopress_cpt .ui-tabs .ui-tabs-nav li {
|
1678 |
list-style: none;
|
1679 |
position: relative;
|
1684 |
height: 48px;
|
1685 |
background: 0 0;
|
1686 |
}
|
1687 |
+
|
1688 |
#seopress_cpt .ui-tabs .ui-tabs-nav li a {
|
1689 |
display: flex;
|
1690 |
padding: 3px 15px;
|
1691 |
align-items: center;
|
1692 |
}
|
1693 |
+
|
1694 |
#seopress-admin-tabs.ui-tabs-vertical .ui-tabs-nav li a,
|
1695 |
#seopress_cpt .ui-tabs-vertical .ui-tabs-nav li a {
|
1696 |
display: block;
|
1697 |
}
|
1698 |
+
|
1699 |
#seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active {
|
1700 |
margin-bottom: 0px;
|
1701 |
padding-bottom: 0px;
|
1702 |
}
|
1703 |
+
|
1704 |
#seopress_cpt .ui-tabs .ui-tabs-nav li.ui-state-disabled a,
|
1705 |
#seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-active a,
|
1706 |
#seopress_cpt .ui-tabs .ui-tabs-nav li.ui-tabs-loading a {
|
1707 |
font-weight: 500;
|
1708 |
}
|
1709 |
+
|
1710 |
#seopress_cpt .ui-tabs .ui-tabs-nav li a,
|
1711 |
#seopress_cpt .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a {
|
1712 |
cursor: pointer;
|
1714 |
text-decoration: none;
|
1715 |
height: 48px;
|
1716 |
}
|
1717 |
+
|
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;
|
1722 |
var(--backgroundPrimary),
|
1723 |
inset 0 -4px 0 0 var(--backgroundPrimary);
|
1724 |
}
|
1725 |
+
|
1726 |
#seopress_cpt .ui-tabs-vertical {
|
1727 |
width: 55em;
|
1728 |
}
|
1729 |
+
|
1730 |
#seopress_cpt .ui-tabs-vertical .ui-tabs-nav {
|
1731 |
padding: 0.2em 0.1em 0.2em 0.2em;
|
1732 |
float: left;
|
1733 |
width: 12em;
|
1734 |
}
|
1735 |
+
|
1736 |
#seopress_cpt .ui-tabs-vertical .ui-tabs-nav li {
|
1737 |
clear: left;
|
1738 |
width: 100%;
|
1740 |
border-right-width: 0 !important;
|
1741 |
margin: 0 -1px 0.2em 0;
|
1742 |
}
|
1743 |
+
|
1744 |
#seopress_cpt .ui-tabs-vertical .ui-tabs-nav li.ui-tabs-active {
|
1745 |
padding-bottom: 0;
|
1746 |
padding-right: 0.1em;
|
1747 |
border-right-width: 1px;
|
1748 |
}
|
1749 |
+
|
1750 |
#seopress_cpt .ui-tabs-vertical .ui-tabs-panel {
|
1751 |
padding: 1em;
|
1752 |
float: right;
|
1753 |
width: 40em;
|
1754 |
}
|
1755 |
+
|
1756 |
#seopress_cpt .ui-tabs .ui-tabs-nav li a .dashicons {
|
1757 |
margin-right: 2px;
|
1758 |
}
|
1759 |
+
|
1760 |
/* Google / Social Preview */
|
1761 |
#seopress_cpt .google-snippet-preview {
|
1762 |
font-family: arial, sans-serif;
|
1763 |
word-break: break-all;
|
1764 |
}
|
1765 |
+
|
1766 |
#seopress_cpt .google-snippet-preview.mobile-preview .wrap-snippet {
|
1767 |
margin: 0 0 10px 0;
|
1768 |
box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
|
1769 |
border-radius: 8px;
|
1770 |
padding: 12px 16px;
|
1771 |
}
|
1772 |
+
|
1773 |
#seopress_cpt .google-snippet-preview > p {
|
1774 |
word-break: normal;
|
1775 |
}
|
1776 |
+
|
1777 |
#seopress_cpt .google-snippet-preview .snippet-title,
|
1778 |
#seopress_cpt .google-snippet-preview .snippet-title-custom,
|
1779 |
#seopress_cpt .google-snippet-preview .snippet-title-default {
|
1782 |
font-weight: 400;
|
1783 |
line-height: 21.6px;
|
1784 |
}
|
1785 |
+
|
1786 |
#seopress_cpt .google-snippet-preview.mobile-preview .snippet-title,
|
1787 |
#seopress_cpt .google-snippet-preview.mobile-preview .snippet-title-custom,
|
1788 |
#seopress_cpt .google-snippet-preview.mobile-preview .snippet-title-default {
|
1790 |
line-height: 20px;
|
1791 |
margin-bottom: 12px;
|
1792 |
}
|
1793 |
+
|
1794 |
#seopress_cpt .google-snippet-preview .snippet-permalink {
|
1795 |
color: #006621;
|
1796 |
font-size: 14px;
|
1801 |
text-overflow: ellipsis;
|
1802 |
white-space: nowrap;
|
1803 |
}
|
1804 |
+
|
1805 |
#seopress_cpt .google-snippet-preview .wrap-snippet .wrap-m-icon-permalink,
|
1806 |
#seopress_cpt .google-snippet-preview.mobile-preview .snippet-permalink {
|
1807 |
display: none;
|
1808 |
}
|
1809 |
+
|
1810 |
+
#seopress_cpt .google-snippet-preview.mobile-preview .wrap-snippet-mobile {
|
1811 |
+
display: flex;
|
1812 |
+
justify-content: space-between;
|
1813 |
+
}
|
1814 |
+
|
1815 |
+
#seopress_cpt .google-snippet-preview.mobile-preview .wrap-meta-desc {
|
1816 |
+
margin-right: 8px;
|
1817 |
+
}
|
1818 |
+
|
1819 |
+
#seopress_cpt .google-snippet-preview .wrap-post-thumb {
|
1820 |
+
display: none;
|
1821 |
+
}
|
1822 |
+
|
1823 |
+
#seopress_cpt .google-snippet-preview.mobile-preview .wrap-post-thumb {
|
1824 |
+
margin-left: 8px;
|
1825 |
+
display: block;
|
1826 |
+
}
|
1827 |
+
|
1828 |
+
#seopress_cpt .google-snippet-preview.mobile-preview .snippet-post-thumb {
|
1829 |
+
width: 104px;
|
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 {
|
1836 |
overflow: hidden;
|
1837 |
text-overflow: ellipsis;
|
1839 |
margin-bottom: 12px;
|
1840 |
display: flex;
|
1841 |
}
|
1842 |
+
|
1843 |
#seopress_cpt
|
1844 |
.google-snippet-preview.mobile-preview
|
1845 |
.wrap-m-icon-permalink
|
1848 |
color: #3c4043;
|
1849 |
font-size: 12px;
|
1850 |
}
|
1851 |
+
|
1852 |
#seopress_cpt .google-snippet-preview.mobile-preview .snippet-favicon {
|
1853 |
margin-right: 12px;
|
1854 |
vertical-align: middle;
|
1855 |
}
|
1856 |
+
|
1857 |
#seopress_cpt .google-snippet-preview.mobile-preview .snippet-favicon img {
|
1858 |
width: 16px;
|
1859 |
height: 16px;
|
1860 |
max-width: inherit;
|
1861 |
}
|
1862 |
+
|
1863 |
#seopress_cpt
|
1864 |
.google-snippet-preview.mobile-preview
|
1865 |
.wrap-snippet
|
1869 |
font-size: 12px;
|
1870 |
display: block;
|
1871 |
}
|
1872 |
+
|
1873 |
#seopress_cpt .google-snippet-preview .snippet-description,
|
1874 |
#seopress_cpt .google-snippet-preview .snippet-description-custom,
|
1875 |
#seopress_cpt .google-snippet-preview .snippet-description-default {
|
1881 |
hyphens: none;
|
1882 |
word-break: normal;
|
1883 |
}
|
1884 |
+
|
1885 |
#seopress_cpt .google-snippet-preview.mobile-preview .snippet-description,
|
1886 |
#seopress_cpt
|
1887 |
.google-snippet-preview.mobile-preview
|
1893 |
font-size: 14px;
|
1894 |
line-height: 20px;
|
1895 |
}
|
1896 |
+
|
1897 |
#seopress_cpt .google-snippet-preview .snippet-date {
|
1898 |
color: grey;
|
1899 |
display: inline;
|
1900 |
}
|
1901 |
+
|
1902 |
#seopress_cpt .facebook-snippet-box {
|
1903 |
color: #4b4f56;
|
1904 |
font-size: 14px;
|
1905 |
width: 524px;
|
1906 |
max-width: 100%;
|
1907 |
}
|
1908 |
+
|
1909 |
#seopress_cpt .facebook-snippet-box .notice,
|
1910 |
#seopress_cpt .twitter-snippet-box .notice {
|
1911 |
padding: 10px 14px;
|
1912 |
margin: 0 0 10px 0;
|
1913 |
width: 100%;
|
1914 |
}
|
1915 |
+
|
1916 |
#seopress_cpt .facebook-snippet-box .notice span,
|
1917 |
#seopress_cpt .twitter-snippet-box .notice span {
|
1918 |
font-weight: bold;
|
1919 |
}
|
1920 |
+
|
1921 |
#seopress_cpt .snippet-meta {
|
1922 |
display: flex;
|
1923 |
overflow: hidden;
|
1924 |
max-height: 12px;
|
1925 |
}
|
1926 |
+
|
1927 |
#seopress_cpt .snippet-fb-site-name,
|
1928 |
#seopress_cpt .snippet-fb-url,
|
1929 |
#seopress_cpt .fb-by {
|
1936 |
display: -webkit-box;
|
1937 |
text-overflow: ellipsis;
|
1938 |
}
|
1939 |
+
|
1940 |
#seopress_cpt .fb-sep {
|
1941 |
padding-left: 5px;
|
1942 |
padding-right: 5px;
|
1944 |
line-height: 11px;
|
1945 |
font-size: 12px;
|
1946 |
}
|
1947 |
+
|
1948 |
#seopress_cpt .facebook-snippet-box .facebook-snippet-text {
|
1949 |
border: 1px solid #dadde1;
|
1950 |
background-color: #f2f3f5;
|
1951 |
padding: 10px 12px;
|
1952 |
}
|
1953 |
+
|
1954 |
#seopress_cpt .facebook-snippet-box .title-desc {
|
1955 |
max-height: 46px;
|
1956 |
overflow: hidden;
|
1957 |
}
|
1958 |
+
|
1959 |
#seopress_cpt .facebook-snippet-box .snippet-fb-title,
|
1960 |
#seopress_cpt .facebook-snippet-box .snippet-fb-title-custom,
|
1961 |
#seopress_cpt .facebook-snippet-box .snippet-fb-title-default {
|
1973 |
word-break: break-word;
|
1974 |
max-height: 22px;
|
1975 |
}
|
1976 |
+
|
1977 |
#seopress_cpt .facebook-snippet-box .snippet-fb-description,
|
1978 |
#seopress_cpt .facebook-snippet-box .snippet-fb-description-custom,
|
1979 |
#seopress_cpt .facebook-snippet-box .snippet-fb-description-default {
|
1990 |
white-space: normal;
|
1991 |
width: 100%;
|
1992 |
}
|
1993 |
+
|
1994 |
#seopress_cpt .facebook-snippet-box img {
|
1995 |
display: block;
|
1996 |
height: 274px;
|
2000 |
text-align: center;
|
2001 |
border-bottom: none;
|
2002 |
}
|
2003 |
+
|
2004 |
.term-php #seopress_cpt .facebook-snippet-box img,
|
2005 |
.term-php #seopress_cpt .twitter-snippet-box img {
|
2006 |
width: 100%;
|
2007 |
height: auto;
|
2008 |
}
|
2009 |
+
|
2010 |
.seopress_social_fb_img_upload,
|
2011 |
.seopress_social_twitter_img_upload {
|
2012 |
position: absolute;
|
2016 |
left: 0;
|
2017 |
top: 0;
|
2018 |
}
|
2019 |
+
|
2020 |
.seopress_social_fb_img_upload:hover::after,
|
2021 |
.seopress_social_twitter_img_upload:hover::after {
|
2022 |
+
content: "\f464";
|
2023 |
position: absolute;
|
2024 |
+
font-family: "dashicons";
|
2025 |
width: 100%;
|
2026 |
height: 100%;
|
2027 |
top: 0;
|
2033 |
align-items: center;
|
2034 |
color: #1e1e1e;
|
2035 |
}
|
2036 |
+
|
2037 |
.snippet-fb-img,
|
2038 |
.snippet-fb-img-custom,
|
2039 |
.snippet-fb-img-default,
|
2042 |
.snippet-twitter-img-default {
|
2043 |
position: relative;
|
2044 |
}
|
2045 |
+
|
2046 |
#seopress_cpt .twitter-snippet-box {
|
2047 |
color: #4b4f56;
|
2048 |
font-size: 14px;
|
2049 |
width: 504px;
|
2050 |
max-width: 100%;
|
2051 |
}
|
2052 |
+
|
2053 |
#seopress_cpt .snippet-twitter-url {
|
2054 |
color: #8899a6;
|
2055 |
font-size: 14px;
|
2060 |
display: -webkit-box;
|
2061 |
text-overflow: ellipsis;
|
2062 |
}
|
2063 |
+
|
2064 |
#seopress_cpt .twitter-snippet-box .twitter-snippet-text {
|
2065 |
border: 1px solid #dadde1;
|
2066 |
background-color: #fff;
|
2067 |
padding: 10px 12px;
|
2068 |
border-radius: 0 0 10px 10px;
|
2069 |
}
|
2070 |
+
|
2071 |
#seopress_cpt .twitter-snippet-box .title-desc {
|
2072 |
max-height: 46px;
|
2073 |
overflow: hidden;
|
2074 |
}
|
2075 |
+
|
2076 |
#seopress_cpt .twitter-snippet-box .snippet-twitter-img,
|
2077 |
#seopress_cpt .twitter-snippet-box .snippet-twitter-img-default,
|
2078 |
#seopress_cpt .twitter-snippet-box .snippet-twitter-img-custom {
|
2079 |
border-radius: 10px 10px 0 0;
|
2080 |
overflow: hidden;
|
2081 |
}
|
2082 |
+
|
2083 |
#seopress_cpt .twitter-snippet-box .snippet-twitter-title,
|
2084 |
#seopress_cpt .twitter-snippet-box .snippet-twitter-title-custom,
|
2085 |
#seopress_cpt .twitter-snippet-box .snippet-twitter-title-default {
|
2096 |
white-space: normal;
|
2097 |
word-break: break-word;
|
2098 |
}
|
2099 |
+
|
2100 |
#seopress_cpt .twitter-snippet-box .snippet-twitter-description,
|
2101 |
#seopress_cpt .twitter-snippet-box .snippet-twitter-description-custom,
|
2102 |
#seopress_cpt .twitter-snippet-box .snippet-twitter-description-default {
|
2113 |
white-space: normal;
|
2114 |
width: 100%;
|
2115 |
}
|
2116 |
+
|
2117 |
#seopress_cpt .twitter-snippet-box img {
|
2118 |
display: block;
|
2119 |
height: 263px;
|
2123 |
text-align: center;
|
2124 |
border-bottom: none;
|
2125 |
}
|
2126 |
+
|
2127 |
.wrap-toggle-preview {
|
2128 |
position: relative;
|
2129 |
}
|
2130 |
+
|
2131 |
.wrap-toggle-preview p {
|
2132 |
font-weight: bold;
|
2133 |
margin: 0 0 1rem 0;
|
2134 |
}
|
2135 |
+
|
2136 |
#seopress_add_to_insights {
|
2137 |
margin-left: 1rem;
|
2138 |
}
|
2139 |
+
|
2140 |
#seopress_add_to_insights_status {
|
2141 |
display: inline-block;
|
2142 |
font-weight: bold;
|
2145 |
padding: 0.3rem;
|
2146 |
font-style: italic;
|
2147 |
}
|
2148 |
+
|
2149 |
/* Counters */
|
2150 |
.seo_page_seopress-instant-indexing .wrap-sp-progress {
|
2151 |
max-width: 35rem;
|
2152 |
}
|
2153 |
+
|
2154 |
#seopress_cpt .wrap-seopress-counters,
|
2155 |
#seopress_pro_cpt .wrap-seopress-counters,
|
2156 |
.seopress-styles .wrap-seopress-counters,
|
2163 |
justify-content: flex-end;
|
2164 |
border-radius: 0 0 0.25rem 0.25rem;
|
2165 |
}
|
2166 |
+
|
2167 |
#seopress_cpt .sp-progress,
|
2168 |
#seopress_pro_cpt .sp-progress,
|
2169 |
.seopress-styles .sp-progress,
|
2176 |
border-radius: 0.25rem 0.25rem 0 0;
|
2177 |
margin: -15px 0 0 0;
|
2178 |
}
|
2179 |
+
|
2180 |
#seopress_cpt .sp-progress-bar,
|
2181 |
#seopress_pro_cpt .sp-progress-bar,
|
2182 |
.seopress-styles .sp-progress-bar,
|
2190 |
background-color: #0085ba;
|
2191 |
transition: width 0.6s ease;
|
2192 |
}
|
2193 |
+
|
2194 |
#seopress_cpt #seopress_titles_desc_counters,
|
2195 |
#seopress_cpt #seopress_titles_title_counters,
|
2196 |
#seopress_pro_cpt #seopress_rich_snippets_articles_counters,
|
2198 |
display: inline;
|
2199 |
margin-right: 5px;
|
2200 |
}
|
2201 |
+
|
2202 |
#seopress_cpt #seopress_titles_desc_counters_val,
|
2203 |
#seopress_cpt #seopress_titles_title_counters_val,
|
2204 |
#seopress_pro_cpt #seopress_rich_snippets_articles_counters_val,
|
2215 |
.seopress-styles .seopress-option {
|
2216 |
margin: 85px 40px 40px;
|
2217 |
}
|
2218 |
+
|
2219 |
@media only screen and (max-width: 782px) {
|
2220 |
.seopress-styles .seopress-option {
|
2221 |
margin: 85px 22px 22px;
|
2222 |
}
|
2223 |
}
|
2224 |
+
|
2225 |
+
.seopress-styles .seopress-option h1,
|
2226 |
+
.seopress-setup .seopress-option h1 {
|
2227 |
font-size: var(--titleFontSize);
|
2228 |
color: var(--titleColor);
|
2229 |
font-weight: var(--titleFontWeight);
|
2231 |
display: flex;
|
2232 |
justify-content: space-between;
|
2233 |
}
|
2234 |
+
|
2235 |
.seopress-setup .seopress-option h1 {
|
2236 |
margin-bottom: 30px;
|
2237 |
}
|
2238 |
+
|
2239 |
/* Titles & metas */
|
2240 |
.seopress_wrap_single_cpt,
|
2241 |
.seopress_wrap_tax,
|
2243 |
.seopress_wrap_single_tax {
|
2244 |
margin: 0 0 20px 0;
|
2245 |
}
|
2246 |
+
|
2247 |
#tab_seopress_titles_single .form-table th:empty,
|
2248 |
#tab_seopress_titles_archives .form-table th:empty,
|
2249 |
#tab_seopress_titles_tax .form-table th:empty {
|
2250 |
display: none;
|
2251 |
}
|
2252 |
+
|
2253 |
.seopress-styles .seopress-option .link-archive {
|
2254 |
font-size: var(--fontSize);
|
2255 |
}
|
2256 |
+
|
2257 |
.seopress-styles .seopress-option .link-archive .dashicons {
|
2258 |
font-size: 18px;
|
2259 |
width: 20px;
|
2260 |
height: 20px;
|
2261 |
margin: inherit;
|
2262 |
}
|
2263 |
+
|
2264 |
/* General options page */
|
2265 |
.seopress-option h1 .feature-state .dashicons {
|
2266 |
font-size: 16px;
|
2269 |
vertical-align: middle;
|
2270 |
margin: 0 10px 0 0;
|
2271 |
}
|
2272 |
+
|
2273 |
.seopress-styles .seopress-option .submit {
|
2274 |
padding: 20px 0px 20px 0px;
|
2275 |
left: 0;
|
2279 |
z-index: 100;
|
2280 |
display: inline-block;
|
2281 |
}
|
2282 |
+
|
2283 |
@media only screen and (max-width: 782px) {
|
2284 |
.seopress-styles .seopress-option .submit {
|
2285 |
position: relative;
|
2286 |
}
|
2287 |
}
|
2288 |
+
|
2289 |
.seopress-styles .seopress-option .seopress-tab .submit {
|
2290 |
display: block;
|
2291 |
position: relative;
|
2292 |
}
|
2293 |
+
|
2294 |
.seopress-styles #wpcontent {
|
2295 |
padding-left: 0;
|
2296 |
}
|
2297 |
+
|
2298 |
.seopress-styles pre {
|
2299 |
font-family: Menlo, Monaco, Andale Mono, Courier New, monospace;
|
2300 |
padding: 10px;
|
2305 |
font-size: var(--fontSize);
|
2306 |
/* display: none; */
|
2307 |
}
|
2308 |
+
|
2309 |
.seopress-option .seopress-settings {
|
2310 |
float: left;
|
2311 |
max-width: 750px;
|
2312 |
width: 100%;
|
2313 |
}
|
2314 |
+
|
2315 |
.seopress-option .seopress-settings label {
|
2316 |
margin: 0 0 0 10px;
|
2317 |
}
|
2318 |
+
|
2319 |
.wrap-seopress-tab-content {
|
2320 |
position: relative;
|
2321 |
display: block;
|
2323 |
max-width: 64rem;
|
2324 |
margin: 0 auto;
|
2325 |
}
|
2326 |
+
|
2327 |
#seopress-tabs .seopress-tab {
|
2328 |
padding: 10px 1.5rem;
|
2329 |
width: 100%;
|
2330 |
display: none;
|
2331 |
}
|
2332 |
+
|
2333 |
#seopress-tabs.full-width .seopress-tab {
|
2334 |
width: 100%;
|
2335 |
}
|
2336 |
+
|
2337 |
@media only screen and (max-width: 1024px) {
|
2338 |
#seopress-tabs .seopress-tab {
|
2339 |
width: 100%;
|
2340 |
}
|
2341 |
}
|
2342 |
+
|
2343 |
#seopress-tabs .seopress-tab.active {
|
2344 |
display: inline-block;
|
2345 |
background: #fff;
|
2346 |
}
|
2347 |
+
|
2348 |
@media only screen and (max-width: 782px) {
|
2349 |
#seopress-tabs .seopress-tab.active {
|
2350 |
width: 100%;
|
2352 |
border-top: 1px solid RGB(238, 238, 238);
|
2353 |
}
|
2354 |
}
|
2355 |
+
|
2356 |
#seopress_htaccess_file {
|
2357 |
width: 100%;
|
2358 |
}
|
2359 |
+
|
2360 |
.seopress-option textarea {
|
2361 |
min-height: 100px;
|
2362 |
}
|
2363 |
+
|
2364 |
.seopress-option .wp-picker-container button {
|
2365 |
box-shadow: none;
|
2366 |
border: 1px solid #0071a1;
|
2368 |
background: rgb(243, 245, 246);
|
2369 |
text-transform: none;
|
2370 |
}
|
2371 |
+
|
2372 |
.seopress-option .wp-picker-container input[type="text"].wp-color-picker {
|
2373 |
min-width: inherit;
|
2374 |
}
|
2375 |
+
|
2376 |
.seopress-option .wp-picker-container .wp-picker-default {
|
2377 |
margin: 0;
|
2378 |
}
|
2379 |
+
|
2380 |
.seopress-option .wp-picker-container .wp-picker-clear {
|
2381 |
box-shadow: none;
|
2382 |
text-transform: none;
|
2384 |
background: none;
|
2385 |
margin: 0;
|
2386 |
}
|
2387 |
+
|
2388 |
.seopress-option .wp-picker-container .wp-picker-clear:hover {
|
2389 |
background: none;
|
2390 |
text-decoration: currentColor;
|
2391 |
color: inherit;
|
2392 |
}
|
2393 |
+
|
2394 |
.seopress-inbox-title p {
|
2395 |
font-size: 20px;
|
2396 |
color: var(--titleColor);
|
2397 |
margin: 0;
|
2398 |
}
|
2399 |
+
|
2400 |
#seopress-admin-tabs .ui-tabs-nav {
|
2401 |
display: flex;
|
2402 |
padding-top: 1rem;
|
2403 |
padding-bottom: 0;
|
2404 |
}
|
2405 |
+
|
2406 |
#seopress-admin-tabs .nav-tab-wrapper a.nav-tab-active:focus {
|
2407 |
color: inherit;
|
2408 |
}
|
2409 |
+
|
2410 |
.seopress-intro {
|
2411 |
padding: 20px;
|
2412 |
}
|
2413 |
+
|
2414 |
.seopress-option .seopress-table {
|
2415 |
background: #fff;
|
2416 |
border: 1px solid var(--borderColorLight);
|
2417 |
}
|
2418 |
+
|
2419 |
.seopress-option .seopress-table th {
|
2420 |
padding: 15px 10px;
|
2421 |
vertical-align: middle;
|
2422 |
}
|
2423 |
+
|
2424 |
.wp-admin-ui_page_seopress-roles .seopress-option .seopress-table th {
|
2425 |
min-width: 200px;
|
2426 |
}
|
2427 |
+
|
2428 |
.seopress-option .seopress-table .seopress-settings-section {
|
2429 |
background: #f1f1f1;
|
2430 |
}
|
2431 |
+
|
2432 |
.seopress-option .seopress-table .seopress-table-head .seopress-feature {
|
2433 |
border-bottom: 1px solid var(--borderColorLight);
|
2434 |
font-weight: 700;
|
2435 |
background: #f1f1f1;
|
2436 |
}
|
2437 |
+
|
2438 |
#seopress-content .feature-state,
|
2439 |
.seopress-option .feature-state {
|
2440 |
font-style: italic;
|
2441 |
font-size: 11px;
|
2442 |
font-weight: normal;
|
2443 |
}
|
2444 |
+
|
2445 |
@media only screen and (max-width: 782px) {
|
2446 |
#seopress-content .feature-state,
|
2447 |
.seopress-option .feature-state {
|
2448 |
display: none;
|
2449 |
}
|
2450 |
}
|
2451 |
+
|
2452 |
.seopress-option #tab_seopress_titles_single h3,
|
2453 |
.seopress-option #tab_seopress_titles_archives h3,
|
2454 |
.seopress-option #tab_seopress_titles_tax h3 {
|
2456 |
border-top: 1px solid var(--borderColorLight);
|
2457 |
padding: 1em 0 0 0;
|
2458 |
}
|
2459 |
+
|
2460 |
.seopress-option #tab_seopress_titles_single h3:first-child,
|
2461 |
.seopress-option #tab_seopress_titles_archives h3:first-child,
|
2462 |
.seopress-option #tab_seopress_titles_tax h3:first-child {
|
2463 |
margin: 0 0 1em 0;
|
2464 |
}
|
2465 |
+
|
2466 |
.seopress-option #tab_seopress_titles_single h3 div,
|
2467 |
.seopress-option #tab_seopress_titles_archives h3 div,
|
2468 |
.seopress-option #tab_seopress_titles_tax h3 div {
|
2469 |
display: inline;
|
2470 |
}
|
2471 |
+
|
2472 |
#seopress-content .feature-state-on,
|
2473 |
#seopress-content .feature-state.feature-state-on,
|
2474 |
.seopress-option .feature-state-on,
|
2475 |
.seopress-option .feature-state.feature-state-on {
|
2476 |
display: inline-block;
|
2477 |
}
|
2478 |
+
|
2479 |
#seopress-content .feature-state-off,
|
2480 |
.seopress-option .feature-state-off {
|
2481 |
display: none;
|
2482 |
}
|
2483 |
+
|
2484 |
.seopress-option .postbox .inside li {
|
2485 |
list-style: square inside;
|
2486 |
padding-left: 5px;
|
2487 |
}
|
2488 |
+
|
2489 |
#tab_seopress_page_speed .inside li {
|
2490 |
list-style: none;
|
2491 |
padding-left: 0;
|
2492 |
word-break: break-word;
|
2493 |
}
|
2494 |
+
|
2495 |
.seopress-option .log {
|
2496 |
display: none;
|
2497 |
font-weight: bold;
|
2498 |
}
|
2499 |
+
|
2500 |
.seopress-option input[type="text"].seopress-admin-menu-input {
|
2501 |
min-width: inherit;
|
2502 |
width: 100%;
|
2503 |
}
|
2504 |
+
|
2505 |
.seopress_page_seopress-import-export .postbox {
|
2506 |
width: calc(100% - 20px);
|
2507 |
}
|
2508 |
+
|
2509 |
#seopress_cpt #seopress_titles_title_meta {
|
2510 |
margin-bottom: 0.2rem;
|
2511 |
}
|
2512 |
+
|
2513 |
.seopress-option .section-tool {
|
2514 |
border: none;
|
2515 |
box-shadow: none;
|
2516 |
background: none;
|
2517 |
position: relative;
|
2518 |
}
|
2519 |
+
|
2520 |
.seopress-option .section-tool::after {
|
2521 |
content: "";
|
2522 |
background: #dedede;
|
2524 |
width: 100%;
|
2525 |
display: block;
|
2526 |
}
|
2527 |
+
|
2528 |
.seopress-option .section-tool:last-child {
|
2529 |
margin-bottom: 0;
|
2530 |
}
|
2531 |
+
|
2532 |
.seopress-option .section-tool:last-child::after {
|
2533 |
content: none;
|
2534 |
}
|
2535 |
+
|
2536 |
.seopress-option .section-tool .inside {
|
2537 |
padding-left: 0;
|
2538 |
padding-right: 0;
|
2539 |
}
|
2540 |
+
|
2541 |
.seopress-option .sp-section-header {
|
2542 |
width: 100%;
|
2543 |
display: flex;
|
2544 |
position: relative;
|
2545 |
align-items: center;
|
2546 |
}
|
2547 |
+
|
2548 |
.seopress-option .sp-section-header h2 {
|
2549 |
font-size: 1.5em;
|
2550 |
}
|
2551 |
+
|
2552 |
.seopress-option .sp-section-header > .dashicons {
|
2553 |
color: var(--primaryColor);
|
2554 |
padding: 10px;
|
2556 |
margin-right: 10px;
|
2557 |
background: #c4f0ff;
|
2558 |
}
|
2559 |
+
|
2560 |
.seopress-option .sp-section-header .wrap-toggle-checkboxes {
|
2561 |
display: flex;
|
2562 |
}
|
2563 |
+
|
2564 |
.seopress-notice {
|
2565 |
margin: 5px 0 35px 15px;
|
2566 |
position: relative;
|
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,
|
2578 |
#seopress_pro_cpt .seopress-notice,
|
2590 |
.seopress-notice pre {
|
2591 |
background: #fff;
|
2592 |
}
|
2593 |
+
|
2594 |
.seopress-notice.is-success {
|
2595 |
border-left-color: var(--colorSuccess);
|
2596 |
background: #eff9f1;
|
2597 |
}
|
2598 |
+
|
2599 |
.seopress-notice.is-warning {
|
2600 |
border-left-color: #f0b849;
|
2601 |
background: #fef8ee;
|
2602 |
}
|
2603 |
+
|
2604 |
.seopress-notice.is-error {
|
2605 |
border-left-color: #cc1818;
|
2606 |
background: rgb(244 162 162 / 30%);
|
2607 |
}
|
2608 |
+
|
2609 |
#seopress-tabs.wrap {
|
2610 |
margin: 30px 0 0 0;
|
2611 |
}
|
2612 |
+
|
2613 |
#seopress-tabs.wrap ul,
|
2614 |
#seopress-notifications-center .seopress-alert ul {
|
2615 |
list-style: square inside;
|
2618 |
max-width: 35rem;
|
2619 |
width: 100%;
|
2620 |
}
|
2621 |
+
|
2622 |
.post-type-seopress_404 .seopress-BlankState-message::before,
|
2623 |
.post-type-seopress_schemas .seopress-BlankState-message::before {
|
2624 |
font-family: "Dashicons";
|
2637 |
text-align: center;
|
2638 |
content: "\f103";
|
2639 |
}
|
2640 |
+
|
2641 |
.post-type-seopress_schemas .seopress-BlankState-message::before {
|
2642 |
content: "\f495";
|
2643 |
}
|
2644 |
+
|
2645 |
.seopress-BlankState {
|
2646 |
text-align: center;
|
2647 |
padding: 5em 0 0;
|
2648 |
}
|
2649 |
+
|
2650 |
.seopress-BlankState .seopress-BlankState-message {
|
2651 |
color: #aaa;
|
2652 |
margin: 0 auto 1.5em;
|
2654 |
font-size: 1.2em;
|
2655 |
max-width: 500px;
|
2656 |
}
|
2657 |
+
|
2658 |
.seopress-BlankState .seopress-BlankState-message::before {
|
2659 |
color: #ddd;
|
2660 |
text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(255, 255, 255, 0.8);
|
2666 |
line-height: 1em;
|
2667 |
margin: 0 0 0.1875em;
|
2668 |
}
|
2669 |
+
|
2670 |
.seopress-BlankState .seopress-BlankState-cta {
|
2671 |
font-size: 1.2em;
|
2672 |
padding: 0.75em 1.5em;
|
2673 |
margin: 0 0.25em;
|
2674 |
}
|
2675 |
+
|
2676 |
.seopress-BlankState {
|
2677 |
max-width: 764px;
|
2678 |
text-align: center;
|
2679 |
margin: auto;
|
2680 |
}
|
2681 |
+
|
2682 |
.seopress-BlankState .seopress-BlankState-message {
|
2683 |
color: var(--titleColor);
|
2684 |
font-size: 1.5em;
|
2685 |
margin: 0 auto 1em;
|
2686 |
}
|
2687 |
+
|
2688 |
.seopress-BlankState .seopress-BlankState-message::before {
|
2689 |
font-size: 120px;
|
2690 |
}
|
2691 |
+
|
2692 |
.seopress-BlankState .seopress-BlankState-buttons {
|
2693 |
margin-bottom: 4em;
|
2694 |
}
|
2695 |
+
|
2696 |
#seopress_content_analysis .up,
|
2697 |
#seopress_content_analysis .up .dashicons {
|
2698 |
color: var(--colorSuccess);
|
2714 |
#seopress_content_analysis .down .dashicons {
|
2715 |
transform: rotateZ(135deg);
|
2716 |
}
|
2717 |
+
|
2718 |
#seopress_content_analysis .wrap-insights-post {
|
2719 |
clear: both;
|
2720 |
border-top: 1px solid var(--borderColorCard);
|
2721 |
display: flex;
|
2722 |
align-items: center;
|
2723 |
}
|
2724 |
+
|
2725 |
#seopress_content_analysis .wrap-insights-post .widget-insights-title {
|
2726 |
margin: 0 1rem;
|
2727 |
}
|
2728 |
+
|
2729 |
#seopress_content_analysis .wrap-insights-post span {
|
2730 |
font-weight: 700;
|
2731 |
margin: 0 0.2rem 0 0;
|
2732 |
}
|
2733 |
+
|
2734 |
.wrap-user-roles {
|
2735 |
display: grid;
|
2736 |
grid-template-columns: repeat(4, 1fr);
|
2737 |
}
|
2738 |
+
|
2739 |
@media only screen and (max-width: 782px) {
|
2740 |
.wrap-user-roles {
|
2741 |
display: block;
|
2742 |
}
|
2743 |
}
|
2744 |
+
|
2745 |
/* Notifications */
|
2746 |
#seopress-notifications-center.is-active,
|
2747 |
#seopress-news-panel.is-active,
|
2748 |
#notice-insights-alert.is-active {
|
2749 |
display: block !important;
|
2750 |
}
|
2751 |
+
|
2752 |
#seopress-notifications-center .seopress-alert {
|
2753 |
padding: 16px 25px;
|
2754 |
position: relative;
|
2756 |
justify-content: space-between;
|
2757 |
margin-bottom: 20px;
|
2758 |
}
|
2759 |
+
|
2760 |
#seopress-notifications-center .seopress-alert:last-child {
|
2761 |
margin-bottom: 0;
|
2762 |
border-bottom: none;
|
2763 |
}
|
2764 |
+
|
2765 |
#seopress-notifications-center .dashicons {
|
2766 |
display: flex;
|
2767 |
align-self: normal;
|
2771 |
font-size: 30px;
|
2772 |
margin: 0 0 10px 0;
|
2773 |
}
|
2774 |
+
|
2775 |
#seopress-admin-tabs #tab_seopress_notifications.seopress-tab {
|
2776 |
background: 0 0;
|
2777 |
padding: 0;
|
2778 |
border-radius: 0;
|
2779 |
width: 100%;
|
2780 |
}
|
2781 |
+
|
2782 |
/* Notice */
|
2783 |
.seopress-notice #message {
|
2784 |
margin: 5px 10px 2px 0;
|
2785 |
}
|
2786 |
+
|
2787 |
#seopress-notice a {
|
2788 |
position: relative;
|
2789 |
text-decoration: none;
|
2790 |
margin: 0 0 0 0.3rem;
|
2791 |
}
|
2792 |
+
|
2793 |
#seopress-notice a .tooltip {
|
2794 |
white-space: pre;
|
2795 |
z-index: 200;
|
2809 |
left: -100%;
|
2810 |
overflow: hidden;
|
2811 |
}
|
2812 |
+
|
2813 |
#seopress-notice a:hover .tooltip {
|
2814 |
opacity: 1;
|
2815 |
visibility: visible;
|
2816 |
}
|
2817 |
+
|
2818 |
.seopress-page-list {
|
2819 |
margin: 1.5rem auto;
|
2820 |
}
|
2821 |
+
|
2822 |
.post-type-seopress_404 .seopress-notice,
|
2823 |
.post-type-seopress_schemas .seopress-notice,
|
2824 |
.post-type-seopress_bot .seopress-notice {
|
2827 |
margin: 0 0 50px;
|
2828 |
width: calc(100% - 48px);
|
2829 |
}
|
2830 |
+
|
2831 |
/* Searchbox */
|
2832 |
.seopress-search {
|
2833 |
position: relative;
|
2834 |
padding: 20px;
|
2835 |
}
|
2836 |
+
|
2837 |
.seopress-search::before {
|
2838 |
content: "\f179";
|
2839 |
font-family: "Dashicons";
|
2842 |
left: 30px;
|
2843 |
font-size: 20px;
|
2844 |
}
|
2845 |
+
|
2846 |
.seopress-search input {
|
2847 |
padding-left: 40px;
|
2848 |
}
|
2849 |
+
|
2850 |
/* Item */
|
2851 |
.seopress-item-toggle-options {
|
2852 |
position: relative;
|
2857 |
transform: rotate(90deg);
|
2858 |
display: inline-block;
|
2859 |
}
|
2860 |
+
|
2861 |
.seopress-item-toggle-options::before {
|
2862 |
content: "\f11c";
|
2863 |
font-family: "Dashicons";
|
2864 |
font-size: 18px;
|
2865 |
vertical-align: middle;
|
2866 |
}
|
2867 |
+
|
2868 |
/* Card */
|
2869 |
.seopress-card {
|
2870 |
background: #fff;
|
2872 |
border-radius: 3px;
|
2873 |
position: relative;
|
2874 |
}
|
2875 |
+
|
2876 |
+
.seopress-option .seopress-card-actions a + button {
|
2877 |
margin-left: 0.5em;
|
2878 |
}
|
2879 |
+
|
2880 |
.seopress-card-title {
|
2881 |
border-bottom: 1px solid var(--borderColorCard);
|
2882 |
padding: 18px 24px;
|
2884 |
justify-content: space-between;
|
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 |
+
|
2894 |
.seopress-card-title h2 {
|
2895 |
margin: 0;
|
2896 |
}
|
2897 |
+
|
2898 |
.seopress-cart-list {
|
2899 |
border-bottom: 1px solid var(--borderColorCard);
|
2900 |
+
padding: 0 0 0 24px;
|
2901 |
display: flex;
|
2902 |
align-items: center;
|
2903 |
text-decoration: none;
|
2905 |
font-weight: bold;
|
2906 |
line-height: 20px;
|
2907 |
}
|
2908 |
+
|
2909 |
+
.seopress-cart-list * {
|
2910 |
+
text-decoration: none;
|
2911 |
+
}
|
2912 |
+
|
2913 |
+
.seopress-cart-list a {
|
2914 |
+
display: block;
|
2915 |
+
width: 100%;
|
2916 |
+
padding: 18px 24px 18px 0;
|
2917 |
+
}
|
2918 |
+
|
2919 |
.seopress-cart-list:last-child {
|
2920 |
border-bottom: none;
|
2921 |
}
|
2922 |
+
|
2923 |
.seopress-cart-list:hover,
|
2924 |
.seopress-cart-list:focus,
|
2925 |
.seopress-cart-list:active {
|
2926 |
background: var(--backgroundSecondaryHover);
|
2927 |
}
|
2928 |
+
|
2929 |
body .seopress-cart-list h3 {
|
2930 |
font-size: var(--fontSize);
|
2931 |
color: var(--primaryColor);
|
2932 |
font-weight: bold;
|
2933 |
margin: 0;
|
2934 |
}
|
2935 |
+
|
2936 |
.seopress-cart-list p {
|
2937 |
color: var(--titleColor);
|
2938 |
font-weight: normal;
|
2940 |
font-size: 12px;
|
2941 |
line-height: 20px;
|
2942 |
}
|
2943 |
+
|
2944 |
.seopress-card-footer {
|
2945 |
padding: 10px 20px;
|
2946 |
border-top: 1px solid var(--borderColorLight40);
|
2947 |
}
|
2948 |
+
|
2949 |
.seopress-card-popover {
|
2950 |
display: none;
|
2951 |
background: #fff;
|
2957 |
right: 28px;
|
2958 |
z-index: 20;
|
2959 |
}
|
2960 |
+
|
2961 |
.seopress-card-popover.is-open {
|
2962 |
display: block;
|
2963 |
}
|
2964 |
+
|
2965 |
/* Quick tags */
|
2966 |
#seopress_cpt .tag-title,
|
2967 |
.seopress-button,
|
2974 |
border-radius: 4px;
|
2975 |
transition: all 0.3s linear;
|
2976 |
}
|
2977 |
+
|
2978 |
#seopress_cpt .wrap-tags,
|
2979 |
.seopress-option .wrap-tags,
|
2980 |
#seopress_pro_cpt .wrap-tags {
|
2983 |
width: 100%;
|
2984 |
margin: 10px 0;
|
2985 |
}
|
2986 |
+
|
2987 |
.seopress-option .wrap-tags {
|
2988 |
flex-wrap: wrap;
|
2989 |
}
|
2990 |
+
|
2991 |
.seopress-option .wrap-tags button {
|
2992 |
margin-bottom: 10px;
|
2993 |
}
|
3007 |
float: left;
|
3008 |
display: none;
|
3009 |
}
|
3010 |
+
|
3011 |
#seopress_cpt .sp-tag-variables-list,
|
3012 |
#seopress_pro_cpt .sp-tag-variables-list,
|
3013 |
#seopress-tabs.wrap .sp-tag-variables-list {
|
3027 |
list-style: none;
|
3028 |
padding: 0;
|
3029 |
}
|
3030 |
+
|
3031 |
#seopress_cpt .sp-wrap-tag-variables-list.open,
|
3032 |
#seopress_pro_cpt .sp-wrap-tag-variables-list.open,
|
3033 |
#seopress-tabs .sp-wrap-tag-variables-list.open {
|
3034 |
display: block;
|
3035 |
}
|
3036 |
+
|
3037 |
#seopress_cpt .seopress-tag-single-all.tag-title .dashicons,
|
3038 |
#seopress_cpt .seopress-tag-single-all.seopress-tag-dropdown .dashicons,
|
3039 |
#seopress_pro_cpt .seopress-tag-single-all.tag-title .dashicons,
|
3042 |
margin: 0;
|
3043 |
transition: all 150ms linear;
|
3044 |
}
|
3045 |
+
|
3046 |
#seopress_cpt .seopress-tag-single-all.open .dashicons,
|
3047 |
#seopress_pro_cpt .seopress-tag-single-all.open .dashicons,
|
3048 |
#seopress-tabs .seopress-tag-single-all.open .dashicons {
|
3049 |
transform: rotateX(180deg);
|
3050 |
}
|
3051 |
+
|
3052 |
#seopress_cpt .sp-tag-variables-list li,
|
3053 |
#seopress_pro_cpt .sp-tag-variables-list li,
|
3054 |
#seopress-tabs.wrap .sp-tag-variables-list li {
|
3057 |
margin: 0;
|
3058 |
border-bottom: 1px solid var(--borderColorLight40);
|
3059 |
}
|
3060 |
+
|
3061 |
#seopress_cpt .sp-tag-variables-list li span,
|
3062 |
#seopress_pro_cpt .sp-tag-variables-list li span,
|
3063 |
#seopress-tabs .sp-tag-variables-list li span {
|
3066 |
font-size: 12px;
|
3067 |
margin-bottom: 2px;
|
3068 |
}
|
3069 |
+
|
3070 |
#seopress_cpt .sp-tag-variables-list li:hover,
|
3071 |
#seopress_pro_cpt .sp-tag-variables-list li:hover,
|
3072 |
#seopress-tabs.wrap .sp-tag-variables-list li:hover {
|
3074 |
color: #fff;
|
3075 |
border-bottom-color: #fff;
|
3076 |
}
|
3077 |
+
|
3078 |
#seopress_cpt .sp-tag-variables-list li::after,
|
3079 |
#seopress_pro_cpt .sp-tag-variables-list li::after,
|
3080 |
#seopress-tabs.wrap .sp-tag-variables-list li::after {
|
3087 |
border-radius: 3px;
|
3088 |
font-size: 11px;
|
3089 |
}
|
3090 |
+
|
3091 |
#seopress_cpt .tag-title .dashicons,
|
3092 |
.seopress-option .tag-title .dashicons,
|
3093 |
#seopress_pro_cpt .tag-title .dashicons,
|
3101 |
color: var(--primaryColor);
|
3102 |
vertical-align: middle;
|
3103 |
}
|
3104 |
+
|
3105 |
#seopress_cpt .tag-title:hover .dashicons,
|
3106 |
.seopress-option .tag-title:hover .dashicons,
|
3107 |
#seopress_pro_cpt .tag-title:hover .dashicons,
|
3109 |
#seopress-tabs.wrap .seopress-tag-dropdown:hover .dashicons {
|
3110 |
color: #fff;
|
3111 |
}
|
3112 |
+
|
3113 |
#seopress-tabs.wrap .seopress-tag-dropdown .dashicons {
|
3114 |
margin: 0;
|
3115 |
}
|
3116 |
+
|
3117 |
.seopress-overlay-tag-dropdown {
|
3118 |
position: absolute;
|
3119 |
display: none;
|
3123 |
height: 100%;
|
3124 |
z-index: 50;
|
3125 |
}
|
3126 |
+
|
3127 |
.seopress-overlay-tag-dropdown.active {
|
3128 |
display: block;
|
3129 |
}
|
3130 |
+
|
3131 |
#seopress_cpt .tag-title,
|
3132 |
.seopress-option .tag-title,
|
3133 |
#seopress_pro_cpt .tag-title,
|
3142 |
align-items: center;
|
3143 |
color: var(--primaryColor);
|
3144 |
}
|
3145 |
+
|
3146 |
#seopress_cpt .tag-title:hover,
|
3147 |
#seopress_cpt .tag-title:focus,
|
3148 |
.seopress-option .tag-title:hover,
|
3157 |
background: var(--backgroundPrimaryHover);
|
3158 |
color: #fff;
|
3159 |
}
|
3160 |
+
|
3161 |
@media only screen and (max-width: 782px) {
|
3162 |
#seopress_cpt .tag-title,
|
3163 |
.seopress-option .tag-title,
|
3173 |
margin: 0;
|
3174 |
border-bottom: 1px solid var(--borderColorLight);
|
3175 |
}
|
3176 |
+
|
3177 |
#seopress-content .seopress-reverse label,
|
3178 |
#seopress-content .seopress-useful-tools .widget-whois ul li span {
|
3179 |
font-weight: 700;
|
3180 |
}
|
3181 |
+
|
3182 |
#seopress-content #seopress-reverse-url {
|
3183 |
width: 100%;
|
3184 |
margin: 10px 0;
|
3185 |
}
|
3186 |
+
|
3187 |
#seopress-content .widget-reverse p {
|
3188 |
margin: 0;
|
3189 |
}
|
3190 |
+
|
3191 |
/* Help tab */
|
3192 |
.seopress-styles #screen-meta {
|
3193 |
position: relative;
|
3194 |
top: 60px;
|
3195 |
}
|
3196 |
+
|
3197 |
.seopress-styles #screen-meta-links .show-settings {
|
3198 |
box-shadow: none;
|
3199 |
}
|
3200 |
+
|
3201 |
.seopress-styles #screen-meta-links .screen-meta-toggle {
|
3202 |
position: fixed;
|
3203 |
top: 32px;
|
3204 |
z-index: 2000;
|
3205 |
right: 40px;
|
3206 |
}
|
3207 |
+
|
3208 |
@media only screen and (max-width: 782px) {
|
3209 |
.seopress-styles #screen-meta-links .screen-meta-toggle {
|
3210 |
position: relative;
|
3211 |
top: 60px;
|
3212 |
}
|
3213 |
}
|
3214 |
+
|
3215 |
#seopress-content input.toggle,
|
3216 |
.seopress-option input.toggle,
|
3217 |
#seopress_cpt input.toggle {
|
3220 |
opacity: 0;
|
3221 |
position: relative;
|
3222 |
}
|
3223 |
+
|
3224 |
.seopress-feature input.toggle {
|
3225 |
display: block;
|
3226 |
}
|
3227 |
+
|
3228 |
.seopress_wrap_single_cpt input.toggle,
|
3229 |
.seopress_wrap_tax input.toggle,
|
3230 |
#seopress_cpt input.toggle {
|
3232 |
border: none;
|
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 {
|
3245 |
border-radius: 15px;
|
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 {
|
3274 |
background: rgba(19, 191, 17, 0);
|
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 {
|
3290 |
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2), 0 2px 4px rgba(0, 0, 0, 0.2);
|
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,
|
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,
|
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 {
|
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 |
}
|
3336 |
+
|
3337 |
#seopress-content .seopress-page-list {
|
3338 |
position: relative;
|
3339 |
display: block;
|
3340 |
max-width: 64rem;
|
3341 |
}
|
3342 |
+
|
3343 |
@media only screen and (max-width: 782px) {
|
3344 |
#seopress-content .seopress-page-list {
|
3345 |
grid-template-columns: repeat(1, 1fr);
|
3346 |
}
|
3347 |
}
|
3348 |
+
|
3349 |
+
.seopress-styles .wrap,
|
3350 |
+
.seopress-setup .wrap {
|
3351 |
margin: 0;
|
3352 |
display: flex;
|
3353 |
position: relative;
|
3354 |
}
|
3355 |
+
|
3356 |
+
.toplevel_page_seopress-option.seopress-styles .wrap {
|
3357 |
display: inherit;
|
3358 |
position: inherit;
|
3359 |
margin: inherit;
|
3360 |
}
|
3361 |
+
|
3362 |
@media only screen and (max-width: 782px) {
|
3363 |
.seopress-setup .wrap,
|
3364 |
.seopress-styles .wrap {
|
3367 |
margin: inherit;
|
3368 |
}
|
3369 |
}
|
3370 |
+
|
3371 |
/* Nav */
|
3372 |
.seopress-option .wrap div.nav-tab-wrapper {
|
3373 |
margin: 0;
|
3387 |
padding: 0;
|
3388 |
}
|
3389 |
}
|
3390 |
+
|
3391 |
#seopress-admin-tabs.wrap div.nav-tab-wrapper {
|
3392 |
background: #fff;
|
3393 |
margin: 0 auto;
|
3419 |
display: block;
|
3420 |
}
|
3421 |
}
|
3422 |
+
|
3423 |
.seopress-option .nav-tab {
|
3424 |
border: 0;
|
3425 |
background: 0 0;
|
3438 |
font-size: 14px;
|
3439 |
text-decoration: none;
|
3440 |
}
|
3441 |
+
|
3442 |
#seopress-admin-tabs .nav-tab {
|
3443 |
background: 0 0;
|
3444 |
opacity: 0.5;
|
3449 |
display: inline-block;
|
3450 |
font-weight: normal;
|
3451 |
}
|
3452 |
+
|
3453 |
#seopress-admin-tabs .nav-tab {
|
3454 |
width: 100%;
|
3455 |
}
|
3456 |
+
|
3457 |
#seopress-admin-tabs .nav-tab-active,
|
3458 |
#seopress-admin-tabs .nav-tab-active:focus,
|
3459 |
#seopress-admin-tabs .nav-tab-active:focus:active,
|
3470 |
position: relative;
|
3471 |
border-left: 3px solid var(--backgroundPrimary);
|
3472 |
}
|
3473 |
+
|
3474 |
#seopress-admin-tabs .nav-tab-active,
|
3475 |
#seopress-admin-tabs .nav-tab-active:focus,
|
3476 |
#seopress-admin-tabs .nav-tab-active:focus:active,
|
3479 |
border-bottom: 4px solid var(--backgroundPrimary);
|
3480 |
border-left: none;
|
3481 |
}
|
3482 |
+
|
3483 |
#seopress-admin-tabs .nav-tab:hover,
|
3484 |
.seopress-option .nav-tab:hover {
|
3485 |
opacity: 1;
|
3486 |
}
|
3487 |
+
|
3488 |
#seopress-admin-tabs .nav-tab:focus,
|
3489 |
.seopress-option .nav-tab:focus {
|
3490 |
outline: 0;
|
3491 |
box-shadow: none;
|
3492 |
}
|
3493 |
+
|
3494 |
/* Snackbar */
|
3495 |
@keyframes sp-fade-in-out {
|
3496 |
0% {
|
3498 |
bottom: 0;
|
3499 |
visibility: hidden;
|
3500 |
}
|
3501 |
+
|
3502 |
25% {
|
3503 |
opacity: 1;
|
3504 |
bottom: 40px;
|
3505 |
visibility: visible;
|
3506 |
}
|
3507 |
+
|
3508 |
75% {
|
3509 |
opacity: 1;
|
3510 |
visibility: visible;
|
3511 |
}
|
3512 |
+
|
3513 |
100% {
|
3514 |
opacity: 0;
|
3515 |
visibility: hidden;
|
3516 |
}
|
3517 |
}
|
3518 |
+
|
3519 |
.sp-components-snackbar-list {
|
3520 |
position: fixed;
|
3521 |
right: 0;
|
3529 |
visibility: hidden;
|
3530 |
z-index: 1;
|
3531 |
}
|
3532 |
+
|
3533 |
.sp-components-snackbar__content {
|
3534 |
display: flex;
|
3535 |
align-items: center;
|
3536 |
justify-content: space-between;
|
3537 |
line-height: 1.4;
|
3538 |
}
|
3539 |
+
|
3540 |
.sp-components-snackbar {
|
3541 |
font-family: var(--fontFamily);
|
3542 |
font-size: var(--fontSize);
|
3547 |
padding: 16px 24px;
|
3548 |
cursor: pointer;
|
3549 |
}
|
3550 |
+
|
3551 |
.sp-components-snackbar .dashicons {
|
3552 |
color: #fff;
|
3553 |
}
|
@@ -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_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-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-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:18px 24px;display:flex;align-items:center;text-decoration:none;color:var(--primaryColor);font-weight:700;line-height:20px}.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}.seopress-insights.seopress-styles .wrap,.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}#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,3 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
function sp_titles_counters() {
|
2 |
const $ = jQuery;
|
3 |
let elementTitleMeta = $("#seopress_titles_title_meta");
|
@@ -646,18 +654,24 @@ function sp_ca_toggle() {
|
|
646 |
stop = false;
|
647 |
}
|
648 |
jQuery(this).toggleClass("open");
|
|
|
649 |
jQuery(this).parent().parent().next(".gr-analysis-content").toggle();
|
|
|
650 |
});
|
651 |
|
652 |
//Show all
|
653 |
jQuery("#expand-all").on("click", function (e) {
|
654 |
e.preventDefault();
|
655 |
jQuery(".gr-analysis-content").show();
|
|
|
|
|
656 |
});
|
657 |
//Hide all
|
658 |
jQuery("#close-all").on("click", function (e) {
|
659 |
e.preventDefault();
|
660 |
jQuery(".gr-analysis-content").hide();
|
|
|
|
|
661 |
});
|
662 |
}
|
663 |
|
@@ -959,4 +973,33 @@ jQuery(document).ready(function (e) {
|
|
959 |
s();
|
960 |
}),
|
961 |
sp_ca_toggle();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
962 |
});
|
1 |
+
//Init tabs
|
2 |
+
jQuery(document).ready(function ($) {
|
3 |
+
if ($("#seopress-ca-tabs").length) {
|
4 |
+
$("#seopress-ca-tabs .hidden").removeClass("hidden");
|
5 |
+
$("#seopress-ca-tabs").tabs();
|
6 |
+
}
|
7 |
+
});
|
8 |
+
|
9 |
function sp_titles_counters() {
|
10 |
const $ = jQuery;
|
11 |
let elementTitleMeta = $("#seopress_titles_title_meta");
|
654 |
stop = false;
|
655 |
}
|
656 |
jQuery(this).toggleClass("open");
|
657 |
+
jQuery(this).attr('aria-expanded', (jQuery(this).attr('aria-expanded') == "false" ? true : false));
|
658 |
jQuery(this).parent().parent().next(".gr-analysis-content").toggle();
|
659 |
+
jQuery(this).parent().parent().next(".gr-analysis-content").attr('aria-hidden', (jQuery(this).parent().parent().next(".gr-analysis-content").attr('aria-hidden') == "true" ? false : true));
|
660 |
});
|
661 |
|
662 |
//Show all
|
663 |
jQuery("#expand-all").on("click", function (e) {
|
664 |
e.preventDefault();
|
665 |
jQuery(".gr-analysis-content").show();
|
666 |
+
jQuery(".gr-analysis-title button").attr('aria-expanded', true);
|
667 |
+
jQuery(".gr-analysis-content").attr('aria-hidden', false);
|
668 |
});
|
669 |
//Hide all
|
670 |
jQuery("#close-all").on("click", function (e) {
|
671 |
e.preventDefault();
|
672 |
jQuery(".gr-analysis-content").hide();
|
673 |
+
jQuery(".gr-analysis-title button").attr('aria-expanded', false);
|
674 |
+
jQuery(".gr-analysis-content").attr('aria-hidden', true);
|
675 |
});
|
676 |
}
|
677 |
|
973 |
s();
|
974 |
}),
|
975 |
sp_ca_toggle();
|
976 |
+
|
977 |
+
//Inspect URL
|
978 |
+
jQuery('#seopress_inspect_url').on("click", function () {
|
979 |
+
jQuery(this).attr("disabled", "disabled");
|
980 |
+
jQuery('.spinner').css("visibility", "visible");
|
981 |
+
jQuery('.spinner').css("float", "none");
|
982 |
+
|
983 |
+
//Post ID
|
984 |
+
if (typeof e("#seopress-tabs").attr("data_id") !== "undefined") {
|
985 |
+
var post_id = e("#seopress-tabs").attr("data_id");
|
986 |
+
} else if (typeof e("#seopress_content_analysis .wrap-seopress-analysis").attr("data_id") !== "undefined") {
|
987 |
+
var post_id = e("#seopress_content_analysis .wrap-seopress-analysis").attr("data_id")
|
988 |
+
}
|
989 |
+
|
990 |
+
e.ajax({
|
991 |
+
method: "POST",
|
992 |
+
url: seopressAjaxInspectUrl.seopress_inspect_url,
|
993 |
+
data: {
|
994 |
+
action: "seopress_inspect_url",
|
995 |
+
post_id: post_id,
|
996 |
+
_ajax_nonce: seopressAjaxInspectUrl.seopress_nonce,
|
997 |
+
},
|
998 |
+
success: function () {
|
999 |
+
jQuery('.spinner').css("visibility", "hidden");
|
1000 |
+
jQuery('#seopress_inspect_url').removeAttr("disabled");
|
1001 |
+
jQuery("#seopress-ca-tabs-1").load(" #seopress-ca-tabs-1");
|
1002 |
+
}
|
1003 |
+
});
|
1004 |
+
});
|
1005 |
});
|
@@ -1 +1 @@
|
|
1 |
-
function sp_titles_counters(){const e=jQuery;let t=e("#seopress_titles_title_meta");if(e("#seopress_titles_title_meta").length){e(".snippet-title-custom:visible").length>0?t=e(".snippet-title-custom"):e(".snippet-title:visible").length>0?t=e(".snippet-title"):e(".snippet-title-default:visible").length>0&&(t=e(".snippet-title-default"));var s=t.val(),i=jQuery("#seopress_titles_title_meta").attr("placeholder");if(jQuery("#seopress_titles_title_counters").after('<div id="seopress_titles_title_counters_val">/ 60</div>'),s.length>0?(jQuery("#seopress_titles_title_counters").text(s.length),jQuery("#seopress_titles_title_pixel").text(pixelTitle(s))):i.length&&(jQuery("#seopress_titles_title_counters").text(i.length),jQuery("#seopress_titles_title_pixel").text(pixelTitle(i))),s.length>60?jQuery("#seopress_titles_title_counters").css("color","red"):i.length>60&&jQuery("#seopress_titles_title_counters").css("color","red"),pixelTitle(s)>568?jQuery("#seopress_titles_title_pixel").css("color","red"):pixelTitle(i)>568&&jQuery("#seopress_titles_title_pixel").css("color","red"),s.length)var r=Math.round(pixelTitle(s)/568*100);else r=Math.round(pixelTitle(i)/568*100);r>=100&&(r=100),jQuery("#seopress_titles_title_counters_progress").attr("aria-valuenow",r),jQuery("#seopress_titles_title_counters_progress").text(r+"%"),jQuery("#seopress_titles_title_counters_progress").css("width",r+"%"),jQuery("#seopress_titles_title_meta, #seopress-tag-single-title, #seopress-tag-single-site-title, #seopress-tag-single-sep").on("keyup paste change click",function(t){var s=e("#seopress_titles_title_meta").val();e(".snippet-title-custom:visible").length>0?s=e(".snippet-title-custom").text():e(".snippet-title:visible").length>0?s=e(".snippet-title").text():e(".snippet-title-default:visible").length>0&&(s=e(".snippet-title-default").text());var i=jQuery("#seopress_titles_title_meta").attr("placeholder");if(jQuery("#seopress_titles_title_counters").css("color","inherit"),jQuery("#seopress_titles_title_pixel").css("color","inherit"),s.length>60&&jQuery("#seopress_titles_title_counters").css("color","red"),pixelTitle(s)>568&&jQuery("#seopress_titles_title_pixel").css("color","red"),0==s.length&&(i.length>60&&jQuery("#seopress_titles_title_counters").css("color","red"),pixelTitle(i)>568&&jQuery("#seopress_titles_title_pixel").css("color","red")),s.length>0?(jQuery("#seopress_titles_title_counters").text(s.length),jQuery("#seopress_titles_title_pixel").text(pixelTitle(s))):i.length&&(jQuery("#seopress_titles_title_counters").text(i.length),jQuery("#seopress_titles_title_pixel").text(pixelTitle(i))),s.length)var r=Math.round(pixelTitle(s)/568*100);else r=Math.round(pixelTitle(i)/568*100);r>=100&&(r=100),jQuery("#seopress_titles_title_counters_progress").attr("aria-valuenow",r),jQuery("#seopress_titles_title_counters_progress").text(r+"%"),jQuery("#seopress_titles_title_counters_progress").css("width",r+"%")})}}function sp_meta_desc_counters(){if(jQuery("#seopress_titles_desc_meta").length){var e=jQuery("#seopress_titles_desc_meta").val(),t=jQuery("#seopress_titles_desc_meta").attr("placeholder");if(jQuery("#seopress_titles_desc_counters").after('<div id="seopress_titles_desc_counters_val">/ 160</div>'),e.length>0?(jQuery("#seopress_titles_desc_counters").text(e.length),jQuery("#seopress_titles_desc_pixel").text(pixelDesc(e))):t.length&&(jQuery("#seopress_titles_desc_counters").text(t.length),jQuery("#seopress_titles_desc_pixel").text(pixelDesc(t))),e.length>160?jQuery("#seopress_titles_desc_counters").css("color","red"):t.length>160&&jQuery("#seopress_titles_desc_counters").css("color","red"),pixelDesc(e)>940?jQuery("#seopress_titles_desc_pixel").css("color","red"):pixelDesc(t)>940&&jQuery("#seopress_titles_desc_pixel").css("color","red"),e.length)var s=Math.round(pixelDesc(e)/940*100);else s=Math.round(pixelDesc(t)/940*100);s>=100&&(s=100),jQuery("#seopress_titles_desc_counters_progress").attr("aria-valuenow",s),jQuery("#seopress_titles_desc_counters_progress").text(s+"%"),jQuery("#seopress_titles_desc_counters_progress").css("width",s+"%"),jQuery("#seopress_titles_desc_meta, #seopress-tag-single-excerpt").on("keyup paste change click",function(e){var t=jQuery("#seopress_titles_desc_meta").val(),s=jQuery("#seopress_titles_desc_meta").attr("placeholder");if(jQuery("#seopress_titles_desc_counters").css("color","inherit"),jQuery("#seopress_titles_desc_pixel").css("color","inherit"),t.length>160&&jQuery("#seopress_titles_desc_counters").css("color","red"),pixelDesc(t)>940&&jQuery("#seopress_titles_desc_pixel").css("color","red"),0==t.length&&(s.length>160&&jQuery("#seopress_titles_desc_counters").css("color","red"),pixelDesc(s)>940&&jQuery("#seopress_titles_desc_pixel").css("color","red")),t.length>0?(jQuery("#seopress_titles_desc_counters").text(t.length),jQuery("#seopress_titles_desc_pixel").text(pixelDesc(t))):s.length&&(jQuery("#seopress_titles_desc_counters").text(s.length),jQuery("#seopress_titles_desc_pixel").text(pixelDesc(s))),t.length>0?(jQuery(".snippet-description-custom").text(e.target.value),jQuery(".snippet-description").css("display","none"),jQuery(".snippet-description-custom").css("display","inline"),jQuery(".snippet-description-default").css("display","none")):0==t.length&&(jQuery(".snippet-description-default").css("display","inline"),jQuery(".snippet-description-custom").css("display","none"),jQuery(".snippet-description").css("display","none")),t.length)var i=Math.round(pixelDesc(t)/940*100);else i=Math.round(pixelDesc(s)/940*100);i>=100&&(i=100),jQuery("#seopress_titles_desc_counters_progress").attr("aria-valuenow",i),jQuery("#seopress_titles_desc_counters_progress").text(i+"%"),jQuery("#seopress_titles_desc_counters_progress").css("width",i+"%")}),jQuery("#excerpt, .editor-post-excerpt textarea").keyup(function(e){var t=jQuery("#seopress_titles_desc_meta").val(),s=jQuery("#seopress_titles_desc_meta").attr("placeholder");if(0==t.length&&0==jQuery(".snippet-description-custom").val().length&&(jQuery(".snippet-description-custom").text(e.target.value),jQuery(".snippet-description").css("display","none"),jQuery(".snippet-description-custom").css("display","inline"),jQuery(".snippet-description-default").css("display","none")),t.length)var i=t.length;else i=s.length;i>=100&&(i=100),jQuery("#seopress_titles_desc_counters_progress").attr("aria-valuenow",i),jQuery("#seopress_titles_desc_counters_progress").text(i+"%"),jQuery("#seopress_titles_desc_counters_progress").css("width",i+"%")})}}function pixelTitle(e){return inputText=e,font="18px Arial",canvas=document.createElement("canvas"),context=canvas.getContext("2d"),context.font=font,width=context.measureText(inputText).width,formattedWidth=Math.ceil(width),formattedWidth}function pixelDesc(e){return inputText=e,font="14px Arial",canvas=document.createElement("canvas"),context=canvas.getContext("2d"),context.font=font,width=context.measureText(inputText).width,formattedWidth=Math.ceil(width),formattedWidth}function sp_is_valid_url(e){var t=e.match(/(http(s)?:\/\/.)?(www\.)?[-a-zA-Z0-9@:%._\+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_\+.~#?&//=]*)/g);return null!==t}function sp_social_img(e){if(jQuery("#seopress_social_fb_title_meta").length){jQuery(".snippet-"+e+"-img-alert").css("display","none");var t=jQuery("#seopress_social_"+e+"_img_meta").val();if(""==t)t=jQuery("#seopress_social_"+e+"_img_meta").attr("placeholder");!0===sp_is_valid_url(t)?(t.length>0?(jQuery(".snippet-"+e+"-img-custom img").attr("src",t),jQuery(".snippet-"+e+"-img").css("display","none"),jQuery(".snippet-"+e+"-img-custom").css("display","block"),jQuery(".snippet-"+e+"-img-default").css("display","none")):0==t.length&&(jQuery(".snippet-"+e+"-img-default").css("display","block"),jQuery(".snippet-"+e+"-img-custom").css("display","none"),jQuery(".snippet-"+e+"-img").css("display","none")),t.length>0&&jQuery.get(t).done(function(){var s=t.split(/\#|\?/)[0].split(".").pop().trim(),i=["jpg","jpeg","gif","png","webp"];if(-1==i.indexOf(s))jQuery(".snippet-"+e+"-img-alert.alert1").css("display","block");else{var r=new Image;r.src=t,jQuery(r).one("load",function(){pic_real_width=parseInt(r.width),pic_real_height=parseInt(r.height),"fb"==e?(min_width=200,min_height=200):(min_width=144,min_height=144),(pic_real_width<min_width||pic_real_height<min_height)&&jQuery(".snippet-"+e+"-img-alert.alert2").css("display","block"),ratio_img=(pic_real_width/pic_real_height).toFixed(2),jQuery(".snippet-"+e+"-img-alert.alert4").css("display","block"),jQuery(".snippet-"+e+"-img-alert.alert4 span").text(ratio_img)})}}).fail(function(){jQuery(".snippet-"+e+"-img-alert.alert3").css("display","block")})):jQuery(".snippet-"+e+"-img-alert.alert5").css("display","block")}}function sp_social(){jQuery("#seopress_social_fb_title_meta").length&&(jQuery("#seopress_social_fb_title_meta, #seopress-tag-single-title, #seopress-tag-single-site-title, #seopress-tag-single-sep").on("keyup paste change click",function(e){var t=jQuery("#seopress_social_fb_title_meta").val();t.length>0?(jQuery(".snippet-fb-title-custom").text(e.target.value),jQuery(".snippet-fb-title").css("display","none"),jQuery(".snippet-fb-title-custom").css("display","block"),jQuery(".snippet-fb-title-default").css("display","none")):0==t.length&&(jQuery(".snippet-fb-title-default").css("display","block"),jQuery(".snippet-fb-title-custom").css("display","none"),jQuery(".snippet-fb-title").css("display","none"))}),jQuery("#seopress_social_fb_desc_meta").on("keyup paste change click",function(e){var t=jQuery("#seopress_social_fb_desc_meta").val();t.length>0?(jQuery(".snippet-fb-description-custom").text(e.target.value),jQuery(".snippet-fb-description").css("display","none"),jQuery(".snippet-fb-description-custom").css("display","block"),jQuery(".snippet-fb-description-default").css("display","none")):0==t.length&&(jQuery(".snippet-fb-description-default").css("display","block"),jQuery(".snippet-fb-description-custom").css("display","none"),jQuery(".snippet-fb-description").css("display","none"))}),sp_social_img("fb"),jQuery("#seopress_social_fb_img_meta").on("keyup paste change click",function(){sp_social_img("fb")}),jQuery("#seopress_social_twitter_title_meta").on("keyup paste change click",function(e){var t=jQuery("#seopress_social_twitter_title_meta").val();t.length>0?(jQuery(".snippet-twitter-title-custom").text(e.target.value),jQuery(".snippet-twitter-title").css("display","none"),jQuery(".snippet-twitter-title-custom").css("display","block"),jQuery(".snippet-twitter-title-default").css("display","none")):0==t.length&&(jQuery(".snippet-twitter-title-default").css("display","block"),jQuery(".snippet-twitter-title-custom").css("display","none"),jQuery(".snippet-twitter-title").css("display","none"))}),jQuery("#seopress_social_twitter_desc_meta").on("keyup paste change click",function(e){var t=jQuery("#seopress_social_twitter_desc_meta").val();t.length>0?(jQuery(".snippet-twitter-description-custom").text(e.target.value),jQuery(".snippet-twitter-description").css("display","none"),jQuery(".snippet-twitter-description-custom").css("display","block"),jQuery(".snippet-twitter-description-default").css("display","none")):0==t.length&&(jQuery(".snippet-twitter-description-default").css("display","block"),jQuery(".snippet-twitter-description-custom").css("display","none"),jQuery(".snippet-twitter-description").css("display","none"))}),sp_social_img("twitter"),jQuery("#seopress_social_twitter_img_meta").on("keyup paste change click",function(){sp_social_img("twitter")}))}function sp_ca_toggle(){var e=!1;jQuery(".gr-analysis-title .btn-toggle").on("click",function(t){e&&(event.stopImmediatePropagation(),event.preventDefault(),e=!1),jQuery(this).toggleClass("open"),jQuery(this).parent().parent().next(".gr-analysis-content").toggle()}),jQuery("#expand-all").on("click",function(e){e.preventDefault(),jQuery(".gr-analysis-content").show()}),jQuery("#close-all").on("click",function(e){e.preventDefault(),jQuery(".gr-analysis-content").hide()})}function seopress_google_suggest(e){var t,s=String(e),i=s.split(",");for(t=0;t<i.length;t++)null!=i[t]&&null!=i[t]&&""!=i[t]&&"[object Object]"!=i[t]&&(document.getElementById("seopress_suggestions").innerHTML+='<li><a href="#" class="sp-suggest-btn components-button is-secondary">'+i[t]+"</a></li>");jQuery(".sp-suggest-btn").click(function(e){e.preventDefault(),target_kw.addTags(jQuery(this).text())})}var input=document.querySelector("input[id=seopress_analysis_target_kw_meta]"),target_kw=new Tagify(input,{originalInputValueFormat:e=>e.map(e=>e.value).join(",")});jQuery(document).ready(function(e){function t(){if(void 0!==e("#seopress-tabs").attr("data_id"))var t=e("#seopress-tabs").attr("data_id");else if(void 0!==e("#seopress_content_analysis .wrap-seopress-analysis").attr("data_id"))t=e("#seopress_content_analysis .wrap-seopress-analysis").attr("data_id");if(void 0!==e("#seopress-tabs").attr("data_tax"))var s=e("#seopress-tabs").attr("data_tax");else if(void 0!==e("#seopress_content_analysis .wrap-seopress-analysis").attr("data_tax"))s=e("#seopress_content_analysis .wrap-seopress-analysis").attr("data_tax");if(void 0!==e("#seopress-tabs").attr("data_origin"))var i=e("#seopress-tabs").attr("data_origin");else if(void 0!==e("#seopress_content_analysis .wrap-seopress-analysis").attr("data_origin"))i=e("#seopress_content_analysis .wrap-seopress-analysis").attr("data_origin");e.ajax({method:"GET",url:seopressAjaxRealPreview.seopress_real_preview,data:{action:"seopress_do_real_preview",post_id:t,tax_name:s,origin:i,post_type:e("#seopress_launch_analysis").attr("data_post_type"),seopress_analysis_target_kw:e("#seopress_analysis_target_kw_meta").val(),_ajax_nonce:seopressAjaxRealPreview.seopress_nonce},beforeSend:function(){e(".analysis-score p span").fadeIn().text(seopressAjaxRealPreview.i18n.progress),e(".analysis-score p").addClass("loading")},success:function(t){void 0===t.data.og_title?og_title="":og_title=t.data.og_title.values,void 0===t.data.og_desc?og_desc="":og_desc=t.data.og_desc.values,void 0===t.data.og_img?og_img="":og_img=t.data.og_img.values,void 0===t.data.og_url?og_url="":og_url=t.data.og_url.host,void 0===t.data.og_site_name?og_site_name="":og_site_name=t.data.og_site_name.values,void 0===t.data.tw_title?tw_title="":tw_title=t.data.tw_title.values,void 0===t.data.tw_desc?tw_desc="":tw_desc=t.data.tw_desc.values,void 0===t.data.tw_img?tw_img="":tw_img=t.data.tw_img.values,void 0===t.data.meta_robots?meta_robots="":meta_robots=t.data.meta_robots[0];var s={og_title:og_title,og_desc:og_desc,og_img:og_img,og_url:og_url,og_site_name:og_site_name,tw_title:tw_title,tw_desc:tw_desc,tw_img:tw_img};for(var i in s)s.length&&(i=s[i].length>1?s[i].slice(-1)[0]:s[i][0]);meta_robots=meta_robots.toString(),e("#sp-advanced-alert").empty();var r=new RegExp("noindex");r.test(meta_robots)&&e("#sp-advanced-alert").append('<span class="impact high" aria-hidden="true"></span>'),e("#seopress_cpt .google-snippet-preview .snippet-title").html(t.data.title),e("#seopress_cpt .google-snippet-preview .snippet-title-default").html(t.data.title),e("#seopress_titles_title_meta").attr("placeholder",t.data.title),e("#seopress_cpt .google-snippet-preview .snippet-description").html(t.data.meta_desc),e("#seopress_cpt .google-snippet-preview .snippet-description-default").html(t.data.meta_desc),e("#seopress_titles_desc_meta").attr("placeholder",t.data.meta_desc),s.og_title&&(e("#seopress_cpt #seopress_social_fb_title_meta").attr("placeholder",s.og_title[0]),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-title").html(s.og_title[0]),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-title-default").html(s.og_title[0])),s.og_desc&&(e("#seopress_cpt #seopress_social_fb_desc_meta").attr("placeholder",s.og_desc[0]),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-description").html(s.og_desc[0]),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-description-default").html(s.og_desc[0])),s.og_img&&(e("#seopress_cpt #seopress_social_fb_img_meta").attr("placeholder",s.og_img[0]),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-img img").attr("src",s.og_img[0]),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-img-default img").attr("src",s.og_img[0])),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-url").html(s.og_url),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-site-name").html(s.og_site_name),s.tw_title&&(e("#seopress_cpt #seopress_social_twitter_title_meta").attr("placeholder",s.tw_title[0]),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-title").html(s.tw_title[0]),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-title-default").html(s.tw_title[0])),s.tw_desc&&(e("#seopress_cpt #seopress_social_twitter_desc_meta").attr("placeholder",s.tw_desc[0]),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-description").html(s.tw_desc[0]),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-description-default").html(s.tw_desc[0])),s.tw_img&&(e("#seopress_cpt #seopress_social_twitter_img_meta").attr("placeholder",s.tw_img[0]),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-img img").attr("src",s.tw_img[0]),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-img-default img").attr("src",s.tw_img[0])),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-url").html(s.og_url),e("#seopress_cpt #seopress_robots_canonical_meta").attr("placeholder",t.data.canonical),e("#seopress-analysis-tabs").load(" #seopress-analysis-tabs-1","",sp_ca_toggle),e(".analysis-score p").removeClass("loading"),e(" #seopress_titles_title_counters_val").remove(),e(" #seopress_titles_desc_counters_val").remove(),sp_titles_counters(),sp_meta_desc_counters(),sp_social()}})}"1"==jQuery("#toggle-preview").attr("data-toggle")?jQuery("#seopress_cpt .google-snippet-preview").addClass("mobile-preview"):jQuery("#seopress_cpt .google-snippet-preview").removeClass("mobile-preview"),jQuery("#toggle-preview").on("click",function(){jQuery("#toggle-preview").attr("data-toggle","1"==jQuery("#toggle-preview").attr("data-toggle")?"0":"1"),jQuery("#seopress_cpt .google-snippet-preview").toggleClass("mobile-preview")}),t(),e("#seopress_launch_analysis").on("click",function(){t()}),sp_ca_toggle()});
|
1 |
+
function sp_titles_counters(){const e=jQuery;let t=e("#seopress_titles_title_meta");if(e("#seopress_titles_title_meta").length){e(".snippet-title-custom:visible").length>0?t=e(".snippet-title-custom"):e(".snippet-title:visible").length>0?t=e(".snippet-title"):e(".snippet-title-default:visible").length>0&&(t=e(".snippet-title-default"));var s=t.val(),i=jQuery("#seopress_titles_title_meta").attr("placeholder");if(jQuery("#seopress_titles_title_counters").after('<div id="seopress_titles_title_counters_val">/ 60</div>'),s.length>0?(jQuery("#seopress_titles_title_counters").text(s.length),jQuery("#seopress_titles_title_pixel").text(pixelTitle(s))):i.length&&(jQuery("#seopress_titles_title_counters").text(i.length),jQuery("#seopress_titles_title_pixel").text(pixelTitle(i))),s.length>60?jQuery("#seopress_titles_title_counters").css("color","red"):i.length>60&&jQuery("#seopress_titles_title_counters").css("color","red"),pixelTitle(s)>568?jQuery("#seopress_titles_title_pixel").css("color","red"):pixelTitle(i)>568&&jQuery("#seopress_titles_title_pixel").css("color","red"),s.length)var r=Math.round(pixelTitle(s)/568*100);else r=Math.round(pixelTitle(i)/568*100);r>=100&&(r=100),jQuery("#seopress_titles_title_counters_progress").attr("aria-valuenow",r),jQuery("#seopress_titles_title_counters_progress").text(r+"%"),jQuery("#seopress_titles_title_counters_progress").css("width",r+"%"),jQuery("#seopress_titles_title_meta, #seopress-tag-single-title, #seopress-tag-single-site-title, #seopress-tag-single-sep").on("keyup paste change click",function(t){var s=e("#seopress_titles_title_meta").val();e(".snippet-title-custom:visible").length>0?s=e(".snippet-title-custom").text():e(".snippet-title:visible").length>0?s=e(".snippet-title").text():e(".snippet-title-default:visible").length>0&&(s=e(".snippet-title-default").text());var i=jQuery("#seopress_titles_title_meta").attr("placeholder");if(jQuery("#seopress_titles_title_counters").css("color","inherit"),jQuery("#seopress_titles_title_pixel").css("color","inherit"),s.length>60&&jQuery("#seopress_titles_title_counters").css("color","red"),pixelTitle(s)>568&&jQuery("#seopress_titles_title_pixel").css("color","red"),0==s.length&&(i.length>60&&jQuery("#seopress_titles_title_counters").css("color","red"),pixelTitle(i)>568&&jQuery("#seopress_titles_title_pixel").css("color","red")),s.length>0?(jQuery("#seopress_titles_title_counters").text(s.length),jQuery("#seopress_titles_title_pixel").text(pixelTitle(s))):i.length&&(jQuery("#seopress_titles_title_counters").text(i.length),jQuery("#seopress_titles_title_pixel").text(pixelTitle(i))),s.length)var r=Math.round(pixelTitle(s)/568*100);else r=Math.round(pixelTitle(i)/568*100);r>=100&&(r=100),jQuery("#seopress_titles_title_counters_progress").attr("aria-valuenow",r),jQuery("#seopress_titles_title_counters_progress").text(r+"%"),jQuery("#seopress_titles_title_counters_progress").css("width",r+"%")})}}function sp_meta_desc_counters(){if(jQuery("#seopress_titles_desc_meta").length){var e=jQuery("#seopress_titles_desc_meta").val(),t=jQuery("#seopress_titles_desc_meta").attr("placeholder");if(jQuery("#seopress_titles_desc_counters").after('<div id="seopress_titles_desc_counters_val">/ 160</div>'),e.length>0?(jQuery("#seopress_titles_desc_counters").text(e.length),jQuery("#seopress_titles_desc_pixel").text(pixelDesc(e))):t.length&&(jQuery("#seopress_titles_desc_counters").text(t.length),jQuery("#seopress_titles_desc_pixel").text(pixelDesc(t))),e.length>160?jQuery("#seopress_titles_desc_counters").css("color","red"):t.length>160&&jQuery("#seopress_titles_desc_counters").css("color","red"),pixelDesc(e)>940?jQuery("#seopress_titles_desc_pixel").css("color","red"):pixelDesc(t)>940&&jQuery("#seopress_titles_desc_pixel").css("color","red"),e.length)var s=Math.round(pixelDesc(e)/940*100);else s=Math.round(pixelDesc(t)/940*100);s>=100&&(s=100),jQuery("#seopress_titles_desc_counters_progress").attr("aria-valuenow",s),jQuery("#seopress_titles_desc_counters_progress").text(s+"%"),jQuery("#seopress_titles_desc_counters_progress").css("width",s+"%"),jQuery("#seopress_titles_desc_meta, #seopress-tag-single-excerpt").on("keyup paste change click",function(e){var t=jQuery("#seopress_titles_desc_meta").val(),s=jQuery("#seopress_titles_desc_meta").attr("placeholder");if(jQuery("#seopress_titles_desc_counters").css("color","inherit"),jQuery("#seopress_titles_desc_pixel").css("color","inherit"),t.length>160&&jQuery("#seopress_titles_desc_counters").css("color","red"),pixelDesc(t)>940&&jQuery("#seopress_titles_desc_pixel").css("color","red"),0==t.length&&(s.length>160&&jQuery("#seopress_titles_desc_counters").css("color","red"),pixelDesc(s)>940&&jQuery("#seopress_titles_desc_pixel").css("color","red")),t.length>0?(jQuery("#seopress_titles_desc_counters").text(t.length),jQuery("#seopress_titles_desc_pixel").text(pixelDesc(t))):s.length&&(jQuery("#seopress_titles_desc_counters").text(s.length),jQuery("#seopress_titles_desc_pixel").text(pixelDesc(s))),t.length>0?(jQuery(".snippet-description-custom").text(e.target.value),jQuery(".snippet-description").css("display","none"),jQuery(".snippet-description-custom").css("display","inline"),jQuery(".snippet-description-default").css("display","none")):0==t.length&&(jQuery(".snippet-description-default").css("display","inline"),jQuery(".snippet-description-custom").css("display","none"),jQuery(".snippet-description").css("display","none")),t.length)var i=Math.round(pixelDesc(t)/940*100);else i=Math.round(pixelDesc(s)/940*100);i>=100&&(i=100),jQuery("#seopress_titles_desc_counters_progress").attr("aria-valuenow",i),jQuery("#seopress_titles_desc_counters_progress").text(i+"%"),jQuery("#seopress_titles_desc_counters_progress").css("width",i+"%")}),jQuery("#excerpt, .editor-post-excerpt textarea").keyup(function(e){var t=jQuery("#seopress_titles_desc_meta").val(),s=jQuery("#seopress_titles_desc_meta").attr("placeholder");if(0==t.length&&0==jQuery(".snippet-description-custom").val().length&&(jQuery(".snippet-description-custom").text(e.target.value),jQuery(".snippet-description").css("display","none"),jQuery(".snippet-description-custom").css("display","inline"),jQuery(".snippet-description-default").css("display","none")),t.length)var i=t.length;else i=s.length;i>=100&&(i=100),jQuery("#seopress_titles_desc_counters_progress").attr("aria-valuenow",i),jQuery("#seopress_titles_desc_counters_progress").text(i+"%"),jQuery("#seopress_titles_desc_counters_progress").css("width",i+"%")})}}function pixelTitle(e){return inputText=e,font="18px Arial",canvas=document.createElement("canvas"),context=canvas.getContext("2d"),context.font=font,width=context.measureText(inputText).width,formattedWidth=Math.ceil(width),formattedWidth}function pixelDesc(e){return inputText=e,font="14px Arial",canvas=document.createElement("canvas"),context=canvas.getContext("2d"),context.font=font,width=context.measureText(inputText).width,formattedWidth=Math.ceil(width),formattedWidth}function sp_is_valid_url(e){var t=e.match(/(http(s)?:\/\/.)?(www\.)?[-a-zA-Z0-9@:%._\+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_\+.~#?&//=]*)/g);return null!==t}function sp_social_img(e){if(jQuery("#seopress_social_fb_title_meta").length){jQuery(".snippet-"+e+"-img-alert").css("display","none");var t=jQuery("#seopress_social_"+e+"_img_meta").val();if(""==t)t=jQuery("#seopress_social_"+e+"_img_meta").attr("placeholder");!0===sp_is_valid_url(t)?(t.length>0?(jQuery(".snippet-"+e+"-img-custom img").attr("src",t),jQuery(".snippet-"+e+"-img").css("display","none"),jQuery(".snippet-"+e+"-img-custom").css("display","block"),jQuery(".snippet-"+e+"-img-default").css("display","none")):0==t.length&&(jQuery(".snippet-"+e+"-img-default").css("display","block"),jQuery(".snippet-"+e+"-img-custom").css("display","none"),jQuery(".snippet-"+e+"-img").css("display","none")),t.length>0&&jQuery.get(t).done(function(){var s=t.split(/\#|\?/)[0].split(".").pop().trim(),i=["jpg","jpeg","gif","png","webp"];if(-1==i.indexOf(s))jQuery(".snippet-"+e+"-img-alert.alert1").css("display","block");else{var r=new Image;r.src=t,jQuery(r).one("load",function(){pic_real_width=parseInt(r.width),pic_real_height=parseInt(r.height),"fb"==e?(min_width=200,min_height=200):(min_width=144,min_height=144),(pic_real_width<min_width||pic_real_height<min_height)&&jQuery(".snippet-"+e+"-img-alert.alert2").css("display","block"),ratio_img=(pic_real_width/pic_real_height).toFixed(2),jQuery(".snippet-"+e+"-img-alert.alert4").css("display","block"),jQuery(".snippet-"+e+"-img-alert.alert4 span").text(ratio_img)})}}).fail(function(){jQuery(".snippet-"+e+"-img-alert.alert3").css("display","block")})):jQuery(".snippet-"+e+"-img-alert.alert5").css("display","block")}}function sp_social(){jQuery("#seopress_social_fb_title_meta").length&&(jQuery("#seopress_social_fb_title_meta, #seopress-tag-single-title, #seopress-tag-single-site-title, #seopress-tag-single-sep").on("keyup paste change click",function(e){var t=jQuery("#seopress_social_fb_title_meta").val();t.length>0?(jQuery(".snippet-fb-title-custom").text(e.target.value),jQuery(".snippet-fb-title").css("display","none"),jQuery(".snippet-fb-title-custom").css("display","block"),jQuery(".snippet-fb-title-default").css("display","none")):0==t.length&&(jQuery(".snippet-fb-title-default").css("display","block"),jQuery(".snippet-fb-title-custom").css("display","none"),jQuery(".snippet-fb-title").css("display","none"))}),jQuery("#seopress_social_fb_desc_meta").on("keyup paste change click",function(e){var t=jQuery("#seopress_social_fb_desc_meta").val();t.length>0?(jQuery(".snippet-fb-description-custom").text(e.target.value),jQuery(".snippet-fb-description").css("display","none"),jQuery(".snippet-fb-description-custom").css("display","block"),jQuery(".snippet-fb-description-default").css("display","none")):0==t.length&&(jQuery(".snippet-fb-description-default").css("display","block"),jQuery(".snippet-fb-description-custom").css("display","none"),jQuery(".snippet-fb-description").css("display","none"))}),sp_social_img("fb"),jQuery("#seopress_social_fb_img_meta").on("keyup paste change click",function(){sp_social_img("fb")}),jQuery("#seopress_social_twitter_title_meta").on("keyup paste change click",function(e){var t=jQuery("#seopress_social_twitter_title_meta").val();t.length>0?(jQuery(".snippet-twitter-title-custom").text(e.target.value),jQuery(".snippet-twitter-title").css("display","none"),jQuery(".snippet-twitter-title-custom").css("display","block"),jQuery(".snippet-twitter-title-default").css("display","none")):0==t.length&&(jQuery(".snippet-twitter-title-default").css("display","block"),jQuery(".snippet-twitter-title-custom").css("display","none"),jQuery(".snippet-twitter-title").css("display","none"))}),jQuery("#seopress_social_twitter_desc_meta").on("keyup paste change click",function(e){var t=jQuery("#seopress_social_twitter_desc_meta").val();t.length>0?(jQuery(".snippet-twitter-description-custom").text(e.target.value),jQuery(".snippet-twitter-description").css("display","none"),jQuery(".snippet-twitter-description-custom").css("display","block"),jQuery(".snippet-twitter-description-default").css("display","none")):0==t.length&&(jQuery(".snippet-twitter-description-default").css("display","block"),jQuery(".snippet-twitter-description-custom").css("display","none"),jQuery(".snippet-twitter-description").css("display","none"))}),sp_social_img("twitter"),jQuery("#seopress_social_twitter_img_meta").on("keyup paste change click",function(){sp_social_img("twitter")}))}function sp_ca_toggle(){var e=!1;jQuery(".gr-analysis-title .btn-toggle").on("click",function(t){e&&(event.stopImmediatePropagation(),event.preventDefault(),e=!1),jQuery(this).toggleClass("open"),jQuery(this).attr("aria-expanded","false"==jQuery(this).attr("aria-expanded")),jQuery(this).parent().parent().next(".gr-analysis-content").toggle(),jQuery(this).parent().parent().next(".gr-analysis-content").attr("aria-hidden","true"!=jQuery(this).parent().parent().next(".gr-analysis-content").attr("aria-hidden"))}),jQuery("#expand-all").on("click",function(e){e.preventDefault(),jQuery(".gr-analysis-content").show(),jQuery(".gr-analysis-title button").attr("aria-expanded",!0),jQuery(".gr-analysis-content").attr("aria-hidden",!1)}),jQuery("#close-all").on("click",function(e){e.preventDefault(),jQuery(".gr-analysis-content").hide(),jQuery(".gr-analysis-title button").attr("aria-expanded",!1),jQuery(".gr-analysis-content").attr("aria-hidden",!0)})}function seopress_google_suggest(e){var t,s=String(e),i=s.split(",");for(t=0;t<i.length;t++)null!=i[t]&&null!=i[t]&&""!=i[t]&&"[object Object]"!=i[t]&&(document.getElementById("seopress_suggestions").innerHTML+='<li><a href="#" class="sp-suggest-btn components-button is-secondary">'+i[t]+"</a></li>");jQuery(".sp-suggest-btn").click(function(e){e.preventDefault(),target_kw.addTags(jQuery(this).text())})}jQuery(document).ready(function(e){e("#seopress-ca-tabs").length&&(e("#seopress-ca-tabs .hidden").removeClass("hidden"),e("#seopress-ca-tabs").tabs())});var input=document.querySelector("input[id=seopress_analysis_target_kw_meta]"),target_kw=new Tagify(input,{originalInputValueFormat:e=>e.map(e=>e.value).join(",")});jQuery(document).ready(function(e){function t(){if(void 0!==e("#seopress-tabs").attr("data_id"))var t=e("#seopress-tabs").attr("data_id");else if(void 0!==e("#seopress_content_analysis .wrap-seopress-analysis").attr("data_id"))t=e("#seopress_content_analysis .wrap-seopress-analysis").attr("data_id");if(void 0!==e("#seopress-tabs").attr("data_tax"))var s=e("#seopress-tabs").attr("data_tax");else if(void 0!==e("#seopress_content_analysis .wrap-seopress-analysis").attr("data_tax"))s=e("#seopress_content_analysis .wrap-seopress-analysis").attr("data_tax");if(void 0!==e("#seopress-tabs").attr("data_origin"))var i=e("#seopress-tabs").attr("data_origin");else if(void 0!==e("#seopress_content_analysis .wrap-seopress-analysis").attr("data_origin"))i=e("#seopress_content_analysis .wrap-seopress-analysis").attr("data_origin");e.ajax({method:"GET",url:seopressAjaxRealPreview.seopress_real_preview,data:{action:"seopress_do_real_preview",post_id:t,tax_name:s,origin:i,post_type:e("#seopress_launch_analysis").attr("data_post_type"),seopress_analysis_target_kw:e("#seopress_analysis_target_kw_meta").val(),_ajax_nonce:seopressAjaxRealPreview.seopress_nonce},beforeSend:function(){e(".analysis-score p span").fadeIn().text(seopressAjaxRealPreview.i18n.progress),e(".analysis-score p").addClass("loading")},success:function(t){void 0===t.data.og_title?og_title="":og_title=t.data.og_title.values,void 0===t.data.og_desc?og_desc="":og_desc=t.data.og_desc.values,void 0===t.data.og_img?og_img="":og_img=t.data.og_img.values,void 0===t.data.og_url?og_url="":og_url=t.data.og_url.host,void 0===t.data.og_site_name?og_site_name="":og_site_name=t.data.og_site_name.values,void 0===t.data.tw_title?tw_title="":tw_title=t.data.tw_title.values,void 0===t.data.tw_desc?tw_desc="":tw_desc=t.data.tw_desc.values,void 0===t.data.tw_img?tw_img="":tw_img=t.data.tw_img.values,void 0===t.data.meta_robots?meta_robots="":meta_robots=t.data.meta_robots[0];var s={og_title:og_title,og_desc:og_desc,og_img:og_img,og_url:og_url,og_site_name:og_site_name,tw_title:tw_title,tw_desc:tw_desc,tw_img:tw_img};for(var i in s)s.length&&(i=s[i].length>1?s[i].slice(-1)[0]:s[i][0]);meta_robots=meta_robots.toString(),e("#sp-advanced-alert").empty();var r=new RegExp("noindex");r.test(meta_robots)&&e("#sp-advanced-alert").append('<span class="impact high" aria-hidden="true"></span>'),e("#seopress_cpt .google-snippet-preview .snippet-title").html(t.data.title),e("#seopress_cpt .google-snippet-preview .snippet-title-default").html(t.data.title),e("#seopress_titles_title_meta").attr("placeholder",t.data.title),e("#seopress_cpt .google-snippet-preview .snippet-description").html(t.data.meta_desc),e("#seopress_cpt .google-snippet-preview .snippet-description-default").html(t.data.meta_desc),e("#seopress_titles_desc_meta").attr("placeholder",t.data.meta_desc),s.og_title&&(e("#seopress_cpt #seopress_social_fb_title_meta").attr("placeholder",s.og_title[0]),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-title").html(s.og_title[0]),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-title-default").html(s.og_title[0])),s.og_desc&&(e("#seopress_cpt #seopress_social_fb_desc_meta").attr("placeholder",s.og_desc[0]),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-description").html(s.og_desc[0]),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-description-default").html(s.og_desc[0])),s.og_img&&(e("#seopress_cpt #seopress_social_fb_img_meta").attr("placeholder",s.og_img[0]),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-img img").attr("src",s.og_img[0]),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-img-default img").attr("src",s.og_img[0])),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-url").html(s.og_url),e("#seopress_cpt .facebook-snippet-preview .snippet-fb-site-name").html(s.og_site_name),s.tw_title&&(e("#seopress_cpt #seopress_social_twitter_title_meta").attr("placeholder",s.tw_title[0]),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-title").html(s.tw_title[0]),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-title-default").html(s.tw_title[0])),s.tw_desc&&(e("#seopress_cpt #seopress_social_twitter_desc_meta").attr("placeholder",s.tw_desc[0]),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-description").html(s.tw_desc[0]),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-description-default").html(s.tw_desc[0])),s.tw_img&&(e("#seopress_cpt #seopress_social_twitter_img_meta").attr("placeholder",s.tw_img[0]),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-img img").attr("src",s.tw_img[0]),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-img-default img").attr("src",s.tw_img[0])),e("#seopress_cpt .twitter-snippet-preview .snippet-twitter-url").html(s.og_url),e("#seopress_cpt #seopress_robots_canonical_meta").attr("placeholder",t.data.canonical),e("#seopress-analysis-tabs").load(" #seopress-analysis-tabs-1","",sp_ca_toggle),e(".analysis-score p").removeClass("loading"),e(" #seopress_titles_title_counters_val").remove(),e(" #seopress_titles_desc_counters_val").remove(),sp_titles_counters(),sp_meta_desc_counters(),sp_social()}})}"1"==jQuery("#toggle-preview").attr("data-toggle")?jQuery("#seopress_cpt .google-snippet-preview").addClass("mobile-preview"):jQuery("#seopress_cpt .google-snippet-preview").removeClass("mobile-preview"),jQuery("#toggle-preview").on("click",function(){jQuery("#toggle-preview").attr("data-toggle","1"==jQuery("#toggle-preview").attr("data-toggle")?"0":"1"),jQuery("#seopress_cpt .google-snippet-preview").toggleClass("mobile-preview")}),t(),e("#seopress_launch_analysis").on("click",function(){t()}),sp_ca_toggle(),jQuery("#seopress_inspect_url").on("click",function(){if(jQuery(this).attr("disabled","disabled"),jQuery(".spinner").css("visibility","visible"),jQuery(".spinner").css("float","none"),void 0!==e("#seopress-tabs").attr("data_id"))var t=e("#seopress-tabs").attr("data_id");else if(void 0!==e("#seopress_content_analysis .wrap-seopress-analysis").attr("data_id"))t=e("#seopress_content_analysis .wrap-seopress-analysis").attr("data_id");e.ajax({method:"POST",url:seopressAjaxInspectUrl.seopress_inspect_url,data:{action:"seopress_inspect_url",post_id:t,_ajax_nonce:seopressAjaxInspectUrl.seopress_nonce},success:function(){jQuery(".spinner").css("visibility","hidden"),jQuery("#seopress_inspect_url").removeAttr("disabled"),jQuery("#seopress-ca-tabs-1").load(" #seopress-ca-tabs-1")}})})});
|
@@ -8,6 +8,7 @@ jQuery(document).ready(function ($) {
|
|
8 |
"notice-usm",
|
9 |
"notice-wizard",
|
10 |
"notice-insights-wizard",
|
|
|
11 |
"notice-tagdiv",
|
12 |
"notice-divide-comments",
|
13 |
"notice-review",
|
@@ -64,6 +65,7 @@ jQuery(document).ready(function ($) {
|
|
64 |
"dublin-core",
|
65 |
"rich-snippets",
|
66 |
"breadcrumbs",
|
|
|
67 |
"robots",
|
68 |
"news",
|
69 |
"404",
|
8 |
"notice-usm",
|
9 |
"notice-wizard",
|
10 |
"notice-insights-wizard",
|
11 |
+
"notice-seo-consultant",
|
12 |
"notice-tagdiv",
|
13 |
"notice-divide-comments",
|
14 |
"notice-review",
|
65 |
"dublin-core",
|
66 |
"rich-snippets",
|
67 |
"breadcrumbs",
|
68 |
+
"inspect-url",
|
69 |
"robots",
|
70 |
"news",
|
71 |
"404",
|
@@ -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-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","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("#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,4 +1,16 @@
|
|
1 |
jQuery(document).ready(function ($) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
var mediaUploader;
|
3 |
$(".button.seopress_social_facebook_img_cpt").click(function (e) {
|
4 |
e.preventDefault();
|
1 |
jQuery(document).ready(function ($) {
|
2 |
+
//Clear the previous image if a user paste a URL to the field
|
3 |
+
$("#seopress_social_fb_img_meta").on('paste', function () {
|
4 |
+
$("#seopress_social_fb_img_attachment_id").val('');
|
5 |
+
$("#seopress_social_fb_img_width").val('');
|
6 |
+
$("#seopress_social_fb_img_height").val('');
|
7 |
+
});
|
8 |
+
$("#seopress_social_twitter_img_meta").on('paste', function () {
|
9 |
+
$("#seopress_social_twitter_img_attachment_id").val('');
|
10 |
+
$("#seopress_social_twitter_img_width").val('');
|
11 |
+
$("#seopress_social_twitter_img_height").val('');
|
12 |
+
});
|
13 |
+
|
14 |
var mediaUploader;
|
15 |
$(".button.seopress_social_facebook_img_cpt").click(function (e) {
|
16 |
e.preventDefault();
|
@@ -1 +1 @@
|
|
1 |
-
jQuery(document).ready(function(e){var t;e(".button.seopress_social_facebook_img_cpt").click(function(i){i.preventDefault();var
|
1 |
+
jQuery(document).ready(function(e){var t;e("#seopress_social_fb_img_meta").on("paste",function(){e("#seopress_social_fb_img_attachment_id").val(""),e("#seopress_social_fb_img_width").val(""),e("#seopress_social_fb_img_height").val("")}),e("#seopress_social_twitter_img_meta").on("paste",function(){e("#seopress_social_twitter_img_attachment_id").val(""),e("#seopress_social_twitter_img_width").val(""),e("#seopress_social_twitter_img_height").val("")}),e(".button.seopress_social_facebook_img_cpt").click(function(i){i.preventDefault();var s=e(this).parent().find("input[type=text]");t=wp.media.frames.file_frame=wp.media({multiple:!1}),t.on("select",function(){attachment=t.state().get("selection").first().toJSON(),e(s).val(attachment.url)}),t.open()});const i=["#seopress_social_knowledge_img","#seopress_social_twitter_img","#seopress_social_fb_img",".seopress_social_fb_img",".seopress_social_twitter_img","#knowledge_img"];i.forEach(function(t){var i;e(t+"_upload").click(function(s){s.preventDefault(),i?i.open():(i=wp.media.frames.file_frame=wp.media({multiple:!1}),i.on("select",function(){attachment=i.state().get("selection").first().toJSON(),e(t+"_meta").val(attachment.url),"#seopress_social_fb_img"!=t&&".seopress_social_fb_img"!=t||"undefined"==typeof sp_social_img||sp_social_img("fb"),"#seopress_social_twitter_img"!=t&&".seopress_social_twitter_img"!=t||"undefined"==typeof sp_social_img||sp_social_img("twitter"),0!=e(t+"_attachment_id").length&&(e(t+"_attachment_id").val(attachment.id),e(t+"_width").val(attachment.width),e(t+"_height").val(attachment.height))}),i.open())})}),e(".seopress-btn-upload-media").click(function(t){var i;if(t.preventDefault(),i)i.open();else{i=wp.media.frames.file_frame=wp.media({multiple:!1});var s=e(this);i.on("select",function(){attachment=i.state().get("selection").first().toJSON(),e(s.data("input-value")).val(attachment.url)}),i.open()}})});
|
@@ -1,4 +1,68 @@
|
|
1 |
jQuery(document).ready(function ($) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
//Select toggle
|
3 |
$("#select-wizard-redirects, #select-wizard-import")
|
4 |
.change(function (e) {
|
1 |
jQuery(document).ready(function ($) {
|
2 |
+
//Regenerate Video XML sitemap
|
3 |
+
$("#seopress-video-regenerate").click(function () {
|
4 |
+
url = seopressAjaxVdeoRegenerate.seopress_video_regenerate;
|
5 |
+
action = 'seopress_video_xml_sitemap_regenerate';
|
6 |
+
_ajax_nonce = seopressAjaxVdeoRegenerate.seopress_nonce;
|
7 |
+
|
8 |
+
self.process_offset2(0, self, url, action, _ajax_nonce);
|
9 |
+
});
|
10 |
+
|
11 |
+
process_offset2 = function (
|
12 |
+
offset,
|
13 |
+
self,
|
14 |
+
url,
|
15 |
+
action,
|
16 |
+
_ajax_nonce
|
17 |
+
) {
|
18 |
+
i18n = seopressAjaxMigrate.i18n.video;
|
19 |
+
$.ajax({
|
20 |
+
method: 'POST',
|
21 |
+
url: url,
|
22 |
+
data: {
|
23 |
+
action: action,
|
24 |
+
offset: offset,
|
25 |
+
_ajax_nonce: _ajax_nonce,
|
26 |
+
},
|
27 |
+
success: function (data) {
|
28 |
+
if ("done" == data.data.offset) {
|
29 |
+
$("#seopress-video-regenerate").removeAttr(
|
30 |
+
"disabled"
|
31 |
+
);
|
32 |
+
$(".spinner").css("visibility", "hidden");
|
33 |
+
$("#tab_seopress_tool_video .log").css("display", "block");
|
34 |
+
$("#tab_seopress_tool_video .log").html("<div class='seopress-notice is-success'><p>" + i18n + "</p></div>");
|
35 |
+
|
36 |
+
if (data.data.url != "") {
|
37 |
+
$(location).attr("href", data.data.url);
|
38 |
+
}
|
39 |
+
} else {
|
40 |
+
self.process_offset2(
|
41 |
+
parseInt(data.data.offset),
|
42 |
+
self,
|
43 |
+
url,
|
44 |
+
action,
|
45 |
+
_ajax_nonce
|
46 |
+
);
|
47 |
+
if (data.data.total) {
|
48 |
+
progress = (data.data.count / data.data.total * 100).toFixed(2);
|
49 |
+
$("#tab_seopress_tool_video .log").css("display", "block");
|
50 |
+
$("#tab_seopress_tool_video .log").html("<div class='seopress-notice'><p>" + progress + "%</p></div>");
|
51 |
+
}
|
52 |
+
}
|
53 |
+
},
|
54 |
+
});
|
55 |
+
};
|
56 |
+
$("#seopress-video-regenerate").on("click", function () {
|
57 |
+
$(this).attr("disabled", "disabled");
|
58 |
+
$("#tab_seopress_tool_video .spinner").css(
|
59 |
+
"visibility",
|
60 |
+
"visible"
|
61 |
+
);
|
62 |
+
$("#tab_seopress_tool_video .spinner").css("float", "none");
|
63 |
+
$("#tab_seopress_tool_video .log").html("");
|
64 |
+
});
|
65 |
+
|
66 |
//Select toggle
|
67 |
$("#select-wizard-redirects, #select-wizard-import")
|
68 |
.change(function (e) {
|
@@ -1 +1 @@
|
|
1 |
-
jQuery(document).ready(function(e){e("#select-wizard-redirects, #select-wizard-import").change(function(s){s.preventDefault();var
|
1 |
+
jQuery(document).ready(function(e){e("#seopress-video-regenerate").click(function(){url=seopressAjaxVdeoRegenerate.seopress_video_regenerate,action="seopress_video_xml_sitemap_regenerate",_ajax_nonce=seopressAjaxVdeoRegenerate.seopress_nonce,self.process_offset2(0,self,url,action,_ajax_nonce)}),process_offset2=function(s,o,r,a,t){i18n=seopressAjaxMigrate.i18n.video,e.ajax({method:"POST",url:r,data:{action:a,offset:s,_ajax_nonce:t},success:function(s){"done"==s.data.offset?(e("#seopress-video-regenerate").removeAttr("disabled"),e(".spinner").css("visibility","hidden"),e("#tab_seopress_tool_video .log").css("display","block"),e("#tab_seopress_tool_video .log").html("<div class='seopress-notice is-success'><p>"+i18n+"</p></div>"),""!=s.data.url&&e(location).attr("href",s.data.url)):(o.process_offset2(parseInt(s.data.offset),o,r,a,t),s.data.total&&(progress=(s.data.count/s.data.total*100).toFixed(2),e("#tab_seopress_tool_video .log").css("display","block"),e("#tab_seopress_tool_video .log").html("<div class='seopress-notice'><p>"+progress+"%</p></div>")))}})},e("#seopress-video-regenerate").on("click",function(){e(this).attr("disabled","disabled"),e("#tab_seopress_tool_video .spinner").css("visibility","visible"),e("#tab_seopress_tool_video .spinner").css("float","none"),e("#tab_seopress_tool_video .log").html("")}),e("#select-wizard-redirects, #select-wizard-import").change(function(s){s.preventDefault();var o=e(this).val();"none"==o?e("#select-wizard-redirects option, #select-wizard-import option").each(function(){var s=e(this).val();e("#"+s).hide()}):(e("#select-wizard-redirects option:selected, #select-wizard-import option:selected").each(function(){var s=e(this).val();e("#"+s).show()}),e("#select-wizard-redirects option:not(:selected), #select-wizard-import option:not(:selected)").each(function(){var s=e(this).val();e("#"+s).hide()}))}).trigger("change");const s=["yoast","aio","seo-framework","rk","squirrly","seo-ultimate","wp-meta-seo","premium-seo-pack","wpseo","platinum-seo","smart-crawl","seopressor","metadata"];s.forEach(function(s){e("#seopress-"+s+"-migrate").on("click",function(e){switch(e.preventDefault(),id=s,e.target.id){case"seopress-yoast-migrate":url=seopressAjaxMigrate.seopress_yoast_migrate.seopress_yoast_migration,action="seopress_yoast_migration",_ajax_nonce=seopressAjaxMigrate.seopress_yoast_migrate.seopress_nonce;break;case"seopress-aio-migrate":url=seopressAjaxMigrate.seopress_aio_migrate.seopress_aio_migration,action="seopress_aio_migration",_ajax_nonce=seopressAjaxMigrate.seopress_aio_migrate.seopress_nonce;break;case"seopress-seo-framework-migrate":url=seopressAjaxMigrate.seopress_seo_framework_migrate.seopress_seo_framework_migration,action="seopress_seo_framework_migration",_ajax_nonce=seopressAjaxMigrate.seopress_seo_framework_migrate.seopress_nonce;break;case"seopress-rk-migrate":url=seopressAjaxMigrate.seopress_rk_migrate.seopress_rk_migration,action="seopress_rk_migration",_ajax_nonce=seopressAjaxMigrate.seopress_rk_migrate.seopress_nonce;break;case"seopress-squirrly-migrate":url=seopressAjaxMigrate.seopress_squirrly_migrate.seopress_squirrly_migration,action="seopress_squirrly_migration",_ajax_nonce=seopressAjaxMigrate.seopress_squirrly_migrate.seopress_nonce;break;case"seopress-seo-ultimate-migrate":url=seopressAjaxMigrate.seopress_seo_ultimate_migrate.seopress_seo_ultimate_migration,action="seopress_seo_ultimate_migration",_ajax_nonce=seopressAjaxMigrate.seopress_seo_ultimate_migrate.seopress_nonce;break;case"seopress-wp-meta-seo-migrate":url=seopressAjaxMigrate.seopress_wp_meta_seo_migrate.seopress_wp_meta_seo_migration,action="seopress_wp_meta_seo_migration",_ajax_nonce=seopressAjaxMigrate.seopress_wp_meta_seo_migrate.seopress_nonce;break;case"seopress-premium-seo-pack-migrate":url=seopressAjaxMigrate.seopress_premium_seo_pack_migrate.seopress_premium_seo_pack_migration,action="seopress_premium_seo_pack_migration",_ajax_nonce=seopressAjaxMigrate.seopress_premium_seo_pack_migrate.seopress_nonce;break;case"seopress-wpseo-migrate":url=seopressAjaxMigrate.seopress_wpseo_migrate.seopress_wpseo_migration,action="seopress_wpseo_migration",_ajax_nonce=seopressAjaxMigrate.seopress_wpseo_migrate.seopress_nonce;break;case"seopress-platinum-seo-migrate":url=seopressAjaxMigrate.seopress_platinum_seo_migrate.seopress_platinum_seo_migration,action="seopress_platinum_seo_migration",_ajax_nonce=seopressAjaxMigrate.seopress_platinum_seo_migrate.seopress_nonce;break;case"seopress-smart-crawl-migrate":url=seopressAjaxMigrate.seopress_smart_crawl_migrate.seopress_smart_crawl_migration,action="seopress_smart_crawl_migration",_ajax_nonce=seopressAjaxMigrate.seopress_smart_crawl_migrate.seopress_nonce;break;case"seopress-seopressor-migrate":url=seopressAjaxMigrate.seopress_seopressor_migrate.seopress_seopressor_migration,action="seopress_seopressor_migration",_ajax_nonce=seopressAjaxMigrate.seopress_seopressor_migrate.seopress_nonce;break;case"seopress-metadata-migrate":url=seopressAjaxMigrate.seopress_metadata_csv.seopress_metadata_export,action="seopress_metadata_export",_ajax_nonce=seopressAjaxMigrate.seopress_metadata_csv.seopress_nonce}self.process_offset(0,self,url,action,_ajax_nonce,id)}),process_offset=function(s,o,r,a,t,i,_,p){i18n=seopressAjaxMigrate.i18n.migration,"metadata"==i&&(i18n=seopressAjaxMigrate.i18n.export),e.ajax({method:"POST",url:r,data:{action:a,offset:s,post_export:_,term_export:p,_ajax_nonce:t},success:function(s){"done"==s.data.offset?(e("#seopress-"+i+"-migrate").removeAttr("disabled"),e(".spinner").css("visibility","hidden"),e("#"+i+"-migration-tool .log").css("display","block"),e("#"+i+"-migration-tool .log").html("<div class='seopress-notice is-success'><p>"+i18n+"</p></div>"),""!=s.data.url&&e(location).attr("href",s.data.url)):(o.process_offset(parseInt(s.data.offset),o,r,a,t,i,s.data.post_export,s.data.term_export),s.data.total&&(progress=(s.data.count/s.data.total*100).toFixed(2),e("#"+i+"-migration-tool .log").css("display","block"),e("#"+i+"-migration-tool .log").html("<div class='seopress-notice'><p>"+progress+"%</p></div>")))}})},e("#seopress-"+s+"-migrate").on("click",function(){e(this).attr("disabled","disabled"),e("#"+s+"-migration-tool .spinner").css("visibility","visible"),e("#"+s+"-migration-tool .spinner").css("float","none"),e("#"+s+"-migration-tool .log").html("")})})});
|
@@ -7,6 +7,8 @@ jQuery(document).ready(function ($) {
|
|
7 |
["seopress_google_analytics_enable", "seopress_google_analytics_enable"],
|
8 |
["seopress_tool_settings", "seopress_tool_settings"],
|
9 |
["seopress_instant_indexing_general", "seopress_instant_indexing_general"],
|
|
|
|
|
10 |
];
|
11 |
|
12 |
features.forEach(function (item) {
|
@@ -306,8 +308,6 @@ jQuery(document).ready(function ($) {
|
|
306 |
|
307 |
|
308 |
$('#seopress_instant_indexing_google_action_include[URL_UPDATED]').is(':checked') ? true : false,
|
309 |
-
|
310 |
-
|
311 |
//Instant Indexing: Batch URLs
|
312 |
$('.seopress-instant-indexing-batch').on('click', function () {
|
313 |
$('#seopress-tabs .spinner').css(
|
7 |
["seopress_google_analytics_enable", "seopress_google_analytics_enable"],
|
8 |
["seopress_tool_settings", "seopress_tool_settings"],
|
9 |
["seopress_instant_indexing_general", "seopress_instant_indexing_general"],
|
10 |
+
["seopress_insights_general", "seopress_insights_general"],
|
11 |
+
["seopress_insights_alerts", "seopress_insights_alerts"],
|
12 |
];
|
13 |
|
14 |
features.forEach(function (item) {
|
308 |
|
309 |
|
310 |
$('#seopress_instant_indexing_google_action_include[URL_UPDATED]').is(':checked') ? true : false,
|
|
|
|
|
311 |
//Instant Indexing: Batch URLs
|
312 |
$('.seopress-instant-indexing-batch').on('click', function () {
|
313 |
$('#seopress-tabs .spinner').css(
|
@@ -1 +1 @@
|
|
1 |
-
jQuery(document).ready(function(s){function e(s){return s.val().length>0?meta=s.val()+" ":meta=s.val(),meta}const t=[["seopress_titles","seopress_titles_home"],["seopress_xml_sitemap_tab","seopress_xml_sitemap_general"],["seopress_social_tab","seopress_social_knowledge"],["seopress_advanced_tab","seopress_advanced_image"],["seopress_google_analytics_enable","seopress_google_analytics_enable"],["seopress_tool_settings","seopress_tool_settings"],["seopress_instant_indexing_general","seopress_instant_indexing_general"]];t.forEach(function(e){var t=s(location).attr("hash").split("#tab=")[1];if(void 0!==t)s("#"+t+"-tab").addClass("nav-tab-active"),s("#"+t).addClass("active");else{if("undefined"!=typeof sessionStorage&&"null"!=typeof sessionStorage){var a=sessionStorage.getItem("seopress_save_tab");a&&s("#"+a+"-tab").length?(s("#seopress-tabs").find(".nav-tab.nav-tab-active").removeClass("nav-tab-active"),s("#seopress-tabs").find(".seopress-tab.active").removeClass("active"),s("#"+a+"-tab").addClass("nav-tab-active"),s("#"+a).addClass("active")):(s("#tab_"+e[1]+"-tab").addClass("nav-tab-active"),s("#tab_"+e[1]).addClass("active"))}s("#seopress-tabs").find("a.nav-tab").click(function(e){e.preventDefault();var t=s(this).attr("href").split("#tab=")[1];s("#seopress-tabs").find(".nav-tab.nav-tab-active").removeClass("nav-tab-active"),s("#"+t+"-tab").addClass("nav-tab-active"),sessionStorage.setItem("seopress_save_tab",t),s("#seopress-tabs").find(".seopress-tab.active").removeClass("active"),s("#"+t).addClass("active")})}});let a=!1;if(s("#seopress-tag-site-title").click(function(){s("#seopress_titles_home_site_title").val(e(s("#seopress_titles_home_site_title"))+s("#seopress-tag-site-title").attr("data-tag"))}),s("#seopress-tag-site-desc").click(function(){s("#seopress_titles_home_site_title").val(e(s("#seopress_titles_home_site_title"))+s("#seopress-tag-site-desc").attr("data-tag"))}),s("#seopress-tag-site-sep").click(function(){s("#seopress_titles_home_site_title").val(e(s("#seopress_titles_home_site_title"))+s("#seopress-tag-site-sep").attr("data-tag"))}),s("#seopress-tag-meta-desc").click(function(){s("#seopress_titles_home_site_desc").val(e(s("#seopress_titles_home_site_desc"))+s("#seopress-tag-meta-desc").attr("data-tag"))}),s("#seopress-tag-post-author").click(function(){s("#seopress_titles_archive_post_author").val(e(s("#seopress_titles_archive_post_author"))+s("#seopress-tag-post-author").attr("data-tag"))}),s("#seopress-tag-sep-author").click(function(){s("#seopress_titles_archive_post_author").val(e(s("#seopress_titles_archive_post_author"))+s("#seopress-tag-sep-author").attr("data-tag"))}),s("#seopress-tag-site-title-author").click(function(){s("#seopress_titles_archive_post_author").val(e(s("#seopress_titles_archive_post_author"))+s("#seopress-tag-site-title-author").attr("data-tag"))}),s("#seopress-tag-archive-date").click(function(){s("#seopress_titles_archives_date_title").val(e(s("#seopress_titles_archives_date_title"))+s("#seopress-tag-archive-date").attr("data-tag"))}),s("#seopress-tag-sep-date").click(function(){s("#seopress_titles_archives_date_title").val(e(s("#seopress_titles_archives_date_title"))+s("#seopress-tag-sep-date").attr("data-tag"))}),s("#seopress-tag-site-title-date").click(function(){s("#seopress_titles_archives_date_title").val(e(s("#seopress_titles_archives_date_title"))+s("#seopress-tag-site-title-date").attr("data-tag"))}),s("#seopress-tag-search-keywords").click(function(){s("#seopress_titles_archives_search_title").val(e(s("#seopress_titles_archives_search_title"))+s("#seopress-tag-search-keywords").attr("data-tag"))}),s("#seopress-tag-sep-search").click(function(){s("#seopress_titles_archives_search_title").val(e(s("#seopress_titles_archives_search_title"))+s("#seopress-tag-sep-search").attr("data-tag"))}),s("#seopress-tag-site-title-search").click(function(){s("#seopress_titles_archives_search_title").val(e(s("#seopress_titles_archives_search_title"))+s("#seopress-tag-site-title-search").attr("data-tag"))}),s("#seopress-tag-site-title-404").click(function(){s("#seopress_titles_archives_404_title").val(e(s("#seopress_titles_archives_404_title"))+s("#seopress-tag-site-title-404").attr("data-tag"))}),s("#seopress-tag-sep-404").click(function(){s("#seopress_titles_archives_404_title").val(e(s("#seopress_titles_archives_404_title"))+s("#seopress-tag-sep-404").attr("data-tag"))}),s("#seopress-tag-post-title-bd-groups").click(function(){s("#seopress_titles_bp_groups_title").val(e(s("#seopress_titles_bp_groups_title"))+s("#seopress-tag-post-title-bd-groups").attr("data-tag"))}),s("#seopress-tag-sep-bd-groups").click(function(){s("#seopress_titles_bp_groups_title").val(e(s("#seopress_titles_bp_groups_title"))+s("#seopress-tag-sep-bd-groups").attr("data-tag"))}),s("#seopress-tag-site-title-bd-groups").click(function(){s("#seopress_titles_bp_groups_title").val(e(s("#seopress_titles_bp_groups_title"))+s("#seopress-tag-site-title-bd-groups").attr("data-tag"))}),s(".seopress-tag-dropdown").each(function(t){function i(t){_.hasClass("tag-title")&&(n.val(e(n)+s(t).attr("data-value")),n.trigger("paste")),_.hasClass("tag-description")&&(o.val(e(o)+s(t).attr("data-value")),o.trigger("paste"))}const n=s(this).parent(".wrap-tags").prev("input"),o=s(this).parent(".wrap-tags").prev("textarea"),_=s(this);s(this).on("click",function(){function e(t){s(t.target).hasClass("dashicons")||s(t.target).hasClass("seopress-tag-single-all")||(a=!1,s(document).off("click",e),s(".sp-wrap-tag-variables-list").removeClass("open"))}s(this).next(".sp-wrap-tag-variables-list").toggleClass("open"),s(this).next(".sp-wrap-tag-variables-list").find("li").on("click",function(s){i(this),s.stopImmediatePropagation()}).on("keyup",function(s){13===s.keyCode&&(i(this),s.stopImmediatePropagation())}),a||(a=!0,s(document).on("click",e))})}),s("#seopress_instant_indexing_manual_batch").length){newLines=s("#seopress_instant_indexing_manual_batch").val().split("\n").length,s("#seopress_instant_indexing_url_count").text(newLines);var i=50,n=s("#seopress_instant_indexing_url_count");if(newLines){var o=Math.round(newLines/50*100);o>=100&&(o=100),s("#seopress_instant_indexing_url_progress").attr("aria-valuenow",o),s("#seopress_instant_indexing_url_progress").text(o+"%"),s("#seopress_instant_indexing_url_progress").css("width",o+"%")}s("#seopress_instant_indexing_manual_batch").on("keyup paste change click focus mouseout",function(e){if(newLines=s(this).val().split("\n").length,n.text(newLines),newLines>i?n.css("color","red"):n.css("color",""),newLines)var t=Math.round(newLines/50*100);t>=100&&(t=100),s("#seopress_instant_indexing_url_progress").attr("aria-valuenow",t),s("#seopress_instant_indexing_url_progress").text(t+"%"),s("#seopress_instant_indexing_url_progress").css("width",t+"%")})}s("#seopress_instant_indexing_google_action_include[URL_UPDATED]").is(":checked"),s(".seopress-instant-indexing-batch").on("click",function(){s("#seopress-tabs .spinner").css("visibility","visible"),s("#seopress-tabs .spinner").css("float","none"),s.ajax({method:"POST",url:seopressAjaxInstantIndexingPost.seopress_instant_indexing_post,data:{action:"seopress_instant_indexing_post",urls_to_submit:s("#seopress_instant_indexing_manual_batch").val(),indexnow_api:s("#seopress_instant_indexing_bing_api_key").val(),google_api:s("#seopress_instant_indexing_google_api_key").val(),update_action:!!s("#seopress_instant_indexing_google_action_include_URL_UPDATED").is(":checked")&&"URL_UPDATED",delete_action:!!s("#seopress_instant_indexing_google_action_include_URL_DELETED").is(":checked")&&"URL_DELETED",google:!!s("#seopress_instant_indexing_engines_google").is(":checked"),bing:!!s("#seopress_instant_indexing_engines_bing").is(":checked"),automatic_submission:!!s("#seopress_instant_indexing_automate_submission").is(":checked"),_ajax_nonce:seopressAjaxInstantIndexingPost.seopress_nonce},success:function(s){window.location.reload(!0)}})}),s(".seopress-instant-indexing-refresh-api-key").on("click",function(){s.ajax({method:"POST",url:seopressAjaxInstantIndexingApiKey.seopress_instant_indexing_generate_api_key,data:{action:"seopress_instant_indexing_generate_api_key",_ajax_nonce:seopressAjaxInstantIndexingApiKey.seopress_nonce},success:function(s){window.location.reload(!0)}})})});
|
1 |
+
jQuery(document).ready(function(s){function e(s){return s.val().length>0?meta=s.val()+" ":meta=s.val(),meta}const t=[["seopress_titles","seopress_titles_home"],["seopress_xml_sitemap_tab","seopress_xml_sitemap_general"],["seopress_social_tab","seopress_social_knowledge"],["seopress_advanced_tab","seopress_advanced_image"],["seopress_google_analytics_enable","seopress_google_analytics_enable"],["seopress_tool_settings","seopress_tool_settings"],["seopress_instant_indexing_general","seopress_instant_indexing_general"],["seopress_insights_general","seopress_insights_general"],["seopress_insights_alerts","seopress_insights_alerts"]];t.forEach(function(e){var t=s(location).attr("hash").split("#tab=")[1];if(void 0!==t)s("#"+t+"-tab").addClass("nav-tab-active"),s("#"+t).addClass("active");else{if("undefined"!=typeof sessionStorage&&"null"!=typeof sessionStorage){var a=sessionStorage.getItem("seopress_save_tab");a&&s("#"+a+"-tab").length?(s("#seopress-tabs").find(".nav-tab.nav-tab-active").removeClass("nav-tab-active"),s("#seopress-tabs").find(".seopress-tab.active").removeClass("active"),s("#"+a+"-tab").addClass("nav-tab-active"),s("#"+a).addClass("active")):(s("#tab_"+e[1]+"-tab").addClass("nav-tab-active"),s("#tab_"+e[1]).addClass("active"))}s("#seopress-tabs").find("a.nav-tab").click(function(e){e.preventDefault();var t=s(this).attr("href").split("#tab=")[1];s("#seopress-tabs").find(".nav-tab.nav-tab-active").removeClass("nav-tab-active"),s("#"+t+"-tab").addClass("nav-tab-active"),sessionStorage.setItem("seopress_save_tab",t),s("#seopress-tabs").find(".seopress-tab.active").removeClass("active"),s("#"+t).addClass("active")})}});let a=!1;if(s("#seopress-tag-site-title").click(function(){s("#seopress_titles_home_site_title").val(e(s("#seopress_titles_home_site_title"))+s("#seopress-tag-site-title").attr("data-tag"))}),s("#seopress-tag-site-desc").click(function(){s("#seopress_titles_home_site_title").val(e(s("#seopress_titles_home_site_title"))+s("#seopress-tag-site-desc").attr("data-tag"))}),s("#seopress-tag-site-sep").click(function(){s("#seopress_titles_home_site_title").val(e(s("#seopress_titles_home_site_title"))+s("#seopress-tag-site-sep").attr("data-tag"))}),s("#seopress-tag-meta-desc").click(function(){s("#seopress_titles_home_site_desc").val(e(s("#seopress_titles_home_site_desc"))+s("#seopress-tag-meta-desc").attr("data-tag"))}),s("#seopress-tag-post-author").click(function(){s("#seopress_titles_archive_post_author").val(e(s("#seopress_titles_archive_post_author"))+s("#seopress-tag-post-author").attr("data-tag"))}),s("#seopress-tag-sep-author").click(function(){s("#seopress_titles_archive_post_author").val(e(s("#seopress_titles_archive_post_author"))+s("#seopress-tag-sep-author").attr("data-tag"))}),s("#seopress-tag-site-title-author").click(function(){s("#seopress_titles_archive_post_author").val(e(s("#seopress_titles_archive_post_author"))+s("#seopress-tag-site-title-author").attr("data-tag"))}),s("#seopress-tag-archive-date").click(function(){s("#seopress_titles_archives_date_title").val(e(s("#seopress_titles_archives_date_title"))+s("#seopress-tag-archive-date").attr("data-tag"))}),s("#seopress-tag-sep-date").click(function(){s("#seopress_titles_archives_date_title").val(e(s("#seopress_titles_archives_date_title"))+s("#seopress-tag-sep-date").attr("data-tag"))}),s("#seopress-tag-site-title-date").click(function(){s("#seopress_titles_archives_date_title").val(e(s("#seopress_titles_archives_date_title"))+s("#seopress-tag-site-title-date").attr("data-tag"))}),s("#seopress-tag-search-keywords").click(function(){s("#seopress_titles_archives_search_title").val(e(s("#seopress_titles_archives_search_title"))+s("#seopress-tag-search-keywords").attr("data-tag"))}),s("#seopress-tag-sep-search").click(function(){s("#seopress_titles_archives_search_title").val(e(s("#seopress_titles_archives_search_title"))+s("#seopress-tag-sep-search").attr("data-tag"))}),s("#seopress-tag-site-title-search").click(function(){s("#seopress_titles_archives_search_title").val(e(s("#seopress_titles_archives_search_title"))+s("#seopress-tag-site-title-search").attr("data-tag"))}),s("#seopress-tag-site-title-404").click(function(){s("#seopress_titles_archives_404_title").val(e(s("#seopress_titles_archives_404_title"))+s("#seopress-tag-site-title-404").attr("data-tag"))}),s("#seopress-tag-sep-404").click(function(){s("#seopress_titles_archives_404_title").val(e(s("#seopress_titles_archives_404_title"))+s("#seopress-tag-sep-404").attr("data-tag"))}),s("#seopress-tag-post-title-bd-groups").click(function(){s("#seopress_titles_bp_groups_title").val(e(s("#seopress_titles_bp_groups_title"))+s("#seopress-tag-post-title-bd-groups").attr("data-tag"))}),s("#seopress-tag-sep-bd-groups").click(function(){s("#seopress_titles_bp_groups_title").val(e(s("#seopress_titles_bp_groups_title"))+s("#seopress-tag-sep-bd-groups").attr("data-tag"))}),s("#seopress-tag-site-title-bd-groups").click(function(){s("#seopress_titles_bp_groups_title").val(e(s("#seopress_titles_bp_groups_title"))+s("#seopress-tag-site-title-bd-groups").attr("data-tag"))}),s(".seopress-tag-dropdown").each(function(t){function i(t){_.hasClass("tag-title")&&(n.val(e(n)+s(t).attr("data-value")),n.trigger("paste")),_.hasClass("tag-description")&&(o.val(e(o)+s(t).attr("data-value")),o.trigger("paste"))}const n=s(this).parent(".wrap-tags").prev("input"),o=s(this).parent(".wrap-tags").prev("textarea"),_=s(this);s(this).on("click",function(){function e(t){s(t.target).hasClass("dashicons")||s(t.target).hasClass("seopress-tag-single-all")||(a=!1,s(document).off("click",e),s(".sp-wrap-tag-variables-list").removeClass("open"))}s(this).next(".sp-wrap-tag-variables-list").toggleClass("open"),s(this).next(".sp-wrap-tag-variables-list").find("li").on("click",function(s){i(this),s.stopImmediatePropagation()}).on("keyup",function(s){13===s.keyCode&&(i(this),s.stopImmediatePropagation())}),a||(a=!0,s(document).on("click",e))})}),s("#seopress_instant_indexing_manual_batch").length){newLines=s("#seopress_instant_indexing_manual_batch").val().split("\n").length,s("#seopress_instant_indexing_url_count").text(newLines);var i=50,n=s("#seopress_instant_indexing_url_count");if(newLines){var o=Math.round(newLines/50*100);o>=100&&(o=100),s("#seopress_instant_indexing_url_progress").attr("aria-valuenow",o),s("#seopress_instant_indexing_url_progress").text(o+"%"),s("#seopress_instant_indexing_url_progress").css("width",o+"%")}s("#seopress_instant_indexing_manual_batch").on("keyup paste change click focus mouseout",function(e){if(newLines=s(this).val().split("\n").length,n.text(newLines),newLines>i?n.css("color","red"):n.css("color",""),newLines)var t=Math.round(newLines/50*100);t>=100&&(t=100),s("#seopress_instant_indexing_url_progress").attr("aria-valuenow",t),s("#seopress_instant_indexing_url_progress").text(t+"%"),s("#seopress_instant_indexing_url_progress").css("width",t+"%")})}s("#seopress_instant_indexing_google_action_include[URL_UPDATED]").is(":checked"),s(".seopress-instant-indexing-batch").on("click",function(){s("#seopress-tabs .spinner").css("visibility","visible"),s("#seopress-tabs .spinner").css("float","none"),s.ajax({method:"POST",url:seopressAjaxInstantIndexingPost.seopress_instant_indexing_post,data:{action:"seopress_instant_indexing_post",urls_to_submit:s("#seopress_instant_indexing_manual_batch").val(),indexnow_api:s("#seopress_instant_indexing_bing_api_key").val(),google_api:s("#seopress_instant_indexing_google_api_key").val(),update_action:!!s("#seopress_instant_indexing_google_action_include_URL_UPDATED").is(":checked")&&"URL_UPDATED",delete_action:!!s("#seopress_instant_indexing_google_action_include_URL_DELETED").is(":checked")&&"URL_DELETED",google:!!s("#seopress_instant_indexing_engines_google").is(":checked"),bing:!!s("#seopress_instant_indexing_engines_bing").is(":checked"),automatic_submission:!!s("#seopress_instant_indexing_automate_submission").is(":checked"),_ajax_nonce:seopressAjaxInstantIndexingPost.seopress_nonce},success:function(s){window.location.reload(!0)}})}),s(".seopress-instant-indexing-refresh-api-key").on("click",function(){s.ajax({method:"POST",url:seopressAjaxInstantIndexingApiKey.seopress_instant_indexing_generate_api_key,data:{action:"seopress_instant_indexing_generate_api_key",_ajax_nonce:seopressAjaxInstantIndexingApiKey.seopress_nonce},success:function(s){window.location.reload(!0)}})})});
|
@@ -183,36 +183,41 @@
|
|
183 |
if (isset($value['filter'])) {
|
184 |
$seopress_feature = apply_filters($value['filter'], true);
|
185 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
186 |
|
187 |
-
if (true === $seopress_feature) {
|
188 |
-
$title = isset($value['title']) ? $value['title'] : null;
|
189 |
-
$desc = isset($value['desc']) ? $value['desc'] : null;
|
190 |
-
$btn_primary = isset($value['btn_primary']) ? $value['btn_primary'] : '';
|
191 |
-
$toggle = isset($value['toggle']) ? $value['toggle'] : true; ?>
|
192 |
-
<a href="<?php echo $btn_primary; ?>"
|
193 |
-
class="seopress-cart-list inner">
|
194 |
-
<?php
|
195 |
-
if (true === $toggle) {
|
196 |
-
if ('1' == seopress_get_toggle_option($key)) {
|
197 |
-
$seopress_get_toggle_option = '1';
|
198 |
-
} else {
|
199 |
-
$seopress_get_toggle_option = '0';
|
200 |
-
} ?>
|
201 |
-
<input type="checkbox" name="toggle-<?php echo $key; ?>"
|
202 |
-
id="toggle-<?php echo $key; ?>" class="toggle"
|
203 |
-
data-toggle="<?php echo $seopress_get_toggle_option; ?>">
|
204 |
-
<label for="toggle-<?php echo $key; ?>"></label>
|
205 |
-
<?php
|
206 |
-
} ?>
|
207 |
-
<div class="seopress-card-item">
|
208 |
-
<h3><?php echo $title; ?>
|
209 |
-
</h3>
|
210 |
-
<p><?php echo $desc; ?>
|
211 |
-
</p>
|
212 |
</div>
|
213 |
-
|
214 |
-
|
215 |
-
}
|
216 |
} ?>
|
217 |
</div>
|
218 |
<?php }
|
183 |
if (isset($value['filter'])) {
|
184 |
$seopress_feature = apply_filters($value['filter'], true);
|
185 |
}
|
186 |
+
?>
|
187 |
+
|
188 |
+
<div class="seopress-cart-list inner">
|
189 |
+
|
190 |
+
<?php
|
191 |
+
if (true === $seopress_feature) {
|
192 |
+
$title = isset($value['title']) ? $value['title'] : null;
|
193 |
+
$desc = isset($value['desc']) ? $value['desc'] : null;
|
194 |
+
$btn_primary = isset($value['btn_primary']) ? $value['btn_primary'] : '';
|
195 |
+
$toggle = isset($value['toggle']) ? $value['toggle'] : true;
|
196 |
+
|
197 |
+
if (true === $toggle) {
|
198 |
+
if ('1' == seopress_get_toggle_option($key)) {
|
199 |
+
$seopress_get_toggle_option = '1';
|
200 |
+
} else {
|
201 |
+
$seopress_get_toggle_option = '0';
|
202 |
+
} ?>
|
203 |
+
<span class="screen-reader-text"><?php printf(__('Toggle %s','wp-seopress'), $title); ?></span>
|
204 |
+
<input type="checkbox" name="toggle-<?php echo $key; ?>" id="toggle-<?php echo $key; ?>" class="toggle" data-toggle="<?php echo $seopress_get_toggle_option; ?>">
|
205 |
+
<label for="toggle-<?php echo $key; ?>"></label>
|
206 |
+
<?php } ?>
|
207 |
+
|
208 |
+
<a href="<?php echo $btn_primary; ?>">
|
209 |
+
<div class="seopress-card-item">
|
210 |
+
<h3><?php echo $title; ?></h3>
|
211 |
+
<p><?php echo $desc; ?></p>
|
212 |
+
</div>
|
213 |
+
</a>
|
214 |
+
<?php
|
215 |
+
}
|
216 |
+
?>
|
217 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
218 |
</div>
|
219 |
+
|
220 |
+
<?php
|
|
|
221 |
} ?>
|
222 |
</div>
|
223 |
<?php }
|
@@ -22,12 +22,14 @@ $docs = seopress_get_docs_links();
|
|
22 |
'tab_seopress_tool_settings' => __('Settings', 'wp-seopress'),
|
23 |
'tab_seopress_tool_plugins' => __('Plugins', 'wp-seopress'),
|
24 |
'tab_seopress_tool_redirects' => __('Redirections', 'wp-seopress'),
|
|
|
25 |
'tab_seopress_tool_reset' => __('Reset', 'wp-seopress'),
|
26 |
];
|
27 |
|
28 |
if (! is_plugin_active('wp-seopress-pro/seopress-pro.php')) {
|
29 |
unset($plugin_settings_tabs['tab_seopress_tool_data']);
|
30 |
unset($plugin_settings_tabs['tab_seopress_tool_redirects']);
|
|
|
31 |
}
|
32 |
|
33 |
echo '<div class="nav-tab-wrapper">';
|
@@ -261,6 +263,42 @@ $docs = seopress_get_docs_links();
|
|
261 |
<?php } ?>
|
262 |
<?php } ?>
|
263 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
264 |
<div class="seopress-tab <?php if ('tab_seopress_tool_reset' == $current_tab) {
|
265 |
echo 'active';
|
266 |
} ?>" id="tab_seopress_tool_reset">
|
22 |
'tab_seopress_tool_settings' => __('Settings', 'wp-seopress'),
|
23 |
'tab_seopress_tool_plugins' => __('Plugins', 'wp-seopress'),
|
24 |
'tab_seopress_tool_redirects' => __('Redirections', 'wp-seopress'),
|
25 |
+
'tab_seopress_tool_video' => __('Video sitemap', 'wp-seopress'),
|
26 |
'tab_seopress_tool_reset' => __('Reset', 'wp-seopress'),
|
27 |
];
|
28 |
|
29 |
if (! is_plugin_active('wp-seopress-pro/seopress-pro.php')) {
|
30 |
unset($plugin_settings_tabs['tab_seopress_tool_data']);
|
31 |
unset($plugin_settings_tabs['tab_seopress_tool_redirects']);
|
32 |
+
unset($plugin_settings_tabs['tab_seopress_tool_video']);
|
33 |
}
|
34 |
|
35 |
echo '<div class="nav-tab-wrapper">';
|
263 |
<?php } ?>
|
264 |
<?php } ?>
|
265 |
</div>
|
266 |
+
<div class="seopress-tab <?php if ('tab_seopress_tool_video' == $current_tab) {
|
267 |
+
echo 'active';
|
268 |
+
} ?>" id="tab_seopress_tool_video">
|
269 |
+
<?php if (is_plugin_active('wp-seopress-pro/seopress-pro.php')) { ?>
|
270 |
+
<?php if ('1' === seopress_get_toggle_option('xml-sitemap') && '1' === seopress_get_service('SitemapOption')->isEnabled() && '1' === seopress_get_service('SitemapOption')->videoIsEnabled()) { ?>
|
271 |
+
<div class="postbox section-tool">
|
272 |
+
<div class="sp-section-header">
|
273 |
+
<h2>
|
274 |
+
<?php _e('Video XML sitemap', 'wp-seopress'); ?>
|
275 |
+
</h2>
|
276 |
+
</div>
|
277 |
+
<div class="inside">
|
278 |
+
<h3>
|
279 |
+
<?php _e('Add YouTube videos to the XML Video sitemap', 'wp-seopress'); ?>
|
280 |
+
</h3>
|
281 |
+
<p><?php _e('Click the button below to automatically scan all your content for YouTube URL and add them to the video XML sitemap. We automatically add YouTube videos each time you save a post.','wp-seopress'); ?></p>
|
282 |
+
|
283 |
+
<button id="seopress-video-regenerate" type="button" class="btn btnSecondary"><?php _e('Regenerate','wp-seopress'); ?></button>
|
284 |
+
<span class="spinner"></span>
|
285 |
+
<div class="log"></div>
|
286 |
+
</div>
|
287 |
+
</div>
|
288 |
+
<?php } else { ?>
|
289 |
+
<div class="seopress-notice is-warning">
|
290 |
+
<p><?php _e('XML Video sitemap feature is disabled. Please activate it from the <strong>XML sitemaps settings page</strong>.', 'wp-seopress'); ?>
|
291 |
+
</p>
|
292 |
+
<p>
|
293 |
+
<a href="<?php echo admin_url('admin.php?page=seopress-xml-sitemap'); ?>"
|
294 |
+
class="btn btnSecondary">
|
295 |
+
<?php _e('Activate XML Video sitemap', 'wp-seopress'); ?>
|
296 |
+
</a>
|
297 |
+
</p>
|
298 |
+
</div>
|
299 |
+
<?php } ?>
|
300 |
+
<?php } ?>
|
301 |
+
</div>
|
302 |
<div class="seopress-tab <?php if ('tab_seopress_tool_reset' == $current_tab) {
|
303 |
echo 'active';
|
304 |
} ?>" id="tab_seopress_tool_reset">
|
@@ -125,8 +125,6 @@ function seopress_do_real_preview()
|
|
125 |
$response = wp_remote_get($link, $args);
|
126 |
}
|
127 |
|
128 |
-
$data['link_preview'] = $link;
|
129 |
-
|
130 |
//Check for error
|
131 |
if (is_wp_error($response) || '404' == wp_remote_retrieve_response_code($response)) {
|
132 |
$data['title'] = __('To get your Google snippet preview, publish your post!', 'wp-seopress');
|
@@ -144,6 +142,8 @@ function seopress_do_real_preview()
|
|
144 |
}
|
145 |
}
|
146 |
|
|
|
|
|
147 |
//Disable wptexturize
|
148 |
add_filter('run_wptexturize', '__return_false');
|
149 |
|
@@ -725,6 +725,67 @@ function seopress_hide_notices()
|
|
725 |
}
|
726 |
add_action('wp_ajax_seopress_hide_notices', 'seopress_hide_notices');
|
727 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
728 |
require_once __DIR__ . '/ajax-migrate/smart-crawl.php';
|
729 |
require_once __DIR__ . '/ajax-migrate/seopressor.php';
|
730 |
require_once __DIR__ . '/ajax-migrate/platinum.php';
|
125 |
$response = wp_remote_get($link, $args);
|
126 |
}
|
127 |
|
|
|
|
|
128 |
//Check for error
|
129 |
if (is_wp_error($response) || '404' == wp_remote_retrieve_response_code($response)) {
|
130 |
$data['title'] = __('To get your Google snippet preview, publish your post!', 'wp-seopress');
|
142 |
}
|
143 |
}
|
144 |
|
145 |
+
$data['link_preview'] = $link;
|
146 |
+
|
147 |
//Disable wptexturize
|
148 |
add_filter('run_wptexturize', '__return_false');
|
149 |
|
725 |
}
|
726 |
add_action('wp_ajax_seopress_hide_notices', 'seopress_hide_notices');
|
727 |
|
728 |
+
///////////////////////////////////////////////////////////////////////////////////////////////////
|
729 |
+
//Regenerate Video XML Sitemap
|
730 |
+
///////////////////////////////////////////////////////////////////////////////////////////////////
|
731 |
+
function seopress_video_xml_sitemap_regenerate()
|
732 |
+
{
|
733 |
+
check_ajax_referer('seopress_video_regenerate_nonce', $_POST['_ajax_nonce'], true);
|
734 |
+
|
735 |
+
if (current_user_can(seopress_capability('manage_options', 'migration')) && is_admin()) {
|
736 |
+
if (isset($_POST['offset']) && isset($_POST['offset'])) {
|
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;
|
746 |
+
|
747 |
+
if ($offset > $total_count_posts) {
|
748 |
+
wp_reset_query();
|
749 |
+
$count_items = $total_count_posts;
|
750 |
+
$offset = 'done';
|
751 |
+
} else {
|
752 |
+
$args = [
|
753 |
+
'posts_per_page' => $increment,
|
754 |
+
'post_type' => 'any',
|
755 |
+
'post_status' => ['pending', 'draft', 'publish', 'future'],
|
756 |
+
'offset' => $offset,
|
757 |
+
];
|
758 |
+
|
759 |
+
$video_query = get_posts($args);
|
760 |
+
|
761 |
+
if ($video_query) {
|
762 |
+
foreach ($video_query as $post) {
|
763 |
+
seopress_pro_video_xml_sitemap($post->ID, $post);
|
764 |
+
}
|
765 |
+
}
|
766 |
+
$offset += $increment;
|
767 |
+
}
|
768 |
+
$data = [];
|
769 |
+
|
770 |
+
$data['total'] = $total_count_posts;
|
771 |
+
|
772 |
+
if ($offset >= $total_count_posts) {
|
773 |
+
$data['count'] = $total_count_posts;
|
774 |
+
} else {
|
775 |
+
$data['count'] = $offset;
|
776 |
+
}
|
777 |
+
|
778 |
+
$data['offset'] = $offset;
|
779 |
+
|
780 |
+
//Clear cache
|
781 |
+
delete_transient( '_seopress_sitemap_ids_video' );
|
782 |
+
|
783 |
+
wp_send_json_success($data);
|
784 |
+
exit();
|
785 |
+
}
|
786 |
+
}
|
787 |
+
add_action('wp_ajax_seopress_video_xml_sitemap_regenerate', 'seopress_video_xml_sitemap_regenerate');
|
788 |
+
|
789 |
require_once __DIR__ . '/ajax-migrate/smart-crawl.php';
|
790 |
require_once __DIR__ . '/ajax-migrate/seopressor.php';
|
791 |
require_once __DIR__ . '/ajax-migrate/platinum.php';
|
@@ -8,16 +8,17 @@
|
|
8 |
if (defined('SEOPRESS_WL_ADMIN_HEADER') && SEOPRESS_WL_ADMIN_HEADER === false) {
|
9 |
//do nothing
|
10 |
} else {
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
|
|
21 |
}
|
22 |
}
|
23 |
}
|
8 |
if (defined('SEOPRESS_WL_ADMIN_HEADER') && SEOPRESS_WL_ADMIN_HEADER === false) {
|
9 |
//do nothing
|
10 |
} else {
|
11 |
+
$sp_versions = get_option('seopress_versions');
|
12 |
+
if (isset($sp_versions['pro']) && version_compare($sp_versions['pro'], '5.7', '<')) {
|
13 |
+
function seopress_google_analytics_dashboard_widget_option() {
|
14 |
+
$seopress_google_analytics_dashboard_widget_option = get_option('seopress_google_analytics_option_name');
|
15 |
+
if ( ! empty($seopress_google_analytics_dashboard_widget_option)) {
|
16 |
+
foreach ($seopress_google_analytics_dashboard_widget_option as $key => $seopress_google_analytics_dashboard_widget_value) {
|
17 |
+
$options[$key] = $seopress_google_analytics_dashboard_widget_value;
|
18 |
+
}
|
19 |
+
if (isset($seopress_google_analytics_dashboard_widget_option['seopress_google_analytics_dashboard_widget'])) {
|
20 |
+
return $seopress_google_analytics_dashboard_widget_option['seopress_google_analytics_dashboard_widget'];
|
21 |
+
}
|
22 |
}
|
23 |
}
|
24 |
}
|
@@ -129,6 +129,37 @@
|
|
129 |
seopress_notification($args);
|
130 |
}
|
131 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
132 |
//DIVI SEO options conflict
|
133 |
$theme = wp_get_theme();
|
134 |
if ('Divi' == $theme->template || 'Divi' == $theme->parent_theme) {
|
129 |
seopress_notification($args);
|
130 |
}
|
131 |
}
|
132 |
+
function seopress_get_hidden_notices_seo_consultant_option()
|
133 |
+
{
|
134 |
+
$seopress_get_hidden_notices_seo_consultant_option = get_option('seopress_notices');
|
135 |
+
if (! empty($seopress_get_hidden_notices_seo_consultant_option)) {
|
136 |
+
foreach ($seopress_get_hidden_notices_seo_consultant_option as $key => $seopress_get_hidden_notices_seo_consultant_value) {
|
137 |
+
$options[$key] = $seopress_get_hidden_notices_seo_consultant_value;
|
138 |
+
}
|
139 |
+
if (isset($seopress_get_hidden_notices_seo_consultant_option['notice-seo-consultant'])) {
|
140 |
+
return $seopress_get_hidden_notices_seo_consultant_option['notice-seo-consultant'];
|
141 |
+
}
|
142 |
+
}
|
143 |
+
}
|
144 |
+
if ('1' != seopress_get_hidden_notices_seo_consultant_option()) {
|
145 |
+
$args = [
|
146 |
+
'id' => 'notice-seo-consultant',
|
147 |
+
'title' => __('Talk to a SEO consultant', 'wp-seopress'),
|
148 |
+
'desc' => __('Your site is growing and you want support for your SEO strategy, increase your sales and conversions? We are there for that. Contact us!', 'wp-seopress'),
|
149 |
+
'impact' => [
|
150 |
+
'info' => __('Wizard', 'wp-seopress'),
|
151 |
+
],
|
152 |
+
'link' => [
|
153 |
+
'en' => 'https://www.seopress.org/wordpress-seo-plugins/seo-audit-config/',
|
154 |
+
'fr' => 'https://www.seopress.org/fr/extensions-seo-wordpress/audit-seo-et-configuration-de-seopress/',
|
155 |
+
'title' => __('Yes, please', 'wp-seopress'),
|
156 |
+
'external' => true,
|
157 |
+
],
|
158 |
+
'icon' => 'dashicons-sos',
|
159 |
+
'deleteable' => true,
|
160 |
+
];
|
161 |
+
seopress_notification($args);
|
162 |
+
}
|
163 |
//DIVI SEO options conflict
|
164 |
$theme = wp_get_theme();
|
165 |
if ('Divi' == $theme->template || 'Divi' == $theme->parent_theme) {
|
@@ -1030,13 +1030,46 @@ function seopress_google_analytics_matomo_enable_callback() {
|
|
1030 |
checked="yes"
|
1031 |
<?php } ?>
|
1032 |
value="1"/>
|
1033 |
-
|
|
|
|
|
|
|
|
|
1034 |
</label>
|
1035 |
|
1036 |
<?php if (isset($options['seopress_google_analytics_matomo_enable'])) {
|
1037 |
esc_attr($options['seopress_google_analytics_matomo_enable']);
|
1038 |
}
|
1039 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1040 |
function seopress_google_analytics_matomo_id_callback() {
|
1041 |
$options = get_option('seopress_google_analytics_option_name');
|
1042 |
|
@@ -1044,10 +1077,10 @@ function seopress_google_analytics_matomo_id_callback() {
|
|
1044 |
|
1045 |
printf('<input type="text" name="seopress_google_analytics_option_name[seopress_google_analytics_matomo_id]" placeholder="'
|
1046 |
. esc_html__('Enter "example" if you Matomo account URL is "example.matomo.cloud"', ' wp-seopress')
|
1047 |
-
. '" value="%s" aria-label="' . __('Matomo Cloud
|
1048 |
|
1049 |
<p class="description">
|
1050 |
-
<?php _e('Enter only the <strong>host</strong> like this example.matomo.cloud'); ?>
|
1051 |
</p>
|
1052 |
|
1053 |
<?php
|
@@ -1065,7 +1098,8 @@ function seopress_google_analytics_matomo_site_id_callback() {
|
|
1065 |
); ?>
|
1066 |
|
1067 |
<p class="description">
|
1068 |
-
<?php _e('To find your site ID, go to your <strong>Matomo Cloud account, Websites, Manage page</strong>. Look at "Site ID" on the right part.', 'wp-seopress');
|
|
|
1069 |
</p>
|
1070 |
<?php
|
1071 |
}
|
1030 |
checked="yes"
|
1031 |
<?php } ?>
|
1032 |
value="1"/>
|
1033 |
+
|
1034 |
+
<?php _e('Enable Matomo tracking', 'wp-seopress'); ?>
|
1035 |
+
<p class="description">
|
1036 |
+
<?php _e('A Matomo Cloud account or a self hosted Matomo installation is required.', 'wp-seopress'); ?>
|
1037 |
+
</p>
|
1038 |
</label>
|
1039 |
|
1040 |
<?php if (isset($options['seopress_google_analytics_matomo_enable'])) {
|
1041 |
esc_attr($options['seopress_google_analytics_matomo_enable']);
|
1042 |
}
|
1043 |
}
|
1044 |
+
|
1045 |
+
function seopress_google_analytics_matomo_self_hosted_callback() {
|
1046 |
+
$docs = seopress_get_docs_links();
|
1047 |
+
$options = get_option('seopress_google_analytics_option_name');
|
1048 |
+
$check = isset($options['seopress_google_analytics_matomo_self_hosted']); ?>
|
1049 |
+
|
1050 |
+
|
1051 |
+
<label for="seopress_google_analytics_matomo_self_hosted">
|
1052 |
+
<input id="seopress_google_analytics_matomo_self_hosted"
|
1053 |
+
name="seopress_google_analytics_option_name[seopress_google_analytics_matomo_self_hosted]" type="checkbox" <?php if ('1' == $check) { ?>
|
1054 |
+
checked="yes"
|
1055 |
+
<?php } ?>
|
1056 |
+
value="1"/>
|
1057 |
+
|
1058 |
+
<?php _e('Yes, self-hosted installation', 'wp-seopress'); ?>
|
1059 |
+
<p class="description">
|
1060 |
+
<?php _e('If you use Matomo Cloud, uncheck this option.', 'wp-seopress'); ?>
|
1061 |
+
</p>
|
1062 |
+
<p class="description">
|
1063 |
+
<span class="dashicons dashicons-external"></span>
|
1064 |
+
<?php printf('<a href="%s" target="_blank">'.__('Learn how to install Matomo On-Premise on your server.', 'wp-seopress').'</a>', $docs['analytics']['matomo']['on_premise']); ?>
|
1065 |
+
</p>
|
1066 |
+
</label>
|
1067 |
+
|
1068 |
+
<?php if (isset($options['seopress_google_analytics_matomo_self_hosted'])) {
|
1069 |
+
esc_attr($options['seopress_google_analytics_matomo_self_hosted']);
|
1070 |
+
}
|
1071 |
+
}
|
1072 |
+
|
1073 |
function seopress_google_analytics_matomo_id_callback() {
|
1074 |
$options = get_option('seopress_google_analytics_option_name');
|
1075 |
|
1077 |
|
1078 |
printf('<input type="text" name="seopress_google_analytics_option_name[seopress_google_analytics_matomo_id]" placeholder="'
|
1079 |
. esc_html__('Enter "example" if you Matomo account URL is "example.matomo.cloud"', ' wp-seopress')
|
1080 |
+
. '" value="%s" aria-label="' . __('Matomo URL (Cloud or Self-hosted)', 'wp-seopress') . '"/>', esc_html($check)); ?>
|
1081 |
|
1082 |
<p class="description">
|
1083 |
+
<?php _e('Enter only the <strong>host</strong> like this example.matomo.cloud (Cloud) or matomo.example.com (self-hosted).'); ?>
|
1084 |
</p>
|
1085 |
|
1086 |
<?php
|
1098 |
); ?>
|
1099 |
|
1100 |
<p class="description">
|
1101 |
+
<?php _e('To find your site ID, go to your <strong>Matomo Cloud account, Websites, Manage page</strong>. Look at "Site ID" on the right part.', 'wp-seopress'); ?><br>
|
1102 |
+
<?php _e('For self-hosted installations, go to your Matomo administration, Settings, Websites, Manage. From the list of your websites, find the ID line.', 'wp-seopress'); ?>
|
1103 |
</p>
|
1104 |
<?php
|
1105 |
}
|
@@ -77,7 +77,11 @@ function seopress_xml_sitemap_video_enable_callback()
|
|
77 |
|
78 |
<?php echo seopress_tooltip_link($docs['sitemaps']['video'], __('Guide to enable XML video sitemaps - new window', 'wp-seopress')); ?>
|
79 |
|
80 |
-
|
|
|
|
|
|
|
|
|
81 |
|
82 |
<?php if (isset($options['seopress_xml_sitemap_video_enable'])) {
|
83 |
esc_attr($options['seopress_xml_sitemap_video_enable']);
|
77 |
|
78 |
<?php echo seopress_tooltip_link($docs['sitemaps']['video'], __('Guide to enable XML video sitemaps - new window', 'wp-seopress')); ?>
|
79 |
|
80 |
+
<p class="description">
|
81 |
+
<?php printf(__('Your video sitemap is empty? Read our guide to learn more about <a href="%s" target="_blank">adding videos to your sitemap.</a>', 'wp-seopress'), $docs['sitemaps']['video']); ?><br>
|
82 |
+
<?php _e('YouTube videos are automatically added when you create / save a post, page or post type.', 'wp-seopress'); ?><br>
|
83 |
+
<?php printf(__('<a href="%s">Regenerate automatic XML Video sitemap for YouTube?</a>', 'wp-seopress'), admin_url('admin.php?page=seopress-import-export#tab=tab_seopress_tool_video')); ?>
|
84 |
+
</p>
|
85 |
|
86 |
<?php if (isset($options['seopress_xml_sitemap_video_enable'])) {
|
87 |
esc_attr($options['seopress_xml_sitemap_video_enable']);
|
@@ -300,7 +300,7 @@ function seopress_titles_single_titles_callback()
|
|
300 |
if ('1' == $check && isset($cpt_in_sitemap[$seopress_cpt_key]) && '1' === $cpt_in_sitemap[$seopress_cpt_key]['include']) { ?>
|
301 |
<div class="seopress-notice is-error">
|
302 |
<p>
|
303 |
-
<?php
|
304 |
</p>
|
305 |
</div>
|
306 |
<?php }
|
300 |
if ('1' == $check && isset($cpt_in_sitemap[$seopress_cpt_key]) && '1' === $cpt_in_sitemap[$seopress_cpt_key]['include']) { ?>
|
301 |
<div class="seopress-notice is-error">
|
302 |
<p>
|
303 |
+
<?php printf(__('This custom post type is <strong>NOT</strong> excluded from your XML sitemaps despite the fact that it is set to <strong>NOINDEX</strong>. We recommend that you <a href="%s">check this out here</a>.', 'wp-seopress'), admin_url('admin.php?page=seopress-xml-sitemap')); ?>
|
304 |
</p>
|
305 |
</div>
|
306 |
<?php }
|
@@ -74,6 +74,9 @@ function seopress_get_docs_links()
|
|
74 |
'analytics' => 'https://console.cloud.google.com/apis/library/analytics.googleapis.com?hl=fr',
|
75 |
'reporting' => 'https://console.cloud.google.com/apis/library/analyticsreporting.googleapis.com?hl=fr'
|
76 |
],
|
|
|
|
|
|
|
77 |
'clarity' => [
|
78 |
'project' => 'https://www.seopress.org/fr/support/guides/trouver-mon-id-de-project-microsoft-clarity/' . $utm,
|
79 |
]
|
@@ -126,11 +129,15 @@ function seopress_get_docs_links()
|
|
126 |
],
|
127 |
'license' => [
|
128 |
'account' => 'https://www.seopress.org/fr/mon-compte/' . $utm,
|
129 |
-
'license_errors' => 'https://www.seopress.org/fr/support/guides/activer-votre-licence-seopress-pro-insights/'
|
|
|
130 |
],
|
131 |
'addons' => [
|
132 |
'pro' => 'https://www.seopress.org/fr/extensions-seo-wordpress/seopress-pro/' . $utm,
|
133 |
'insights' => 'https://www.seopress.org/fr/extensions-seo-wordpress/seopress-insights/' . $utm,
|
|
|
|
|
|
|
134 |
]
|
135 |
];
|
136 |
} else {
|
@@ -196,6 +203,9 @@ function seopress_get_docs_links()
|
|
196 |
'analytics' => 'https://console.cloud.google.com/apis/library/analytics.googleapis.com?hl=en',
|
197 |
'reporting' => 'https://console.cloud.google.com/apis/library/analyticsreporting.googleapis.com?hl=en'
|
198 |
],
|
|
|
|
|
|
|
199 |
'clarity' => [
|
200 |
'project' => 'https://www.seopress.org/support/guides/find-my-microsoft-clarity-project-id/' . $utm,
|
201 |
]
|
@@ -248,11 +258,15 @@ function seopress_get_docs_links()
|
|
248 |
],
|
249 |
'license' => [
|
250 |
'account' => 'https://www.seopress.org/account/' . $utm,
|
251 |
-
'license_errors' => 'https://www.seopress.org/support/guides/activate-seopress-pro-license/' . $utm,
|
|
|
252 |
],
|
253 |
'addons' => [
|
254 |
'pro' => 'https://www.seopress.org/wordpress-seo-plugins/pro/' . $utm,
|
255 |
'insights' => 'https://www.seopress.org/wordpress-seo-plugins/insights/' . $utm,
|
|
|
|
|
|
|
256 |
]
|
257 |
];
|
258 |
}
|
74 |
'analytics' => 'https://console.cloud.google.com/apis/library/analytics.googleapis.com?hl=fr',
|
75 |
'reporting' => 'https://console.cloud.google.com/apis/library/analyticsreporting.googleapis.com?hl=fr'
|
76 |
],
|
77 |
+
'matomo' => [
|
78 |
+
'on_premise' => 'https://www.seopress.org/fr/support/guides/comment-utiliser-matomo-en-auto-heberge-avec-seopress-free/' . $utm,
|
79 |
+
],
|
80 |
'clarity' => [
|
81 |
'project' => 'https://www.seopress.org/fr/support/guides/trouver-mon-id-de-project-microsoft-clarity/' . $utm,
|
82 |
]
|
129 |
],
|
130 |
'license' => [
|
131 |
'account' => 'https://www.seopress.org/fr/mon-compte/' . $utm,
|
132 |
+
'license_errors' => 'https://www.seopress.org/fr/support/guides/activer-votre-licence-seopress-pro-insights/'. $utm . '#je-ne-peux-toujours-pas-activer-ma-cle-de-licence',
|
133 |
+
'license_define' => 'https://www.seopress.org/fr/support/guides/activer-votre-licence-seopress-pro-insights/' . $utm . '#ajouter-ma-cle-de-licence-dans-wp-config-php',
|
134 |
],
|
135 |
'addons' => [
|
136 |
'pro' => 'https://www.seopress.org/fr/extensions-seo-wordpress/seopress-pro/' . $utm,
|
137 |
'insights' => 'https://www.seopress.org/fr/extensions-seo-wordpress/seopress-insights/' . $utm,
|
138 |
+
],
|
139 |
+
'insights' => [
|
140 |
+
'slack_webhook' => 'https://api.slack.com/messaging/webhooks/' . $utm
|
141 |
]
|
142 |
];
|
143 |
} else {
|
203 |
'analytics' => 'https://console.cloud.google.com/apis/library/analytics.googleapis.com?hl=en',
|
204 |
'reporting' => 'https://console.cloud.google.com/apis/library/analyticsreporting.googleapis.com?hl=en'
|
205 |
],
|
206 |
+
'matomo' => [
|
207 |
+
'on_premise' => 'https://www.seopress.org/support/guides/how-to-use-matomo-on-premise-with-seopress-free/' . $utm,
|
208 |
+
],
|
209 |
'clarity' => [
|
210 |
'project' => 'https://www.seopress.org/support/guides/find-my-microsoft-clarity-project-id/' . $utm,
|
211 |
]
|
258 |
],
|
259 |
'license' => [
|
260 |
'account' => 'https://www.seopress.org/account/' . $utm,
|
261 |
+
'license_errors' => 'https://www.seopress.org/support/guides/activate-seopress-pro-license/' . $utm . '#i-still-cant-activate-my-license-key',
|
262 |
+
'license_define' => 'https://www.seopress.org/support/guides/activate-seopress-pro-license/' . $utm . '#add-my-license-key-to-wp-config-php',
|
263 |
],
|
264 |
'addons' => [
|
265 |
'pro' => 'https://www.seopress.org/wordpress-seo-plugins/pro/' . $utm,
|
266 |
'insights' => 'https://www.seopress.org/wordpress-seo-plugins/insights/' . $utm,
|
267 |
+
],
|
268 |
+
'insights' => [
|
269 |
+
'slack_webhook' => 'https://api.slack.com/messaging/webhooks/' . $utm
|
270 |
]
|
271 |
];
|
272 |
}
|
@@ -3,108 +3,124 @@
|
|
3 |
defined('ABSPATH') or exit('Please don’t call the plugin directly. Thanks :)');
|
4 |
|
5 |
$data_attr = seopress_metaboxes_init();
|
6 |
-
|
7 |
?>
|
8 |
|
9 |
-
<div class="wrap-seopress-analysis"
|
10 |
data-home-id="<?php echo $data_attr['isHomeId']; ?>"
|
11 |
data-term-id="<?php echo $data_attr['termId']; ?>"
|
12 |
data_id="<?php echo $data_attr['current_id']; ?>"
|
13 |
data_origin="<?php echo $data_attr['origin']; ?>"
|
14 |
data_tax="<?php echo $data_attr['data_tax']; ?>">
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
</path>
|
23 |
-
</svg>
|
24 |
-
<?php _e('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'); ?>
|
25 |
-
</p>
|
26 |
-
<div class="col-left">
|
27 |
<p>
|
28 |
-
|
29 |
-
<?php echo seopress_tooltip(__('Target keywords', 'wp-seopress'), __('Separate target keywords with commas. Do not use spaces after the commas, unless you want to include them', 'wp-seopress'), esc_html('my super keyword,another keyword,keyword')); ?>
|
30 |
-
</label>
|
31 |
-
<input id="seopress_analysis_target_kw_meta" type="text" name="seopress_analysis_target_kw"
|
32 |
-
placeholder="<?php esc_html_e('Enter your target keywords', 'wp-seopress'); ?>"
|
33 |
-
aria-label="<?php _e('Target keywords', 'wp-seopress'); ?>"
|
34 |
-
value="<?php esc_attr_e($seopress_analysis_target_kw); ?>" />
|
35 |
</p>
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
|
47 |
-
if (
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
<input id="seopress_google_suggest_kw_meta" type="text" name="seopress_google_suggest_kw"
|
69 |
-
placeholder="<?php _e('Get suggestions from Google', 'wp-seopress'); ?>"
|
70 |
-
aria-label="Google suggestions" value="">
|
71 |
-
<span class="description"><?php _e('Click on a suggestion below to add it as a target keyword.', 'wp-seopress'); ?></span>
|
72 |
-
</p>
|
73 |
-
<button id="seopress_get_suggestions" type="button"
|
74 |
-
class="<?php echo seopress_btn_secondary_classes(); ?>">
|
75 |
-
<?php _e('Get suggestions!', 'wp-seopress'); ?>
|
76 |
-
</button>
|
77 |
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
89 |
|
90 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
91 |
|
92 |
-
|
93 |
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
|
|
|
|
106 |
|
107 |
-
if (function_exists('seopress_get_service')) {
|
108 |
-
|
109 |
-
|
110 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
defined('ABSPATH') or exit('Please don’t call the plugin directly. Thanks :)');
|
4 |
|
5 |
$data_attr = seopress_metaboxes_init();
|
|
|
6 |
?>
|
7 |
|
8 |
+
<div id="seopress-ca-tabs" class="wrap-seopress-analysis"
|
9 |
data-home-id="<?php echo $data_attr['isHomeId']; ?>"
|
10 |
data-term-id="<?php echo $data_attr['termId']; ?>"
|
11 |
data_id="<?php echo $data_attr['current_id']; ?>"
|
12 |
data_origin="<?php echo $data_attr['origin']; ?>"
|
13 |
data_tax="<?php echo $data_attr['data_tax']; ?>">
|
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">
|
|
|
|
|
|
|
|
|
|
|
21 |
<p>
|
22 |
+
<?php _e('Enter a few keywords for analysis to help you write optimized content.', 'wp-seopress'); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
</p>
|
24 |
+
<p class="description-alt">
|
25 |
+
<svg width="24" height="24" viewBox="0 0 24 24" role="img" aria-hidden="true" focusable="false">
|
26 |
+
<path
|
27 |
+
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">
|
28 |
+
</path>
|
29 |
+
</svg>
|
30 |
+
<?php _e('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'); ?>
|
31 |
+
</p>
|
32 |
+
<div class="col-left">
|
33 |
+
<p>
|
34 |
+
<label for="seopress_analysis_target_kw_meta"><?php _e('Target keywords', 'wp-seopress'); ?>
|
35 |
+
<?php echo seopress_tooltip(__('Target keywords', 'wp-seopress'), __('Separate target keywords with commas. Do not use spaces after the commas, unless you want to include them', 'wp-seopress'), esc_html('my super keyword,another keyword,keyword')); ?>
|
36 |
+
</label>
|
37 |
+
<input id="seopress_analysis_target_kw_meta" type="text" name="seopress_analysis_target_kw"
|
38 |
+
placeholder="<?php esc_html_e('Enter your target keywords', 'wp-seopress'); ?>"
|
39 |
+
aria-label="<?php _e('Target keywords', 'wp-seopress'); ?>"
|
40 |
+
value="<?php esc_attr_e($seopress_analysis_target_kw); ?>" />
|
41 |
+
</p>
|
42 |
|
43 |
+
<?php if (empty($seopress_analysis_data)) { ?>
|
44 |
+
<button id="seopress_launch_analysis" type="button" class="<?php echo seopress_btn_secondary_classes(); ?>"
|
45 |
+
data_id="<?php echo get_the_ID(); ?>"
|
46 |
+
data_post_type="<?php echo get_current_screen()->post_type; ?>"><?php _e('Analyze my content', 'wp-seopress'); ?></button>
|
47 |
+
<?php } else { ?>
|
48 |
+
<button id="seopress_launch_analysis" type="button"
|
49 |
+
class="<?php echo seopress_btn_secondary_classes(); ?>"
|
50 |
+
data_id="<?php echo get_the_ID(); ?>"
|
51 |
+
data_post_type="<?php echo get_current_screen()->post_type; ?>"><?php _e('Refresh analysis', 'wp-seopress'); ?></button>
|
52 |
+
<?php }
|
53 |
|
54 |
+
if (is_plugin_active('wp-seopress-insights/seopress-insights.php')) { ?>
|
55 |
+
<button id="seopress_add_to_insights" type="button"
|
56 |
+
class="<?php echo seopress_btn_secondary_classes(); ?>"
|
57 |
+
data_id="<?php echo get_the_ID(); ?>"
|
58 |
+
data_post_type="<?php echo get_current_screen()->post_type; ?>">
|
59 |
+
<?php _e('Track with Insights', 'wp-seopress'); ?>
|
60 |
+
</button>
|
61 |
+
<div id="seopress_add_to_insights_status"></div>
|
62 |
+
<span class="spinner"></span>
|
63 |
+
<?php } ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
|
65 |
+
<p><span class="description"><?php _e('To get the most accurate analysis, save your post first. We analyze all of your source code as a search engine would.', 'wp-seopress'); ?></span>
|
66 |
+
</p>
|
67 |
+
</div>
|
68 |
+
<?php if (is_plugin_active('wp-seopress-pro/seopress-pro.php')) { ?>
|
69 |
+
<div class="col-right">
|
70 |
+
<p>
|
71 |
+
<label for="seopress_google_suggest_kw_meta">
|
72 |
+
<?php _e('Google suggestions', 'wp-seopress'); ?>
|
73 |
+
<?php echo seopress_tooltip(__('Google suggestions', 'wp-seopress'), __('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'), esc_html('my super keyword,another keyword,keyword')); ?>
|
74 |
+
</label>
|
75 |
+
<input id="seopress_google_suggest_kw_meta" type="text" name="seopress_google_suggest_kw"
|
76 |
+
placeholder="<?php _e('Get suggestions from Google', 'wp-seopress'); ?>"
|
77 |
+
aria-label="Google suggestions" value="">
|
78 |
+
<span class="description"><?php _e('Click on a suggestion below to add it as a target keyword.', 'wp-seopress'); ?></span>
|
79 |
+
</p>
|
80 |
+
<button id="seopress_get_suggestions" type="button"
|
81 |
+
class="<?php echo seopress_btn_secondary_classes(); ?>">
|
82 |
+
<?php _e('Get suggestions!', 'wp-seopress'); ?>
|
83 |
+
</button>
|
84 |
|
85 |
+
<ul id='seopress_suggestions'></ul>
|
86 |
+
<?php if ('' != get_locale()) {
|
87 |
+
$locale = substr(get_locale(), 0, 2);
|
88 |
+
$country_code = substr(get_locale(), -2);
|
89 |
+
} else {
|
90 |
+
$locale = 'en';
|
91 |
+
$country_code = 'US';
|
92 |
+
} ?>
|
93 |
+
<script>
|
94 |
+
jQuery('#seopress_get_suggestions').on('click', function(data) {
|
95 |
+
data.preventDefault();
|
96 |
|
97 |
+
document.getElementById('seopress_suggestions').innerHTML = '';
|
98 |
|
99 |
+
var kws = jQuery('#seopress_google_suggest_kw_meta').val();
|
100 |
+
|
101 |
+
if (kws) {
|
102 |
+
var script = document.createElement('script');
|
103 |
+
script.src =
|
104 |
+
'https://www.google.com/complete/search?client=firefox&format=rich&hl=<?php echo $locale; ?>&q=' +
|
105 |
+
kws +
|
106 |
+
'&gl=<?php echo $country_code; ?>&callback=seopress_google_suggest';
|
107 |
+
document.body.appendChild(script);
|
108 |
+
}
|
109 |
+
});
|
110 |
+
</script>
|
111 |
+
</div>
|
112 |
+
<?php }
|
113 |
|
114 |
+
if (function_exists('seopress_get_service')) {
|
115 |
+
$analyzes = seopress_get_service('GetContentAnalysis')->getAnalyzes($post);
|
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>
|
@@ -188,7 +188,7 @@ if ('term.php' == $pagenow || 'edit-tags.php' == $pagenow) { ?>
|
|
188 |
echo seopress_tooltip(__('Snippet Preview', 'wp-seopress'), __('The Google preview is a simulation. <br>There is no reliable preview because it depends on the screen resolution, the device used, the expression sought, and Google. <br>There is not one snippet for one URL but several. <br>All the data in this overview comes directly from your source code. <br>This is what the crawlers will see.', 'wp-seopress'), null);
|
189 |
?>
|
190 |
</h3>
|
191 |
-
<p><?php _e('This is what your page will look like in Google search results. You have to publish your post to get the Google Snippet Preview.', 'wp-seopress'); ?>
|
192 |
</p>
|
193 |
<div class="wrap-toggle-preview">
|
194 |
<p>
|
@@ -225,16 +225,24 @@ if ('term.php' == $pagenow || 'edit-tags.php' == $pagenow) { ?>
|
|
225 |
<div class="snippet-title"></div>
|
226 |
<div class="snippet-title-custom" style="display:none"></div>
|
227 |
|
228 |
-
|
229 |
-
|
230 |
-
|
|
|
|
|
231 |
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
238 |
</div>
|
239 |
</div>
|
240 |
</div>
|
@@ -800,6 +808,9 @@ if ('term.php' == $pagenow || 'edit-tags.php' == $pagenow) { ?>
|
|
800 |
|
801 |
if (array_key_exists('video-tab', $seo_tabs)) { ?>
|
802 |
<div id="tabs-6">
|
|
|
|
|
|
|
803 |
<p>
|
804 |
<label for="seopress_video_disabled_meta" id="seopress_video_disabled">
|
805 |
<input type="checkbox" name="seopress_video_disabled" id="seopress_video_disabled_meta"
|
@@ -822,7 +833,6 @@ if ('term.php' == $pagenow || 'edit-tags.php' == $pagenow) { ?>
|
|
822 |
$check_view_count = isset($seopress_video[0][$key]['view_count']) ? esc_attr($seopress_video[0][$key]['view_count']) : null;
|
823 |
$check_view_count = isset($seopress_video[0][$key]['view_count']) ? esc_attr($seopress_video[0][$key]['view_count']) : null;
|
824 |
$check_tag = isset($seopress_video[0][$key]['tag']) ? esc_attr($seopress_video[0][$key]['tag']) : null;
|
825 |
-
$check_cat = isset($seopress_video[0][$key]['cat']) ? esc_attr($seopress_video[0][$key]['cat']) : null;
|
826 |
$check_family_friendly = isset($seopress_video[0][$key]['family_friendly']) ? esc_attr($seopress_video[0][$key]['family_friendly']) : null; ?>
|
827 |
|
828 |
<div class="video">
|
@@ -944,18 +954,6 @@ if ('term.php' == $pagenow || 'edit-tags.php' == $pagenow) { ?>
|
|
944 |
value="<?php echo $check_tag; ?>" />
|
945 |
<span class="description"><?php _e('32 tags max., separate tags with commas. Default: target keywords + post tags if available.', 'wp-seopress'); ?></span>
|
946 |
</p>
|
947 |
-
<p>
|
948 |
-
<label
|
949 |
-
for="seopress_video[<?php echo $key; ?>][cat_meta]"><?php _e('Video categories', 'wp-seopress'); ?></label>
|
950 |
-
<input
|
951 |
-
id="seopress_video[<?php echo $key; ?>][cat_meta]"
|
952 |
-
type="text" class="components-text-control__input"
|
953 |
-
name="seopress_video[<?php echo $key; ?>][cat]"
|
954 |
-
placeholder="<?php esc_html_e('Enter your video categories', 'wp-seopress'); ?>"
|
955 |
-
aria-label="<?php _e('Video categories', 'wp-seopress'); ?>"
|
956 |
-
value="<?php echo $check_cat; ?>" />
|
957 |
-
<span class="description"><?php _e('256 characters max., usually a video will belong to a single category, separate categories with commas. Default: first post category if available.', 'wp-seopress'); ?></span>
|
958 |
-
</p>
|
959 |
<p class="family-friendly">
|
960 |
<label
|
961 |
for="seopress_video[<?php echo $key; ?>][family_friendly_meta]"
|
188 |
echo seopress_tooltip(__('Snippet Preview', 'wp-seopress'), __('The Google preview is a simulation. <br>There is no reliable preview because it depends on the screen resolution, the device used, the expression sought, and Google. <br>There is not one snippet for one URL but several. <br>All the data in this overview comes directly from your source code. <br>This is what the crawlers will see.', 'wp-seopress'), null);
|
189 |
?>
|
190 |
</h3>
|
191 |
+
<p><?php _e('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'); ?>
|
192 |
</p>
|
193 |
<div class="wrap-toggle-preview">
|
194 |
<p>
|
225 |
<div class="snippet-title"></div>
|
226 |
<div class="snippet-title-custom" style="display:none"></div>
|
227 |
|
228 |
+
<div class="wrap-snippet-mobile">
|
229 |
+
<div class="wrap-meta-desc">
|
230 |
+
<?php
|
231 |
+
echo $gp_title;
|
232 |
+
echo $gp_permalink;
|
233 |
|
234 |
+
if ('post-new.php' == $pagenow || 'post.php' == $pagenow) {
|
235 |
+
echo seopress_display_date_snippet();
|
236 |
+
} ?>
|
237 |
+
|
238 |
+
<div class="snippet-description">...</div>
|
239 |
+
<div class="snippet-description-custom" style="display:none"></div>
|
240 |
+
<div class="snippet-description-default" style="display:none"></div>
|
241 |
+
</div>
|
242 |
+
<div class="wrap-post-thumb">
|
243 |
+
<?php the_post_thumbnail('full', ['class' => 'snippet-post-thumb']); ?>
|
244 |
+
</div>
|
245 |
+
</div>
|
246 |
</div>
|
247 |
</div>
|
248 |
</div>
|
808 |
|
809 |
if (array_key_exists('video-tab', $seo_tabs)) { ?>
|
810 |
<div id="tabs-6">
|
811 |
+
<p>
|
812 |
+
<?php _e('YouTube videos are automatically added when you create / save a post, page or post type.','wp-seopress'); ?>
|
813 |
+
</p>
|
814 |
<p>
|
815 |
<label for="seopress_video_disabled_meta" id="seopress_video_disabled">
|
816 |
<input type="checkbox" name="seopress_video_disabled" id="seopress_video_disabled_meta"
|
833 |
$check_view_count = isset($seopress_video[0][$key]['view_count']) ? esc_attr($seopress_video[0][$key]['view_count']) : null;
|
834 |
$check_view_count = isset($seopress_video[0][$key]['view_count']) ? esc_attr($seopress_video[0][$key]['view_count']) : null;
|
835 |
$check_tag = isset($seopress_video[0][$key]['tag']) ? esc_attr($seopress_video[0][$key]['tag']) : null;
|
|
|
836 |
$check_family_friendly = isset($seopress_video[0][$key]['family_friendly']) ? esc_attr($seopress_video[0][$key]['family_friendly']) : null; ?>
|
837 |
|
838 |
<div class="video">
|
954 |
value="<?php echo $check_tag; ?>" />
|
955 |
<span class="description"><?php _e('32 tags max., separate tags with commas. Default: target keywords + post tags if available.', 'wp-seopress'); ?></span>
|
956 |
</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
957 |
<p class="family-friendly">
|
958 |
<label
|
959 |
for="seopress_video[<?php echo $key; ?>][family_friendly_meta]"
|
@@ -661,6 +661,12 @@ function seopress_display_ca_metaboxe()
|
|
661 |
];
|
662 |
wp_localize_script('seopress-cpt-counters-js', 'seopressAjaxRealPreview', $seopress_real_preview);
|
663 |
|
|
|
|
|
|
|
|
|
|
|
|
|
664 |
$seopress_analysis_target_kw = get_post_meta($post->ID, '_seopress_analysis_target_kw', true);
|
665 |
$seopress_analysis_data = get_post_meta($post->ID, '_seopress_analysis_data', true);
|
666 |
$seopress_titles_title = get_post_meta($post->ID, '_seopress_titles_title', true);
|
661 |
];
|
662 |
wp_localize_script('seopress-cpt-counters-js', 'seopressAjaxRealPreview', $seopress_real_preview);
|
663 |
|
664 |
+
$seopress_inspect_url = [
|
665 |
+
'seopress_nonce' => wp_create_nonce('seopress_inspect_url_nonce'),
|
666 |
+
'seopress_inspect_url' => admin_url('admin-ajax.php'),
|
667 |
+
];
|
668 |
+
wp_localize_script('seopress-cpt-counters-js', 'seopressAjaxInspectUrl', $seopress_inspect_url);
|
669 |
+
|
670 |
$seopress_analysis_target_kw = get_post_meta($post->ID, '_seopress_analysis_target_kw', true);
|
671 |
$seopress_analysis_data = get_post_meta($post->ID, '_seopress_analysis_data', true);
|
672 |
$seopress_titles_title = get_post_meta($post->ID, '_seopress_titles_title', true);
|
@@ -7,9 +7,7 @@
|
|
7 |
margin-top: -2px;
|
8 |
}
|
9 |
|
10 |
-
.elementor-control-field.facebook-snippet-box
|
11 |
-
.facebook-snippet-text
|
12 |
-
.snippet-meta {
|
13 |
display: flex;
|
14 |
overflow: hidden;
|
15 |
max-height: 12px;
|
@@ -182,9 +180,7 @@
|
|
182 |
margin: 10px 0;
|
183 |
}
|
184 |
|
185 |
-
.elementor-control-field.google-snippet-box
|
186 |
-
.google-snippet-preview.mobile-preview
|
187 |
-
.wrap-snippet {
|
188 |
margin: 0 0 10px 0;
|
189 |
box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
|
190 |
border-radius: 8px;
|
@@ -192,19 +188,38 @@
|
|
192 |
background: #fff;
|
193 |
}
|
194 |
|
195 |
-
.elementor-control-field.google-snippet-box
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
|
|
202 |
display: none;
|
203 |
}
|
204 |
|
205 |
-
.elementor-control-field.google-snippet-box
|
206 |
-
|
207 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
208 |
color: #006621;
|
209 |
font-size: 14px;
|
210 |
font-style: normal;
|
@@ -215,9 +230,7 @@
|
|
215 |
white-space: nowrap;
|
216 |
}
|
217 |
|
218 |
-
.elementor-control-field.google-snippet-box
|
219 |
-
.google-snippet-preview.mobile-preview
|
220 |
-
.wrap-m-icon-permalink {
|
221 |
overflow: hidden;
|
222 |
text-overflow: ellipsis;
|
223 |
white-space: nowrap;
|
@@ -225,25 +238,18 @@
|
|
225 |
display: flex;
|
226 |
}
|
227 |
|
228 |
-
.elementor-control-field.google-snippet-box
|
229 |
-
.google-snippet-preview.mobile-preview
|
230 |
-
.snippet-favicon {
|
231 |
margin-right: 12px;
|
232 |
vertical-align: middle;
|
233 |
}
|
234 |
|
235 |
-
.elementor-control-field.google-snippet-box
|
236 |
-
.google-snippet-preview.mobile-preview
|
237 |
-
.snippet-favicon
|
238 |
-
img {
|
239 |
width: 16px;
|
240 |
height: 16px;
|
241 |
max-width: inherit;
|
242 |
}
|
243 |
|
244 |
-
.elementor-control-field.google-snippet-box
|
245 |
-
.google-snippet-preview
|
246 |
-
.snippet-permalink {
|
247 |
color: #006621;
|
248 |
font-size: 14px;
|
249 |
font-style: normal;
|
@@ -254,53 +260,32 @@
|
|
254 |
white-space: nowrap;
|
255 |
}
|
256 |
|
257 |
-
.elementor-control-field.google-snippet-box
|
258 |
-
.google-snippet-preview.mobile-preview
|
259 |
-
.wrap-m-icon-permalink
|
260 |
-
.snippet-permalink {
|
261 |
display: block;
|
262 |
color: #3c4043;
|
263 |
font-size: 12px;
|
264 |
}
|
265 |
|
266 |
-
.elementor-control-field.google-snippet-box
|
267 |
-
|
268 |
-
|
269 |
-
.elementor-control-field.google-snippet-box
|
270 |
-
.google-snippet-preview
|
271 |
-
.snippet-title-custom,
|
272 |
-
.elementor-control-field.google-snippet-box
|
273 |
-
.google-snippet-preview
|
274 |
-
.snippet-title-default {
|
275 |
color: #1a0dab;
|
276 |
font-size: 18px;
|
277 |
font-weight: 400;
|
278 |
line-height: 21.6px;
|
279 |
}
|
280 |
|
281 |
-
.elementor-control-field.google-snippet-box
|
282 |
-
|
283 |
-
|
284 |
-
.elementor-control-field.google-snippet-box
|
285 |
-
.google-snippet-preview.mobile-preview
|
286 |
-
.snippet-title-custom,
|
287 |
-
.elementor-control-field.google-snippet-box
|
288 |
-
.google-snippet-preview.mobile-preview
|
289 |
-
.snippet-title-default {
|
290 |
font-size: 16px;
|
291 |
line-height: 20px;
|
292 |
margin-bottom: 12px;
|
293 |
}
|
294 |
|
295 |
-
.elementor-control-field.google-snippet-box
|
296 |
-
|
297 |
-
|
298 |
-
.elementor-control-field.google-snippet-box
|
299 |
-
.google-snippet-preview
|
300 |
-
.snippet-description-custom,
|
301 |
-
.elementor-control-field.google-snippet-box
|
302 |
-
.google-snippet-preview
|
303 |
-
.snippet-description-default {
|
304 |
color: #545454;
|
305 |
font-size: 14px;
|
306 |
font-weight: 400;
|
@@ -308,15 +293,9 @@
|
|
308 |
display: inline;
|
309 |
}
|
310 |
|
311 |
-
.elementor-control-field.google-snippet-box
|
312 |
-
|
313 |
-
|
314 |
-
.elementor-control-field.google-snippet-box
|
315 |
-
.google-snippet-preview.mobile-preview
|
316 |
-
.snippet-description-custom,
|
317 |
-
.elementor-control-field.google-snippet-box
|
318 |
-
.google-snippet-preview.mobile-preview
|
319 |
-
.snippet-description-default {
|
320 |
color: #3c4043;
|
321 |
font-size: 14px;
|
322 |
line-height: 20px;
|
@@ -327,7 +306,7 @@
|
|
327 |
align-items: center;
|
328 |
}
|
329 |
|
330 |
-
.elementor-control-field.google-snippet-box input.toggle
|
331 |
display: inline-block;
|
332 |
position: relative;
|
333 |
box-shadow: inset 0 0 0 1px #d5d5d5;
|
@@ -344,11 +323,11 @@
|
|
344 |
position: relative;
|
345 |
}
|
346 |
|
347 |
-
.elementor-control-field.google-snippet-box input.toggle
|
348 |
margin: 0;
|
349 |
}
|
350 |
|
351 |
-
.elementor-control-field.google-snippet-box input.toggle
|
352 |
display: inline-block;
|
353 |
position: relative;
|
354 |
box-shadow: inset 0 0 0 1px #d5d5d5;
|
@@ -360,14 +339,12 @@
|
|
360 |
cursor: pointer;
|
361 |
}
|
362 |
|
363 |
-
.elementor-control-field.google-snippet-box
|
364 |
-
input.toggle[data-toggle="1"]
|
365 |
-
+ label:before {
|
366 |
width: 40px;
|
367 |
background: #3197d3;
|
368 |
}
|
369 |
|
370 |
-
.elementor-control-field.google-snippet-box input.toggle
|
371 |
content: "";
|
372 |
position: absolute;
|
373 |
display: block;
|
@@ -382,7 +359,7 @@
|
|
382 |
transition: 0.25s ease-in-out;
|
383 |
}
|
384 |
|
385 |
-
.elementor-control-field.google-snippet-box input.toggle
|
386 |
content: "";
|
387 |
position: absolute;
|
388 |
display: block;
|
@@ -398,9 +375,7 @@
|
|
398 |
transition: 0.25s ease-in-out;
|
399 |
}
|
400 |
|
401 |
-
.elementor-control-field.google-snippet-box
|
402 |
-
input.toggle[data-toggle="1"]
|
403 |
-
+ label:after {
|
404 |
left: 20px;
|
405 |
box-shadow: inset 0 0 0 1px #3197d3, 0 2px 4px rgba(0, 0, 0, 0.2);
|
406 |
}
|
7 |
margin-top: -2px;
|
8 |
}
|
9 |
|
10 |
+
.elementor-control-field.facebook-snippet-box .facebook-snippet-text .snippet-meta {
|
|
|
|
|
11 |
display: flex;
|
12 |
overflow: hidden;
|
13 |
max-height: 12px;
|
180 |
margin: 10px 0;
|
181 |
}
|
182 |
|
183 |
+
.elementor-control-field.google-snippet-box .google-snippet-preview.mobile-preview .wrap-snippet {
|
|
|
|
|
184 |
margin: 0 0 10px 0;
|
185 |
box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
|
186 |
border-radius: 8px;
|
188 |
background: #fff;
|
189 |
}
|
190 |
|
191 |
+
.elementor-control-field.google-snippet-box .google-snippet-preview .snippet-date {
|
192 |
+
color: grey;
|
193 |
+
display: inline;
|
194 |
+
}
|
195 |
+
|
196 |
+
.elementor-control-field.google-snippet-box .google-snippet-preview .wrap-snippet .wrap-m-icon-permalink,
|
197 |
+
.elementor-control-field.google-snippet-box .google-snippet-preview.mobile-preview .snippet-permalink,
|
198 |
+
.elementor-control-field.google-snippet-box .google-snippet-preview .wrap-post-thumb {
|
199 |
display: none;
|
200 |
}
|
201 |
|
202 |
+
.elementor-control-field.google-snippet-box .google-snippet-preview.mobile-preview .wrap-snippet-mobile {
|
203 |
+
display: flex;
|
204 |
+
}
|
205 |
+
|
206 |
+
.elementor-control-field.google-snippet-box .google-snippet-preview.mobile-preview .wrap-meta-desc {
|
207 |
+
margin-right: 8px;
|
208 |
+
}
|
209 |
+
|
210 |
+
.elementor-control-field.google-snippet-box .google-snippet-preview.mobile-preview .wrap-post-thumb {
|
211 |
+
margin-left: 8px;
|
212 |
+
display: block;
|
213 |
+
}
|
214 |
+
|
215 |
+
.elementor-control-field.google-snippet-box .google-snippet-preview.mobile-preview .snippet-post-thumb {
|
216 |
+
width: 104px;
|
217 |
+
max-width: inherit;
|
218 |
+
height: 104px;
|
219 |
+
border-radius: 8px;
|
220 |
+
}
|
221 |
+
|
222 |
+
.elementor-control-field.google-snippet-box .google-snippet-preview .snippet-permalink {
|
223 |
color: #006621;
|
224 |
font-size: 14px;
|
225 |
font-style: normal;
|
230 |
white-space: nowrap;
|
231 |
}
|
232 |
|
233 |
+
.elementor-control-field.google-snippet-box .google-snippet-preview.mobile-preview .wrap-m-icon-permalink {
|
|
|
|
|
234 |
overflow: hidden;
|
235 |
text-overflow: ellipsis;
|
236 |
white-space: nowrap;
|
238 |
display: flex;
|
239 |
}
|
240 |
|
241 |
+
.elementor-control-field.google-snippet-box .google-snippet-preview.mobile-preview .snippet-favicon {
|
|
|
|
|
242 |
margin-right: 12px;
|
243 |
vertical-align: middle;
|
244 |
}
|
245 |
|
246 |
+
.elementor-control-field.google-snippet-box .google-snippet-preview.mobile-preview .snippet-favicon img {
|
|
|
|
|
|
|
247 |
width: 16px;
|
248 |
height: 16px;
|
249 |
max-width: inherit;
|
250 |
}
|
251 |
|
252 |
+
.elementor-control-field.google-snippet-box .google-snippet-preview .snippet-permalink {
|
|
|
|
|
253 |
color: #006621;
|
254 |
font-size: 14px;
|
255 |
font-style: normal;
|
260 |
white-space: nowrap;
|
261 |
}
|
262 |
|
263 |
+
.elementor-control-field.google-snippet-box .google-snippet-preview.mobile-preview .wrap-m-icon-permalink .snippet-permalink {
|
|
|
|
|
|
|
264 |
display: block;
|
265 |
color: #3c4043;
|
266 |
font-size: 12px;
|
267 |
}
|
268 |
|
269 |
+
.elementor-control-field.google-snippet-box .google-snippet-preview .snippet-title,
|
270 |
+
.elementor-control-field.google-snippet-box .google-snippet-preview .snippet-title-custom,
|
271 |
+
.elementor-control-field.google-snippet-box .google-snippet-preview .snippet-title-default {
|
|
|
|
|
|
|
|
|
|
|
|
|
272 |
color: #1a0dab;
|
273 |
font-size: 18px;
|
274 |
font-weight: 400;
|
275 |
line-height: 21.6px;
|
276 |
}
|
277 |
|
278 |
+
.elementor-control-field.google-snippet-box .google-snippet-preview.mobile-preview .snippet-title,
|
279 |
+
.elementor-control-field.google-snippet-box .google-snippet-preview.mobile-preview .snippet-title-custom,
|
280 |
+
.elementor-control-field.google-snippet-box .google-snippet-preview.mobile-preview .snippet-title-default {
|
|
|
|
|
|
|
|
|
|
|
|
|
281 |
font-size: 16px;
|
282 |
line-height: 20px;
|
283 |
margin-bottom: 12px;
|
284 |
}
|
285 |
|
286 |
+
.elementor-control-field.google-snippet-box .google-snippet-preview .snippet-description,
|
287 |
+
.elementor-control-field.google-snippet-box .google-snippet-preview .snippet-description-custom,
|
288 |
+
.elementor-control-field.google-snippet-box .google-snippet-preview .snippet-description-default {
|
|
|
|
|
|
|
|
|
|
|
|
|
289 |
color: #545454;
|
290 |
font-size: 14px;
|
291 |
font-weight: 400;
|
293 |
display: inline;
|
294 |
}
|
295 |
|
296 |
+
.elementor-control-field.google-snippet-box .google-snippet-preview.mobile-preview .snippet-description,
|
297 |
+
.elementor-control-field.google-snippet-box .google-snippet-preview.mobile-preview .snippet-description-custom,
|
298 |
+
.elementor-control-field.google-snippet-box .google-snippet-preview.mobile-preview .snippet-description-default {
|
|
|
|
|
|
|
|
|
|
|
|
|
299 |
color: #3c4043;
|
300 |
font-size: 14px;
|
301 |
line-height: 20px;
|
306 |
align-items: center;
|
307 |
}
|
308 |
|
309 |
+
.elementor-control-field.google-snippet-box input.toggle+label {
|
310 |
display: inline-block;
|
311 |
position: relative;
|
312 |
box-shadow: inset 0 0 0 1px #d5d5d5;
|
323 |
position: relative;
|
324 |
}
|
325 |
|
326 |
+
.elementor-control-field.google-snippet-box input.toggle+label {
|
327 |
margin: 0;
|
328 |
}
|
329 |
|
330 |
+
.elementor-control-field.google-snippet-box input.toggle+label {
|
331 |
display: inline-block;
|
332 |
position: relative;
|
333 |
box-shadow: inset 0 0 0 1px #d5d5d5;
|
339 |
cursor: pointer;
|
340 |
}
|
341 |
|
342 |
+
.elementor-control-field.google-snippet-box input.toggle[data-toggle="1"]+label:before {
|
|
|
|
|
343 |
width: 40px;
|
344 |
background: #3197d3;
|
345 |
}
|
346 |
|
347 |
+
.elementor-control-field.google-snippet-box input.toggle+label:before {
|
348 |
content: "";
|
349 |
position: absolute;
|
350 |
display: block;
|
359 |
transition: 0.25s ease-in-out;
|
360 |
}
|
361 |
|
362 |
+
.elementor-control-field.google-snippet-box input.toggle+label:after {
|
363 |
content: "";
|
364 |
position: absolute;
|
365 |
display: block;
|
375 |
transition: 0.25s ease-in-out;
|
376 |
}
|
377 |
|
378 |
+
.elementor-control-field.google-snippet-box input.toggle[data-toggle="1"]+label:after {
|
|
|
|
|
379 |
left: 20px;
|
380 |
box-shadow: inset 0 0 0 1px #3197d3, 0 2px 4px rgba(0, 0, 0, 0.2);
|
381 |
}
|
@@ -138,18 +138,24 @@ function contentAnalysisToggle() {
|
|
138 |
stop = false;
|
139 |
}
|
140 |
jQuery(this).toggleClass('open');
|
141 |
-
jQuery(this).
|
|
|
|
|
142 |
});
|
143 |
|
144 |
//Show all
|
145 |
jQuery(document).on('click', '#expand-all', function (e) {
|
146 |
e.preventDefault();
|
147 |
jQuery('.gr-analysis-content').show();
|
|
|
|
|
148 |
});
|
149 |
//Hide all
|
150 |
jQuery(document).on('click', '#close-all', function (e) {
|
151 |
e.preventDefault();
|
152 |
jQuery('.gr-analysis-content').hide();
|
|
|
|
|
153 |
});
|
154 |
}
|
155 |
|
138 |
stop = false;
|
139 |
}
|
140 |
jQuery(this).toggleClass('open');
|
141 |
+
jQuery(this).attr('aria-expanded', (jQuery(this).attr('aria-expanded') == "false" ? true : false));
|
142 |
+
jQuery(this).parent().parent().next(".gr-analysis-content").toggle();
|
143 |
+
jQuery(this).parent().parent().next(".gr-analysis-content").attr('aria-hidden', (jQuery(this).parent().parent().next(".gr-analysis-content").attr('aria-hidden') == "true" ? false : true));
|
144 |
});
|
145 |
|
146 |
//Show all
|
147 |
jQuery(document).on('click', '#expand-all', function (e) {
|
148 |
e.preventDefault();
|
149 |
jQuery('.gr-analysis-content').show();
|
150 |
+
jQuery(".gr-analysis-title button").attr('aria-expanded', true);
|
151 |
+
jQuery(".gr-analysis-content").attr('aria-hidden', false);
|
152 |
});
|
153 |
//Hide all
|
154 |
jQuery(document).on('click', '#close-all', function (e) {
|
155 |
e.preventDefault();
|
156 |
jQuery('.gr-analysis-content').hide();
|
157 |
+
jQuery(".gr-analysis-title button").attr('aria-expanded', false);
|
158 |
+
jQuery(".gr-analysis-content").attr('aria-hidden', true);
|
159 |
});
|
160 |
}
|
161 |
|
@@ -106,7 +106,15 @@ class Social_Preview_Control extends \Elementor\Base_Control {
|
|
106 |
</div>
|
107 |
<div class="snippet-title">{{{ data.title }}}</div>
|
108 |
<div class="snippet-permalink">{{{ data.link }}}</div>
|
109 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
110 |
</div>
|
111 |
</div>
|
112 |
</div>
|
106 |
</div>
|
107 |
<div class="snippet-title">{{{ data.title }}}</div>
|
108 |
<div class="snippet-permalink">{{{ data.link }}}</div>
|
109 |
+
<div class="wrap-snippet-mobile">
|
110 |
+
<div class="wrap-meta-desc">
|
111 |
+
<?php echo seopress_display_date_snippet(); ?>
|
112 |
+
<div class="snippet-description-default">{{{ data.description }}}</div>
|
113 |
+
</div>
|
114 |
+
<div class="wrap-post-thumb">
|
115 |
+
<?php the_post_thumbnail('full', ['class' => 'snippet-post-thumb']); ?>
|
116 |
+
</div>
|
117 |
+
</div>
|
118 |
</div>
|
119 |
</div>
|
120 |
</div>
|
@@ -134,7 +134,7 @@ function print_section_info_google_analytics_matomo()
|
|
134 |
</h2>
|
135 |
</div>
|
136 |
<p>
|
137 |
-
<?php _e('Use Matomo to track your users with privacy in mind.', 'wp-seopress'); ?>
|
138 |
</p>
|
139 |
|
140 |
<div class="seopress-notice">
|
@@ -160,7 +160,7 @@ function print_section_info_google_analytics_clarity()
|
|
160 |
|
161 |
<div class="seopress-notice">
|
162 |
<p>
|
163 |
-
<?php printf(__('Create your first Microsoft Clarity
|
164 |
</p>
|
165 |
</div>
|
166 |
|
134 |
</h2>
|
135 |
</div>
|
136 |
<p>
|
137 |
+
<?php _e('Use Matomo to track your users with privacy in mind. We support both On Premise and Cloud installations.', 'wp-seopress'); ?>
|
138 |
</p>
|
139 |
|
140 |
<div class="seopress-notice">
|
160 |
|
161 |
<div class="seopress-notice">
|
162 |
<p>
|
163 |
+
<?php printf(__('Create your first Microsoft Clarity project <a href="%s" target="_blank">here</a>.', 'wp-seopress'), esc_url('https://clarity.microsoft.com/')); ?>
|
164 |
</p>
|
165 |
</div>
|
166 |
|
@@ -62,6 +62,7 @@ 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/([^/]+?)-sitemap([0-9]+)?.xml$ /index.php?seopress_cpt=$1&seopress_paged=$2 last;
|
66 |
}</pre>
|
67 |
</div>
|
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>
|
@@ -469,6 +469,14 @@ add_settings_field(
|
|
469 |
'seopress_setting_section_google_analytics_matomo' // Section
|
470 |
);
|
471 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
472 |
add_settings_field(
|
473 |
'seopress_google_analytics_matomo_id', // ID
|
474 |
__('Enter your tracking ID', 'wp-seopress'), // Title
|
469 |
'seopress_setting_section_google_analytics_matomo' // Section
|
470 |
);
|
471 |
|
472 |
+
add_settings_field(
|
473 |
+
'seopress_google_analytics_matomo_self_hosted', // ID
|
474 |
+
__('Self hosted Matomo installation', 'wp-seopress'), // Title
|
475 |
+
'seopress_google_analytics_matomo_self_hosted_callback', // Callback
|
476 |
+
'seopress-settings-admin-google-analytics-matomo', // Page
|
477 |
+
'seopress_setting_section_google_analytics_matomo' // Section
|
478 |
+
);
|
479 |
+
|
480 |
add_settings_field(
|
481 |
'seopress_google_analytics_matomo_id', // ID
|
482 |
__('Enter your tracking ID', 'wp-seopress'), // Title
|
@@ -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.
|
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.
|
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.7/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/false';
|
144 |
}
|
145 |
|
146 |
//Bing API
|
@@ -3,7 +3,6 @@ defined( 'ABSPATH' ) or die( 'Please don’t call the plugin directly. Thank
|
|
3 |
|
4 |
//MATOMO TRACKING
|
5 |
|
6 |
-
|
7 |
//Matomo Tracking
|
8 |
function seopress_google_analytics_matomo_enable_option() {
|
9 |
$seopress_google_analytics_matomo_enable_option = get_option("seopress_google_analytics_option_name");
|
@@ -16,6 +15,18 @@ function seopress_google_analytics_matomo_enable_option() {
|
|
16 |
}
|
17 |
}
|
18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
//Matomo ID
|
20 |
function seopress_google_analytics_matomo_id_option() {
|
21 |
$seopress_google_analytics_matomo_id_option = get_option("seopress_google_analytics_option_name");
|
@@ -154,11 +165,11 @@ function seopress_matomo_js($echo) {
|
|
154 |
//Init
|
155 |
$seopress_matomo_config = [];
|
156 |
$seopress_matomo_event = [];
|
157 |
-
|
158 |
$seopress_matomo_html = "\n";
|
159 |
$seopress_matomo_html .="<script async>
|
160 |
var _paq = window._paq || [];\n";
|
161 |
-
|
162 |
//subdomains
|
163 |
if (seopress_google_analytics_matomo_subdomains_option() =='1') {
|
164 |
$seopress_matomo_config['subdomains'] = "_paq.push(['setCookieDomain', '*.".get_home_url()."']);\n";
|
@@ -187,8 +198,8 @@ var _paq = window._paq || [];\n";
|
|
187 |
if (seopress_google_analytics_matomo_cross_domain_option() =='1' && seopress_google_analytics_matomo_cross_domain_sites_option()) {
|
188 |
|
189 |
$domains = array_map('trim',array_filter(explode(',',seopress_google_analytics_matomo_cross_domain_sites_option())));
|
190 |
-
|
191 |
-
if (!empty($domains)) {
|
192 |
$domains_count = count($domains);
|
193 |
|
194 |
$link_domains = '';
|
@@ -203,7 +214,7 @@ var _paq = window._paq || [];\n";
|
|
203 |
$seopress_matomo_config['set_domains'] = apply_filters('seopress_matomo_linker', $seopress_matomo_config['set_domains']);
|
204 |
}
|
205 |
}
|
206 |
-
|
207 |
//link tracking
|
208 |
if (seopress_google_analytics_matomo_link_tracking_option() =='1') {
|
209 |
$seopress_matomo_config['link_tracking'] = "_paq.push(['enableLinkTracking']);\n";
|
@@ -230,7 +241,7 @@ var _paq = window._paq || [];\n";
|
|
230 |
if (seopress_google_analytics_cd_category_option() !='none') {
|
231 |
if (is_single() && has_category()) {
|
232 |
$categories = get_the_category();
|
233 |
-
|
234 |
if ( ! empty( $categories ) ) {
|
235 |
$get_first_category = esc_html( $categories[0]->name );
|
236 |
}
|
@@ -239,7 +250,7 @@ var _paq = window._paq || [];\n";
|
|
239 |
}
|
240 |
}
|
241 |
}
|
242 |
-
|
243 |
if (seopress_google_analytics_cd_tag_option() !='') {
|
244 |
if (seopress_google_analytics_cd_tag_option() !='none') {
|
245 |
if (is_single() && has_tag()) {
|
@@ -259,7 +270,7 @@ var _paq = window._paq || [];\n";
|
|
259 |
}
|
260 |
}
|
261 |
}
|
262 |
-
|
263 |
if (seopress_google_analytics_cd_post_type_option() !='') {
|
264 |
if (seopress_google_analytics_cd_post_type_option() !='none') {
|
265 |
if (is_single()) {
|
@@ -268,7 +279,7 @@ var _paq = window._paq || [];\n";
|
|
268 |
}
|
269 |
}
|
270 |
}
|
271 |
-
|
272 |
if (seopress_google_analytics_cd_logged_in_user_option() !='') {
|
273 |
if (seopress_google_analytics_cd_logged_in_user_option() !='none') {
|
274 |
if (wp_get_current_user()->ID) {
|
@@ -284,36 +295,41 @@ var _paq = window._paq || [];\n";
|
|
284 |
$seopress_matomo_html .= $value;
|
285 |
}
|
286 |
}
|
287 |
-
|
288 |
//send data dimensions
|
289 |
if (!empty($seopress_matomo_event)) {
|
290 |
foreach($seopress_matomo_event as $key => $value) {
|
291 |
$seopress_matomo_html .= $value;
|
292 |
}
|
293 |
}
|
294 |
-
|
|
|
|
|
|
|
|
|
|
|
295 |
$seopress_matomo_html .= "_paq.push(['trackPageView']);
|
296 |
(function() {
|
297 |
var u='https://".seopress_google_analytics_matomo_id_option()."/';
|
298 |
_paq.push(['setTrackerUrl', u+'matomo.php']);
|
299 |
_paq.push(['setSiteId', '".seopress_google_analytics_matomo_site_id_option()."']);
|
300 |
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
|
301 |
-
g.type='text/javascript'; g.async=true; g.defer=true; g.src='
|
302 |
})();\n";
|
303 |
-
|
304 |
$seopress_matomo_html .= "</script>\n";
|
305 |
-
|
306 |
//no JS
|
307 |
$no_js = NULL;
|
308 |
if (seopress_google_analytics_matomo_no_js_option() =='1') {
|
309 |
$no_js = '<noscript><p><img src="https://'.seopress_google_analytics_matomo_id_option().'/matomo.php?idsite='.seopress_google_analytics_matomo_site_id_option().'&rec=1" style="border:0;" alt="" /></p></noscript>';
|
310 |
$no_js = apply_filters('seopress_matomo_no_js', $no_js);
|
311 |
}
|
312 |
-
|
313 |
if ($no_js) {
|
314 |
$seopress_matomo_html .= $no_js;
|
315 |
}
|
316 |
-
|
317 |
$seopress_matomo_html = apply_filters('seopress_matomo_tracking_html', $seopress_matomo_html);
|
318 |
|
319 |
if ($echo == true) {
|
@@ -328,4 +344,4 @@ add_action('seopress_matomo_html', 'seopress_matomo_js', 10, 1);
|
|
328 |
function seopress_matomo_js_arguments() {
|
329 |
$echo = true;
|
330 |
do_action('seopress_matomo_html', $echo);
|
331 |
-
}
|
3 |
|
4 |
//MATOMO TRACKING
|
5 |
|
|
|
6 |
//Matomo Tracking
|
7 |
function seopress_google_analytics_matomo_enable_option() {
|
8 |
$seopress_google_analytics_matomo_enable_option = get_option("seopress_google_analytics_option_name");
|
15 |
}
|
16 |
}
|
17 |
|
18 |
+
//Matomo self hosting
|
19 |
+
function seopress_google_analytics_matomo_self_hosted_option() {
|
20 |
+
$seopress_google_analytics_matomo_self_hosted_option = get_option("seopress_google_analytics_option_name");
|
21 |
+
if ( ! empty ( $seopress_google_analytics_matomo_self_hosted_option ) ) {
|
22 |
+
foreach ($seopress_google_analytics_matomo_self_hosted_option as $key => $seopress_google_analytics_matomo_self_hosted_value)
|
23 |
+
$options[$key] = $seopress_google_analytics_matomo_self_hosted_value;
|
24 |
+
if (isset($seopress_google_analytics_matomo_self_hosted_option['seopress_google_analytics_matomo_self_hosted'])) {
|
25 |
+
return $seopress_google_analytics_matomo_self_hosted_option['seopress_google_analytics_matomo_self_hosted'];
|
26 |
+
}
|
27 |
+
}
|
28 |
+
}
|
29 |
+
|
30 |
//Matomo ID
|
31 |
function seopress_google_analytics_matomo_id_option() {
|
32 |
$seopress_google_analytics_matomo_id_option = get_option("seopress_google_analytics_option_name");
|
165 |
//Init
|
166 |
$seopress_matomo_config = [];
|
167 |
$seopress_matomo_event = [];
|
168 |
+
|
169 |
$seopress_matomo_html = "\n";
|
170 |
$seopress_matomo_html .="<script async>
|
171 |
var _paq = window._paq || [];\n";
|
172 |
+
|
173 |
//subdomains
|
174 |
if (seopress_google_analytics_matomo_subdomains_option() =='1') {
|
175 |
$seopress_matomo_config['subdomains'] = "_paq.push(['setCookieDomain', '*.".get_home_url()."']);\n";
|
198 |
if (seopress_google_analytics_matomo_cross_domain_option() =='1' && seopress_google_analytics_matomo_cross_domain_sites_option()) {
|
199 |
|
200 |
$domains = array_map('trim',array_filter(explode(',',seopress_google_analytics_matomo_cross_domain_sites_option())));
|
201 |
+
|
202 |
+
if (!empty($domains)) {
|
203 |
$domains_count = count($domains);
|
204 |
|
205 |
$link_domains = '';
|
214 |
$seopress_matomo_config['set_domains'] = apply_filters('seopress_matomo_linker', $seopress_matomo_config['set_domains']);
|
215 |
}
|
216 |
}
|
217 |
+
|
218 |
//link tracking
|
219 |
if (seopress_google_analytics_matomo_link_tracking_option() =='1') {
|
220 |
$seopress_matomo_config['link_tracking'] = "_paq.push(['enableLinkTracking']);\n";
|
241 |
if (seopress_google_analytics_cd_category_option() !='none') {
|
242 |
if (is_single() && has_category()) {
|
243 |
$categories = get_the_category();
|
244 |
+
|
245 |
if ( ! empty( $categories ) ) {
|
246 |
$get_first_category = esc_html( $categories[0]->name );
|
247 |
}
|
250 |
}
|
251 |
}
|
252 |
}
|
253 |
+
|
254 |
if (seopress_google_analytics_cd_tag_option() !='') {
|
255 |
if (seopress_google_analytics_cd_tag_option() !='none') {
|
256 |
if (is_single() && has_tag()) {
|
270 |
}
|
271 |
}
|
272 |
}
|
273 |
+
|
274 |
if (seopress_google_analytics_cd_post_type_option() !='') {
|
275 |
if (seopress_google_analytics_cd_post_type_option() !='none') {
|
276 |
if (is_single()) {
|
279 |
}
|
280 |
}
|
281 |
}
|
282 |
+
|
283 |
if (seopress_google_analytics_cd_logged_in_user_option() !='') {
|
284 |
if (seopress_google_analytics_cd_logged_in_user_option() !='none') {
|
285 |
if (wp_get_current_user()->ID) {
|
295 |
$seopress_matomo_html .= $value;
|
296 |
}
|
297 |
}
|
298 |
+
|
299 |
//send data dimensions
|
300 |
if (!empty($seopress_matomo_event)) {
|
301 |
foreach($seopress_matomo_event as $key => $value) {
|
302 |
$seopress_matomo_html .= $value;
|
303 |
}
|
304 |
}
|
305 |
+
|
306 |
+
$seopress_matomo_src = "cdn.matomo.cloud/".seopress_google_analytics_matomo_id_option()."/matomo.js";
|
307 |
+
if (seopress_google_analytics_matomo_self_hosted_option() === '1') {
|
308 |
+
$seopress_matomo_src = seopress_google_analytics_matomo_id_option();
|
309 |
+
}
|
310 |
+
|
311 |
$seopress_matomo_html .= "_paq.push(['trackPageView']);
|
312 |
(function() {
|
313 |
var u='https://".seopress_google_analytics_matomo_id_option()."/';
|
314 |
_paq.push(['setTrackerUrl', u+'matomo.php']);
|
315 |
_paq.push(['setSiteId', '".seopress_google_analytics_matomo_site_id_option()."']);
|
316 |
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
|
317 |
+
g.type='text/javascript'; g.async=true; g.defer=true; g.src='https://".$seopress_matomo_src."/matomo.js'; s.parentNode.insertBefore(g,s);
|
318 |
})();\n";
|
319 |
+
|
320 |
$seopress_matomo_html .= "</script>\n";
|
321 |
+
|
322 |
//no JS
|
323 |
$no_js = NULL;
|
324 |
if (seopress_google_analytics_matomo_no_js_option() =='1') {
|
325 |
$no_js = '<noscript><p><img src="https://'.seopress_google_analytics_matomo_id_option().'/matomo.php?idsite='.seopress_google_analytics_matomo_site_id_option().'&rec=1" style="border:0;" alt="" /></p></noscript>';
|
326 |
$no_js = apply_filters('seopress_matomo_no_js', $no_js);
|
327 |
}
|
328 |
+
|
329 |
if ($no_js) {
|
330 |
$seopress_matomo_html .= $no_js;
|
331 |
}
|
332 |
+
|
333 |
$seopress_matomo_html = apply_filters('seopress_matomo_tracking_html', $seopress_matomo_html);
|
334 |
|
335 |
if ($echo == true) {
|
344 |
function seopress_matomo_js_arguments() {
|
345 |
$echo = true;
|
346 |
do_action('seopress_matomo_html', $echo);
|
347 |
+
}
|
@@ -110,162 +110,164 @@ if ('1' == seopress_xml_sitemap_html_enable_option()) {
|
|
110 |
add_filter('the_content', 'seopress_xml_sitemap_html_hook');
|
111 |
}
|
112 |
}
|
113 |
-
function seopress_xml_sitemap_html_hook($html)
|
114 |
-
{
|
115 |
-
// Attributes
|
116 |
-
$atts = shortcode_atts(
|
117 |
-
[
|
118 |
-
'cpt' => '',
|
119 |
-
],
|
120 |
-
$html,
|
121 |
-
'[seopress_html_sitemap]'
|
122 |
-
);
|
123 |
-
|
124 |
-
//Exclude IDs
|
125 |
-
if ('' != seopress_xml_sitemap_html_exclude_option()) {
|
126 |
-
$seopress_xml_sitemap_html_exclude_option = seopress_xml_sitemap_html_exclude_option();
|
127 |
-
} else {
|
128 |
-
$seopress_xml_sitemap_html_exclude_option = '';
|
129 |
-
}
|
130 |
|
131 |
-
|
132 |
-
|
133 |
-
$seopress_xml_sitemap_html_order_option = seopress_xml_sitemap_html_order_option();
|
134 |
-
} else {
|
135 |
-
$seopress_xml_sitemap_html_order_option = '';
|
136 |
-
}
|
137 |
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
144 |
|
145 |
-
|
|
|
|
|
|
|
|
|
|
|
146 |
|
147 |
-
|
148 |
-
|
149 |
-
|
|
|
|
|
|
|
150 |
|
151 |
-
|
152 |
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
|
157 |
-
|
158 |
-
unset($seopress_xml_sitemap_post_types_list_option);
|
159 |
|
160 |
-
|
|
|
|
|
161 |
|
162 |
-
|
163 |
-
|
164 |
-
|
|
|
|
|
|
|
|
|
165 |
}
|
|
|
166 |
|
167 |
-
|
168 |
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
195 |
'meta_query' => [['key' => '_seopress_robots_index', 'value' => 'yes', 'compare' => 'NOT EXISTS']],
|
196 |
-
'fields' => 'ids',
|
197 |
'exclude' => $seopress_xml_sitemap_html_exclude_option,
|
198 |
'suppress_filters' => false,
|
199 |
];
|
200 |
-
if ('post' === $cpt_key
|
201 |
-
|
202 |
-
if (false === $display_archive) {
|
203 |
-
$html .= '<ul>';
|
204 |
-
$html .= '<li><a href="' . get_post_type_archive_link($cpt_key) . '">' . $obj->labels->name . '</a></li>';
|
205 |
-
$html .= '</ul>';
|
206 |
-
}
|
207 |
-
}
|
208 |
|
209 |
-
$
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
];
|
216 |
-
if ('post' === $cpt_key) {
|
217 |
-
$args_cat_query = apply_filters('seopress_sitemaps_html_cat_query', $args_cat_query);
|
218 |
-
|
219 |
-
$cats = get_categories($args_cat_query);
|
220 |
-
} elseif ('product' === $cpt_key) {
|
221 |
-
$args_cat_query = apply_filters('seopress_sitemaps_html_product_cat_query', $args_cat_query);
|
222 |
-
|
223 |
-
$cats = get_terms('product_cat', $args_cat_query);
|
224 |
-
}
|
225 |
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
}
|
245 |
-
|
246 |
-
require dirname(__FILE__) . '/sitemap/template-html-sitemap.php';
|
247 |
-
|
248 |
-
$html .= '</div>';
|
249 |
}
|
250 |
-
}
|
251 |
|
252 |
-
|
|
|
|
|
|
|
253 |
}
|
254 |
-
|
255 |
-
|
256 |
}
|
|
|
|
|
257 |
}
|
258 |
}
|
259 |
-
if (! empty($cpt_value)) {
|
260 |
-
$html .= '</div>';
|
261 |
-
}
|
262 |
}
|
263 |
-
$
|
|
|
|
|
264 |
}
|
265 |
-
|
266 |
-
return $html;
|
267 |
}
|
268 |
-
|
|
|
269 |
}
|
270 |
-
|
271 |
}
|
110 |
add_filter('the_content', 'seopress_xml_sitemap_html_hook');
|
111 |
}
|
112 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
113 |
|
114 |
+
}
|
115 |
+
add_action('wp', 'seopress_xml_sitemap_html_display');
|
|
|
|
|
|
|
|
|
116 |
|
117 |
+
function seopress_xml_sitemap_html_hook($html)
|
118 |
+
{
|
119 |
+
// Attributes
|
120 |
+
$atts = shortcode_atts(
|
121 |
+
[
|
122 |
+
'cpt' => '',
|
123 |
+
],
|
124 |
+
$html,
|
125 |
+
'[seopress_html_sitemap]'
|
126 |
+
);
|
127 |
+
|
128 |
+
//Exclude IDs
|
129 |
+
if ('' != seopress_xml_sitemap_html_exclude_option()) {
|
130 |
+
$seopress_xml_sitemap_html_exclude_option = seopress_xml_sitemap_html_exclude_option();
|
131 |
+
} else {
|
132 |
+
$seopress_xml_sitemap_html_exclude_option = '';
|
133 |
+
}
|
134 |
|
135 |
+
//Order
|
136 |
+
if ('' != seopress_xml_sitemap_html_order_option()) {
|
137 |
+
$seopress_xml_sitemap_html_order_option = seopress_xml_sitemap_html_order_option();
|
138 |
+
} else {
|
139 |
+
$seopress_xml_sitemap_html_order_option = '';
|
140 |
+
}
|
141 |
|
142 |
+
//Orderby
|
143 |
+
if ('' != seopress_xml_sitemap_html_orderby_option()) {
|
144 |
+
$seopress_xml_sitemap_html_orderby_option = seopress_xml_sitemap_html_orderby_option();
|
145 |
+
} else {
|
146 |
+
$seopress_xml_sitemap_html_orderby_option = '';
|
147 |
+
}
|
148 |
|
149 |
+
$html = '';
|
150 |
|
151 |
+
//CPT
|
152 |
+
if ('' != seopress_xml_sitemap_post_types_list_option()) {
|
153 |
+
$html .= '<div class="wrap-html-sitemap sp-html-sitemap">';
|
154 |
|
155 |
+
$seopress_xml_sitemap_post_types_list_option = seopress_xml_sitemap_post_types_list_option();
|
|
|
156 |
|
157 |
+
if (isset($seopress_xml_sitemap_post_types_list_option['page'])) {
|
158 |
+
$seopress_xml_sitemap_post_types_list_option = ['page' => $seopress_xml_sitemap_post_types_list_option['page']] + $seopress_xml_sitemap_post_types_list_option; //Display page first
|
159 |
+
}
|
160 |
|
161 |
+
if (! empty($atts['cpt'])) {
|
162 |
+
unset($seopress_xml_sitemap_post_types_list_option);
|
163 |
+
|
164 |
+
$cpt = explode(',', $atts['cpt']);
|
165 |
+
|
166 |
+
foreach ($cpt as $key => $value) {
|
167 |
+
$seopress_xml_sitemap_post_types_list_option[$value] = ['include' => '1'];
|
168 |
}
|
169 |
+
}
|
170 |
|
171 |
+
$seopress_xml_sitemap_post_types_list_option = apply_filters('seopress_sitemaps_html_cpt', $seopress_xml_sitemap_post_types_list_option);
|
172 |
|
173 |
+
$display_archive = '';
|
174 |
+
foreach ($seopress_xml_sitemap_post_types_list_option as $cpt_key => $cpt_value) {
|
175 |
+
if ('1' !== seopress_xml_sitemap_html_archive_links_option()) {
|
176 |
+
$display_archive = false;
|
177 |
+
}
|
178 |
+
$display_archive = apply_filters('seopress_sitemaps_html_remove_archive', $display_archive, $cpt_key);
|
179 |
|
180 |
+
if (! empty($cpt_value)) {
|
181 |
+
$html .= '<div class="sp-wrap-cpt">';
|
182 |
+
}
|
183 |
+
$obj = get_post_type_object($cpt_key);
|
184 |
|
185 |
+
if ($obj) {
|
186 |
+
$cpt_name = $obj->labels->name;
|
187 |
+
$cpt_name = apply_filters('seopress_sitemaps_html_cpt_name', $cpt_name, $obj->name);
|
188 |
|
189 |
+
$html .= '<h2 class="sp-cpt-name">' . $cpt_name . '</h2>';
|
190 |
+
}
|
191 |
+
foreach ($cpt_value as $_cpt_key => $_cpt_value) {
|
192 |
+
if ('1' == $_cpt_value) {
|
193 |
+
$args = [
|
194 |
+
'posts_per_page' => 1000,
|
195 |
+
'order' => $seopress_xml_sitemap_html_order_option,
|
196 |
+
'orderby' => $seopress_xml_sitemap_html_orderby_option,
|
197 |
+
'post_type' => $cpt_key,
|
198 |
+
'post_status' => 'publish',
|
199 |
+
'meta_query' => [['key' => '_seopress_robots_index', 'value' => 'yes', 'compare' => 'NOT EXISTS']],
|
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')) {
|
206 |
+
if (false === $display_archive) {
|
207 |
+
$html .= '<ul>';
|
208 |
+
$html .= '<li><a href="' . get_post_type_archive_link($cpt_key) . '">' . $obj->labels->name . '</a></li>';
|
209 |
+
$html .= '</ul>';
|
210 |
+
}
|
211 |
+
}
|
212 |
+
|
213 |
+
$args_cat_query = [
|
214 |
+
'orderby' => 'name',
|
215 |
+
'order' => 'ASC',
|
216 |
'meta_query' => [['key' => '_seopress_robots_index', 'value' => 'yes', 'compare' => 'NOT EXISTS']],
|
|
|
217 |
'exclude' => $seopress_xml_sitemap_html_exclude_option,
|
218 |
'suppress_filters' => false,
|
219 |
];
|
220 |
+
if ('post' === $cpt_key) {
|
221 |
+
$args_cat_query = apply_filters('seopress_sitemaps_html_cat_query', $args_cat_query);
|
|
|
|
|
|
|
|
|
|
|
|
|
222 |
|
223 |
+
$cats = get_categories($args_cat_query);
|
224 |
+
} elseif ('product' === $cpt_key) {
|
225 |
+
$args_cat_query = apply_filters('seopress_sitemaps_html_product_cat_query', $args_cat_query);
|
226 |
+
|
227 |
+
$cats = get_terms('product_cat', $args_cat_query);
|
228 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
229 |
|
230 |
+
if (! empty($cats)) {
|
231 |
+
$html .= '<div class="sp-wrap-cats">';
|
232 |
+
|
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']);
|
240 |
+
$args['cat'][] = $cat->term_id;
|
241 |
+
} elseif ('product' === $cpt_key) {
|
242 |
+
unset($args['tax_query']);
|
243 |
+
$args['tax_query'] = [[
|
244 |
+
'taxonomy' => 'product_cat',
|
245 |
+
'field' => 'term_id',
|
246 |
+
'terms' => $cat->term_id,
|
247 |
+
]];
|
|
|
|
|
|
|
|
|
|
|
248 |
}
|
|
|
249 |
|
250 |
+
require dirname(__FILE__) . '/sitemap/template-html-sitemap.php';
|
251 |
+
|
252 |
+
$html .= '</div>';
|
253 |
+
}
|
254 |
}
|
255 |
+
|
256 |
+
$html .= '</div>';
|
257 |
}
|
258 |
+
} else {
|
259 |
+
require dirname(__FILE__) . '/sitemap/template-html-sitemap.php';
|
260 |
}
|
261 |
}
|
|
|
|
|
|
|
262 |
}
|
263 |
+
if (! empty($cpt_value)) {
|
264 |
+
$html .= '</div>';
|
265 |
+
}
|
266 |
}
|
267 |
+
$html .= '</div>';
|
|
|
268 |
}
|
269 |
+
|
270 |
+
return $html;
|
271 |
}
|
272 |
+
add_shortcode('seopress_html_sitemap', 'seopress_xml_sitemap_html_hook');
|
273 |
}
|
@@ -450,7 +450,7 @@ function seopress_titles_the_title() {
|
|
450 |
$seopress_titles_title_template = str_replace($seopress_titles_ucf_template_variables_array, $seopress_titles_ucf_template_replace_array, $seopress_titles_title_template);
|
451 |
}
|
452 |
}
|
453 |
-
} elseif (is_post_type_archive() && seopress_titles_archive_titles_option()) { //IS POST TYPE ARCHIVE
|
454 |
$seopress_titles_archive_titles_option = esc_attr(seopress_titles_archive_titles_option());
|
455 |
|
456 |
$seopress_titles_title_template = str_replace($seopress_titles_template_variables_array, $seopress_titles_template_replace_array, $seopress_titles_archive_titles_option);
|
@@ -539,8 +539,19 @@ if (apply_filters('seopress_old_pre_get_document_title', true)) {
|
|
539 |
|
540 |
//Avoid TEC rewriting our title tag on Venue and Organizer pages
|
541 |
if (is_plugin_active('the-events-calendar/the-events-calendar.php')) {
|
542 |
-
if (
|
543 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
544 |
}
|
545 |
}
|
546 |
}
|
@@ -752,7 +763,7 @@ function seopress_titles_the_description_content() {
|
|
752 |
$seopress_titles_description_template = str_replace($seopress_titles_template_variables_array, $seopress_titles_template_replace_array, $seopress_titles_the_description);
|
753 |
}
|
754 |
}
|
755 |
-
} elseif (is_post_type_archive() && seopress_titles_archive_desc_option()) { //IS POST TYPE ARCHIVE
|
756 |
$seopress_titles_the_description = esc_attr(seopress_titles_archive_desc_option());
|
757 |
|
758 |
$seopress_titles_description_template = str_replace($seopress_titles_template_variables_array, $seopress_titles_template_replace_array, $seopress_titles_the_description);
|
450 |
$seopress_titles_title_template = str_replace($seopress_titles_ucf_template_variables_array, $seopress_titles_ucf_template_replace_array, $seopress_titles_title_template);
|
451 |
}
|
452 |
}
|
453 |
+
} elseif (is_post_type_archive() && !is_tax() && seopress_titles_archive_titles_option()) { //IS POST TYPE ARCHIVE (!is_tax required for TEC)
|
454 |
$seopress_titles_archive_titles_option = esc_attr(seopress_titles_archive_titles_option());
|
455 |
|
456 |
$seopress_titles_title_template = str_replace($seopress_titles_template_variables_array, $seopress_titles_template_replace_array, $seopress_titles_archive_titles_option);
|
539 |
|
540 |
//Avoid TEC rewriting our title tag on Venue and Organizer pages
|
541 |
if (is_plugin_active('the-events-calendar/the-events-calendar.php')) {
|
542 |
+
if (
|
543 |
+
function_exists('tribe_is_event') && tribe_is_event() ||
|
544 |
+
function_exists('tribe_is_venue') && tribe_is_venue() ||
|
545 |
+
function_exists('tribe_is_organizer') && tribe_is_organizer()
|
546 |
+
// function_exists('tribe_is_month') && tribe_is_month() && is_tax() ||
|
547 |
+
// function_exists('tribe_is_upcoming') && tribe_is_upcoming() && is_tax() ||
|
548 |
+
// function_exists('tribe_is_past') && tribe_is_past() && is_tax() ||
|
549 |
+
// function_exists('tribe_is_week') && tribe_is_week() && is_tax() ||
|
550 |
+
// function_exists('tribe_is_day') && tribe_is_day() && is_tax() ||
|
551 |
+
// function_exists('tribe_is_map') && tribe_is_map() && is_tax() ||
|
552 |
+
// function_exists('tribe_is_photo') && tribe_is_photo() && is_tax()
|
553 |
+
) {
|
554 |
+
add_filter('pre_get_document_title', 'seopress_titles_the_title', 20);
|
555 |
}
|
556 |
}
|
557 |
}
|
763 |
$seopress_titles_description_template = str_replace($seopress_titles_template_variables_array, $seopress_titles_template_replace_array, $seopress_titles_the_description);
|
764 |
}
|
765 |
}
|
766 |
+
} elseif (is_post_type_archive() && !is_tax() && seopress_titles_archive_desc_option()) { //IS POST TYPE ARCHIVE (!is_tax() required for TEC)
|
767 |
$seopress_titles_the_description = esc_attr(seopress_titles_archive_desc_option());
|
768 |
|
769 |
$seopress_titles_description_template = str_replace($seopress_titles_template_variables_array, $seopress_titles_template_replace_array, $seopress_titles_the_description);
|
@@ -1,420 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* This file is no longer used since version 4.3.0.
|
4 |
-
*
|
5 |
-
* @deprecated 4.3.0
|
6 |
-
*/
|
7 |
-
defined('ABSPATH') or exit('Please don’t call the plugin directly. Thanks :)');
|
8 |
-
|
9 |
-
//XML
|
10 |
-
|
11 |
-
//Headers
|
12 |
-
if (function_exists('seopress_sitemaps_headers')) {
|
13 |
-
seopress_sitemaps_headers();
|
14 |
-
}
|
15 |
-
|
16 |
-
//Remove primary category
|
17 |
-
remove_filter('post_link_category', 'seopress_titles_primary_cat_hook', 10, 3);
|
18 |
-
|
19 |
-
//WPML
|
20 |
-
add_filter('wpml_get_home_url', 'seopress_remove_wpml_home_url_filter', 20, 5);
|
21 |
-
|
22 |
-
add_filter('seopress_sitemaps_single_query', function ($args) {
|
23 |
-
global $sitepress, $sitepress_settings;
|
24 |
-
|
25 |
-
$sitepress_settings['auto_adjust_ids'] = 0;
|
26 |
-
remove_filter('terms_clauses', [$sitepress, 'terms_clauses']);
|
27 |
-
remove_filter('category_link', [$sitepress, 'category_link_adjust_id'], 1);
|
28 |
-
|
29 |
-
return $args;
|
30 |
-
});
|
31 |
-
|
32 |
-
add_action('the_post', function ($post) {
|
33 |
-
$language = apply_filters(
|
34 |
-
'wpml_element_language_code',
|
35 |
-
null,
|
36 |
-
['element_id' => $post->ID, 'element_type' => 'page']
|
37 |
-
);
|
38 |
-
do_action('wpml_switch_language', $language);
|
39 |
-
});
|
40 |
-
|
41 |
-
function seopress_xml_sitemap_single() {
|
42 |
-
if ('' !== get_query_var('seopress_cpt')) {
|
43 |
-
$path = get_query_var('seopress_cpt');
|
44 |
-
}
|
45 |
-
|
46 |
-
remove_all_filters('pre_get_posts');
|
47 |
-
|
48 |
-
$offset = basename(parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH), '.xml');
|
49 |
-
$offset = preg_match_all('/\d+/', $offset, $matches);
|
50 |
-
$offset = end($matches[0]);
|
51 |
-
|
52 |
-
//Max posts per paginated sitemap
|
53 |
-
$max = 1000;
|
54 |
-
$max = apply_filters('seopress_sitemaps_max_posts_per_sitemap', $max);
|
55 |
-
|
56 |
-
if (isset($offset) && absint($offset) && '' != $offset && 0 != $offset) {
|
57 |
-
$offset = (($offset - 1) * $max);
|
58 |
-
} else {
|
59 |
-
$offset = 0;
|
60 |
-
}
|
61 |
-
|
62 |
-
$home_url = home_url() . '/';
|
63 |
-
|
64 |
-
if (function_exists('pll_home_url')) {
|
65 |
-
$home_url = site_url() . '/';
|
66 |
-
}
|
67 |
-
|
68 |
-
$home_url = apply_filters('seopress_sitemaps_home_url', $home_url);
|
69 |
-
|
70 |
-
$seopress_sitemaps = '<?xml version="1.0" encoding="UTF-8"?>';
|
71 |
-
$seopress_sitemaps .= '<?xml-stylesheet type="text/xsl" href="' . $home_url . 'sitemaps_xsl.xsl"?>';
|
72 |
-
$seopress_sitemaps .= "\n";
|
73 |
-
$seopress_sitemaps .= apply_filters('seopress_sitemaps_urlset', '<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">');
|
74 |
-
$seopress_sitemaps .= "\n";
|
75 |
-
|
76 |
-
if (true == get_post_type_archive_link($path) && 0 == $offset) {
|
77 |
-
function seopress_titles_cpt_noindex_option($path) {
|
78 |
-
$seopress_titles_cpt_noindex_option = get_option('seopress_titles_option_name');
|
79 |
-
if ( ! empty($seopress_titles_cpt_noindex_option)) {
|
80 |
-
foreach ($seopress_titles_cpt_noindex_option as $key => $seopress_titles_cpt_noindex_value) {
|
81 |
-
$options[$key] = $seopress_titles_cpt_noindex_value;
|
82 |
-
}
|
83 |
-
if (isset($seopress_titles_cpt_noindex_option['seopress_titles_archive_titles'][$path]['noindex'])) {
|
84 |
-
return $seopress_titles_cpt_noindex_option['seopress_titles_archive_titles'][$path]['noindex'];
|
85 |
-
}
|
86 |
-
}
|
87 |
-
}
|
88 |
-
if ('1' != seopress_titles_cpt_noindex_option($path)) {
|
89 |
-
$seopress_sitemap_url = '';
|
90 |
-
// array with all the information needed for a sitemap url
|
91 |
-
$seopress_url = [
|
92 |
-
'loc' => htmlspecialchars(urldecode(get_post_type_archive_link($path))),
|
93 |
-
'mod' => '',
|
94 |
-
'images' => [],
|
95 |
-
];
|
96 |
-
$seopress_sitemap_url .= '<url>';
|
97 |
-
$seopress_sitemap_url .= "\n";
|
98 |
-
$seopress_sitemap_url .= '<loc>';
|
99 |
-
$seopress_sitemap_url .= htmlspecialchars(urldecode(get_post_type_archive_link($path)));
|
100 |
-
$seopress_sitemap_url .= '</loc>';
|
101 |
-
$seopress_sitemap_url .= "\n";
|
102 |
-
$seopress_sitemap_url .= '</url>';
|
103 |
-
$seopress_sitemap_url .= "\n";
|
104 |
-
|
105 |
-
$seopress_sitemaps .= apply_filters('seopress_sitemaps_url', $seopress_sitemap_url, $seopress_url);
|
106 |
-
}
|
107 |
-
}
|
108 |
-
|
109 |
-
$args = [
|
110 |
-
'posts_per_page' => 1000,
|
111 |
-
'offset' => $offset,
|
112 |
-
'order' => 'DESC',
|
113 |
-
'orderby' => 'modified',
|
114 |
-
'post_type' => $path,
|
115 |
-
'post_status' => 'publish',
|
116 |
-
'meta_query' => [
|
117 |
-
'relation' => 'OR',
|
118 |
-
[
|
119 |
-
'key' => '_seopress_robots_index',
|
120 |
-
'value' => '',
|
121 |
-
'compare' => 'NOT EXISTS',
|
122 |
-
],
|
123 |
-
[
|
124 |
-
'key' => '_seopress_robots_index',
|
125 |
-
'value' => 'yes',
|
126 |
-
'compare' => '!=',
|
127 |
-
],
|
128 |
-
],
|
129 |
-
'fields' => 'ids',
|
130 |
-
'lang' => '',
|
131 |
-
'has_password' => false,
|
132 |
-
];
|
133 |
-
|
134 |
-
if ($path ==='attachment') {
|
135 |
-
unset($args['post_status']);
|
136 |
-
}
|
137 |
-
|
138 |
-
$args = apply_filters('seopress_sitemaps_single_query', $args, $path);
|
139 |
-
|
140 |
-
$postslist = get_posts($args);
|
141 |
-
|
142 |
-
foreach ($postslist as $post) {
|
143 |
-
setup_postdata($post);
|
144 |
-
|
145 |
-
$dom = '';
|
146 |
-
$images = '';
|
147 |
-
|
148 |
-
if (get_the_modified_date('c', $post)) {
|
149 |
-
$seopress_mod = get_the_modified_date('c', $post);
|
150 |
-
} else {
|
151 |
-
$seopress_mod = get_post_modified_time('c', false, $post);
|
152 |
-
}
|
153 |
-
|
154 |
-
// initialize the sitemap url output
|
155 |
-
$seopress_sitemap_url = '';
|
156 |
-
// array with all the information needed for a sitemap url
|
157 |
-
$seopress_url = [
|
158 |
-
'loc' => htmlspecialchars(urldecode(get_permalink($post))),
|
159 |
-
'mod' => $seopress_mod,
|
160 |
-
'images' => [],
|
161 |
-
];
|
162 |
-
|
163 |
-
$seopress_sitemap_url .= '<url>';
|
164 |
-
$seopress_sitemap_url .= "\n";
|
165 |
-
$seopress_sitemap_url .= '<loc>';
|
166 |
-
$seopress_sitemap_url .= $seopress_url['loc'];
|
167 |
-
$seopress_sitemap_url .= '</loc>';
|
168 |
-
$seopress_sitemap_url .= "\n";
|
169 |
-
$seopress_sitemap_url .= '<lastmod>';
|
170 |
-
$seopress_sitemap_url .= $seopress_url['mod'];
|
171 |
-
$seopress_sitemap_url .= '';
|
172 |
-
$seopress_sitemap_url .= '</lastmod>';
|
173 |
-
$seopress_sitemap_url .= "\n";
|
174 |
-
|
175 |
-
//XML Image Sitemaps
|
176 |
-
if ('1' == seopress_xml_sitemap_img_enable_option()) {
|
177 |
-
//noimageindex?
|
178 |
-
if ('yes' != get_post_meta($post, '_seopress_robots_imageindex', true)) {
|
179 |
-
//Standard images
|
180 |
-
$post_content = '';
|
181 |
-
$dom = new domDocument();
|
182 |
-
$internalErrors = libxml_use_internal_errors(true);
|
183 |
-
|
184 |
-
$run_shortcodes = apply_filters('seopress_sitemaps_single_shortcodes', true);
|
185 |
-
|
186 |
-
if (true === $run_shortcodes) {
|
187 |
-
//WP
|
188 |
-
if ('' != get_post_field('post_content', $post)) {
|
189 |
-
$post_content .= do_shortcode(get_post_field('post_content', $post));
|
190 |
-
}
|
191 |
-
|
192 |
-
//Oxygen Builder
|
193 |
-
if (is_plugin_active('oxygen/functions.php')) {
|
194 |
-
$post_content .= do_shortcode(get_post_meta($post, 'ct_builder_shortcodes', true));
|
195 |
-
}
|
196 |
-
} else {
|
197 |
-
$post_content = get_post_field('post_content', $post);
|
198 |
-
}
|
199 |
-
|
200 |
-
if ('' != $post_content) {
|
201 |
-
if (function_exists('mb_convert_encoding')) {
|
202 |
-
$dom->loadHTML(mb_convert_encoding($post_content, 'HTML-ENTITIES', 'UTF-8'));
|
203 |
-
} else {
|
204 |
-
$dom->loadHTML('<?xml encoding="utf-8" ?>' . $post_content);
|
205 |
-
}
|
206 |
-
|
207 |
-
$dom->preserveWhiteSpace = false;
|
208 |
-
|
209 |
-
if ('' != $dom->getElementsByTagName('img')) {
|
210 |
-
$images = $dom->getElementsByTagName('img');
|
211 |
-
}
|
212 |
-
}
|
213 |
-
libxml_use_internal_errors($internalErrors);
|
214 |
-
|
215 |
-
//WooCommerce
|
216 |
-
global $product;
|
217 |
-
if ('' != $product && method_exists($product, 'get_gallery_image_ids')) {
|
218 |
-
$product_img = $product->get_gallery_image_ids();
|
219 |
-
}
|
220 |
-
|
221 |
-
//Post Thumbnail
|
222 |
-
$post_thumbnail = get_the_post_thumbnail_url($post);
|
223 |
-
$post_thumbnail_id = get_post_thumbnail_id($post);
|
224 |
-
|
225 |
-
if ((isset($images) && ! empty($images) && $images->length >= 1) || (isset($product) && ! empty($product_img)) || '' != $post_thumbnail) {
|
226 |
-
//Standard img
|
227 |
-
if (isset($images) && ! empty($images)) {
|
228 |
-
if ($images->length >= 1) {
|
229 |
-
foreach ($images as $img) {
|
230 |
-
$url = $img->getAttribute('src');
|
231 |
-
$url = apply_filters('seopress_sitemaps_single_img_url', $url);
|
232 |
-
if ('' != $url) {
|
233 |
-
//Exclude Base64 img
|
234 |
-
if (false === strpos($url, 'data:image/')) {
|
235 |
-
/*
|
236 |
-
* Initiate $seopress_url['images] and needed data for the sitemap image template
|
237 |
-
*/
|
238 |
-
|
239 |
-
if (true === seopress_is_absolute($url)) {
|
240 |
-
//do nothing
|
241 |
-
} else {
|
242 |
-
$url = $home_url . $url;
|
243 |
-
}
|
244 |
-
|
245 |
-
//cleaning url
|
246 |
-
$url = htmlspecialchars(urldecode(esc_attr(wp_filter_nohtml_kses($url))));
|
247 |
-
|
248 |
-
//remove query strings
|
249 |
-
$parse_url = wp_parse_url($url);
|
250 |
-
|
251 |
-
if ( ! empty($parse_url['scheme']) && ! empty($parse_url['host']) && ! empty($parse_url['path'])) {
|
252 |
-
$seopress_image_loc = '<![CDATA[' . $parse_url['scheme'] . '://' . $parse_url['host'] . $parse_url['path'] . ']]>';
|
253 |
-
} else {
|
254 |
-
$seopress_image_loc = '<![CDATA[' . $url . ']]>';
|
255 |
-
}
|
256 |
-
$seopress_image_caption = '';
|
257 |
-
if ('' != $img->getAttribute('alt')) {
|
258 |
-
$caption = htmlspecialchars($img->getAttribute('alt'));
|
259 |
-
$seopress_image_caption = '<![CDATA[' . $caption . ']]>';
|
260 |
-
}
|
261 |
-
$seopress_image_title = '';
|
262 |
-
if ('' != $img->getAttribute('title')) {
|
263 |
-
$title = htmlspecialchars($img->getAttribute('title'));
|
264 |
-
$seopress_image_title = '<![CDATA[' . $title . ']]>';
|
265 |
-
}
|
266 |
-
|
267 |
-
$seopress_url['images'][] = [
|
268 |
-
'src' => $seopress_image_loc,
|
269 |
-
'title' => $seopress_image_title,
|
270 |
-
'alt' => $seopress_image_caption,
|
271 |
-
];
|
272 |
-
|
273 |
-
/*
|
274 |
-
* Build up the template.
|
275 |
-
*/
|
276 |
-
$seopress_sitemap_url .= '<image:image>';
|
277 |
-
$seopress_sitemap_url .= "\n";
|
278 |
-
$seopress_sitemap_url .= '<image:loc>';
|
279 |
-
$seopress_sitemap_url .= $seopress_image_loc;
|
280 |
-
$seopress_sitemap_url .= '</image:loc>';
|
281 |
-
$seopress_sitemap_url .= "\n";
|
282 |
-
|
283 |
-
if ('' != $seopress_image_title) {
|
284 |
-
$seopress_sitemap_url .= '<image:title>';
|
285 |
-
$seopress_sitemap_url .= $seopress_image_title;
|
286 |
-
$seopress_sitemap_url .= '</image:title>';
|
287 |
-
$seopress_sitemap_url .= "\n";
|
288 |
-
}
|
289 |
-
|
290 |
-
if ('' != $seopress_image_caption) {
|
291 |
-
$seopress_sitemap_url .= '<image:caption>';
|
292 |
-
$seopress_sitemap_url .= $seopress_image_caption;
|
293 |
-
$seopress_sitemap_url .= '</image:caption>';
|
294 |
-
$seopress_sitemap_url .= "\n";
|
295 |
-
}
|
296 |
-
|
297 |
-
$seopress_sitemap_url .= '</image:image>';
|
298 |
-
$seopress_sitemap_url .= "\n";
|
299 |
-
}
|
300 |
-
}
|
301 |
-
}
|
302 |
-
}
|
303 |
-
}
|
304 |
-
|
305 |
-
//WooCommerce img
|
306 |
-
if ('' != $product && '' != $product_img) {
|
307 |
-
foreach ($product_img as $product_attachment_id) {
|
308 |
-
$seopress_image_loc = '<![CDATA[' . esc_attr(wp_filter_nohtml_kses(wp_get_attachment_url($product_attachment_id))) . ']]>';
|
309 |
-
|
310 |
-
$seopress_image_title = '';
|
311 |
-
if ('' != get_the_title($product_attachment_id)) {
|
312 |
-
$title = htmlspecialchars(get_the_title($product_attachment_id));
|
313 |
-
$seopress_image_title .= '<![CDATA[' . $title . ']]>';
|
314 |
-
}
|
315 |
-
|
316 |
-
$seopress_image_caption = '';
|
317 |
-
if ('' != get_post_meta($product_attachment_id, '_wp_attachment_image_alt', true)) {
|
318 |
-
$caption = htmlspecialchars(get_post_meta($product_attachment_id, '_wp_attachment_image_alt', true));
|
319 |
-
$seopress_image_caption .= '<![CDATA[' . $caption . ']]>';
|
320 |
-
}
|
321 |
-
|
322 |
-
$seopress_url['images'][] = [
|
323 |
-
'src' => $seopress_image_loc,
|
324 |
-
'title' => $seopress_image_title,
|
325 |
-
'caption' => $seopress_image_caption,
|
326 |
-
];
|
327 |
-
|
328 |
-
/*
|
329 |
-
* Build up the template.
|
330 |
-
*/
|
331 |
-
$seopress_sitemap_url .= '<image:image>';
|
332 |
-
$seopress_sitemap_url .= "\n";
|
333 |
-
$seopress_sitemap_url .= '<image:loc>';
|
334 |
-
$seopress_sitemap_url .= $seopress_image_loc;
|
335 |
-
$seopress_sitemap_url .= '</image:loc>';
|
336 |
-
$seopress_sitemap_url .= "\n";
|
337 |
-
|
338 |
-
if ('' != $seopress_image_title) {
|
339 |
-
$seopress_sitemap_url .= '<image:title>';
|
340 |
-
$seopress_sitemap_url .= $seopress_image_title;
|
341 |
-
$seopress_sitemap_url .= '</image:title>';
|
342 |
-
$seopress_sitemap_url .= "\n";
|
343 |
-
}
|
344 |
-
|
345 |
-
if ('' != $seopress_image_caption) {
|
346 |
-
$seopress_sitemap_url .= '<image:caption>';
|
347 |
-
$seopress_sitemap_url .= $seopress_image_caption;
|
348 |
-
$seopress_sitemap_url .= '</image:caption>';
|
349 |
-
$seopress_sitemap_url .= "\n";
|
350 |
-
}
|
351 |
-
|
352 |
-
$seopress_sitemap_url .= '</image:image>';
|
353 |
-
$seopress_sitemap_url .= "\n";
|
354 |
-
}
|
355 |
-
}
|
356 |
-
//Post thumbnail
|
357 |
-
if ('' != $post_thumbnail) {
|
358 |
-
$seopress_image_loc = '<![CDATA[' . $post_thumbnail . ']]>';
|
359 |
-
|
360 |
-
$seopress_image_title = '';
|
361 |
-
if ('' != get_the_title($post_thumbnail_id)) {
|
362 |
-
$title = htmlspecialchars(get_the_title($post_thumbnail_id));
|
363 |
-
$seopress_image_title = '<![CDATA[' . $title . ']]>';
|
364 |
-
}
|
365 |
-
|
366 |
-
$seopress_image_caption = '';
|
367 |
-
if ('' != get_post_meta($post_thumbnail_id, '_wp_attachment_image_alt', true)) {
|
368 |
-
$caption = htmlspecialchars(get_post_meta($post_thumbnail_id, '_wp_attachment_image_alt', true));
|
369 |
-
$seopress_image_caption .= '<![CDATA[' . $caption . ']]>';
|
370 |
-
}
|
371 |
-
|
372 |
-
$seopress_url['images'][] = [
|
373 |
-
'src' => $seopress_image_loc,
|
374 |
-
'title' => $seopress_image_title,
|
375 |
-
'caption' => $seopress_image_caption,
|
376 |
-
];
|
377 |
-
|
378 |
-
/*
|
379 |
-
* Build up the template.
|
380 |
-
*/
|
381 |
-
$seopress_sitemap_url .= '<image:image>';
|
382 |
-
$seopress_sitemap_url .= "\n";
|
383 |
-
$seopress_sitemap_url .= '<image:loc>';
|
384 |
-
$seopress_sitemap_url .= $seopress_image_loc;
|
385 |
-
$seopress_sitemap_url .= '</image:loc>';
|
386 |
-
$seopress_sitemap_url .= "\n";
|
387 |
-
|
388 |
-
if ('' != $seopress_image_title) {
|
389 |
-
$seopress_sitemap_url .= '<image:title>';
|
390 |
-
$seopress_sitemap_url .= $seopress_image_title;
|
391 |
-
$seopress_sitemap_url .= '</image:title>';
|
392 |
-
$seopress_sitemap_url .= "\n";
|
393 |
-
}
|
394 |
-
|
395 |
-
if ('' != $seopress_image_caption) {
|
396 |
-
$seopress_sitemap_url .= '<image:caption>';
|
397 |
-
$seopress_sitemap_url .= $seopress_image_caption;
|
398 |
-
$seopress_sitemap_url .= '</image:caption>';
|
399 |
-
$seopress_sitemap_url .= "\n";
|
400 |
-
}
|
401 |
-
|
402 |
-
$seopress_sitemap_url .= '</image:image>';
|
403 |
-
}
|
404 |
-
}
|
405 |
-
$seopress_sitemap_url = apply_filters('seopress_sitemaps_single_img', $seopress_sitemap_url, $post);
|
406 |
-
}
|
407 |
-
}
|
408 |
-
$seopress_sitemap_url .= '</url>';
|
409 |
-
$seopress_sitemap_url .= "\n";
|
410 |
-
$seopress_sitemaps .= apply_filters('seopress_sitemaps_url', $seopress_sitemap_url, $seopress_url);
|
411 |
-
}
|
412 |
-
wp_reset_postdata();
|
413 |
-
|
414 |
-
$seopress_sitemaps .= '</urlset>';
|
415 |
-
|
416 |
-
$seopress_sitemaps = apply_filters('seopress_sitemaps_xml_single', $seopress_sitemaps);
|
417 |
-
|
418 |
-
return $seopress_sitemaps;
|
419 |
-
}
|
420 |
-
echo seopress_xml_sitemap_single();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@@ -428,6 +428,12 @@ function seopress_xml_sitemap_index() {
|
|
428 |
|
429 |
foreach ($posts as $key => $postID) {
|
430 |
$seopress_video = get_post_meta($postID, '_seopress_video', true);
|
|
|
|
|
|
|
|
|
|
|
|
|
431 |
if ( ! $seopress_video) {
|
432 |
--$count_posts;
|
433 |
unset($posts[$key]);
|
428 |
|
429 |
foreach ($posts as $key => $postID) {
|
430 |
$seopress_video = get_post_meta($postID, '_seopress_video', true);
|
431 |
+
$seopress_video_xml_yt = get_post_meta($postID, '_seopress_video_xml_yt', true);
|
432 |
+
|
433 |
+
if ( !empty($seopress_video_xml_yt)) {
|
434 |
+
continue;
|
435 |
+
}
|
436 |
+
|
437 |
if ( ! $seopress_video) {
|
438 |
--$count_posts;
|
439 |
unset($posts[$key]);
|
@@ -201,17 +201,20 @@ if (is_plugin_active('woocommerce/woocommerce.php')) {
|
|
201 |
|
202 |
if (isset($post->ID) && function_exists('wc_get_product')) {
|
203 |
$product = wc_get_product($post->ID);
|
204 |
-
|
205 |
-
if (
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
|
|
|
|
|
|
215 |
}
|
216 |
}
|
217 |
}
|
201 |
|
202 |
if (isset($post->ID) && function_exists('wc_get_product')) {
|
203 |
$product = wc_get_product($post->ID);
|
204 |
+
|
205 |
+
if (isset($product) && is_object($product)) {
|
206 |
+
//Woo Price
|
207 |
+
if (method_exists($product, 'get_price') && function_exists('wc_get_price_including_tax')) {
|
208 |
+
$woo_single_price = wc_get_price_including_tax($product);
|
209 |
+
}
|
210 |
+
//Woo Price tax excluded
|
211 |
+
if (method_exists($product, 'get_price') && function_exists('wc_get_price_excluding_tax')) {
|
212 |
+
$woo_single_price_exc_tax = wc_get_price_excluding_tax($product);
|
213 |
+
}
|
214 |
+
//Woo SKU Number
|
215 |
+
if (method_exists($product, 'get_sku')) {
|
216 |
+
$woo_single_sku = $product->get_sku();
|
217 |
+
}
|
218 |
}
|
219 |
}
|
220 |
}
|
@@ -2,14 +2,14 @@
|
|
2 |
# This file is distributed under the GPLv2.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: SEOPress 5.
|
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-
|
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"
|
@@ -68,7 +68,7 @@ msgstr ""
|
|
68 |
#: inc/admin/admin-bar/admin-bar.php:106
|
69 |
#: inc/admin/admin-features-list.php:18
|
70 |
#: inc/admin/admin.php:100
|
71 |
-
#: app/react/constants/tabs.js:
|
72 |
msgid "Titles & Metas"
|
73 |
msgstr ""
|
74 |
|
@@ -105,7 +105,7 @@ msgstr ""
|
|
105 |
#: inc/admin/sections/Titles.php:63
|
106 |
#: inc/admin/wizard/admin-wizard.php:234
|
107 |
#: inc/admin/wizard/admin-wizard.php:244
|
108 |
-
#: app/react/constants/tabs.js:
|
109 |
msgid "Advanced"
|
110 |
msgstr ""
|
111 |
|
@@ -128,19 +128,19 @@ 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:
|
132 |
msgid "License"
|
133 |
msgstr ""
|
134 |
|
135 |
#: inc/admin/admin-bar/admin-bar.php:172
|
136 |
-
#: inc/admin/blocks/notifications-center.php:
|
137 |
#: inc/admin/wizard/admin-wizard.php:261
|
138 |
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:
|
144 |
msgid "Schemas"
|
145 |
msgstr ""
|
146 |
|
@@ -221,7 +221,7 @@ msgid "Tagline"
|
|
221 |
msgstr ""
|
222 |
|
223 |
#: inc/admin/admin-dyn-variables-helper.php:9
|
224 |
-
#: inc/admin/callbacks/Sitemaps.php:
|
225 |
#: inc/admin/callbacks/Titles.php:217
|
226 |
#: inc/admin/callbacks/Titles.php:430
|
227 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:131
|
@@ -580,6 +580,10 @@ msgstr ""
|
|
580 |
msgid "Edit your license key."
|
581 |
msgstr ""
|
582 |
|
|
|
|
|
|
|
|
|
583 |
#: inc/admin/admin-pages/Advanced.php:20
|
584 |
#: inc/admin/sections/ImageSEO.php:10
|
585 |
msgid "Image SEO"
|
@@ -667,15 +671,15 @@ msgstr ""
|
|
667 |
|
668 |
#: inc/admin/admin-pages/InstantIndexing.php:25
|
669 |
#: inc/admin/admin-pages/Tools.php:22
|
670 |
-
#: inc/admin/admin-pages/Tools.php:
|
671 |
#: inc/admin/sections/InstantIndexing.php:54
|
672 |
-
#: seopress.php:
|
673 |
msgid "Settings"
|
674 |
msgstr ""
|
675 |
|
676 |
#: inc/admin/admin-pages/Sitemaps.php:19
|
677 |
#: inc/admin/admin-pages/Titles.php:21
|
678 |
-
#: inc/admin/sections/Sitemaps.php:
|
679 |
#: inc/admin/sections/Titles.php:48
|
680 |
#: inc/admin/wizard/admin-wizard.php:200
|
681 |
#: inc/admin/wizard/admin-wizard.php:211
|
@@ -685,7 +689,7 @@ msgstr ""
|
|
685 |
|
686 |
#: inc/admin/admin-pages/Sitemaps.php:20
|
687 |
#: inc/admin/admin-pages/Titles.php:23
|
688 |
-
#: inc/admin/sections/Sitemaps.php:
|
689 |
#: inc/admin/sections/Titles.php:78
|
690 |
#: inc/admin/wizard/admin-wizard.php:202
|
691 |
#: inc/admin/wizard/admin-wizard.php:213
|
@@ -694,7 +698,7 @@ msgid "Taxonomies"
|
|
694 |
msgstr ""
|
695 |
|
696 |
#: inc/admin/admin-pages/Sitemaps.php:21
|
697 |
-
#: inc/admin/sections/Sitemaps.php:
|
698 |
msgid "HTML Sitemap"
|
699 |
msgstr ""
|
700 |
|
@@ -729,34 +733,38 @@ msgid "Archives"
|
|
729 |
msgstr ""
|
730 |
|
731 |
#: inc/admin/admin-pages/Tools.php:21
|
732 |
-
#: inc/admin/admin-pages/Tools.php:
|
733 |
msgid "Data"
|
734 |
msgstr ""
|
735 |
|
736 |
#: inc/admin/admin-pages/Tools.php:23
|
737 |
-
#: inc/admin/admin-pages/Tools.php:
|
738 |
msgid "Plugins"
|
739 |
msgstr ""
|
740 |
|
741 |
#: inc/admin/admin-pages/Tools.php:25
|
742 |
-
|
|
|
|
|
|
|
|
|
743 |
msgid "Reset"
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: inc/admin/admin-pages/Tools.php:
|
747 |
msgid "Import data from a CSV"
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: inc/admin/admin-pages/Tools.php:
|
751 |
msgid "Upload a CSV file to quickly import post (post, page, single post type) and term metadata."
|
752 |
msgstr ""
|
753 |
|
754 |
-
#: inc/admin/admin-pages/Tools.php:
|
755 |
msgid "Learn how to import SEO metadata from a CSV file"
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: inc/admin/admin-pages/Tools.php:
|
759 |
-
#: inc/admin/admin-pages/Tools.php:
|
760 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:104
|
761 |
#: src/Helpers/ContentAnalysis.php:48
|
762 |
#: app/react/components/Forms/MetaTitleDescription/index.js:83
|
@@ -764,8 +772,8 @@ msgstr ""
|
|
764 |
msgid "Meta title"
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: inc/admin/admin-pages/Tools.php:
|
768 |
-
#: inc/admin/admin-pages/Tools.php:
|
769 |
#: inc/admin/callbacks/Titles.php:60
|
770 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:143
|
771 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:144
|
@@ -780,37 +788,37 @@ msgstr ""
|
|
780 |
msgid "Meta description"
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: inc/admin/admin-pages/Tools.php:
|
784 |
-
#: inc/admin/admin-pages/Tools.php:
|
785 |
msgid "Meta robots (noindex, nofollow...)"
|
786 |
msgstr ""
|
787 |
|
788 |
-
#: inc/admin/admin-pages/Tools.php:
|
789 |
-
#: inc/admin/admin-pages/Tools.php:
|
790 |
msgid "Facebook Open Graph tags (title, description, image)"
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: inc/admin/admin-pages/Tools.php:
|
794 |
-
#: inc/admin/admin-pages/Tools.php:
|
795 |
msgid "Twitter cards tags (title, description, image)"
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: inc/admin/admin-pages/Tools.php:
|
799 |
-
#: inc/admin/admin-pages/Tools.php:
|
800 |
msgid "Redirection (enable, login status, type, URL)"
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: inc/admin/admin-pages/Tools.php:
|
804 |
-
#: inc/admin/admin-pages/Tools.php:
|
805 |
#: inc/admin/migrate/MigrationTools.php:34
|
806 |
msgid "Primary category"
|
807 |
msgstr ""
|
808 |
|
809 |
-
#: inc/admin/admin-pages/Tools.php:
|
810 |
-
#: inc/admin/admin-pages/Tools.php:
|
811 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
812 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
813 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
814 |
#: inc/admin/migrate/MigrationTools.php:28
|
815 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:263
|
816 |
#: src/Helpers/ContentAnalysis.php:13
|
@@ -820,106 +828,130 @@ msgstr ""
|
|
820 |
msgid "Canonical URL"
|
821 |
msgstr ""
|
822 |
|
823 |
-
#: inc/admin/admin-pages/Tools.php:
|
824 |
-
#: inc/admin/admin-pages/Tools.php:
|
825 |
-
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:
|
826 |
-
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:
|
827 |
-
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:
|
828 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:566
|
829 |
#: inc/functions/options-advanced-admin.php:770
|
830 |
-
#: app/react/layout/Main/components/ContentAnalysis/index.js:
|
831 |
-
#: app/react/layout/Main/components/ContentAnalysis/index.js:
|
832 |
msgid "Target keywords"
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: inc/admin/admin-pages/Tools.php:
|
836 |
msgid "Run the importer"
|
837 |
msgstr ""
|
838 |
|
839 |
-
#: inc/admin/admin-pages/Tools.php:
|
840 |
msgid "Export metadata to a CSV"
|
841 |
msgstr ""
|
842 |
|
843 |
-
#: inc/admin/admin-pages/Tools.php:
|
844 |
msgid "Export your post (post, page, single post type) and term metadata for this site as a .csv file."
|
845 |
msgstr ""
|
846 |
|
847 |
-
#: inc/admin/admin-pages/Tools.php:
|
848 |
msgid "Learn how to export SEO metadata to a CSV file"
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: inc/admin/admin-pages/Tools.php:
|
852 |
-
#: inc/admin/admin-pages/Tools.php:
|
853 |
msgid "Export"
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: inc/admin/admin-pages/Tools.php:
|
857 |
msgid "Export plugin settings"
|
858 |
msgstr ""
|
859 |
|
860 |
-
#: inc/admin/admin-pages/Tools.php:
|
861 |
msgid "Export the plugin settings for this site as a .json file. This allows you to easily import the configuration into another site."
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: inc/admin/admin-pages/Tools.php:
|
865 |
msgid "Import plugin settings"
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: inc/admin/admin-pages/Tools.php:
|
869 |
msgid "Import the plugin settings from a .json file. This file can be obtained by exporting the settings on another site using the form above."
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: inc/admin/admin-pages/Tools.php:
|
873 |
msgid "Import"
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: inc/admin/admin-pages/Tools.php:
|
877 |
msgid "Import completed!"
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: inc/admin/admin-pages/Tools.php:
|
881 |
msgid "Import posts and terms metadata from"
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: inc/admin/admin-pages/Tools.php:
|
885 |
#: inc/admin/wizard/admin-wizard.php:618
|
886 |
msgid "Select an option"
|
887 |
msgstr ""
|
888 |
|
889 |
-
#: inc/admin/admin-pages/Tools.php:
|
890 |
#: inc/admin/wizard/admin-wizard.php:626
|
891 |
msgid "You don't have to enable the selected SEO plugin to run the import."
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: inc/admin/admin-pages/Tools.php:
|
895 |
msgid "Redirections feature is disabled. Please activate it from the <strong>PRO page</strong>."
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: inc/admin/admin-pages/Tools.php:
|
899 |
msgid "Activate Redirections"
|
900 |
msgstr ""
|
901 |
|
902 |
#: inc/admin/admin-pages/Tools.php:274
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
903 |
msgid "Reset All Notices From Notifications Center"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: inc/admin/admin-pages/Tools.php:
|
907 |
msgid "By clicking Reset Notices, all notices in the notifications center will be set to their initial status."
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: inc/admin/admin-pages/Tools.php:
|
911 |
msgid "Reset notices"
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: inc/admin/admin-pages/Tools.php:
|
915 |
msgid "Reset All Settings"
|
916 |
msgstr ""
|
917 |
|
918 |
-
#: inc/admin/admin-pages/Tools.php:
|
919 |
msgid "<strong>WARNING:</strong> Delete all options related to this plugin in your database."
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: inc/admin/admin-pages/Tools.php:
|
923 |
msgid "Reset settings"
|
924 |
msgstr ""
|
925 |
|
@@ -960,11 +992,11 @@ msgstr ""
|
|
960 |
msgid "A redirect is active for this URL. Turn it off to get the Google preview and content analysis."
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: inc/admin/ajax.php:
|
964 |
msgid "To get your Google snippet preview, publish your post!"
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: inc/admin/ajax.php:
|
968 |
msgid "Your site is protected by an authentification. <a href=\"%s\" target=\"_blank\">Fix this</a> <span class=\"dashicons dashicons-external\"></span>"
|
969 |
msgstr ""
|
970 |
|
@@ -989,115 +1021,115 @@ msgstr ""
|
|
989 |
msgid "Dismiss"
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: inc/admin/blocks/insights.php:
|
993 |
msgid "Site overview"
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: inc/admin/blocks/insights.php:
|
997 |
msgid "Google Analytics"
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: inc/admin/blocks/insights.php:
|
1001 |
msgid "PageSpeed"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: inc/admin/blocks/insights.php:
|
1005 |
msgid "SEO Tools"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: inc/admin/blocks/insights.php:
|
1009 |
msgid "Google Page Speed Score"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#: inc/admin/blocks/insights.php:
|
1013 |
msgid "Learn how your site has performed, based on data from your actual users around the world."
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: inc/admin/blocks/insights.php:
|
1017 |
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>"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
-
#: inc/admin/blocks/insights.php:
|
1021 |
msgid "Core Web Vitals Assessment: "
|
1022 |
msgstr ""
|
1023 |
|
1024 |
-
#: inc/admin/blocks/insights.php:
|
1025 |
msgid "Computed from the %s Core Web Vitals metrics over the latest 28-day collection period."
|
1026 |
msgstr ""
|
1027 |
|
1028 |
-
#: inc/admin/blocks/insights.php:
|
1029 |
msgid "No data available."
|
1030 |
msgstr ""
|
1031 |
|
1032 |
-
#: inc/admin/blocks/insights.php:
|
1033 |
msgid "See full report"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
-
#: inc/admin/blocks/insights.php:
|
1037 |
msgid "Sessions"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
-
#: inc/admin/blocks/insights.php:
|
1041 |
msgid "Users"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
-
#: inc/admin/blocks/insights.php:
|
1045 |
msgid "Page Views"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
-
#: inc/admin/blocks/insights.php:
|
1049 |
msgid "Page view / session"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
-
#: inc/admin/blocks/insights.php:
|
1053 |
msgid "Average session duration"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: inc/admin/blocks/insights.php:
|
1057 |
msgid "Bounce rate"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
-
#: inc/admin/blocks/insights.php:
|
1061 |
msgid "New sessions"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
-
#: inc/admin/blocks/insights.php:
|
1065 |
msgid "No stats found"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
-
#: inc/admin/blocks/insights.php:
|
1069 |
msgid "Connect Google Analytics"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
-
#: inc/admin/blocks/insights.php:
|
1073 |
msgid "Check websites setup on your server"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: inc/admin/blocks/insights.php:
|
1077 |
msgid "Not found"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#: inc/admin/blocks/insights.php:
|
1081 |
msgid "No scrape."
|
1082 |
msgstr ""
|
1083 |
|
1084 |
-
#: inc/admin/blocks/insights.php:
|
1085 |
msgid "No domain found."
|
1086 |
msgstr ""
|
1087 |
|
1088 |
-
#: inc/admin/blocks/insights.php:
|
1089 |
msgid "Server IP Address: "
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#: inc/admin/blocks/insights.php:
|
1093 |
msgid "Last scrape: "
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#: inc/admin/blocks/insights.php:
|
1097 |
msgid "Number of websites on your server: "
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#: inc/admin/blocks/insights.php:
|
1101 |
msgid "Get list"
|
1102 |
msgstr ""
|
1103 |
|
@@ -1147,6 +1179,7 @@ msgstr ""
|
|
1147 |
#: inc/admin/blocks/notifications-center.php:58
|
1148 |
#: inc/admin/blocks/notifications-center.php:88
|
1149 |
#: inc/admin/blocks/notifications-center.php:119
|
|
|
1150 |
msgid "Wizard"
|
1151 |
msgstr ""
|
1152 |
|
@@ -1175,102 +1208,115 @@ msgstr ""
|
|
1175 |
msgid "Track your keywords positions and backlinks directly on your WordPress site."
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: inc/admin/blocks/notifications-center.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1179 |
msgid "We noticed that some SEO DIVI options are enabled!"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#: inc/admin/blocks/notifications-center.php:
|
1183 |
msgid "To avoid any SEO conflicts, please disable every SEO option from <strong>DIVI theme options page, SEO tab</strong>."
|
1184 |
msgstr ""
|
1185 |
|
1186 |
-
#: inc/admin/blocks/notifications-center.php:
|
1187 |
-
#: inc/admin/blocks/notifications-center.php:
|
1188 |
-
#: inc/admin/blocks/notifications-center.php:192
|
1189 |
#: inc/admin/blocks/notifications-center.php:223
|
1190 |
-
#: inc/admin/blocks/notifications-center.php:
|
1191 |
-
#: inc/admin/blocks/notifications-center.php:
|
1192 |
-
#: inc/admin/blocks/notifications-center.php:
|
1193 |
-
#: inc/admin/blocks/notifications-center.php:
|
1194 |
-
#: inc/admin/blocks/notifications-center.php:
|
1195 |
-
#: inc/admin/blocks/notifications-center.php:
|
1196 |
-
#: inc/admin/blocks/notifications-center.php:
|
1197 |
-
#: inc/admin/blocks/notifications-center.php:
|
1198 |
-
#: inc/admin/blocks/notifications-center.php:
|
1199 |
-
#: inc/admin/blocks/notifications-center.php:
|
1200 |
-
#: inc/admin/blocks/notifications-center.php:
|
1201 |
-
#: inc/admin/blocks/notifications-center.php:
|
1202 |
-
#: inc/admin/blocks/notifications-center.php:
|
1203 |
-
#: inc/admin/blocks/notifications-center.php:
|
1204 |
-
#: inc/admin/blocks/notifications-center.php:
|
1205 |
-
#: inc/admin/blocks/notifications-center.php:
|
1206 |
-
#: inc/admin/blocks/notifications-center.php:
|
1207 |
-
#: inc/admin/blocks/notifications-center.php:
|
1208 |
-
#: inc/admin/blocks/notifications-center.php:
|
1209 |
-
#: inc/admin/blocks/notifications-center.php:
|
|
|
1210 |
msgid "High impact"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#: inc/admin/blocks/notifications-center.php:
|
1214 |
-
#: inc/admin/blocks/notifications-center.php:
|
1215 |
-
#: inc/admin/blocks/notifications-center.php:
|
1216 |
-
#: inc/admin/blocks/notifications-center.php:
|
1217 |
-
#: inc/admin/blocks/notifications-center.php:
|
1218 |
-
#: inc/admin/blocks/notifications-center.php:
|
1219 |
-
#: inc/admin/blocks/notifications-center.php:
|
1220 |
-
#: inc/admin/blocks/notifications-center.php:
|
1221 |
-
#: inc/admin/blocks/notifications-center.php:
|
1222 |
-
#: inc/admin/blocks/notifications-center.php:
|
1223 |
-
#: inc/admin/blocks/notifications-center.php:
|
1224 |
-
#: inc/admin/blocks/notifications-center.php:
|
1225 |
-
#: inc/admin/blocks/notifications-center.php:
|
1226 |
-
#: inc/admin/blocks/notifications-center.php:646
|
1227 |
#: inc/admin/blocks/notifications-center.php:677
|
1228 |
-
#: inc/admin/blocks/notifications-center.php:
|
1229 |
-
#: inc/admin/blocks/notifications-center.php:
|
1230 |
-
#: inc/admin/blocks/notifications-center.php:
|
1231 |
-
#: inc/admin/blocks/notifications-center.php:
|
1232 |
-
#: inc/admin/blocks/notifications-center.php:
|
1233 |
-
#: inc/admin/blocks/notifications-center.php:
|
|
|
1234 |
#: inc/admin/sections/InstantIndexing.php:43
|
|
|
1235 |
msgid "Fix this!"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: inc/admin/blocks/notifications-center.php:
|
1239 |
msgid "Your permalinks don't have a trailingslash"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: inc/admin/blocks/notifications-center.php:
|
1243 |
msgid "To avoid any SEO issues, we recommend you to activate the \"<strong>Disable trailing slash for metas</strong>\" option from our <strong>Advanced settings page</strong>. Do not forget to clear your cache if necessary."
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: inc/admin/blocks/notifications-center.php:
|
1247 |
msgid "Your permalinks have a trailingslash"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
-
#: inc/admin/blocks/notifications-center.php:
|
1251 |
msgid "To avoid any SEO issues, we recommend you to de-activate the \"<strong>Disable trailing slash for metas</strong>\" option from our <strong>Advanced settings page</strong>. Do not forget to clear your cache if necessary."
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: inc/admin/blocks/notifications-center.php:
|
1255 |
msgid "TagDiv Composer plugin doesn't use <strong>add_theme_support('title-tag');</strong>"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#: inc/admin/blocks/notifications-center.php:
|
1259 |
msgid "Fix this compatibility issue to allow SEOPress generates the correct meta titles."
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#: inc/admin/blocks/notifications-center.php:
|
1263 |
msgid "Your theme doesn't use <strong>add_theme_support('title-tag');</strong>"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
-
#: inc/admin/blocks/notifications-center.php:
|
1267 |
msgid "This error indicates that your theme uses a deprecated function to generate the title tag of your pages. SEOPress will not be able to generate your custom title tags if this error is not fixed."
|
1268 |
msgstr ""
|
1269 |
|
1270 |
-
#: inc/admin/blocks/notifications-center.php:
|
1271 |
-
#: inc/admin/blocks/notifications-center.php:
|
1272 |
-
#: inc/admin/blocks/notifications-center.php:
|
1273 |
-
#: inc/admin/blocks/notifications-center.php:
|
1274 |
#: inc/admin/callbacks/Analytics.php:599
|
1275 |
#: inc/admin/callbacks/Analytics.php:696
|
1276 |
#: inc/admin/callbacks/Analytics.php:724
|
@@ -1279,245 +1325,245 @@ msgstr ""
|
|
1279 |
msgid "Learn more"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: inc/admin/blocks/notifications-center.php:
|
1283 |
msgid "Your XML sitemap is cached!"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
-
#: inc/admin/blocks/notifications-center.php:
|
1287 |
msgid "Swift Performance is caching your XML sitemap. You must disable this option to prevent any compatibility issue (Swift Performance > Settings > Caching, General tab)."
|
1288 |
msgstr ""
|
1289 |
|
1290 |
#. translators: %s name of a SEO plugin (eg: Yoast SEO)
|
1291 |
#. translators: %s name of a WP plugin (eg: IndexNow)
|
1292 |
-
#: inc/admin/blocks/notifications-center.php:
|
1293 |
-
#: inc/admin/blocks/notifications-center.php:
|
1294 |
#: inc/admin/sections/InstantIndexing.php:41
|
1295 |
msgid "We noticed that you use <strong>%s</strong> plugin."
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#: inc/admin/blocks/notifications-center.php:
|
1299 |
msgid "Do you want to migrate all your metadata to SEOPress? Do not use multiple SEO plugins at once to avoid conflicts!"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
-
#: inc/admin/blocks/notifications-center.php:
|
1303 |
msgid "Migrate!"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
-
#: inc/admin/blocks/notifications-center.php:
|
1307 |
#: inc/admin/sections/InstantIndexing.php:42
|
1308 |
msgid "To prevent any conflicts with our Indexing feature, please disable it."
|
1309 |
msgstr ""
|
1310 |
|
1311 |
-
#: inc/admin/blocks/notifications-center.php:
|
1312 |
msgid "You have enabled 404 cleaning BUT the scheduled task is not running."
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#: inc/admin/blocks/notifications-center.php:
|
1316 |
msgid "To solve this, please disable and re-enable SEOPress PRO. No data will be lost."
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#: inc/admin/blocks/notifications-center.php:
|
1320 |
msgid "Enfold theme is not correctly setup for SEO!"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#: inc/admin/blocks/notifications-center.php:
|
1324 |
msgid "You must disable \"Meta tag robots\" option from Enfold settings (SEO Support tab) to avoid any SEO issues."
|
1325 |
msgstr ""
|
1326 |
|
1327 |
-
#: inc/admin/blocks/notifications-center.php:
|
1328 |
msgid "Global meta title missing for several custom post types!"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
-
#: inc/admin/blocks/notifications-center.php:
|
1332 |
msgid "Global meta description missing for several custom post types!"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
-
#: inc/admin/blocks/notifications-center.php:
|
1336 |
msgid "Global meta title missing for several taxonomies!"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
-
#: inc/admin/blocks/notifications-center.php:
|
1340 |
msgid "Global meta description missing for several taxonomies!"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
-
#: inc/admin/blocks/notifications-center.php:
|
1344 |
msgid "Your site doesn't use an SSL certificate!"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
-
#: inc/admin/blocks/notifications-center.php:
|
1348 |
msgid "Https is considered by Google as a positive signal for the ranking of your site. It also reassures your visitors for data security, and improves trust."
|
1349 |
msgstr ""
|
1350 |
|
1351 |
-
#: inc/admin/blocks/notifications-center.php:
|
1352 |
msgid "Low impact"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
-
#: inc/admin/blocks/notifications-center.php:
|
1356 |
msgid "PHP module \"DOM\" is missing on your server."
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: inc/admin/blocks/notifications-center.php:
|
1360 |
-
#: inc/admin/blocks/notifications-center.php:
|
1361 |
msgid "This PHP module, installed by default with PHP, is required by many plugins including SEOPress. Please contact your host as soon as possible to solve this."
|
1362 |
msgstr ""
|
1363 |
|
1364 |
-
#: inc/admin/blocks/notifications-center.php:
|
1365 |
msgid "PHP module \"mbstring\" is missing on your server."
|
1366 |
msgstr ""
|
1367 |
|
1368 |
-
#: inc/admin/blocks/notifications-center.php:
|
1369 |
msgid "Your site is not visible to Search Engines!"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
-
#: inc/admin/blocks/notifications-center.php:
|
1373 |
msgid "You have activated the blocking of the indexing of your site. If your site is under development, this is probably normal. Otherwise, check your settings. Delete this notification using the cross on the right if you are not concerned."
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#: inc/admin/blocks/notifications-center.php:
|
1377 |
msgid "Your site title is empty!"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
-
#: inc/admin/blocks/notifications-center.php:
|
1381 |
msgid "Your Site Title is used by WordPress, your theme and your plugins including SEOPress. It is an essential component in the generation of title tags, but not only. Enter one!"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
-
#: inc/admin/blocks/notifications-center.php:
|
1385 |
msgid "Your permalinks are not SEO Friendly! Enable pretty permalinks to fix this."
|
1386 |
msgstr ""
|
1387 |
|
1388 |
-
#: inc/admin/blocks/notifications-center.php:640
|
1389 |
#: inc/admin/blocks/notifications-center.php:671
|
|
|
1390 |
msgid "Why is this important? Showing only the summary of each article significantly reduces the theft of your content by third party sites. Not to mention, the increase in your traffic, your advertising revenue, conversions..."
|
1391 |
msgstr ""
|
1392 |
|
1393 |
-
#: inc/admin/blocks/notifications-center.php:
|
1394 |
msgid "Your RSS feed shows full text!"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
-
#: inc/admin/blocks/notifications-center.php:
|
1398 |
-
#: inc/admin/blocks/notifications-center.php:
|
1399 |
-
#: inc/admin/blocks/notifications-center.php:
|
1400 |
-
#: inc/admin/blocks/notifications-center.php:
|
1401 |
msgid "Medium impact"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
-
#: inc/admin/blocks/notifications-center.php:
|
1405 |
msgid "You have activated Google Analytics tracking without adding identifiers!"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
-
#: inc/admin/blocks/notifications-center.php:
|
1409 |
msgid "Google Analytics will not track your visitors until you finish the configuration."
|
1410 |
msgstr ""
|
1411 |
|
1412 |
-
#: inc/admin/blocks/notifications-center.php:
|
1413 |
msgid "You like SEOPress? Please help us by rating us 5 stars!"
|
1414 |
msgstr ""
|
1415 |
|
1416 |
-
#: inc/admin/blocks/notifications-center.php:
|
1417 |
msgid "Support the development and improvement of the plugin by taking 15 seconds of your time to leave us a user review on the official WordPress plugins repository. Thank you!"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
-
#: inc/admin/blocks/notifications-center.php:
|
1421 |
msgid "Information"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
-
#: inc/admin/blocks/notifications-center.php:
|
1425 |
msgid "Rate us!"
|
1426 |
msgstr ""
|
1427 |
|
1428 |
-
#: inc/admin/blocks/notifications-center.php:
|
1429 |
msgid "Break comments into pages is ON!"
|
1430 |
msgstr ""
|
1431 |
|
1432 |
-
#: inc/admin/blocks/notifications-center.php:
|
1433 |
msgid "Enabling this option will create duplicate content for each article beyond x comments. This can have a disastrous effect by creating a large number of poor quality pages, and slowing the Google bot unnecessarily, so your ranking in search results."
|
1434 |
msgstr ""
|
1435 |
|
1436 |
-
#: inc/admin/blocks/notifications-center.php:
|
1437 |
msgid "Disable this!"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
-
#: inc/admin/blocks/notifications-center.php:
|
1441 |
msgid "Display more posts per page on homepage and archives"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
-
#: inc/admin/blocks/notifications-center.php:
|
1445 |
msgid "To reduce the number pages search engines have to crawl to find all your articles, it is recommended displaying more posts per page. This should not be a problem for your users. Using mobile, we prefer to scroll down rather than clicking on next page links."
|
1446 |
msgstr ""
|
1447 |
|
1448 |
-
#: inc/admin/blocks/notifications-center.php:
|
1449 |
msgid "You don't have an XML Sitemap!"
|
1450 |
msgstr ""
|
1451 |
|
1452 |
-
#: inc/admin/blocks/notifications-center.php:
|
1453 |
msgid "XML Sitemaps are useful to facilitate the crawling of your content by search engine robots. Indirectly, this can benefit your ranking by reducing the crawl bugdet."
|
1454 |
msgstr ""
|
1455 |
|
1456 |
-
#: inc/admin/blocks/notifications-center.php:
|
1457 |
msgid "Do you have a Google My Business page? It's free!"
|
1458 |
msgstr ""
|
1459 |
|
1460 |
-
#: inc/admin/blocks/notifications-center.php:
|
1461 |
msgid "Local Business websites should have a My Business page to improve visibility in search results. Click on the cross on the right to delete this notification if you are not concerned."
|
1462 |
msgstr ""
|
1463 |
|
1464 |
-
#: inc/admin/blocks/notifications-center.php:
|
1465 |
msgid "Create your page now!"
|
1466 |
msgstr ""
|
1467 |
|
1468 |
-
#: inc/admin/blocks/notifications-center.php:
|
1469 |
msgid "Add your site to Google. It's free!"
|
1470 |
msgstr ""
|
1471 |
|
1472 |
-
#: inc/admin/blocks/notifications-center.php:
|
1473 |
msgid "Is your brand new site online? So reference it as quickly as possible on Google to get your first visitors via Google Search Console. Already the case? Click on the cross on the right to remove this alert."
|
1474 |
msgstr ""
|
1475 |
|
1476 |
-
#: inc/admin/blocks/notifications-center.php:
|
1477 |
msgid "Add your site to Search Console!"
|
1478 |
msgstr ""
|
1479 |
|
1480 |
-
#: inc/admin/blocks/notifications-center.php:
|
1481 |
msgid "Structured data types is not correctly enabled"
|
1482 |
msgstr ""
|
1483 |
|
1484 |
-
#: inc/admin/blocks/notifications-center.php:
|
1485 |
msgid "Please enable <strong>Structured Data Types metabox for your posts, pages and custom post types</strong> option in order to use automatic and manual schemas. (SEO > PRO > Structured Data Types (schema.org)"
|
1486 |
msgstr ""
|
1487 |
|
1488 |
-
#: inc/admin/blocks/notifications-center.php:
|
1489 |
msgid "You have to enter your licence key to get updates and support"
|
1490 |
msgstr ""
|
1491 |
|
1492 |
-
#: inc/admin/blocks/notifications-center.php:
|
1493 |
msgid "Please activate the SEOPress PRO license key to automatically receive updates to guarantee you the best user experience possible."
|
1494 |
msgstr ""
|
1495 |
|
1496 |
-
#: inc/admin/blocks/notifications-center.php:
|
1497 |
msgid "Take your SEO to the next level with SEOPress PRO!"
|
1498 |
msgstr ""
|
1499 |
|
1500 |
-
#: inc/admin/blocks/notifications-center.php:
|
1501 |
msgid "The PRO version of SEOPress allows you to easily manage your structured data (schemas), add a breadcrumb optimized for SEO and accessibility, improve SEO for WooCommerce, gain productivity with our import / export tool from a CSV of your metadata and so much more."
|
1502 |
msgstr ""
|
1503 |
|
1504 |
-
#: inc/admin/blocks/notifications-center.php:
|
1505 |
msgid "Upgrade now!"
|
1506 |
msgstr ""
|
1507 |
|
1508 |
-
#: inc/admin/blocks/notifications-center.php:
|
1509 |
msgid "A physical robots.txt file has been found"
|
1510 |
msgstr ""
|
1511 |
|
1512 |
-
#: inc/admin/blocks/notifications-center.php:
|
1513 |
msgid "A robots.txt file already exists at the root of your site. We invite you to remove it so SEOPress can handle it virtually."
|
1514 |
msgstr ""
|
1515 |
|
1516 |
-
#: inc/admin/blocks/notifications-center.php:
|
1517 |
msgid "Your site is not indexable!"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
-
#: inc/admin/blocks/notifications-center.php:
|
1521 |
msgid "Your robots.txt file contains a rule that prevents search engines to index your all site: <code>Disallow: /</code>"
|
1522 |
msgstr ""
|
1523 |
|
@@ -1798,7 +1844,7 @@ msgstr ""
|
|
1798 |
|
1799 |
#: inc/admin/callbacks/Analytics.php:30
|
1800 |
#: inc/admin/settings/Analytics.php:24
|
1801 |
-
#: inc/admin/settings/Analytics.php:
|
1802 |
msgid "Enter your tracking ID"
|
1803 |
msgstr ""
|
1804 |
|
@@ -2163,12 +2209,12 @@ msgid "Cross domain tracking makes it possible for Analytics to see sessions on
|
|
2163 |
msgstr ""
|
2164 |
|
2165 |
#: inc/admin/callbacks/Analytics.php:796
|
2166 |
-
#: inc/admin/callbacks/Analytics.php:
|
2167 |
msgid "Enter your domains: seopress.org,sub.seopress.org,sub2.seopress.org"
|
2168 |
msgstr ""
|
2169 |
|
2170 |
#: inc/admin/callbacks/Analytics.php:796
|
2171 |
-
#: inc/admin/callbacks/Analytics.php:
|
2172 |
#: inc/admin/settings/Analytics.php:315
|
2173 |
msgid "Cross domains"
|
2174 |
msgstr ""
|
@@ -2230,97 +2276,118 @@ msgstr ""
|
|
2230 |
msgid "Custom Dimension #%d"
|
2231 |
msgstr ""
|
2232 |
|
2233 |
-
#: inc/admin/callbacks/Analytics.php:
|
2234 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2235 |
msgstr ""
|
2236 |
|
2237 |
-
#: inc/admin/callbacks/Analytics.php:
|
2238 |
-
msgid "Matomo Cloud
|
2239 |
msgstr ""
|
2240 |
|
2241 |
-
#: inc/admin/callbacks/Analytics.php:
|
2242 |
msgid "Enter your site ID here"
|
2243 |
msgstr ""
|
2244 |
|
2245 |
-
#: inc/admin/callbacks/Analytics.php:
|
2246 |
msgid "Matomo Site ID"
|
2247 |
msgstr ""
|
2248 |
|
2249 |
-
#: inc/admin/callbacks/Analytics.php:
|
2250 |
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."
|
2251 |
msgstr ""
|
2252 |
|
2253 |
-
#: inc/admin/callbacks/Analytics.php:
|
|
|
|
|
|
|
|
|
2254 |
msgid "Tracking one domain and its subdomains in the same website"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
-
#: inc/admin/callbacks/Analytics.php:
|
2258 |
msgid "If one visitor visits x.example.com and y.example.com, they will be counted as a unique visitor."
|
2259 |
msgstr ""
|
2260 |
|
2261 |
-
#: inc/admin/callbacks/Analytics.php:
|
2262 |
msgid "Prepend the site domain to the page title when tracking"
|
2263 |
msgstr ""
|
2264 |
|
2265 |
-
#: inc/admin/callbacks/Analytics.php:
|
2266 |
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."
|
2267 |
msgstr ""
|
2268 |
|
2269 |
-
#: inc/admin/callbacks/Analytics.php:
|
2270 |
-
#: inc/admin/settings/Analytics.php:
|
2271 |
msgid "Track users with JavaScript disabled"
|
2272 |
msgstr ""
|
2273 |
|
2274 |
-
#: inc/admin/callbacks/Analytics.php:
|
2275 |
-
#: inc/admin/settings/Analytics.php:
|
2276 |
msgid "Enables cross domain linking"
|
2277 |
msgstr ""
|
2278 |
|
2279 |
-
#: inc/admin/callbacks/Analytics.php:
|
2280 |
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."
|
2281 |
msgstr ""
|
2282 |
|
2283 |
-
#: inc/admin/callbacks/Analytics.php:
|
2284 |
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."
|
2285 |
msgstr ""
|
2286 |
|
2287 |
-
#: inc/admin/callbacks/Analytics.php:
|
2288 |
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."
|
2289 |
msgstr ""
|
2290 |
|
2291 |
-
#: inc/admin/callbacks/Analytics.php:
|
2292 |
msgid "Enable client side DoNotTrack detection"
|
2293 |
msgstr ""
|
2294 |
|
2295 |
-
#: inc/admin/callbacks/Analytics.php:
|
2296 |
msgid "Tracking requests will not be sent if visitors do not wish to be tracked."
|
2297 |
msgstr ""
|
2298 |
|
2299 |
-
#: inc/admin/callbacks/Analytics.php:
|
2300 |
msgid "Disables all first party cookies. Existing Matomo cookies for this website will be deleted on the next page view."
|
2301 |
msgstr ""
|
2302 |
|
2303 |
-
#: inc/admin/callbacks/Analytics.php:
|
2304 |
msgid "Enabling Download & Outlink tracking"
|
2305 |
msgstr ""
|
2306 |
|
2307 |
-
#: inc/admin/callbacks/Analytics.php:
|
2308 |
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"
|
2309 |
msgstr ""
|
2310 |
|
2311 |
-
#: inc/admin/callbacks/Analytics.php:
|
2312 |
msgid "Disabling all heatmaps and session recordings"
|
2313 |
msgstr ""
|
2314 |
|
2315 |
-
#: inc/admin/callbacks/Analytics.php:
|
2316 |
msgid "Add Microsoft Clarity code to your site"
|
2317 |
msgstr ""
|
2318 |
|
2319 |
-
#: inc/admin/callbacks/Analytics.php:
|
2320 |
msgid "Enter your Project ID"
|
2321 |
msgstr ""
|
2322 |
|
2323 |
-
#: inc/admin/callbacks/Analytics.php:
|
2324 |
msgid "Find your project ID"
|
2325 |
msgstr ""
|
2326 |
|
@@ -2472,98 +2539,107 @@ msgstr ""
|
|
2472 |
msgid "Guide to enable XML video sitemaps - new window"
|
2473 |
msgstr ""
|
2474 |
|
2475 |
-
#: inc/admin/callbacks/Sitemaps.php:
|
2476 |
msgid "Your video sitemap is empty? Read our guide to learn more about <a href=\"%s\" target=\"_blank\">adding videos to your sitemap.</a>"
|
2477 |
msgstr ""
|
2478 |
|
2479 |
-
#: inc/admin/callbacks/Sitemaps.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2480 |
#: inc/admin/settings/Sitemaps.php:42
|
2481 |
msgid "Enable Author Sitemap"
|
2482 |
msgstr ""
|
2483 |
|
2484 |
-
#: inc/admin/callbacks/Sitemaps.php:
|
2485 |
msgid "Make sure to enable author archive from SEO, titles and metas, archives tab.</a>"
|
2486 |
msgstr ""
|
2487 |
|
2488 |
-
#: inc/admin/callbacks/Sitemaps.php:
|
2489 |
#: inc/admin/settings/Sitemaps.php:50
|
2490 |
msgid "Enable HTML Sitemap"
|
2491 |
msgstr ""
|
2492 |
|
2493 |
-
#: inc/admin/callbacks/Sitemaps.php:
|
2494 |
-
#: inc/admin/sections/Sitemaps.php:
|
2495 |
msgid "Guide to enable a HTML Sitemap - new window"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
-
#: inc/admin/callbacks/Sitemaps.php:
|
2499 |
-
#: inc/admin/callbacks/Sitemaps.php:
|
2500 |
msgid "Include"
|
2501 |
msgstr ""
|
2502 |
|
2503 |
-
#: inc/admin/callbacks/Sitemaps.php:
|
2504 |
msgid "You should never include <strong>attachment</strong> post type in your sitemap. Be careful if you checked this."
|
2505 |
msgstr ""
|
2506 |
|
2507 |
-
#: inc/admin/callbacks/Sitemaps.php:
|
2508 |
msgid "eg: 2, 28, 68"
|
2509 |
msgstr ""
|
2510 |
|
2511 |
-
#: inc/admin/callbacks/Sitemaps.php:
|
2512 |
#: inc/admin/settings/Sitemaps.php:98
|
2513 |
msgid "Enter a post, page or custom post type ID(s) to display the sitemap"
|
2514 |
msgstr ""
|
2515 |
|
2516 |
-
#: inc/admin/callbacks/Sitemaps.php:
|
2517 |
msgid "You can also use this shortcode:"
|
2518 |
msgstr ""
|
2519 |
|
2520 |
-
#: inc/admin/callbacks/Sitemaps.php:
|
2521 |
msgid "To include specific custom post types, use the CPT attribute:"
|
2522 |
msgstr ""
|
2523 |
|
2524 |
-
#: inc/admin/callbacks/Sitemaps.php:
|
2525 |
msgid "eg: 13, 8, 38"
|
2526 |
msgstr ""
|
2527 |
|
2528 |
-
#: inc/admin/callbacks/Sitemaps.php:
|
2529 |
#: inc/admin/settings/Sitemaps.php:106
|
2530 |
msgid "Exclude some Posts, Pages, Custom Post Types or Terms IDs"
|
2531 |
msgstr ""
|
2532 |
|
2533 |
-
#: inc/admin/callbacks/Sitemaps.php:
|
2534 |
msgid "DESC (descending order from highest to lowest values (3, 2, 1; c, b, a))"
|
2535 |
msgstr ""
|
2536 |
|
2537 |
-
#: inc/admin/callbacks/Sitemaps.php:
|
2538 |
msgid "ASC (ascending order from lowest to highest values (1, 2, 3; a, b, c))"
|
2539 |
msgstr ""
|
2540 |
|
2541 |
-
#: inc/admin/callbacks/Sitemaps.php:
|
2542 |
msgid "Default (date)"
|
2543 |
msgstr ""
|
2544 |
|
2545 |
-
#: inc/admin/callbacks/Sitemaps.php:
|
2546 |
msgid "Modified date"
|
2547 |
msgstr ""
|
2548 |
|
2549 |
-
#: inc/admin/callbacks/Sitemaps.php:
|
2550 |
msgid "Post ID"
|
2551 |
msgstr ""
|
2552 |
|
2553 |
-
#: inc/admin/callbacks/Sitemaps.php:
|
2554 |
msgid "Menu order"
|
2555 |
msgstr ""
|
2556 |
|
2557 |
-
#: inc/admin/callbacks/Sitemaps.php:
|
2558 |
msgid "Disable date after each post, page, post type?"
|
2559 |
msgstr ""
|
2560 |
|
2561 |
-
#: inc/admin/callbacks/Sitemaps.php:
|
2562 |
msgid "Remove links from archive pages (eg: Products)"
|
2563 |
msgstr ""
|
2564 |
|
2565 |
#: inc/admin/callbacks/Social.php:15
|
2566 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
2567 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:286
|
2568 |
#: inc/admin/wizard/admin-wizard.php:714
|
2569 |
#: src/Helpers/Metas/RobotSettings.php:19
|
@@ -2604,9 +2680,9 @@ msgstr ""
|
|
2604 |
#: inc/admin/callbacks/Social.php:306
|
2605 |
#: inc/admin/callbacks/Social.php:382
|
2606 |
#: inc/admin/callbacks/Social.php:524
|
2607 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
2608 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
2609 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
2610 |
#: inc/admin/wizard/admin-wizard.php:745
|
2611 |
msgid "Upload an Image"
|
2612 |
msgstr ""
|
@@ -2752,15 +2828,15 @@ msgstr ""
|
|
2752 |
#: inc/admin/callbacks/Social.php:298
|
2753 |
#: inc/admin/callbacks/Social.php:375
|
2754 |
#: inc/admin/callbacks/Social.php:521
|
2755 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
2756 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
2757 |
#: src/Helpers/Metas/SocialSettings.php:46
|
2758 |
#: src/Helpers/Metas/SocialSettings.php:86
|
2759 |
msgid "Select your default thumbnail"
|
2760 |
msgstr ""
|
2761 |
|
2762 |
#: inc/admin/callbacks/Social.php:308
|
2763 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
2764 |
#: src/Helpers/Metas/SocialSettings.php:51
|
2765 |
msgid "Minimum size: 200x200px, ideal ratio 1.91:1, 8Mb max. (eg: 1640x856px or 3280x1712px for retina screens)"
|
2766 |
msgstr ""
|
@@ -2815,13 +2891,13 @@ msgid "Default Twitter Image"
|
|
2815 |
msgstr ""
|
2816 |
|
2817 |
#: inc/admin/callbacks/Social.php:527
|
2818 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
2819 |
#: src/Helpers/Metas/SocialSettings.php:91
|
2820 |
msgid "Minimum size: 144x144px (300x157px with large card enabled), ideal ratio 1:1 (2:1 with large card), 5Mb max."
|
2821 |
msgstr ""
|
2822 |
|
2823 |
#: inc/admin/callbacks/Social.php:546
|
2824 |
-
#: seopress.php:
|
2825 |
msgid "Default"
|
2826 |
msgstr ""
|
2827 |
|
@@ -2916,7 +2992,7 @@ msgid "Do not display this single post type in search engine results <strong>(no
|
|
2916 |
msgstr ""
|
2917 |
|
2918 |
#: inc/admin/callbacks/Titles.php:303
|
2919 |
-
msgid "This custom post type 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
|
2920 |
msgstr ""
|
2921 |
|
2922 |
#: inc/admin/callbacks/Titles.php:332
|
@@ -3149,39 +3225,39 @@ msgstr ""
|
|
3149 |
msgid "eg: https://example.com/my-media-attachment-page"
|
3150 |
msgstr ""
|
3151 |
|
3152 |
-
#: inc/admin/docs/DocsLinks.php:
|
3153 |
msgid "Installation of SEOPress"
|
3154 |
msgstr ""
|
3155 |
|
3156 |
-
#: inc/admin/docs/DocsLinks.php:
|
3157 |
msgid "Activate your license key to receive automatic updates"
|
3158 |
msgstr ""
|
3159 |
|
3160 |
-
#: inc/admin/docs/DocsLinks.php:
|
3161 |
msgid "Configure SEOPress in 5 minutes"
|
3162 |
msgstr ""
|
3163 |
|
3164 |
-
#: inc/admin/docs/DocsLinks.php:
|
3165 |
msgid "Migrate your SEO metadata from other plugins"
|
3166 |
msgstr ""
|
3167 |
|
3168 |
-
#: inc/admin/docs/DocsLinks.php:
|
3169 |
msgid "Promote the exploration of your WordPress site by search engine robots"
|
3170 |
msgstr ""
|
3171 |
|
3172 |
-
#: inc/admin/docs/DocsLinks.php:
|
3173 |
msgid "Optimize content from A to Z with SEOPress"
|
3174 |
msgstr ""
|
3175 |
|
3176 |
-
#: inc/admin/docs/DocsLinks.php:
|
3177 |
msgid "Measure your traffic with Google Analytics"
|
3178 |
msgstr ""
|
3179 |
|
3180 |
-
#: inc/admin/docs/DocsLinks.php:
|
3181 |
msgid "Add your WordPress site to Google’s index"
|
3182 |
msgstr ""
|
3183 |
|
3184 |
-
#: inc/admin/docs/DocsLinks.php:
|
3185 |
msgid "Optimize your click-through rate on social networks"
|
3186 |
msgstr ""
|
3187 |
|
@@ -3230,75 +3306,85 @@ msgid "Check our website"
|
|
3230 |
msgstr ""
|
3231 |
|
3232 |
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:16
|
3233 |
-
#: app/react/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3234 |
msgid "Enter a few keywords for analysis to help you write optimized content."
|
3235 |
msgstr ""
|
3236 |
|
3237 |
-
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:
|
3238 |
-
#: app/react/layout/Main/components/ContentAnalysis/index.js:
|
3239 |
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."
|
3240 |
msgstr ""
|
3241 |
|
3242 |
-
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:
|
3243 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:568
|
3244 |
-
#: app/react/layout/Main/components/ContentAnalysis/index.js:
|
3245 |
msgid "Separate target keywords with commas. Do not use spaces after the commas, unless you want to include them"
|
3246 |
msgstr ""
|
3247 |
|
3248 |
-
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:
|
3249 |
-
#: app/react/layout/Main/components/ContentAnalysis/index.js:
|
3250 |
msgid "Enter your target keywords"
|
3251 |
msgstr ""
|
3252 |
|
3253 |
-
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:
|
3254 |
msgid "Analyze my content"
|
3255 |
msgstr ""
|
3256 |
|
3257 |
-
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:
|
3258 |
#: inc/admin/page-builders/elementor/inc/controls/class-content-analysis-control.php:46
|
3259 |
-
#: app/react/layout/Main/components/ContentAnalysis/index.js:
|
3260 |
msgid "Refresh analysis"
|
3261 |
msgstr ""
|
3262 |
|
3263 |
-
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:
|
3264 |
msgid "Track with Insights"
|
3265 |
msgstr ""
|
3266 |
|
3267 |
-
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:
|
3268 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:592
|
3269 |
-
#: app/react/layout/Main/components/ContentAnalysis/index.js:
|
3270 |
msgid "To get the most accurate analysis, save your post first. We analyze all of your source code as a search engine would."
|
3271 |
msgstr ""
|
3272 |
|
3273 |
-
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:
|
3274 |
-
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:
|
3275 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:579
|
3276 |
#: inc/admin/page-builders/elementor/inc/controls/class-google-suggestions-control.php:50
|
3277 |
#: inc/admin/page-builders/elementor/inc/controls/class-google-suggestions-control.php:51
|
3278 |
-
#: app/react/layout/Main/components/ContentAnalysis/index.js:
|
3279 |
-
#: app/react/layout/Main/components/ContentAnalysis/index.js:
|
3280 |
msgid "Google suggestions"
|
3281 |
msgstr ""
|
3282 |
|
3283 |
-
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:
|
3284 |
#: inc/admin/page-builders/elementor/inc/controls/class-google-suggestions-control.php:51
|
3285 |
-
#: app/react/layout/Main/components/ContentAnalysis/index.js:
|
3286 |
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."
|
3287 |
msgstr ""
|
3288 |
|
3289 |
-
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:
|
3290 |
#: inc/admin/page-builders/elementor/inc/controls/class-google-suggestions-control.php:52
|
3291 |
-
#: app/react/layout/Main/components/ContentAnalysis/index.js:
|
3292 |
msgid "Get suggestions from Google"
|
3293 |
msgstr ""
|
3294 |
|
3295 |
-
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:
|
3296 |
msgid "Click on a suggestion below to add it as a target keyword."
|
3297 |
msgstr ""
|
3298 |
|
3299 |
-
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:
|
3300 |
#: inc/admin/page-builders/elementor/inc/controls/class-google-suggestions-control.php:53
|
3301 |
-
#: app/react/layout/Main/components/ContentAnalysis/index.js:
|
3302 |
msgid "Get suggestions!"
|
3303 |
msgstr ""
|
3304 |
|
@@ -3307,22 +3393,22 @@ msgid "Titles settings"
|
|
3307 |
msgstr ""
|
3308 |
|
3309 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:54
|
3310 |
-
#: app/react/constants/tabs.js:
|
3311 |
msgid "Social"
|
3312 |
msgstr ""
|
3313 |
|
3314 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:58
|
3315 |
-
#: app/react/constants/tabs.js:
|
3316 |
msgid "Redirection"
|
3317 |
msgstr ""
|
3318 |
|
3319 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:64
|
3320 |
-
#: app/react/constants/tabs.js:
|
3321 |
msgid "Google News"
|
3322 |
msgstr ""
|
3323 |
|
3324 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:71
|
3325 |
-
#: app/react/constants/tabs.js:
|
3326 |
msgid "Video Sitemap"
|
3327 |
msgstr ""
|
3328 |
|
@@ -3384,12 +3470,12 @@ msgstr ""
|
|
3384 |
|
3385 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:187
|
3386 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:150
|
3387 |
-
#: app/react/components/GooglePreview/index.js:
|
3388 |
msgid "Google Snippet Preview"
|
3389 |
msgstr ""
|
3390 |
|
3391 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:188
|
3392 |
-
#: app/react/components/GooglePreview/index.js:
|
3393 |
msgid "Snippet Preview"
|
3394 |
msgstr ""
|
3395 |
|
@@ -3398,214 +3484,214 @@ msgid "The Google preview is a simulation. <br>There is no reliable preview beca
|
|
3398 |
msgstr ""
|
3399 |
|
3400 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:191
|
3401 |
-
#: app/react/components/GooglePreview/index.js:
|
3402 |
-
msgid "This is what your page will look like in Google search results. You have to publish your post to get the Google Snippet Preview."
|
3403 |
msgstr ""
|
3404 |
|
3405 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:196
|
3406 |
#: inc/admin/page-builders/elementor/inc/controls/class-social-preview-control.php:95
|
3407 |
-
#: app/react/components/GooglePreview/index.js:
|
3408 |
msgid "Mobile Preview"
|
3409 |
msgstr ""
|
3410 |
|
3411 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3412 |
#: app/react/layout/Main/components/Advanced/index.js:49
|
3413 |
msgid "Meta robots settings"
|
3414 |
msgstr ""
|
3415 |
|
3416 |
#. translators: %s: link to plugin settings page
|
3417 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3418 |
#: app/react/layout/Main/components/Advanced/MetaRobotCheckboxSettings/index.js:174
|
3419 |
msgid "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>"
|
3420 |
msgstr ""
|
3421 |
|
3422 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3423 |
#: inc/functions/options-advanced-admin.php:787
|
3424 |
msgid "Do not display this page in search engine results / XML - HTML sitemaps <strong>(noindex)</strong>"
|
3425 |
msgstr ""
|
3426 |
|
3427 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3428 |
#: app/react/layout/Main/components/Advanced/MetaRobotCheckboxSettings/index.js:22
|
3429 |
msgid "\"noindex\" robots meta tag"
|
3430 |
msgstr ""
|
3431 |
|
3432 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3433 |
msgid "By checking this option, you will add a meta robots tag with the value \"noindex\". <br>Search engines will not index this URL in the search results."
|
3434 |
msgstr ""
|
3435 |
|
3436 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3437 |
#: inc/functions/options-advanced-admin.php:795
|
3438 |
msgid "Do not follow links for this page <strong>(nofollow)</strong>"
|
3439 |
msgstr ""
|
3440 |
|
3441 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3442 |
#: app/react/layout/Main/components/Advanced/MetaRobotCheckboxSettings/index.js:47
|
3443 |
msgid "\"nofollow\" robots meta tag"
|
3444 |
msgstr ""
|
3445 |
|
3446 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3447 |
msgid "By checking this option, you will add a meta robots tag with the value \"nofollow\". <br>Search engines will not follow links from this URL."
|
3448 |
msgstr ""
|
3449 |
|
3450 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3451 |
msgid "Do not use Open Directory project metadata for titles or excerpts for this page <strong>(noodp)</strong>"
|
3452 |
msgstr ""
|
3453 |
|
3454 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3455 |
#: app/react/layout/Main/components/Advanced/MetaRobotCheckboxSettings/index.js:75
|
3456 |
msgid "\"noodp\" robots meta tag"
|
3457 |
msgstr ""
|
3458 |
|
3459 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3460 |
msgid "By checking this option, you will add a meta robots tag with the value \"noodp\". <br>Note that Google and Yahoo have stopped considering this tag since the closing of DMOZ directory."
|
3461 |
msgstr ""
|
3462 |
|
3463 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3464 |
msgid "Do not index images for this page <strong>(noimageindex)</strong>"
|
3465 |
msgstr ""
|
3466 |
|
3467 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3468 |
#: app/react/layout/Main/components/Advanced/MetaRobotCheckboxSettings/index.js:146
|
3469 |
msgid "\"noimageindex\" robots meta tag"
|
3470 |
msgstr ""
|
3471 |
|
3472 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3473 |
msgid "By checking this option, you will add a meta robots tag with the value \"noimageindex\". <br> Note that your images can always be indexed if they are linked from other pages."
|
3474 |
msgstr ""
|
3475 |
|
3476 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3477 |
msgid "Do not display a \"Cached\" link in the Google search results <strong>(noarchive)</strong>"
|
3478 |
msgstr ""
|
3479 |
|
3480 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3481 |
#: app/react/layout/Main/components/Advanced/MetaRobotCheckboxSettings/index.js:103
|
3482 |
msgid "\"noarchive\" robots meta tag"
|
3483 |
msgstr ""
|
3484 |
|
3485 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3486 |
#: app/react/layout/Main/components/Advanced/MetaRobotCheckboxSettings/index.js:106
|
3487 |
msgid "By checking this option, you will add a meta robots tag with the value \"noarchive\"."
|
3488 |
msgstr ""
|
3489 |
|
3490 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3491 |
msgid "Do not display a description in search results for this page <strong>(nosnippet)</strong>"
|
3492 |
msgstr ""
|
3493 |
|
3494 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3495 |
#: app/react/layout/Main/components/Advanced/MetaRobotCheckboxSettings/index.js:126
|
3496 |
msgid "\"nosnippet\" robots meta tag"
|
3497 |
msgstr ""
|
3498 |
|
3499 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3500 |
#: app/react/layout/Main/components/Advanced/MetaRobotCheckboxSettings/index.js:129
|
3501 |
msgid "By checking this option, you will add a meta robots tag with the value \"nosnippet\"."
|
3502 |
msgstr ""
|
3503 |
|
3504 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3505 |
msgid "A canonical URL is the URL of the page that Google thinks is most representative from a set of duplicate pages on your site. <br>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. <br>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."
|
3506 |
msgstr ""
|
3507 |
|
3508 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3509 |
#: src/Helpers/Metas/RobotSettings.php:98
|
3510 |
msgid "Default value: "
|
3511 |
msgstr ""
|
3512 |
|
3513 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3514 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:293
|
3515 |
#: src/Helpers/Metas/RobotSettings.php:109
|
3516 |
msgid "Select a primary category"
|
3517 |
msgstr ""
|
3518 |
|
3519 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3520 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:294
|
3521 |
#: src/Helpers/Metas/RobotSettings.php:110
|
3522 |
msgid "Set the category that gets used in the %category% permalink and in our breadcrumbs if you have multiple categories."
|
3523 |
msgstr ""
|
3524 |
|
3525 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3526 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3527 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:309
|
3528 |
msgid "Custom breadcrumbs"
|
3529 |
msgstr ""
|
3530 |
|
3531 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3532 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:310
|
3533 |
msgid "Enter a custom value, useful if your title is too long"
|
3534 |
msgstr ""
|
3535 |
|
3536 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3537 |
msgid "Current breadcrumbs: %s"
|
3538 |
msgstr ""
|
3539 |
|
3540 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3541 |
#: app/react/layout/Main/components/Social/index.js:132
|
3542 |
msgid "LinkedIn, Instagram, WhatsApp and Pinterest use the same social metadata as Facebook. Twitter does the same if no Twitter cards tags are defined below."
|
3543 |
msgstr ""
|
3544 |
|
3545 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3546 |
#: app/react/layout/Main/components/Social/index.js:163
|
3547 |
msgid "Ask Facebook to update its cache"
|
3548 |
msgstr ""
|
3549 |
|
3550 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3551 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3552 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:372
|
3553 |
#: src/Helpers/Metas/SocialSettings.php:31
|
3554 |
msgid "Facebook Title"
|
3555 |
msgstr ""
|
3556 |
|
3557 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3558 |
#: src/Helpers/Metas/SocialSettings.php:28
|
3559 |
msgid "Enter your Facebook title"
|
3560 |
msgstr ""
|
3561 |
|
3562 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3563 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3564 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:383
|
3565 |
#: src/Helpers/Metas/SocialSettings.php:40
|
3566 |
msgid "Facebook description"
|
3567 |
msgstr ""
|
3568 |
|
3569 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3570 |
#: src/Helpers/Metas/SocialSettings.php:37
|
3571 |
msgid "Enter your Facebook description"
|
3572 |
msgstr ""
|
3573 |
|
3574 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3575 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3576 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:394
|
3577 |
msgid "Facebook Thumbnail"
|
3578 |
msgstr ""
|
3579 |
|
3580 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3581 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:407
|
3582 |
#: app/react/layout/Main/components/Social/Preview/index.js:247
|
3583 |
msgid "Facebook Preview"
|
3584 |
msgstr ""
|
3585 |
|
3586 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3587 |
#: app/react/layout/Main/components/Social/Preview/index.js:250
|
3588 |
msgid "This is what your post will look like in Facebook. You have to publish your post to get the Facebook Preview."
|
3589 |
msgstr ""
|
3590 |
|
3591 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3592 |
msgid "The Social Networks feature is disabled. Still seing informations from the FB Preview? You probably have social tags added by your theme or a plugin."
|
3593 |
msgstr ""
|
3594 |
|
3595 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3596 |
#: inc/admin/page-builders/elementor/inc/controls/class-social-preview-control.php:46
|
3597 |
#: app/react/layout/Main/components/Social/Preview/index.js:274
|
3598 |
msgid "File type not supported by Facebook. Please choose another image."
|
3599 |
msgstr ""
|
3600 |
|
3601 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3602 |
#: inc/admin/page-builders/elementor/inc/controls/class-social-preview-control.php:47
|
3603 |
#: app/react/layout/Main/components/Social/Preview/index.js:265
|
3604 |
msgid "Minimun size for Facebook is <strong>200x200px</strong>. Please choose another image."
|
3605 |
msgstr ""
|
3606 |
|
3607 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3608 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3609 |
#: inc/admin/page-builders/elementor/inc/controls/class-social-preview-control.php:48
|
3610 |
#: inc/admin/page-builders/elementor/inc/controls/class-social-preview-control.php:72
|
3611 |
#: app/react/layout/Main/components/Social/Preview/index.js:282
|
@@ -3613,36 +3699,36 @@ msgstr ""
|
|
3613 |
msgid "File error. Please choose another image."
|
3614 |
msgstr ""
|
3615 |
|
3616 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3617 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3618 |
#: inc/admin/page-builders/elementor/inc/controls/class-social-preview-control.php:49
|
3619 |
#: inc/admin/page-builders/elementor/inc/controls/class-social-preview-control.php:73
|
3620 |
msgid "Your image ratio is: "
|
3621 |
msgstr ""
|
3622 |
|
3623 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3624 |
#: app/react/layout/Main/components/Social/Preview/index.js:259
|
3625 |
msgid "The closer to 1.91 the better."
|
3626 |
msgstr ""
|
3627 |
|
3628 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3629 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3630 |
#: inc/admin/page-builders/elementor/inc/controls/class-social-preview-control.php:50
|
3631 |
#: inc/admin/page-builders/elementor/inc/controls/class-social-preview-control.php:74
|
3632 |
msgid "File URL is not valid."
|
3633 |
msgstr ""
|
3634 |
|
3635 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3636 |
msgid "By "
|
3637 |
msgstr ""
|
3638 |
|
3639 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3640 |
#: app/react/layout/Main/components/Social/index.js:190
|
3641 |
msgid "Preview your Twitter card using the official validator"
|
3642 |
msgstr ""
|
3643 |
|
3644 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3645 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3646 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:421
|
3647 |
#: src/Helpers/Metas/SocialSettings.php:71
|
3648 |
#: src/Services/ContentAnalysis/GetContent.php:536
|
@@ -3650,319 +3736,306 @@ msgstr ""
|
|
3650 |
msgid "Twitter Title"
|
3651 |
msgstr ""
|
3652 |
|
3653 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3654 |
#: src/Helpers/Metas/SocialSettings.php:68
|
3655 |
msgid "Enter your Twitter title"
|
3656 |
msgstr ""
|
3657 |
|
3658 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3659 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3660 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:432
|
3661 |
#: src/Helpers/Metas/SocialSettings.php:80
|
3662 |
msgid "Twitter description"
|
3663 |
msgstr ""
|
3664 |
|
3665 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3666 |
#: src/Helpers/Metas/SocialSettings.php:77
|
3667 |
msgid "Enter your Twitter description"
|
3668 |
msgstr ""
|
3669 |
|
3670 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3671 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3672 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:443
|
3673 |
#: src/Helpers/Metas/SocialSettings.php:89
|
3674 |
msgid "Twitter Thumbnail"
|
3675 |
msgstr ""
|
3676 |
|
3677 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3678 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:456
|
3679 |
#: app/react/layout/Main/components/Social/Preview/index.js:332
|
3680 |
msgid "Twitter Preview"
|
3681 |
msgstr ""
|
3682 |
|
3683 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3684 |
#: app/react/layout/Main/components/Social/Preview/index.js:335
|
3685 |
msgid "This is what your post will look like in Twitter. You have to publish your post to get the Twitter Preview."
|
3686 |
msgstr ""
|
3687 |
|
3688 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3689 |
msgid "The Social Networks feature is disabled. Still seing informations from the Twitter Preview? You probably have social tags added by your theme or a plugin."
|
3690 |
msgstr ""
|
3691 |
|
3692 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3693 |
#: inc/admin/page-builders/elementor/inc/controls/class-social-preview-control.php:70
|
3694 |
#: app/react/layout/Main/components/Social/Preview/index.js:362
|
3695 |
msgid "File type not supported by Twitter. Please choose another image."
|
3696 |
msgstr ""
|
3697 |
|
3698 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3699 |
#: inc/admin/page-builders/elementor/inc/controls/class-social-preview-control.php:71
|
3700 |
#: app/react/layout/Main/components/Social/Preview/index.js:353
|
3701 |
msgid "Minimun size for Twitter is <strong>144x144px</strong>. Please choose another image."
|
3702 |
msgstr ""
|
3703 |
|
3704 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3705 |
#: app/react/layout/Main/components/Social/Preview/index.js:344
|
3706 |
msgid "The closer to 1 the better (with large card, 2 is better)."
|
3707 |
msgstr ""
|
3708 |
|
3709 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3710 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:494
|
3711 |
msgid "Enable redirection?"
|
3712 |
msgstr ""
|
3713 |
|
3714 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3715 |
msgid "Regex?"
|
3716 |
msgstr ""
|
3717 |
|
3718 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3719 |
msgid "Select a login status: "
|
3720 |
msgstr ""
|
3721 |
|
3722 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3723 |
#: src/Helpers/Metas/RedirectionSettings.php:42
|
3724 |
msgid "All"
|
3725 |
msgstr ""
|
3726 |
|
3727 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3728 |
#: src/Helpers/Metas/RedirectionSettings.php:43
|
3729 |
msgid "Only Logged In"
|
3730 |
msgstr ""
|
3731 |
|
3732 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3733 |
#: src/Helpers/Metas/RedirectionSettings.php:44
|
3734 |
msgid "Only Not Logged In"
|
3735 |
msgstr ""
|
3736 |
|
3737 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3738 |
msgid "Select a redirection type: "
|
3739 |
msgstr ""
|
3740 |
|
3741 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3742 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:510
|
3743 |
#: src/Helpers/Metas/RedirectionSettings.php:56
|
3744 |
msgid "301 Moved Permanently"
|
3745 |
msgstr ""
|
3746 |
|
3747 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3748 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:511
|
3749 |
#: src/Helpers/Metas/RedirectionSettings.php:57
|
3750 |
msgid "302 Found / Moved Temporarily"
|
3751 |
msgstr ""
|
3752 |
|
3753 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3754 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:512
|
3755 |
#: src/Helpers/Metas/RedirectionSettings.php:58
|
3756 |
msgid "307 Moved Temporarily"
|
3757 |
msgstr ""
|
3758 |
|
3759 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3760 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:513
|
3761 |
#: src/Helpers/Metas/RedirectionSettings.php:59
|
3762 |
msgid "410 Gone"
|
3763 |
msgstr ""
|
3764 |
|
3765 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3766 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:514
|
3767 |
#: src/Helpers/Metas/RedirectionSettings.php:60
|
3768 |
msgid "451 Unavailable For Legal Reasons"
|
3769 |
msgstr ""
|
3770 |
|
3771 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3772 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3773 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:505
|
3774 |
#: src/Helpers/Metas/RedirectionSettings.php:68
|
3775 |
msgid "URL redirection"
|
3776 |
msgstr ""
|
3777 |
|
3778 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3779 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:523
|
3780 |
#: src/Helpers/Metas/RedirectionSettings.php:67
|
3781 |
msgid "Enter your new URL in absolute (eg: https://www.example.com/)"
|
3782 |
msgstr ""
|
3783 |
|
3784 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3785 |
msgid "Query parameters"
|
3786 |
msgstr ""
|
3787 |
|
3788 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3789 |
msgid "Exactly match all parameters"
|
3790 |
msgstr ""
|
3791 |
|
3792 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3793 |
msgid "Exclude all parameters"
|
3794 |
msgstr ""
|
3795 |
|
3796 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3797 |
msgid "Exclude all parameters and pass them to the redirection"
|
3798 |
msgstr ""
|
3799 |
|
3800 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3801 |
msgid "Test your URL"
|
3802 |
msgstr ""
|
3803 |
|
3804 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3805 |
msgid "Need help with your redirections? Read our guide."
|
3806 |
msgstr ""
|
3807 |
|
3808 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3809 |
msgid "Exclude this post from Google News Sitemap?"
|
3810 |
msgstr ""
|
3811 |
|
3812 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3813 |
msgid "Exclude this post from Video Sitemap?"
|
3814 |
msgstr ""
|
3815 |
|
3816 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3817 |
msgid "If your post is set to noindex, it will be automatically excluded from the sitemap."
|
3818 |
msgstr ""
|
3819 |
|
3820 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3821 |
msgid "Video "
|
3822 |
msgstr ""
|
3823 |
|
3824 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3825 |
msgid "Video URL (required)"
|
3826 |
msgstr ""
|
3827 |
|
3828 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3829 |
msgid "Enter your video URL"
|
3830 |
msgstr ""
|
3831 |
|
3832 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3833 |
msgid "Video URL"
|
3834 |
msgstr ""
|
3835 |
|
3836 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3837 |
msgid "NOT an external video (eg: video hosting on YouTube, Vimeo, Wistia...)? Check this if your video is hosting on this server."
|
3838 |
msgstr ""
|
3839 |
|
3840 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3841 |
msgid "Video Title (required)"
|
3842 |
msgstr ""
|
3843 |
|
3844 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3845 |
msgid "Enter your video title"
|
3846 |
msgstr ""
|
3847 |
|
3848 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3849 |
msgid "Video title"
|
3850 |
msgstr ""
|
3851 |
|
3852 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3853 |
msgid "Default: title tag, if not available, post title."
|
3854 |
msgstr ""
|
3855 |
|
3856 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3857 |
msgid "Video Description (required)"
|
3858 |
msgstr ""
|
3859 |
|
3860 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3861 |
msgid "Enter your video description"
|
3862 |
msgstr ""
|
3863 |
|
3864 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3865 |
msgid "Video description"
|
3866 |
msgstr ""
|
3867 |
|
3868 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3869 |
msgid "2048 characters max.; default: meta description. If not available, use the beginning of the post content."
|
3870 |
msgstr ""
|
3871 |
|
3872 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3873 |
msgid "Video Thumbnail (required)"
|
3874 |
msgstr ""
|
3875 |
|
3876 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3877 |
msgid "Select your video thumbnail"
|
3878 |
msgstr ""
|
3879 |
|
3880 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3881 |
msgid "Video Thumbnail"
|
3882 |
msgstr ""
|
3883 |
|
3884 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3885 |
msgid "Minimum size: 160x90px (1920x1080 max), JPG, PNG or GIF formats. Default: your post featured image."
|
3886 |
msgstr ""
|
3887 |
|
3888 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3889 |
msgid "Video Duration (recommended)"
|
3890 |
msgstr ""
|
3891 |
|
3892 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3893 |
msgid "Duration in seconds"
|
3894 |
msgstr ""
|
3895 |
|
3896 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3897 |
msgid "Video duration"
|
3898 |
msgstr ""
|
3899 |
|
3900 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3901 |
msgid "The duration of the video in seconds. Value must be between 0 and 28800 (8 hours)."
|
3902 |
msgstr ""
|
3903 |
|
3904 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3905 |
msgid "Video Rating"
|
3906 |
msgstr ""
|
3907 |
|
3908 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3909 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3910 |
msgid "Video rating"
|
3911 |
msgstr ""
|
3912 |
|
3913 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3914 |
msgid "Allowed values are float numbers in the range 0.0 to 5.0."
|
3915 |
msgstr ""
|
3916 |
|
3917 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3918 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3919 |
msgid "View count"
|
3920 |
msgstr ""
|
3921 |
|
3922 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3923 |
msgid "Number of views"
|
3924 |
msgstr ""
|
3925 |
|
3926 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3927 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3928 |
msgid "Video tags"
|
3929 |
msgstr ""
|
3930 |
|
3931 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3932 |
msgid "Enter your video tags"
|
3933 |
msgstr ""
|
3934 |
|
3935 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:945
|
3936 |
-
msgid "32 tags max., separate tags with commas. Default: target keywords + post tags if available."
|
3937 |
-
msgstr ""
|
3938 |
-
|
3939 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:949
|
3940 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:955
|
3941 |
-
msgid "
|
3942 |
-
msgstr ""
|
3943 |
-
|
3944 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:954
|
3945 |
-
msgid "Enter your video categories"
|
3946 |
-
msgstr ""
|
3947 |
-
|
3948 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:957
|
3949 |
-
msgid "256 characters max., usually a video will belong to a single category, separate categories with commas. Default: first post category if available."
|
3950 |
msgstr ""
|
3951 |
|
3952 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3953 |
msgid "NOT family friendly?"
|
3954 |
msgstr ""
|
3955 |
|
3956 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3957 |
msgid "The video will be available only to users with SafeSearch turned off."
|
3958 |
msgstr ""
|
3959 |
|
3960 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3961 |
#: app/react/layout/Main/components/VideoSitemap/index.js:135
|
3962 |
msgid "Remove video"
|
3963 |
msgstr ""
|
3964 |
|
3965 |
-
#: inc/admin/metaboxes/admin-metaboxes-form.php:
|
3966 |
#: app/react/layout/Main/components/VideoSitemap/index.js:165
|
3967 |
msgid "Add video"
|
3968 |
msgstr ""
|
@@ -4174,7 +4247,7 @@ msgid "Guide to create custom dimensions in Google Analytics - new window"
|
|
4174 |
msgstr ""
|
4175 |
|
4176 |
#: inc/admin/sections/Analytics.php:137
|
4177 |
-
msgid "Use Matomo to track your users with privacy in mind."
|
4178 |
msgstr ""
|
4179 |
|
4180 |
#: inc/admin/sections/Analytics.php:142
|
@@ -4190,7 +4263,7 @@ msgid "Use Microsoft Clarity to capture session recordings, get instant heatmaps
|
|
4190 |
msgstr ""
|
4191 |
|
4192 |
#: inc/admin/sections/Analytics.php:163
|
4193 |
-
msgid "Create your first Microsoft Clarity
|
4194 |
msgstr ""
|
4195 |
|
4196 |
#: inc/admin/sections/ImageSEO.php:13
|
@@ -4257,55 +4330,55 @@ msgstr ""
|
|
4257 |
msgid "Your server uses NGINX. If XML Sitemaps doesn't work properly, you need to add this rule to your configuration:"
|
4258 |
msgstr ""
|
4259 |
|
4260 |
-
#: inc/admin/sections/Sitemaps.php:
|
4261 |
msgid "<strong>Noindex content</strong> will not be displayed in Sitemaps."
|
4262 |
msgstr ""
|
4263 |
|
4264 |
-
#: inc/admin/sections/Sitemaps.php:
|
4265 |
msgid "If you disable globally this feature (using the blue toggle from above), the native WordPress XML sitemaps will be re-activated."
|
4266 |
msgstr ""
|
4267 |
|
4268 |
-
#: inc/admin/sections/Sitemaps.php:
|
4269 |
msgid "Blank sitemap?"
|
4270 |
msgstr ""
|
4271 |
|
4272 |
-
#: inc/admin/sections/Sitemaps.php:
|
4273 |
msgid "404 error?"
|
4274 |
msgstr ""
|
4275 |
|
4276 |
-
#: inc/admin/sections/Sitemaps.php:
|
4277 |
msgid "HTML error? Exclude XML and XSL from caching plugins!"
|
4278 |
msgstr ""
|
4279 |
|
4280 |
-
#: inc/admin/sections/Sitemaps.php:
|
4281 |
msgid "Add your XML sitemaps to Google Search Console (video)"
|
4282 |
msgstr ""
|
4283 |
|
4284 |
-
#: inc/admin/sections/Sitemaps.php:
|
4285 |
msgid "View your sitemap"
|
4286 |
msgstr ""
|
4287 |
|
4288 |
-
#: inc/admin/sections/Sitemaps.php:
|
4289 |
msgid "Ping Google manually"
|
4290 |
msgstr ""
|
4291 |
|
4292 |
-
#: inc/admin/sections/Sitemaps.php:
|
4293 |
msgid "Flush permalinks"
|
4294 |
msgstr ""
|
4295 |
|
4296 |
-
#: inc/admin/sections/Sitemaps.php:
|
4297 |
msgid "Create an HTML Sitemap for your visitors and boost your SEO."
|
4298 |
msgstr ""
|
4299 |
|
4300 |
-
#: inc/admin/sections/Sitemaps.php:
|
4301 |
msgid "Limited to 1,000 posts per post type. You can change the order and sorting criteria below."
|
4302 |
msgstr ""
|
4303 |
|
4304 |
-
#: inc/admin/sections/Sitemaps.php:
|
4305 |
msgid "Include/Exclude Post Types."
|
4306 |
msgstr ""
|
4307 |
|
4308 |
-
#: inc/admin/sections/Sitemaps.php:
|
4309 |
msgid "Include/Exclude Taxonomies."
|
4310 |
msgstr ""
|
4311 |
|
@@ -4660,47 +4733,47 @@ msgstr ""
|
|
4660 |
msgid "Track Logged In Users"
|
4661 |
msgstr ""
|
4662 |
|
4663 |
-
#: inc/admin/settings/Analytics.php:
|
4664 |
-
msgid "
|
4665 |
msgstr ""
|
4666 |
|
4667 |
-
#: inc/admin/settings/Analytics.php:
|
4668 |
msgid "Enter your site ID"
|
4669 |
msgstr ""
|
4670 |
|
4671 |
-
#: inc/admin/settings/Analytics.php:
|
4672 |
msgid "Track visitors across all subdomains"
|
4673 |
msgstr ""
|
4674 |
|
4675 |
-
#: inc/admin/settings/Analytics.php:
|
4676 |
msgid "Prepend the site domain"
|
4677 |
msgstr ""
|
4678 |
|
4679 |
-
#: inc/admin/settings/Analytics.php:
|
4680 |
msgid "Cross domain"
|
4681 |
msgstr ""
|
4682 |
|
4683 |
-
#: inc/admin/settings/Analytics.php:
|
4684 |
msgid "Enable DoNotTrack detection"
|
4685 |
msgstr ""
|
4686 |
|
4687 |
-
#: inc/admin/settings/Analytics.php:
|
4688 |
msgid "Disable all tracking cookies"
|
4689 |
msgstr ""
|
4690 |
|
4691 |
-
#: inc/admin/settings/Analytics.php:
|
4692 |
msgid "Download & Outlink tracking"
|
4693 |
msgstr ""
|
4694 |
|
4695 |
-
#: inc/admin/settings/Analytics.php:
|
4696 |
msgid "Disable all heatmaps and session recordings"
|
4697 |
msgstr ""
|
4698 |
|
4699 |
-
#: inc/admin/settings/Analytics.php:
|
4700 |
msgid "Enable Microsoft Clarity"
|
4701 |
msgstr ""
|
4702 |
|
4703 |
-
#: inc/admin/settings/Analytics.php:
|
4704 |
msgid "Enter your Clarity project ID"
|
4705 |
msgstr ""
|
4706 |
|
@@ -4864,7 +4937,7 @@ msgid "Migration completed!"
|
|
4864 |
msgstr ""
|
4865 |
|
4866 |
#: inc/admin/wizard/admin-wizard.php:132
|
4867 |
-
#: seopress.php:
|
4868 |
msgid "Export completed!"
|
4869 |
msgstr ""
|
4870 |
|
@@ -4896,6 +4969,8 @@ msgstr ""
|
|
4896 |
#: inc/admin/wizard/admin-wizard.php:902
|
4897 |
#: inc/admin/wizard/admin-wizard.php:993
|
4898 |
#: inc/admin/wizard/admin-wizard.php:1092
|
|
|
|
|
4899 |
msgid "Indexing"
|
4900 |
msgstr ""
|
4901 |
|
@@ -5348,27 +5423,27 @@ msgid "Manage cookies"
|
|
5348 |
msgstr ""
|
5349 |
|
5350 |
#: inc/functions/options-google-analytics.php:902
|
5351 |
-
#: inc/functions/options-matomo.php:
|
5352 |
msgid "Authors"
|
5353 |
msgstr ""
|
5354 |
|
5355 |
#: inc/functions/options-google-analytics.php:921
|
5356 |
-
#: inc/functions/options-matomo.php:
|
5357 |
msgid "Categories"
|
5358 |
msgstr ""
|
5359 |
|
5360 |
#: inc/functions/options-google-analytics.php:947
|
5361 |
-
#: inc/functions/options-matomo.php:
|
5362 |
msgid "Tags"
|
5363 |
msgstr ""
|
5364 |
|
5365 |
#: inc/functions/options-google-analytics.php:961
|
5366 |
-
#: inc/functions/options-matomo.php:
|
5367 |
msgid "Post types"
|
5368 |
msgstr ""
|
5369 |
|
5370 |
#: inc/functions/options-google-analytics.php:975
|
5371 |
-
#: inc/functions/options-matomo.php:
|
5372 |
msgid "Connected users"
|
5373 |
msgstr ""
|
5374 |
|
@@ -5448,38 +5523,46 @@ msgstr ""
|
|
5448 |
msgid "has been successfully updated!"
|
5449 |
msgstr ""
|
5450 |
|
5451 |
-
#: seopress.php:
|
|
|
|
|
|
|
|
|
5452 |
msgid "Clear"
|
5453 |
msgstr ""
|
5454 |
|
5455 |
-
#: seopress.php:
|
5456 |
msgid "Clear color"
|
5457 |
msgstr ""
|
5458 |
|
5459 |
-
#: seopress.php:
|
5460 |
msgid "Select default color"
|
5461 |
msgstr ""
|
5462 |
|
5463 |
-
#: seopress.php:
|
5464 |
msgid "Select Color"
|
5465 |
msgstr ""
|
5466 |
|
5467 |
-
#: seopress.php:
|
5468 |
msgid "Color value"
|
5469 |
msgstr ""
|
5470 |
|
5471 |
-
#: seopress.php:
|
5472 |
msgid "Docs"
|
5473 |
msgstr ""
|
5474 |
|
5475 |
-
#: seopress.php:
|
5476 |
msgid "Configuration Wizard"
|
5477 |
msgstr ""
|
5478 |
|
5479 |
-
#: seopress.php:
|
5480 |
msgid "GO PRO!"
|
5481 |
msgstr ""
|
5482 |
|
|
|
|
|
|
|
|
|
5483 |
#: src/Actions/Admin/ManageColumn.php:58
|
5484 |
msgid "Meta Desc."
|
5485 |
msgstr ""
|
@@ -5519,18 +5602,18 @@ msgstr ""
|
|
5519 |
#: src/Actions/Admin/ManageColumn.php:183
|
5520 |
#: src/Actions/Admin/ManageColumn.php:199
|
5521 |
#: src/Services/ContentAnalysis/RenderContentAnalysis.php:26
|
5522 |
-
#: app/react/layout/Main/components/ContentAnalysis/index.js:
|
5523 |
msgid "Good"
|
5524 |
msgstr ""
|
5525 |
|
5526 |
#: src/Actions/Admin/ManageColumn.php:188
|
5527 |
#: src/Actions/Admin/ManageColumn.php:204
|
5528 |
#: src/Services/ContentAnalysis/RenderContentAnalysis.php:23
|
5529 |
-
#: app/react/layout/Main/components/ContentAnalysis/index.js:
|
5530 |
msgid "Should be improved"
|
5531 |
msgstr ""
|
5532 |
|
5533 |
-
#: src/Actions/Options/Init.php:
|
5534 |
msgid "404 - Page not found"
|
5535 |
msgstr ""
|
5536 |
|
@@ -6179,17 +6262,327 @@ msgid "<strong>Should be improved:</strong> red or orange dots <br> <strong>Good
|
|
6179 |
msgstr ""
|
6180 |
|
6181 |
#: src/Services/ContentAnalysis/RenderContentAnalysis.php:37
|
6182 |
-
#: app/react/layout/Main/components/ContentAnalysis/index.js:
|
6183 |
#: app/react/layout/Main/components/SchemasManual/index.js:249
|
6184 |
msgid "Expand"
|
6185 |
msgstr ""
|
6186 |
|
6187 |
#: src/Services/ContentAnalysis/RenderContentAnalysis.php:37
|
6188 |
-
#: app/react/layout/Main/components/ContentAnalysis/index.js:
|
6189 |
#: app/react/layout/Main/components/SchemasManual/index.js:264
|
6190 |
msgid "Close"
|
6191 |
msgstr ""
|
6192 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6193 |
#: src/Services/Settings/Roles/SectionPagesSEOPress.php:38
|
6194 |
msgid "Check a user role to authorized it to edit a specific SEO page."
|
6195 |
msgstr ""
|
@@ -6367,7 +6760,7 @@ msgid "Product SKU"
|
|
6367 |
msgstr ""
|
6368 |
|
6369 |
#: app/react/components/Forms/components/Input/index.js:62
|
6370 |
-
#: app/react/components/Forms/components/Input/index.js:
|
6371 |
#: app/react/components/Forms/components/TextArea/index.js:32
|
6372 |
msgid "maximum limit"
|
6373 |
msgstr ""
|
@@ -6455,23 +6848,23 @@ msgstr ""
|
|
6455 |
msgid "Enter your description"
|
6456 |
msgstr ""
|
6457 |
|
6458 |
-
#: app/react/components/GooglePreview/index.js:
|
6459 |
msgid "The Google preview is a simulation."
|
6460 |
msgstr ""
|
6461 |
|
6462 |
-
#: app/react/components/GooglePreview/index.js:
|
6463 |
msgid "There is no reliable preview because it depends on the screen resolution, the device used, the expression sought, and Google."
|
6464 |
msgstr ""
|
6465 |
|
6466 |
-
#: app/react/components/GooglePreview/index.js:
|
6467 |
msgid "There is not one snippet for one URL but several."
|
6468 |
msgstr ""
|
6469 |
|
6470 |
-
#: app/react/components/GooglePreview/index.js:
|
6471 |
msgid "All the data in this overview comes directly from your source code."
|
6472 |
msgstr ""
|
6473 |
|
6474 |
-
#: app/react/components/GooglePreview/index.js:
|
6475 |
msgid "This is what the crawlers will see."
|
6476 |
msgstr ""
|
6477 |
|
@@ -6479,23 +6872,19 @@ msgstr ""
|
|
6479 |
msgid "Search a tag"
|
6480 |
msgstr ""
|
6481 |
|
6482 |
-
#: app/react/constants/tabs.js:
|
6483 |
msgid "Content Analysis"
|
6484 |
msgstr ""
|
6485 |
|
6486 |
-
#: app/react/constants/tabs.js:
|
6487 |
msgid "Title settings"
|
6488 |
msgstr ""
|
6489 |
|
6490 |
-
#: app/react/constants/tabs.js:
|
6491 |
-
msgid "Overview"
|
6492 |
-
msgstr ""
|
6493 |
-
|
6494 |
-
#: app/react/constants/tabs.js:96
|
6495 |
msgid "Internal Linking"
|
6496 |
msgstr ""
|
6497 |
|
6498 |
-
#: app/react/constants/tabs.js:
|
6499 |
msgid "Manual"
|
6500 |
msgstr ""
|
6501 |
|
@@ -6567,16 +6956,20 @@ msgstr ""
|
|
6567 |
msgid "Note that your images can always be indexed if they are linked from other pages."
|
6568 |
msgstr ""
|
6569 |
|
6570 |
-
#: app/react/layout/Main/components/ContentAnalysis/index.js:
|
6571 |
msgid "The keyword:"
|
6572 |
msgid_plural "These keywords:"
|
6573 |
msgstr[0] ""
|
6574 |
msgstr[1] ""
|
6575 |
|
6576 |
-
#: app/react/layout/Main/components/ContentAnalysis/index.js:
|
6577 |
msgid "You should avoid using multiple times the same keyword for different pages. Try to consolidate your content into one single page."
|
6578 |
msgstr ""
|
6579 |
|
|
|
|
|
|
|
|
|
6580 |
#: app/react/layout/Main/components/InternalLinking/index.js:47
|
6581 |
msgid "Internal links are important for SEO and user experience. Always try to link your content together, with quality link anchors."
|
6582 |
msgstr ""
|
@@ -6627,8 +7020,8 @@ msgstr ""
|
|
6627 |
msgid "Please choose an image"
|
6628 |
msgstr ""
|
6629 |
|
6630 |
-
#: app/react/layout/Main/index.js:
|
6631 |
-
#: app/react/layout/SeoBar/index.js:
|
6632 |
msgid "Loading your data"
|
6633 |
msgstr ""
|
6634 |
|
2 |
# This file is distributed under the GPLv2.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: SEOPress 5.7\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-12T12:05:10+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"
|
68 |
#: inc/admin/admin-bar/admin-bar.php:106
|
69 |
#: inc/admin/admin-features-list.php:18
|
70 |
#: inc/admin/admin.php:100
|
71 |
+
#: app/react/constants/tabs.js:28
|
72 |
msgid "Titles & Metas"
|
73 |
msgstr ""
|
74 |
|
105 |
#: inc/admin/sections/Titles.php:63
|
106 |
#: inc/admin/wizard/admin-wizard.php:234
|
107 |
#: inc/admin/wizard/admin-wizard.php:244
|
108 |
+
#: app/react/constants/tabs.js:66
|
109 |
msgid "Advanced"
|
110 |
msgstr ""
|
111 |
|
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 ""
|
134 |
|
135 |
#: inc/admin/admin-bar/admin-bar.php:172
|
136 |
+
#: inc/admin/blocks/notifications-center.php:1025
|
137 |
#: inc/admin/wizard/admin-wizard.php:261
|
138 |
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 |
|
221 |
msgstr ""
|
222 |
|
223 |
#: inc/admin/admin-dyn-variables-helper.php:9
|
224 |
+
#: inc/admin/callbacks/Sitemaps.php:328
|
225 |
#: inc/admin/callbacks/Titles.php:217
|
226 |
#: inc/admin/callbacks/Titles.php:430
|
227 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:131
|
580 |
msgid "Edit your license key."
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: inc/admin/admin-features-list.php:203
|
584 |
+
msgid "Toggle %s"
|
585 |
+
msgstr ""
|
586 |
+
|
587 |
#: inc/admin/admin-pages/Advanced.php:20
|
588 |
#: inc/admin/sections/ImageSEO.php:10
|
589 |
msgid "Image SEO"
|
671 |
|
672 |
#: inc/admin/admin-pages/InstantIndexing.php:25
|
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 |
|
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 |
msgstr ""
|
699 |
|
700 |
#: inc/admin/admin-pages/Sitemaps.php:21
|
701 |
+
#: inc/admin/sections/Sitemaps.php:125
|
702 |
msgid "HTML Sitemap"
|
703 |
msgstr ""
|
704 |
|
733 |
msgstr ""
|
734 |
|
735 |
#: inc/admin/admin-pages/Tools.php:21
|
736 |
+
#: inc/admin/admin-pages/Tools.php:47
|
737 |
msgid "Data"
|
738 |
msgstr ""
|
739 |
|
740 |
#: inc/admin/admin-pages/Tools.php:23
|
741 |
+
#: inc/admin/admin-pages/Tools.php:208
|
742 |
msgid "Plugins"
|
743 |
msgstr ""
|
744 |
|
745 |
#: inc/admin/admin-pages/Tools.php:25
|
746 |
+
msgid "Video sitemap"
|
747 |
+
msgstr ""
|
748 |
+
|
749 |
+
#: inc/admin/admin-pages/Tools.php:26
|
750 |
+
#: inc/admin/admin-pages/Tools.php:308
|
751 |
msgid "Reset"
|
752 |
msgstr ""
|
753 |
|
754 |
+
#: inc/admin/admin-pages/Tools.php:52
|
755 |
msgid "Import data from a CSV"
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: inc/admin/admin-pages/Tools.php:55
|
759 |
msgid "Upload a CSV file to quickly import post (post, page, single post type) and term metadata."
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: inc/admin/admin-pages/Tools.php:56
|
763 |
msgid "Learn how to import SEO metadata from a CSV file"
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: inc/admin/admin-pages/Tools.php:60
|
767 |
+
#: inc/admin/admin-pages/Tools.php:106
|
768 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:104
|
769 |
#: src/Helpers/ContentAnalysis.php:48
|
770 |
#: app/react/components/Forms/MetaTitleDescription/index.js:83
|
772 |
msgid "Meta title"
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: inc/admin/admin-pages/Tools.php:63
|
776 |
+
#: inc/admin/admin-pages/Tools.php:109
|
777 |
#: inc/admin/callbacks/Titles.php:60
|
778 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:143
|
779 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:144
|
788 |
msgid "Meta description"
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: inc/admin/admin-pages/Tools.php:66
|
792 |
+
#: inc/admin/admin-pages/Tools.php:112
|
793 |
msgid "Meta robots (noindex, nofollow...)"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: inc/admin/admin-pages/Tools.php:69
|
797 |
+
#: inc/admin/admin-pages/Tools.php:115
|
798 |
msgid "Facebook Open Graph tags (title, description, image)"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: inc/admin/admin-pages/Tools.php:72
|
802 |
+
#: inc/admin/admin-pages/Tools.php:118
|
803 |
msgid "Twitter cards tags (title, description, image)"
|
804 |
msgstr ""
|
805 |
|
806 |
+
#: inc/admin/admin-pages/Tools.php:75
|
807 |
+
#: inc/admin/admin-pages/Tools.php:121
|
808 |
msgid "Redirection (enable, login status, type, URL)"
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: inc/admin/admin-pages/Tools.php:78
|
812 |
+
#: inc/admin/admin-pages/Tools.php:124
|
813 |
#: inc/admin/migrate/MigrationTools.php:34
|
814 |
msgid "Primary category"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: inc/admin/admin-pages/Tools.php:81
|
818 |
+
#: inc/admin/admin-pages/Tools.php:127
|
819 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:321
|
820 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:322
|
821 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:328
|
822 |
#: inc/admin/migrate/MigrationTools.php:28
|
823 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:263
|
824 |
#: src/Helpers/ContentAnalysis.php:13
|
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"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: inc/admin/admin-pages/Tools.php:90
|
844 |
msgid "Run the importer"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: inc/admin/admin-pages/Tools.php:98
|
848 |
msgid "Export metadata to a CSV"
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: inc/admin/admin-pages/Tools.php:101
|
852 |
msgid "Export your post (post, page, single post type) and term metadata for this site as a .csv file."
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: inc/admin/admin-pages/Tools.php:102
|
856 |
msgid "Learn how to export SEO metadata to a CSV file"
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: inc/admin/admin-pages/Tools.php:138
|
860 |
+
#: inc/admin/admin-pages/Tools.php:170
|
861 |
msgid "Export"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: inc/admin/admin-pages/Tools.php:159
|
865 |
msgid "Export plugin settings"
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: inc/admin/admin-pages/Tools.php:162
|
869 |
msgid "Export the plugin settings for this site as a .json file. This allows you to easily import the configuration into another site."
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: inc/admin/admin-pages/Tools.php:178
|
873 |
msgid "Import plugin settings"
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: inc/admin/admin-pages/Tools.php:181
|
877 |
msgid "Import the plugin settings from a .json file. This file can be obtained by exporting the settings on another site using the form above."
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: inc/admin/admin-pages/Tools.php:193
|
881 |
msgid "Import"
|
882 |
msgstr ""
|
883 |
|
884 |
+
#: inc/admin/admin-pages/Tools.php:197
|
885 |
msgid "Import completed!"
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: inc/admin/admin-pages/Tools.php:211
|
889 |
msgid "Import posts and terms metadata from"
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: inc/admin/admin-pages/Tools.php:232
|
893 |
#: inc/admin/wizard/admin-wizard.php:618
|
894 |
msgid "Select an option"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: inc/admin/admin-pages/Tools.php:240
|
898 |
#: inc/admin/wizard/admin-wizard.php:626
|
899 |
msgid "You don't have to enable the selected SEO plugin to run the import."
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: inc/admin/admin-pages/Tools.php:254
|
903 |
msgid "Redirections feature is disabled. Please activate it from the <strong>PRO page</strong>."
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: inc/admin/admin-pages/Tools.php:259
|
907 |
msgid "Activate Redirections"
|
908 |
msgstr ""
|
909 |
|
910 |
#: inc/admin/admin-pages/Tools.php:274
|
911 |
+
msgid "Video XML sitemap"
|
912 |
+
msgstr ""
|
913 |
+
|
914 |
+
#: inc/admin/admin-pages/Tools.php:279
|
915 |
+
msgid "Add YouTube videos to the XML Video sitemap"
|
916 |
+
msgstr ""
|
917 |
+
|
918 |
+
#: inc/admin/admin-pages/Tools.php:281
|
919 |
+
msgid "Click the button below to automatically scan all your content for YouTube URL and add them to the video XML sitemap. We automatically add YouTube videos each time you save a post."
|
920 |
+
msgstr ""
|
921 |
+
|
922 |
+
#: inc/admin/admin-pages/Tools.php:283
|
923 |
+
msgid "Regenerate"
|
924 |
+
msgstr ""
|
925 |
+
|
926 |
+
#: inc/admin/admin-pages/Tools.php:290
|
927 |
+
msgid "XML Video sitemap feature is disabled. Please activate it from the <strong>XML sitemaps settings page</strong>."
|
928 |
+
msgstr ""
|
929 |
+
|
930 |
+
#: inc/admin/admin-pages/Tools.php:295
|
931 |
+
msgid "Activate XML Video sitemap"
|
932 |
+
msgstr ""
|
933 |
+
|
934 |
+
#: inc/admin/admin-pages/Tools.php:312
|
935 |
msgid "Reset All Notices From Notifications Center"
|
936 |
msgstr ""
|
937 |
|
938 |
+
#: inc/admin/admin-pages/Tools.php:315
|
939 |
msgid "By clicking Reset Notices, all notices in the notifications center will be set to their initial status."
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: inc/admin/admin-pages/Tools.php:321
|
943 |
msgid "Reset notices"
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: inc/admin/admin-pages/Tools.php:328
|
947 |
msgid "Reset All Settings"
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: inc/admin/admin-pages/Tools.php:332
|
951 |
msgid "<strong>WARNING:</strong> Delete all options related to this plugin in your database."
|
952 |
msgstr ""
|
953 |
|
954 |
+
#: inc/admin/admin-pages/Tools.php:339
|
955 |
msgid "Reset settings"
|
956 |
msgstr ""
|
957 |
|
992 |
msgid "A redirect is active for this URL. Turn it off to get the Google preview and content analysis."
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: inc/admin/ajax.php:130
|
996 |
msgid "To get your Google snippet preview, publish your post!"
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: inc/admin/ajax.php:132
|
1000 |
msgid "Your site is protected by an authentification. <a href=\"%s\" target=\"_blank\">Fix this</a> <span class=\"dashicons dashicons-external\"></span>"
|
1001 |
msgstr ""
|
1002 |
|
1021 |
msgid "Dismiss"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
+
#: inc/admin/blocks/insights.php:57
|
1025 |
msgid "Site overview"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: inc/admin/blocks/insights.php:68
|
1029 |
msgid "Google Analytics"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
+
#: inc/admin/blocks/insights.php:69
|
1033 |
msgid "PageSpeed"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
+
#: inc/admin/blocks/insights.php:70
|
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:134
|
1057 |
msgid "Computed from the %s Core Web Vitals metrics over the latest 28-day collection period."
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: inc/admin/blocks/insights.php:138
|
1061 |
msgid "No data available."
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: inc/admin/blocks/insights.php:143
|
1065 |
msgid "See full report"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: inc/admin/blocks/insights.php:156
|
1069 |
msgid "Sessions"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
+
#: inc/admin/blocks/insights.php:159
|
1073 |
msgid "Users"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
+
#: inc/admin/blocks/insights.php:162
|
1077 |
msgid "Page Views"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: inc/admin/blocks/insights.php:165
|
1081 |
msgid "Page view / session"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: inc/admin/blocks/insights.php:168
|
1085 |
msgid "Average session duration"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
+
#: inc/admin/blocks/insights.php:171
|
1089 |
msgid "Bounce rate"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
+
#: inc/admin/blocks/insights.php:174
|
1093 |
msgid "New sessions"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
+
#: inc/admin/blocks/insights.php:190
|
1097 |
msgid "No stats found"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: inc/admin/blocks/insights.php:199
|
1101 |
msgid "Connect Google Analytics"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
+
#: inc/admin/blocks/insights.php:215
|
1105 |
msgid "Check websites setup on your server"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
+
#: inc/admin/blocks/insights.php:224
|
1109 |
msgid "Not found"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
+
#: inc/admin/blocks/insights.php:229
|
1113 |
msgid "No scrape."
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: inc/admin/blocks/insights.php:234
|
1117 |
msgid "No domain found."
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: inc/admin/blocks/insights.php:245
|
1121 |
msgid "Server IP Address: "
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: inc/admin/blocks/insights.php:252
|
1125 |
msgid "Last scrape: "
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: inc/admin/blocks/insights.php:259
|
1129 |
msgid "Number of websites on your server: "
|
1130 |
msgstr ""
|
1131 |
|
1132 |
+
#: inc/admin/blocks/insights.php:280
|
1133 |
msgid "Get list"
|
1134 |
msgstr ""
|
1135 |
|
1179 |
#: inc/admin/blocks/notifications-center.php:58
|
1180 |
#: inc/admin/blocks/notifications-center.php:88
|
1181 |
#: inc/admin/blocks/notifications-center.php:119
|
1182 |
+
#: inc/admin/blocks/notifications-center.php:150
|
1183 |
msgid "Wizard"
|
1184 |
msgstr ""
|
1185 |
|
1208 |
msgid "Track your keywords positions and backlinks directly on your WordPress site."
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: inc/admin/blocks/notifications-center.php:147
|
1212 |
+
msgid "Talk to a SEO consultant"
|
1213 |
+
msgstr ""
|
1214 |
+
|
1215 |
+
#: inc/admin/blocks/notifications-center.php:148
|
1216 |
+
msgid "Your site is growing and you want support for your SEO strategy, increase your sales and conversions? We are there for that. Contact us!"
|
1217 |
+
msgstr ""
|
1218 |
+
|
1219 |
+
#: inc/admin/blocks/notifications-center.php:155
|
1220 |
+
msgid "Yes, please"
|
1221 |
+
msgstr ""
|
1222 |
+
|
1223 |
+
#: inc/admin/blocks/notifications-center.php:182
|
1224 |
msgid "We noticed that some SEO DIVI options are enabled!"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
+
#: inc/admin/blocks/notifications-center.php:183
|
1228 |
msgid "To avoid any SEO conflicts, please disable every SEO option from <strong>DIVI theme options page, SEO tab</strong>."
|
1229 |
msgstr ""
|
1230 |
|
1231 |
+
#: inc/admin/blocks/notifications-center.php:185
|
1232 |
+
#: inc/admin/blocks/notifications-center.php:205
|
|
|
1233 |
#: inc/admin/blocks/notifications-center.php:223
|
1234 |
+
#: inc/admin/blocks/notifications-center.php:254
|
1235 |
+
#: inc/admin/blocks/notifications-center.php:287
|
1236 |
+
#: inc/admin/blocks/notifications-center.php:332
|
1237 |
+
#: inc/admin/blocks/notifications-center.php:369
|
1238 |
+
#: inc/admin/blocks/notifications-center.php:396
|
1239 |
+
#: inc/admin/blocks/notifications-center.php:445
|
1240 |
+
#: inc/admin/blocks/notifications-center.php:465
|
1241 |
+
#: inc/admin/blocks/notifications-center.php:484
|
1242 |
+
#: inc/admin/blocks/notifications-center.php:503
|
1243 |
+
#: inc/admin/blocks/notifications-center.php:522
|
1244 |
+
#: inc/admin/blocks/notifications-center.php:574
|
1245 |
+
#: inc/admin/blocks/notifications-center.php:592
|
1246 |
+
#: inc/admin/blocks/notifications-center.php:637
|
1247 |
+
#: inc/admin/blocks/notifications-center.php:656
|
1248 |
+
#: inc/admin/blocks/notifications-center.php:673
|
1249 |
+
#: inc/admin/blocks/notifications-center.php:836
|
1250 |
+
#: inc/admin/blocks/notifications-center.php:916
|
1251 |
+
#: inc/admin/blocks/notifications-center.php:957
|
1252 |
+
#: inc/admin/blocks/notifications-center.php:975
|
1253 |
+
#: inc/admin/blocks/notifications-center.php:1072
|
1254 |
+
#: inc/admin/blocks/notifications-center.php:1102
|
1255 |
msgid "High impact"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: inc/admin/blocks/notifications-center.php:189
|
1259 |
+
#: inc/admin/blocks/notifications-center.php:209
|
1260 |
+
#: inc/admin/blocks/notifications-center.php:227
|
1261 |
+
#: inc/admin/blocks/notifications-center.php:259
|
1262 |
+
#: inc/admin/blocks/notifications-center.php:336
|
1263 |
+
#: inc/admin/blocks/notifications-center.php:400
|
1264 |
+
#: inc/admin/blocks/notifications-center.php:449
|
1265 |
+
#: inc/admin/blocks/notifications-center.php:469
|
1266 |
+
#: inc/admin/blocks/notifications-center.php:488
|
1267 |
+
#: inc/admin/blocks/notifications-center.php:507
|
1268 |
+
#: inc/admin/blocks/notifications-center.php:526
|
1269 |
+
#: inc/admin/blocks/notifications-center.php:641
|
1270 |
+
#: inc/admin/blocks/notifications-center.php:660
|
|
|
1271 |
#: inc/admin/blocks/notifications-center.php:677
|
1272 |
+
#: inc/admin/blocks/notifications-center.php:708
|
1273 |
+
#: inc/admin/blocks/notifications-center.php:777
|
1274 |
+
#: inc/admin/blocks/notifications-center.php:872
|
1275 |
+
#: inc/admin/blocks/notifications-center.php:890
|
1276 |
+
#: inc/admin/blocks/notifications-center.php:979
|
1277 |
+
#: inc/admin/blocks/notifications-center.php:998
|
1278 |
+
#: inc/admin/blocks/notifications-center.php:1106
|
1279 |
#: inc/admin/sections/InstantIndexing.php:43
|
1280 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:30
|
1281 |
msgid "Fix this!"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
+
#: inc/admin/blocks/notifications-center.php:202
|
1285 |
msgid "Your permalinks don't have a trailingslash"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
+
#: inc/admin/blocks/notifications-center.php:203
|
1289 |
msgid "To avoid any SEO issues, we recommend you to activate the \"<strong>Disable trailing slash for metas</strong>\" option from our <strong>Advanced settings page</strong>. Do not forget to clear your cache if necessary."
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: inc/admin/blocks/notifications-center.php:220
|
1293 |
msgid "Your permalinks have a trailingslash"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: inc/admin/blocks/notifications-center.php:221
|
1297 |
msgid "To avoid any SEO issues, we recommend you to de-activate the \"<strong>Disable trailing slash for metas</strong>\" option from our <strong>Advanced settings page</strong>. Do not forget to clear your cache if necessary."
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: inc/admin/blocks/notifications-center.php:251
|
1301 |
msgid "TagDiv Composer plugin doesn't use <strong>add_theme_support('title-tag');</strong>"
|
1302 |
msgstr ""
|
1303 |
|
1304 |
+
#: inc/admin/blocks/notifications-center.php:252
|
1305 |
msgid "Fix this compatibility issue to allow SEOPress generates the correct meta titles."
|
1306 |
msgstr ""
|
1307 |
|
1308 |
+
#: inc/admin/blocks/notifications-center.php:284
|
1309 |
msgid "Your theme doesn't use <strong>add_theme_support('title-tag');</strong>"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
+
#: inc/admin/blocks/notifications-center.php:285
|
1313 |
msgid "This error indicates that your theme uses a deprecated function to generate the title tag of your pages. SEOPress will not be able to generate your custom title tags if this error is not fixed."
|
1314 |
msgstr ""
|
1315 |
|
1316 |
+
#: inc/admin/blocks/notifications-center.php:292
|
1317 |
+
#: inc/admin/blocks/notifications-center.php:559
|
1318 |
+
#: inc/admin/blocks/notifications-center.php:579
|
1319 |
+
#: inc/admin/blocks/notifications-center.php:597
|
1320 |
#: inc/admin/callbacks/Analytics.php:599
|
1321 |
#: inc/admin/callbacks/Analytics.php:696
|
1322 |
#: inc/admin/callbacks/Analytics.php:724
|
1325 |
msgid "Learn more"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
+
#: inc/admin/blocks/notifications-center.php:329
|
1329 |
msgid "Your XML sitemap is cached!"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: inc/admin/blocks/notifications-center.php:330
|
1333 |
msgid "Swift Performance is caching your XML sitemap. You must disable this option to prevent any compatibility issue (Swift Performance > Settings > Caching, General tab)."
|
1334 |
msgstr ""
|
1335 |
|
1336 |
#. translators: %s name of a SEO plugin (eg: Yoast SEO)
|
1337 |
#. translators: %s name of a WP plugin (eg: IndexNow)
|
1338 |
+
#: inc/admin/blocks/notifications-center.php:366
|
1339 |
+
#: inc/admin/blocks/notifications-center.php:393
|
1340 |
#: inc/admin/sections/InstantIndexing.php:41
|
1341 |
msgid "We noticed that you use <strong>%s</strong> plugin."
|
1342 |
msgstr ""
|
1343 |
|
1344 |
+
#: inc/admin/blocks/notifications-center.php:367
|
1345 |
msgid "Do you want to migrate all your metadata to SEOPress? Do not use multiple SEO plugins at once to avoid conflicts!"
|
1346 |
msgstr ""
|
1347 |
|
1348 |
+
#: inc/admin/blocks/notifications-center.php:373
|
1349 |
msgid "Migrate!"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
+
#: inc/admin/blocks/notifications-center.php:394
|
1353 |
#: inc/admin/sections/InstantIndexing.php:42
|
1354 |
msgid "To prevent any conflicts with our Indexing feature, please disable it."
|
1355 |
msgstr ""
|
1356 |
|
1357 |
+
#: inc/admin/blocks/notifications-center.php:413
|
1358 |
msgid "You have enabled 404 cleaning BUT the scheduled task is not running."
|
1359 |
msgstr ""
|
1360 |
|
1361 |
+
#: inc/admin/blocks/notifications-center.php:414
|
1362 |
msgid "To solve this, please disable and re-enable SEOPress PRO. No data will be lost."
|
1363 |
msgstr ""
|
1364 |
|
1365 |
+
#: inc/admin/blocks/notifications-center.php:442
|
1366 |
msgid "Enfold theme is not correctly setup for SEO!"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
+
#: inc/admin/blocks/notifications-center.php:443
|
1370 |
msgid "You must disable \"Meta tag robots\" option from Enfold settings (SEO Support tab) to avoid any SEO issues."
|
1371 |
msgstr ""
|
1372 |
|
1373 |
+
#: inc/admin/blocks/notifications-center.php:462
|
1374 |
msgid "Global meta title missing for several custom post types!"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
+
#: inc/admin/blocks/notifications-center.php:481
|
1378 |
msgid "Global meta description missing for several custom post types!"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
+
#: inc/admin/blocks/notifications-center.php:500
|
1382 |
msgid "Global meta title missing for several taxonomies!"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
+
#: inc/admin/blocks/notifications-center.php:519
|
1386 |
msgid "Global meta description missing for several taxonomies!"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
+
#: inc/admin/blocks/notifications-center.php:552
|
1390 |
msgid "Your site doesn't use an SSL certificate!"
|
1391 |
msgstr ""
|
1392 |
|
1393 |
+
#: inc/admin/blocks/notifications-center.php:553
|
1394 |
msgid "Https is considered by Google as a positive signal for the ranking of your site. It also reassures your visitors for data security, and improves trust."
|
1395 |
msgstr ""
|
1396 |
|
1397 |
+
#: inc/admin/blocks/notifications-center.php:555
|
1398 |
msgid "Low impact"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
+
#: inc/admin/blocks/notifications-center.php:571
|
1402 |
msgid "PHP module \"DOM\" is missing on your server."
|
1403 |
msgstr ""
|
1404 |
|
1405 |
+
#: inc/admin/blocks/notifications-center.php:572
|
1406 |
+
#: inc/admin/blocks/notifications-center.php:590
|
1407 |
msgid "This PHP module, installed by default with PHP, is required by many plugins including SEOPress. Please contact your host as soon as possible to solve this."
|
1408 |
msgstr ""
|
1409 |
|
1410 |
+
#: inc/admin/blocks/notifications-center.php:589
|
1411 |
msgid "PHP module \"mbstring\" is missing on your server."
|
1412 |
msgstr ""
|
1413 |
|
1414 |
+
#: inc/admin/blocks/notifications-center.php:634
|
1415 |
msgid "Your site is not visible to Search Engines!"
|
1416 |
msgstr ""
|
1417 |
|
1418 |
+
#: inc/admin/blocks/notifications-center.php:635
|
1419 |
msgid "You have activated the blocking of the indexing of your site. If your site is under development, this is probably normal. Otherwise, check your settings. Delete this notification using the cross on the right if you are not concerned."
|
1420 |
msgstr ""
|
1421 |
|
1422 |
+
#: inc/admin/blocks/notifications-center.php:653
|
1423 |
msgid "Your site title is empty!"
|
1424 |
msgstr ""
|
1425 |
|
1426 |
+
#: inc/admin/blocks/notifications-center.php:654
|
1427 |
msgid "Your Site Title is used by WordPress, your theme and your plugins including SEOPress. It is an essential component in the generation of title tags, but not only. Enter one!"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
+
#: inc/admin/blocks/notifications-center.php:670
|
1431 |
msgid "Your permalinks are not SEO Friendly! Enable pretty permalinks to fix this."
|
1432 |
msgstr ""
|
1433 |
|
|
|
1434 |
#: inc/admin/blocks/notifications-center.php:671
|
1435 |
+
#: inc/admin/blocks/notifications-center.php:702
|
1436 |
msgid "Why is this important? Showing only the summary of each article significantly reduces the theft of your content by third party sites. Not to mention, the increase in your traffic, your advertising revenue, conversions..."
|
1437 |
msgstr ""
|
1438 |
|
1439 |
+
#: inc/admin/blocks/notifications-center.php:701
|
1440 |
msgid "Your RSS feed shows full text!"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
+
#: inc/admin/blocks/notifications-center.php:704
|
1444 |
+
#: inc/admin/blocks/notifications-center.php:773
|
1445 |
+
#: inc/admin/blocks/notifications-center.php:868
|
1446 |
+
#: inc/admin/blocks/notifications-center.php:886
|
1447 |
msgid "Medium impact"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: inc/admin/blocks/notifications-center.php:770
|
1451 |
msgid "You have activated Google Analytics tracking without adding identifiers!"
|
1452 |
msgstr ""
|
1453 |
|
1454 |
+
#: inc/admin/blocks/notifications-center.php:771
|
1455 |
msgid "Google Analytics will not track your visitors until you finish the configuration."
|
1456 |
msgstr ""
|
1457 |
|
1458 |
+
#: inc/admin/blocks/notifications-center.php:802
|
1459 |
msgid "You like SEOPress? Please help us by rating us 5 stars!"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: inc/admin/blocks/notifications-center.php:803
|
1463 |
msgid "Support the development and improvement of the plugin by taking 15 seconds of your time to leave us a user review on the official WordPress plugins repository. Thank you!"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
+
#: inc/admin/blocks/notifications-center.php:805
|
1467 |
msgid "Information"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
+
#: inc/admin/blocks/notifications-center.php:809
|
1471 |
msgid "Rate us!"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
+
#: inc/admin/blocks/notifications-center.php:833
|
1475 |
msgid "Break comments into pages is ON!"
|
1476 |
msgstr ""
|
1477 |
|
1478 |
+
#: inc/admin/blocks/notifications-center.php:834
|
1479 |
msgid "Enabling this option will create duplicate content for each article beyond x comments. This can have a disastrous effect by creating a large number of poor quality pages, and slowing the Google bot unnecessarily, so your ranking in search results."
|
1480 |
msgstr ""
|
1481 |
|
1482 |
+
#: inc/admin/blocks/notifications-center.php:840
|
1483 |
msgid "Disable this!"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
+
#: inc/admin/blocks/notifications-center.php:865
|
1487 |
msgid "Display more posts per page on homepage and archives"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
+
#: inc/admin/blocks/notifications-center.php:866
|
1491 |
msgid "To reduce the number pages search engines have to crawl to find all your articles, it is recommended displaying more posts per page. This should not be a problem for your users. Using mobile, we prefer to scroll down rather than clicking on next page links."
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: inc/admin/blocks/notifications-center.php:883
|
1495 |
msgid "You don't have an XML Sitemap!"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
+
#: inc/admin/blocks/notifications-center.php:884
|
1499 |
msgid "XML Sitemaps are useful to facilitate the crawling of your content by search engine robots. Indirectly, this can benefit your ranking by reducing the crawl bugdet."
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: inc/admin/blocks/notifications-center.php:913
|
1503 |
msgid "Do you have a Google My Business page? It's free!"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: inc/admin/blocks/notifications-center.php:914
|
1507 |
msgid "Local Business websites should have a My Business page to improve visibility in search results. Click on the cross on the right to delete this notification if you are not concerned."
|
1508 |
msgstr ""
|
1509 |
|
1510 |
+
#: inc/admin/blocks/notifications-center.php:920
|
1511 |
msgid "Create your page now!"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
+
#: inc/admin/blocks/notifications-center.php:954
|
1515 |
msgid "Add your site to Google. It's free!"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
+
#: inc/admin/blocks/notifications-center.php:955
|
1519 |
msgid "Is your brand new site online? So reference it as quickly as possible on Google to get your first visitors via Google Search Console. Already the case? Click on the cross on the right to remove this alert."
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: inc/admin/blocks/notifications-center.php:961
|
1523 |
msgid "Add your site to Search Console!"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
+
#: inc/admin/blocks/notifications-center.php:972
|
1527 |
msgid "Structured data types is not correctly enabled"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
+
#: inc/admin/blocks/notifications-center.php:973
|
1531 |
msgid "Please enable <strong>Structured Data Types metabox for your posts, pages and custom post types</strong> option in order to use automatic and manual schemas. (SEO > PRO > Structured Data Types (schema.org)"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
+
#: inc/admin/blocks/notifications-center.php:991
|
1535 |
msgid "You have to enter your licence key to get updates and support"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
+
#: inc/admin/blocks/notifications-center.php:992
|
1539 |
msgid "Please activate the SEOPress PRO license key to automatically receive updates to guarantee you the best user experience possible."
|
1540 |
msgstr ""
|
1541 |
|
1542 |
+
#: inc/admin/blocks/notifications-center.php:1022
|
1543 |
msgid "Take your SEO to the next level with SEOPress PRO!"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
+
#: inc/admin/blocks/notifications-center.php:1023
|
1547 |
msgid "The PRO version of SEOPress allows you to easily manage your structured data (schemas), add a breadcrumb optimized for SEO and accessibility, improve SEO for WooCommerce, gain productivity with our import / export tool from a CSV of your metadata and so much more."
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: inc/admin/blocks/notifications-center.php:1030
|
1551 |
msgid "Upgrade now!"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
+
#: inc/admin/blocks/notifications-center.php:1069
|
1555 |
msgid "A physical robots.txt file has been found"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
+
#: inc/admin/blocks/notifications-center.php:1070
|
1559 |
msgid "A robots.txt file already exists at the root of your site. We invite you to remove it so SEOPress can handle it virtually."
|
1560 |
msgstr ""
|
1561 |
|
1562 |
+
#: inc/admin/blocks/notifications-center.php:1099
|
1563 |
msgid "Your site is not indexable!"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
+
#: inc/admin/blocks/notifications-center.php:1100
|
1567 |
msgid "Your robots.txt file contains a rule that prevents search engines to index your all site: <code>Disallow: /</code>"
|
1568 |
msgstr ""
|
1569 |
|
1844 |
|
1845 |
#: inc/admin/callbacks/Analytics.php:30
|
1846 |
#: inc/admin/settings/Analytics.php:24
|
1847 |
+
#: inc/admin/settings/Analytics.php:482
|
1848 |
msgid "Enter your tracking ID"
|
1849 |
msgstr ""
|
1850 |
|
2209 |
msgstr ""
|
2210 |
|
2211 |
#: inc/admin/callbacks/Analytics.php:796
|
2212 |
+
#: inc/admin/callbacks/Analytics.php:1205
|
2213 |
msgid "Enter your domains: seopress.org,sub.seopress.org,sub2.seopress.org"
|
2214 |
msgstr ""
|
2215 |
|
2216 |
#: inc/admin/callbacks/Analytics.php:796
|
2217 |
+
#: inc/admin/callbacks/Analytics.php:1206
|
2218 |
#: inc/admin/settings/Analytics.php:315
|
2219 |
msgid "Cross domains"
|
2220 |
msgstr ""
|
2276 |
msgid "Custom Dimension #%d"
|
2277 |
msgstr ""
|
2278 |
|
2279 |
+
#: inc/admin/callbacks/Analytics.php:1034
|
2280 |
+
#: inc/admin/settings/Analytics.php:466
|
2281 |
+
msgid "Enable Matomo tracking"
|
2282 |
+
msgstr ""
|
2283 |
+
|
2284 |
+
#: inc/admin/callbacks/Analytics.php:1036
|
2285 |
+
msgid "A Matomo Cloud account or a self hosted Matomo installation is required."
|
2286 |
+
msgstr ""
|
2287 |
+
|
2288 |
+
#: inc/admin/callbacks/Analytics.php:1058
|
2289 |
+
msgid "Yes, self-hosted installation"
|
2290 |
+
msgstr ""
|
2291 |
+
|
2292 |
+
#: inc/admin/callbacks/Analytics.php:1060
|
2293 |
+
msgid "If you use Matomo Cloud, uncheck this option."
|
2294 |
+
msgstr ""
|
2295 |
+
|
2296 |
+
#: inc/admin/callbacks/Analytics.php:1064
|
2297 |
+
msgid "Learn how to install Matomo On-Premise on your server."
|
2298 |
msgstr ""
|
2299 |
|
2300 |
+
#: inc/admin/callbacks/Analytics.php:1080
|
2301 |
+
msgid "Matomo URL (Cloud or Self-hosted)"
|
2302 |
msgstr ""
|
2303 |
|
2304 |
+
#: inc/admin/callbacks/Analytics.php:1095
|
2305 |
msgid "Enter your site ID here"
|
2306 |
msgstr ""
|
2307 |
|
2308 |
+
#: inc/admin/callbacks/Analytics.php:1096
|
2309 |
msgid "Matomo Site ID"
|
2310 |
msgstr ""
|
2311 |
|
2312 |
+
#: inc/admin/callbacks/Analytics.php:1101
|
2313 |
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."
|
2314 |
msgstr ""
|
2315 |
|
2316 |
+
#: inc/admin/callbacks/Analytics.php:1102
|
2317 |
+
msgid "For self-hosted installations, go to your Matomo administration, Settings, Websites, Manage. From the list of your websites, find the ID line."
|
2318 |
+
msgstr ""
|
2319 |
+
|
2320 |
+
#: inc/admin/callbacks/Analytics.php:1119
|
2321 |
msgid "Tracking one domain and its subdomains in the same website"
|
2322 |
msgstr ""
|
2323 |
|
2324 |
+
#: inc/admin/callbacks/Analytics.php:1123
|
2325 |
msgid "If one visitor visits x.example.com and y.example.com, they will be counted as a unique visitor."
|
2326 |
msgstr ""
|
2327 |
|
2328 |
+
#: inc/admin/callbacks/Analytics.php:1142
|
2329 |
msgid "Prepend the site domain to the page title when tracking"
|
2330 |
msgstr ""
|
2331 |
|
2332 |
+
#: inc/admin/callbacks/Analytics.php:1145
|
2333 |
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."
|
2334 |
msgstr ""
|
2335 |
|
2336 |
+
#: inc/admin/callbacks/Analytics.php:1163
|
2337 |
+
#: inc/admin/settings/Analytics.php:514
|
2338 |
msgid "Track users with JavaScript disabled"
|
2339 |
msgstr ""
|
2340 |
|
2341 |
+
#: inc/admin/callbacks/Analytics.php:1182
|
2342 |
+
#: inc/admin/settings/Analytics.php:522
|
2343 |
msgid "Enables cross domain linking"
|
2344 |
msgstr ""
|
2345 |
|
2346 |
+
#: inc/admin/callbacks/Analytics.php:1186
|
2347 |
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."
|
2348 |
msgstr ""
|
2349 |
|
2350 |
+
#: inc/admin/callbacks/Analytics.php:1189
|
2351 |
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."
|
2352 |
msgstr ""
|
2353 |
|
2354 |
+
#: inc/admin/callbacks/Analytics.php:1192
|
2355 |
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."
|
2356 |
msgstr ""
|
2357 |
|
2358 |
+
#: inc/admin/callbacks/Analytics.php:1219
|
2359 |
msgid "Enable client side DoNotTrack detection"
|
2360 |
msgstr ""
|
2361 |
|
2362 |
+
#: inc/admin/callbacks/Analytics.php:1223
|
2363 |
msgid "Tracking requests will not be sent if visitors do not wish to be tracked."
|
2364 |
msgstr ""
|
2365 |
|
2366 |
+
#: inc/admin/callbacks/Analytics.php:1243
|
2367 |
msgid "Disables all first party cookies. Existing Matomo cookies for this website will be deleted on the next page view."
|
2368 |
msgstr ""
|
2369 |
|
2370 |
+
#: inc/admin/callbacks/Analytics.php:1262
|
2371 |
msgid "Enabling Download & Outlink tracking"
|
2372 |
msgstr ""
|
2373 |
|
2374 |
+
#: inc/admin/callbacks/Analytics.php:1266
|
2375 |
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"
|
2376 |
msgstr ""
|
2377 |
|
2378 |
+
#: inc/admin/callbacks/Analytics.php:1285
|
2379 |
msgid "Disabling all heatmaps and session recordings"
|
2380 |
msgstr ""
|
2381 |
|
2382 |
+
#: inc/admin/callbacks/Analytics.php:1303
|
2383 |
msgid "Add Microsoft Clarity code to your site"
|
2384 |
msgstr ""
|
2385 |
|
2386 |
+
#: inc/admin/callbacks/Analytics.php:1317
|
2387 |
msgid "Enter your Project ID"
|
2388 |
msgstr ""
|
2389 |
|
2390 |
+
#: inc/admin/callbacks/Analytics.php:1324
|
2391 |
msgid "Find your project ID"
|
2392 |
msgstr ""
|
2393 |
|
2539 |
msgid "Guide to enable XML video sitemaps - new window"
|
2540 |
msgstr ""
|
2541 |
|
2542 |
+
#: inc/admin/callbacks/Sitemaps.php:81
|
2543 |
msgid "Your video sitemap is empty? Read our guide to learn more about <a href=\"%s\" target=\"_blank\">adding videos to your sitemap.</a>"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
+
#: inc/admin/callbacks/Sitemaps.php:82
|
2547 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:812
|
2548 |
+
msgid "YouTube videos are automatically added when you create / save a post, page or post type."
|
2549 |
+
msgstr ""
|
2550 |
+
|
2551 |
+
#: inc/admin/callbacks/Sitemaps.php:83
|
2552 |
+
msgid "<a href=\"%s\">Regenerate automatic XML Video sitemap for YouTube?</a>"
|
2553 |
+
msgstr ""
|
2554 |
+
|
2555 |
+
#: inc/admin/callbacks/Sitemaps.php:105
|
2556 |
#: inc/admin/settings/Sitemaps.php:42
|
2557 |
msgid "Enable Author Sitemap"
|
2558 |
msgstr ""
|
2559 |
|
2560 |
+
#: inc/admin/callbacks/Sitemaps.php:109
|
2561 |
msgid "Make sure to enable author archive from SEO, titles and metas, archives tab.</a>"
|
2562 |
msgstr ""
|
2563 |
|
2564 |
+
#: inc/admin/callbacks/Sitemaps.php:132
|
2565 |
#: inc/admin/settings/Sitemaps.php:50
|
2566 |
msgid "Enable HTML Sitemap"
|
2567 |
msgstr ""
|
2568 |
|
2569 |
+
#: inc/admin/callbacks/Sitemaps.php:135
|
2570 |
+
#: inc/admin/sections/Sitemaps.php:140
|
2571 |
msgid "Guide to enable a HTML Sitemap - new window"
|
2572 |
msgstr ""
|
2573 |
|
2574 |
+
#: inc/admin/callbacks/Sitemaps.php:183
|
2575 |
+
#: inc/admin/callbacks/Sitemaps.php:241
|
2576 |
msgid "Include"
|
2577 |
msgstr ""
|
2578 |
|
2579 |
+
#: inc/admin/callbacks/Sitemaps.php:189
|
2580 |
msgid "You should never include <strong>attachment</strong> post type in your sitemap. Be careful if you checked this."
|
2581 |
msgstr ""
|
2582 |
|
2583 |
+
#: inc/admin/callbacks/Sitemaps.php:259
|
2584 |
msgid "eg: 2, 28, 68"
|
2585 |
msgstr ""
|
2586 |
|
2587 |
+
#: inc/admin/callbacks/Sitemaps.php:259
|
2588 |
#: inc/admin/settings/Sitemaps.php:98
|
2589 |
msgid "Enter a post, page or custom post type ID(s) to display the sitemap"
|
2590 |
msgstr ""
|
2591 |
|
2592 |
+
#: inc/admin/callbacks/Sitemaps.php:264
|
2593 |
msgid "You can also use this shortcode:"
|
2594 |
msgstr ""
|
2595 |
|
2596 |
+
#: inc/admin/callbacks/Sitemaps.php:269
|
2597 |
msgid "To include specific custom post types, use the CPT attribute:"
|
2598 |
msgstr ""
|
2599 |
|
2600 |
+
#: inc/admin/callbacks/Sitemaps.php:283
|
2601 |
msgid "eg: 13, 8, 38"
|
2602 |
msgstr ""
|
2603 |
|
2604 |
+
#: inc/admin/callbacks/Sitemaps.php:283
|
2605 |
#: inc/admin/settings/Sitemaps.php:106
|
2606 |
msgid "Exclude some Posts, Pages, Custom Post Types or Terms IDs"
|
2607 |
msgstr ""
|
2608 |
|
2609 |
+
#: inc/admin/callbacks/Sitemaps.php:298
|
2610 |
msgid "DESC (descending order from highest to lowest values (3, 2, 1; c, b, a))"
|
2611 |
msgstr ""
|
2612 |
|
2613 |
+
#: inc/admin/callbacks/Sitemaps.php:303
|
2614 |
msgid "ASC (ascending order from lowest to highest values (1, 2, 3; a, b, c))"
|
2615 |
msgstr ""
|
2616 |
|
2617 |
+
#: inc/admin/callbacks/Sitemaps.php:323
|
2618 |
msgid "Default (date)"
|
2619 |
msgstr ""
|
2620 |
|
2621 |
+
#: inc/admin/callbacks/Sitemaps.php:333
|
2622 |
msgid "Modified date"
|
2623 |
msgstr ""
|
2624 |
|
2625 |
+
#: inc/admin/callbacks/Sitemaps.php:338
|
2626 |
msgid "Post ID"
|
2627 |
msgstr ""
|
2628 |
|
2629 |
+
#: inc/admin/callbacks/Sitemaps.php:343
|
2630 |
msgid "Menu order"
|
2631 |
msgstr ""
|
2632 |
|
2633 |
+
#: inc/admin/callbacks/Sitemaps.php:365
|
2634 |
msgid "Disable date after each post, page, post type?"
|
2635 |
msgstr ""
|
2636 |
|
2637 |
+
#: inc/admin/callbacks/Sitemaps.php:386
|
2638 |
msgid "Remove links from archive pages (eg: Products)"
|
2639 |
msgstr ""
|
2640 |
|
2641 |
#: inc/admin/callbacks/Social.php:15
|
2642 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:346
|
2643 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:286
|
2644 |
#: inc/admin/wizard/admin-wizard.php:714
|
2645 |
#: src/Helpers/Metas/RobotSettings.php:19
|
2680 |
#: inc/admin/callbacks/Social.php:306
|
2681 |
#: inc/admin/callbacks/Social.php:382
|
2682 |
#: inc/admin/callbacks/Social.php:524
|
2683 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:430
|
2684 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:550
|
2685 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:905
|
2686 |
#: inc/admin/wizard/admin-wizard.php:745
|
2687 |
msgid "Upload an Image"
|
2688 |
msgstr ""
|
2828 |
#: inc/admin/callbacks/Social.php:298
|
2829 |
#: inc/admin/callbacks/Social.php:375
|
2830 |
#: inc/admin/callbacks/Social.php:521
|
2831 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:415
|
2832 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:535
|
2833 |
#: src/Helpers/Metas/SocialSettings.php:46
|
2834 |
#: src/Helpers/Metas/SocialSettings.php:86
|
2835 |
msgid "Select your default thumbnail"
|
2836 |
msgstr ""
|
2837 |
|
2838 |
#: inc/admin/callbacks/Social.php:308
|
2839 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:420
|
2840 |
#: src/Helpers/Metas/SocialSettings.php:51
|
2841 |
msgid "Minimum size: 200x200px, ideal ratio 1.91:1, 8Mb max. (eg: 1640x856px or 3280x1712px for retina screens)"
|
2842 |
msgstr ""
|
2891 |
msgstr ""
|
2892 |
|
2893 |
#: inc/admin/callbacks/Social.php:527
|
2894 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:539
|
2895 |
#: src/Helpers/Metas/SocialSettings.php:91
|
2896 |
msgid "Minimum size: 144x144px (300x157px with large card enabled), ideal ratio 1:1 (2:1 with large card), 5Mb max."
|
2897 |
msgstr ""
|
2898 |
|
2899 |
#: inc/admin/callbacks/Social.php:546
|
2900 |
+
#: seopress.php:407
|
2901 |
msgid "Default"
|
2902 |
msgstr ""
|
2903 |
|
2992 |
msgstr ""
|
2993 |
|
2994 |
#: inc/admin/callbacks/Titles.php:303
|
2995 |
+
msgid "This custom post type is <strong>NOT</strong> excluded from your XML sitemaps despite the fact that it is set to <strong>NOINDEX</strong>. We recommend that you <a href=\"%s\">check this out here</a>."
|
2996 |
msgstr ""
|
2997 |
|
2998 |
#: inc/admin/callbacks/Titles.php:332
|
3225 |
msgid "eg: https://example.com/my-media-attachment-page"
|
3226 |
msgstr ""
|
3227 |
|
3228 |
+
#: inc/admin/docs/DocsLinks.php:152
|
3229 |
msgid "Installation of SEOPress"
|
3230 |
msgstr ""
|
3231 |
|
3232 |
+
#: inc/admin/docs/DocsLinks.php:153
|
3233 |
msgid "Activate your license key to receive automatic updates"
|
3234 |
msgstr ""
|
3235 |
|
3236 |
+
#: inc/admin/docs/DocsLinks.php:154
|
3237 |
msgid "Configure SEOPress in 5 minutes"
|
3238 |
msgstr ""
|
3239 |
|
3240 |
+
#: inc/admin/docs/DocsLinks.php:155
|
3241 |
msgid "Migrate your SEO metadata from other plugins"
|
3242 |
msgstr ""
|
3243 |
|
3244 |
+
#: inc/admin/docs/DocsLinks.php:156
|
3245 |
msgid "Promote the exploration of your WordPress site by search engine robots"
|
3246 |
msgstr ""
|
3247 |
|
3248 |
+
#: inc/admin/docs/DocsLinks.php:157
|
3249 |
msgid "Optimize content from A to Z with SEOPress"
|
3250 |
msgstr ""
|
3251 |
|
3252 |
+
#: inc/admin/docs/DocsLinks.php:158
|
3253 |
msgid "Measure your traffic with Google Analytics"
|
3254 |
msgstr ""
|
3255 |
|
3256 |
+
#: inc/admin/docs/DocsLinks.php:159
|
3257 |
msgid "Add your WordPress site to Google’s index"
|
3258 |
msgstr ""
|
3259 |
|
3260 |
+
#: inc/admin/docs/DocsLinks.php:160
|
3261 |
msgid "Optimize your click-through rate on social networks"
|
3262 |
msgstr ""
|
3263 |
|
3306 |
msgstr ""
|
3307 |
|
3308 |
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:16
|
3309 |
+
#: app/react/constants/tabs.js:90
|
3310 |
+
msgid "Overview"
|
3311 |
+
msgstr ""
|
3312 |
+
|
3313 |
+
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:17
|
3314 |
+
#: app/react/constants/tabs.js:97
|
3315 |
+
msgid "Inspect with Google"
|
3316 |
+
msgstr ""
|
3317 |
+
|
3318 |
+
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:22
|
3319 |
+
#: app/react/layout/Main/components/ContentAnalysis/index.js:340
|
3320 |
msgid "Enter a few keywords for analysis to help you write optimized content."
|
3321 |
msgstr ""
|
3322 |
|
3323 |
+
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:30
|
3324 |
+
#: app/react/layout/Main/components/ContentAnalysis/index.js:356
|
3325 |
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."
|
3326 |
msgstr ""
|
3327 |
|
3328 |
+
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:35
|
3329 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:568
|
3330 |
+
#: app/react/layout/Main/components/ContentAnalysis/index.js:370
|
3331 |
msgid "Separate target keywords with commas. Do not use spaces after the commas, unless you want to include them"
|
3332 |
msgstr ""
|
3333 |
|
3334 |
+
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:38
|
3335 |
+
#: app/react/layout/Main/components/ContentAnalysis/index.js:423
|
3336 |
msgid "Enter your target keywords"
|
3337 |
msgstr ""
|
3338 |
|
3339 |
+
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:46
|
3340 |
msgid "Analyze my content"
|
3341 |
msgstr ""
|
3342 |
|
3343 |
+
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:51
|
3344 |
#: inc/admin/page-builders/elementor/inc/controls/class-content-analysis-control.php:46
|
3345 |
+
#: app/react/layout/Main/components/ContentAnalysis/index.js:438
|
3346 |
msgid "Refresh analysis"
|
3347 |
msgstr ""
|
3348 |
|
3349 |
+
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:59
|
3350 |
msgid "Track with Insights"
|
3351 |
msgstr ""
|
3352 |
|
3353 |
+
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:65
|
3354 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:592
|
3355 |
+
#: app/react/layout/Main/components/ContentAnalysis/index.js:441
|
3356 |
msgid "To get the most accurate analysis, save your post first. We analyze all of your source code as a search engine would."
|
3357 |
msgstr ""
|
3358 |
|
3359 |
+
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:72
|
3360 |
+
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:73
|
3361 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:579
|
3362 |
#: inc/admin/page-builders/elementor/inc/controls/class-google-suggestions-control.php:50
|
3363 |
#: inc/admin/page-builders/elementor/inc/controls/class-google-suggestions-control.php:51
|
3364 |
+
#: app/react/layout/Main/components/ContentAnalysis/index.js:451
|
3365 |
+
#: app/react/layout/Main/components/ContentAnalysis/index.js:453
|
3366 |
msgid "Google suggestions"
|
3367 |
msgstr ""
|
3368 |
|
3369 |
+
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:73
|
3370 |
#: inc/admin/page-builders/elementor/inc/controls/class-google-suggestions-control.php:51
|
3371 |
+
#: app/react/layout/Main/components/ContentAnalysis/index.js:456
|
3372 |
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."
|
3373 |
msgstr ""
|
3374 |
|
3375 |
+
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:76
|
3376 |
#: inc/admin/page-builders/elementor/inc/controls/class-google-suggestions-control.php:52
|
3377 |
+
#: app/react/layout/Main/components/ContentAnalysis/index.js:469
|
3378 |
msgid "Get suggestions from Google"
|
3379 |
msgstr ""
|
3380 |
|
3381 |
+
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:78
|
3382 |
msgid "Click on a suggestion below to add it as a target keyword."
|
3383 |
msgstr ""
|
3384 |
|
3385 |
+
#: inc/admin/metaboxes/admin-metaboxes-content-analysis-form.php:82
|
3386 |
#: inc/admin/page-builders/elementor/inc/controls/class-google-suggestions-control.php:53
|
3387 |
+
#: app/react/layout/Main/components/ContentAnalysis/index.js:492
|
3388 |
msgid "Get suggestions!"
|
3389 |
msgstr ""
|
3390 |
|
3393 |
msgstr ""
|
3394 |
|
3395 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:54
|
3396 |
+
#: app/react/constants/tabs.js:60
|
3397 |
msgid "Social"
|
3398 |
msgstr ""
|
3399 |
|
3400 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:58
|
3401 |
+
#: app/react/constants/tabs.js:72
|
3402 |
msgid "Redirection"
|
3403 |
msgstr ""
|
3404 |
|
3405 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:64
|
3406 |
+
#: app/react/constants/tabs.js:78
|
3407 |
msgid "Google News"
|
3408 |
msgstr ""
|
3409 |
|
3410 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:71
|
3411 |
+
#: app/react/constants/tabs.js:84
|
3412 |
msgid "Video Sitemap"
|
3413 |
msgstr ""
|
3414 |
|
3470 |
|
3471 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:187
|
3472 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:150
|
3473 |
+
#: app/react/components/GooglePreview/index.js:200
|
3474 |
msgid "Google Snippet Preview"
|
3475 |
msgstr ""
|
3476 |
|
3477 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:188
|
3478 |
+
#: app/react/components/GooglePreview/index.js:202
|
3479 |
msgid "Snippet Preview"
|
3480 |
msgstr ""
|
3481 |
|
3484 |
msgstr ""
|
3485 |
|
3486 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:191
|
3487 |
+
#: app/react/components/GooglePreview/index.js:234
|
3488 |
+
msgid "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."
|
3489 |
msgstr ""
|
3490 |
|
3491 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:196
|
3492 |
#: inc/admin/page-builders/elementor/inc/controls/class-social-preview-control.php:95
|
3493 |
+
#: app/react/components/GooglePreview/index.js:252
|
3494 |
msgid "Mobile Preview"
|
3495 |
msgstr ""
|
3496 |
|
3497 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:253
|
3498 |
#: app/react/layout/Main/components/Advanced/index.js:49
|
3499 |
msgid "Meta robots settings"
|
3500 |
msgstr ""
|
3501 |
|
3502 |
#. translators: %s: link to plugin settings page
|
3503 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:257
|
3504 |
#: app/react/layout/Main/components/Advanced/MetaRobotCheckboxSettings/index.js:174
|
3505 |
msgid "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>"
|
3506 |
msgstr ""
|
3507 |
|
3508 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:266
|
3509 |
#: inc/functions/options-advanced-admin.php:787
|
3510 |
msgid "Do not display this page in search engine results / XML - HTML sitemaps <strong>(noindex)</strong>"
|
3511 |
msgstr ""
|
3512 |
|
3513 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:267
|
3514 |
#: app/react/layout/Main/components/Advanced/MetaRobotCheckboxSettings/index.js:22
|
3515 |
msgid "\"noindex\" robots meta tag"
|
3516 |
msgstr ""
|
3517 |
|
3518 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:267
|
3519 |
msgid "By checking this option, you will add a meta robots tag with the value \"noindex\". <br>Search engines will not index this URL in the search results."
|
3520 |
msgstr ""
|
3521 |
|
3522 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:277
|
3523 |
#: inc/functions/options-advanced-admin.php:795
|
3524 |
msgid "Do not follow links for this page <strong>(nofollow)</strong>"
|
3525 |
msgstr ""
|
3526 |
|
3527 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:278
|
3528 |
#: app/react/layout/Main/components/Advanced/MetaRobotCheckboxSettings/index.js:47
|
3529 |
msgid "\"nofollow\" robots meta tag"
|
3530 |
msgstr ""
|
3531 |
|
3532 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:278
|
3533 |
msgid "By checking this option, you will add a meta robots tag with the value \"nofollow\". <br>Search engines will not follow links from this URL."
|
3534 |
msgstr ""
|
3535 |
|
3536 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:287
|
3537 |
msgid "Do not use Open Directory project metadata for titles or excerpts for this page <strong>(noodp)</strong>"
|
3538 |
msgstr ""
|
3539 |
|
3540 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:288
|
3541 |
#: app/react/layout/Main/components/Advanced/MetaRobotCheckboxSettings/index.js:75
|
3542 |
msgid "\"noodp\" robots meta tag"
|
3543 |
msgstr ""
|
3544 |
|
3545 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:288
|
3546 |
msgid "By checking this option, you will add a meta robots tag with the value \"noodp\". <br>Note that Google and Yahoo have stopped considering this tag since the closing of DMOZ directory."
|
3547 |
msgstr ""
|
3548 |
|
3549 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:296
|
3550 |
msgid "Do not index images for this page <strong>(noimageindex)</strong>"
|
3551 |
msgstr ""
|
3552 |
|
3553 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:297
|
3554 |
#: app/react/layout/Main/components/Advanced/MetaRobotCheckboxSettings/index.js:146
|
3555 |
msgid "\"noimageindex\" robots meta tag"
|
3556 |
msgstr ""
|
3557 |
|
3558 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:297
|
3559 |
msgid "By checking this option, you will add a meta robots tag with the value \"noimageindex\". <br> Note that your images can always be indexed if they are linked from other pages."
|
3560 |
msgstr ""
|
3561 |
|
3562 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:305
|
3563 |
msgid "Do not display a \"Cached\" link in the Google search results <strong>(noarchive)</strong>"
|
3564 |
msgstr ""
|
3565 |
|
3566 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:306
|
3567 |
#: app/react/layout/Main/components/Advanced/MetaRobotCheckboxSettings/index.js:103
|
3568 |
msgid "\"noarchive\" robots meta tag"
|
3569 |
msgstr ""
|
3570 |
|
3571 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:306
|
3572 |
#: app/react/layout/Main/components/Advanced/MetaRobotCheckboxSettings/index.js:106
|
3573 |
msgid "By checking this option, you will add a meta robots tag with the value \"noarchive\"."
|
3574 |
msgstr ""
|
3575 |
|
3576 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:314
|
3577 |
msgid "Do not display a description in search results for this page <strong>(nosnippet)</strong>"
|
3578 |
msgstr ""
|
3579 |
|
3580 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:315
|
3581 |
#: app/react/layout/Main/components/Advanced/MetaRobotCheckboxSettings/index.js:126
|
3582 |
msgid "\"nosnippet\" robots meta tag"
|
3583 |
msgstr ""
|
3584 |
|
3585 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:315
|
3586 |
#: app/react/layout/Main/components/Advanced/MetaRobotCheckboxSettings/index.js:129
|
3587 |
msgid "By checking this option, you will add a meta robots tag with the value \"nosnippet\"."
|
3588 |
msgstr ""
|
3589 |
|
3590 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:322
|
3591 |
msgid "A canonical URL is the URL of the page that Google thinks is most representative from a set of duplicate pages on your site. <br>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. <br>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."
|
3592 |
msgstr ""
|
3593 |
|
3594 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:327
|
3595 |
#: src/Helpers/Metas/RobotSettings.php:98
|
3596 |
msgid "Default value: "
|
3597 |
msgstr ""
|
3598 |
|
3599 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:334
|
3600 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:293
|
3601 |
#: src/Helpers/Metas/RobotSettings.php:109
|
3602 |
msgid "Select a primary category"
|
3603 |
msgstr ""
|
3604 |
|
3605 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:335
|
3606 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:294
|
3607 |
#: src/Helpers/Metas/RobotSettings.php:110
|
3608 |
msgid "Set the category that gets used in the %category% permalink and in our breadcrumbs if you have multiple categories."
|
3609 |
msgstr ""
|
3610 |
|
3611 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:359
|
3612 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:366
|
3613 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:309
|
3614 |
msgid "Custom breadcrumbs"
|
3615 |
msgstr ""
|
3616 |
|
3617 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:360
|
3618 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:310
|
3619 |
msgid "Enter a custom value, useful if your title is too long"
|
3620 |
msgstr ""
|
3621 |
|
3622 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:365
|
3623 |
msgid "Current breadcrumbs: %s"
|
3624 |
msgstr ""
|
3625 |
|
3626 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:382
|
3627 |
#: app/react/layout/Main/components/Social/index.js:132
|
3628 |
msgid "LinkedIn, Instagram, WhatsApp and Pinterest use the same social metadata as Facebook. Twitter does the same if no Twitter cards tags are defined below."
|
3629 |
msgstr ""
|
3630 |
|
3631 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:391
|
3632 |
#: app/react/layout/Main/components/Social/index.js:163
|
3633 |
msgid "Ask Facebook to update its cache"
|
3634 |
msgstr ""
|
3635 |
|
3636 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:395
|
3637 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:399
|
3638 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:372
|
3639 |
#: src/Helpers/Metas/SocialSettings.php:31
|
3640 |
msgid "Facebook Title"
|
3641 |
msgstr ""
|
3642 |
|
3643 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:398
|
3644 |
#: src/Helpers/Metas/SocialSettings.php:28
|
3645 |
msgid "Enter your Facebook title"
|
3646 |
msgstr ""
|
3647 |
|
3648 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:403
|
3649 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:407
|
3650 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:383
|
3651 |
#: src/Helpers/Metas/SocialSettings.php:40
|
3652 |
msgid "Facebook description"
|
3653 |
msgstr ""
|
3654 |
|
3655 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:406
|
3656 |
#: src/Helpers/Metas/SocialSettings.php:37
|
3657 |
msgid "Enter your Facebook description"
|
3658 |
msgstr ""
|
3659 |
|
3660 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:411
|
3661 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:416
|
3662 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:394
|
3663 |
msgid "Facebook Thumbnail"
|
3664 |
msgstr ""
|
3665 |
|
3666 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:436
|
3667 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:407
|
3668 |
#: app/react/layout/Main/components/Social/Preview/index.js:247
|
3669 |
msgid "Facebook Preview"
|
3670 |
msgstr ""
|
3671 |
|
3672 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:440
|
3673 |
#: app/react/layout/Main/components/Social/Preview/index.js:250
|
3674 |
msgid "This is what your post will look like in Facebook. You have to publish your post to get the Facebook Preview."
|
3675 |
msgstr ""
|
3676 |
|
3677 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:444
|
3678 |
msgid "The Social Networks feature is disabled. Still seing informations from the FB Preview? You probably have social tags added by your theme or a plugin."
|
3679 |
msgstr ""
|
3680 |
|
3681 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:449
|
3682 |
#: inc/admin/page-builders/elementor/inc/controls/class-social-preview-control.php:46
|
3683 |
#: app/react/layout/Main/components/Social/Preview/index.js:274
|
3684 |
msgid "File type not supported by Facebook. Please choose another image."
|
3685 |
msgstr ""
|
3686 |
|
3687 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:453
|
3688 |
#: inc/admin/page-builders/elementor/inc/controls/class-social-preview-control.php:47
|
3689 |
#: app/react/layout/Main/components/Social/Preview/index.js:265
|
3690 |
msgid "Minimun size for Facebook is <strong>200x200px</strong>. Please choose another image."
|
3691 |
msgstr ""
|
3692 |
|
3693 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:457
|
3694 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:574
|
3695 |
#: inc/admin/page-builders/elementor/inc/controls/class-social-preview-control.php:48
|
3696 |
#: inc/admin/page-builders/elementor/inc/controls/class-social-preview-control.php:72
|
3697 |
#: app/react/layout/Main/components/Social/Preview/index.js:282
|
3699 |
msgid "File error. Please choose another image."
|
3700 |
msgstr ""
|
3701 |
|
3702 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:461
|
3703 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:578
|
3704 |
#: inc/admin/page-builders/elementor/inc/controls/class-social-preview-control.php:49
|
3705 |
#: inc/admin/page-builders/elementor/inc/controls/class-social-preview-control.php:73
|
3706 |
msgid "Your image ratio is: "
|
3707 |
msgstr ""
|
3708 |
|
3709 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:462
|
3710 |
#: app/react/layout/Main/components/Social/Preview/index.js:259
|
3711 |
msgid "The closer to 1.91 the better."
|
3712 |
msgstr ""
|
3713 |
|
3714 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:466
|
3715 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:583
|
3716 |
#: inc/admin/page-builders/elementor/inc/controls/class-social-preview-control.php:50
|
3717 |
#: inc/admin/page-builders/elementor/inc/controls/class-social-preview-control.php:74
|
3718 |
msgid "File URL is not valid."
|
3719 |
msgstr ""
|
3720 |
|
3721 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:479
|
3722 |
msgid "By "
|
3723 |
msgstr ""
|
3724 |
|
3725 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:513
|
3726 |
#: app/react/layout/Main/components/Social/index.js:190
|
3727 |
msgid "Preview your Twitter card using the official validator"
|
3728 |
msgstr ""
|
3729 |
|
3730 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:517
|
3731 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:521
|
3732 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:421
|
3733 |
#: src/Helpers/Metas/SocialSettings.php:71
|
3734 |
#: src/Services/ContentAnalysis/GetContent.php:536
|
3736 |
msgid "Twitter Title"
|
3737 |
msgstr ""
|
3738 |
|
3739 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:520
|
3740 |
#: src/Helpers/Metas/SocialSettings.php:68
|
3741 |
msgid "Enter your Twitter title"
|
3742 |
msgstr ""
|
3743 |
|
3744 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:525
|
3745 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:529
|
3746 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:432
|
3747 |
#: src/Helpers/Metas/SocialSettings.php:80
|
3748 |
msgid "Twitter description"
|
3749 |
msgstr ""
|
3750 |
|
3751 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:528
|
3752 |
#: src/Helpers/Metas/SocialSettings.php:77
|
3753 |
msgid "Enter your Twitter description"
|
3754 |
msgstr ""
|
3755 |
|
3756 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:532
|
3757 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:549
|
3758 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:443
|
3759 |
#: src/Helpers/Metas/SocialSettings.php:89
|
3760 |
msgid "Twitter Thumbnail"
|
3761 |
msgstr ""
|
3762 |
|
3763 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:555
|
3764 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:456
|
3765 |
#: app/react/layout/Main/components/Social/Preview/index.js:332
|
3766 |
msgid "Twitter Preview"
|
3767 |
msgstr ""
|
3768 |
|
3769 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:558
|
3770 |
#: app/react/layout/Main/components/Social/Preview/index.js:335
|
3771 |
msgid "This is what your post will look like in Twitter. You have to publish your post to get the Twitter Preview."
|
3772 |
msgstr ""
|
3773 |
|
3774 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:561
|
3775 |
msgid "The Social Networks feature is disabled. Still seing informations from the Twitter Preview? You probably have social tags added by your theme or a plugin."
|
3776 |
msgstr ""
|
3777 |
|
3778 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:566
|
3779 |
#: inc/admin/page-builders/elementor/inc/controls/class-social-preview-control.php:70
|
3780 |
#: app/react/layout/Main/components/Social/Preview/index.js:362
|
3781 |
msgid "File type not supported by Twitter. Please choose another image."
|
3782 |
msgstr ""
|
3783 |
|
3784 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:570
|
3785 |
#: inc/admin/page-builders/elementor/inc/controls/class-social-preview-control.php:71
|
3786 |
#: app/react/layout/Main/components/Social/Preview/index.js:353
|
3787 |
msgid "Minimun size for Twitter is <strong>144x144px</strong>. Please choose another image."
|
3788 |
msgstr ""
|
3789 |
|
3790 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:579
|
3791 |
#: app/react/layout/Main/components/Social/Preview/index.js:344
|
3792 |
msgid "The closer to 1 the better (with large card, 2 is better)."
|
3793 |
msgstr ""
|
3794 |
|
3795 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:631
|
3796 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:494
|
3797 |
msgid "Enable redirection?"
|
3798 |
msgstr ""
|
3799 |
|
3800 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:640
|
3801 |
msgid "Regex?"
|
3802 |
msgstr ""
|
3803 |
|
3804 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:645
|
3805 |
msgid "Select a login status: "
|
3806 |
msgstr ""
|
3807 |
|
3808 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:649
|
3809 |
#: src/Helpers/Metas/RedirectionSettings.php:42
|
3810 |
msgid "All"
|
3811 |
msgstr ""
|
3812 |
|
3813 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:652
|
3814 |
#: src/Helpers/Metas/RedirectionSettings.php:43
|
3815 |
msgid "Only Logged In"
|
3816 |
msgstr ""
|
3817 |
|
3818 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:655
|
3819 |
#: src/Helpers/Metas/RedirectionSettings.php:44
|
3820 |
msgid "Only Not Logged In"
|
3821 |
msgstr ""
|
3822 |
|
3823 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:661
|
3824 |
msgid "Select a redirection type: "
|
3825 |
msgstr ""
|
3826 |
|
3827 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:665
|
3828 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:510
|
3829 |
#: src/Helpers/Metas/RedirectionSettings.php:56
|
3830 |
msgid "301 Moved Permanently"
|
3831 |
msgstr ""
|
3832 |
|
3833 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:668
|
3834 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:511
|
3835 |
#: src/Helpers/Metas/RedirectionSettings.php:57
|
3836 |
msgid "302 Found / Moved Temporarily"
|
3837 |
msgstr ""
|
3838 |
|
3839 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:671
|
3840 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:512
|
3841 |
#: src/Helpers/Metas/RedirectionSettings.php:58
|
3842 |
msgid "307 Moved Temporarily"
|
3843 |
msgstr ""
|
3844 |
|
3845 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:674
|
3846 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:513
|
3847 |
#: src/Helpers/Metas/RedirectionSettings.php:59
|
3848 |
msgid "410 Gone"
|
3849 |
msgstr ""
|
3850 |
|
3851 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:677
|
3852 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:514
|
3853 |
#: src/Helpers/Metas/RedirectionSettings.php:60
|
3854 |
msgid "451 Unavailable For Legal Reasons"
|
3855 |
msgstr ""
|
3856 |
|
3857 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:682
|
3858 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:686
|
3859 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:505
|
3860 |
#: src/Helpers/Metas/RedirectionSettings.php:68
|
3861 |
msgid "URL redirection"
|
3862 |
msgstr ""
|
3863 |
|
3864 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:685
|
3865 |
#: inc/admin/page-builders/elementor/inc/admin/class-document-settings-section.php:523
|
3866 |
#: src/Helpers/Metas/RedirectionSettings.php:67
|
3867 |
msgid "Enter your new URL in absolute (eg: https://www.example.com/)"
|
3868 |
msgstr ""
|
3869 |
|
3870 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:723
|
3871 |
msgid "Query parameters"
|
3872 |
msgstr ""
|
3873 |
|
3874 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:726
|
3875 |
msgid "Exactly match all parameters"
|
3876 |
msgstr ""
|
3877 |
|
3878 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:729
|
3879 |
msgid "Exclude all parameters"
|
3880 |
msgstr ""
|
3881 |
|
3882 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:732
|
3883 |
msgid "Exclude all parameters and pass them to the redirection"
|
3884 |
msgstr ""
|
3885 |
|
3886 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:756
|
3887 |
msgid "Test your URL"
|
3888 |
msgstr ""
|
3889 |
|
3890 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:767
|
3891 |
msgid "Need help with your redirections? Read our guide."
|
3892 |
msgstr ""
|
3893 |
|
3894 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:785
|
3895 |
msgid "Exclude this post from Google News Sitemap?"
|
3896 |
msgstr ""
|
3897 |
|
3898 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:819
|
3899 |
msgid "Exclude this post from Video Sitemap?"
|
3900 |
msgstr ""
|
3901 |
|
3902 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:821
|
3903 |
msgid "If your post is set to noindex, it will be automatically excluded from the sitemap."
|
3904 |
msgstr ""
|
3905 |
|
3906 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:839
|
3907 |
msgid "Video "
|
3908 |
msgstr ""
|
3909 |
|
3910 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:844
|
3911 |
msgid "Video URL (required)"
|
3912 |
msgstr ""
|
3913 |
|
3914 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:849
|
3915 |
msgid "Enter your video URL"
|
3916 |
msgstr ""
|
3917 |
|
3918 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:850
|
3919 |
msgid "Video URL"
|
3920 |
msgstr ""
|
3921 |
|
3922 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:862
|
3923 |
msgid "NOT an external video (eg: video hosting on YouTube, Vimeo, Wistia...)? Check this if your video is hosting on this server."
|
3924 |
msgstr ""
|
3925 |
|
3926 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:867
|
3927 |
msgid "Video Title (required)"
|
3928 |
msgstr ""
|
3929 |
|
3930 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:872
|
3931 |
msgid "Enter your video title"
|
3932 |
msgstr ""
|
3933 |
|
3934 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:873
|
3935 |
msgid "Video title"
|
3936 |
msgstr ""
|
3937 |
|
3938 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:875
|
3939 |
msgid "Default: title tag, if not available, post title."
|
3940 |
msgstr ""
|
3941 |
|
3942 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:879
|
3943 |
msgid "Video Description (required)"
|
3944 |
msgstr ""
|
3945 |
|
3946 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:884
|
3947 |
msgid "Enter your video description"
|
3948 |
msgstr ""
|
3949 |
|
3950 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:885
|
3951 |
msgid "Video description"
|
3952 |
msgstr ""
|
3953 |
|
3954 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:886
|
3955 |
msgid "2048 characters max.; default: meta description. If not available, use the beginning of the post content."
|
3956 |
msgstr ""
|
3957 |
|
3958 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:890
|
3959 |
msgid "Video Thumbnail (required)"
|
3960 |
msgstr ""
|
3961 |
|
3962 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:897
|
3963 |
msgid "Select your video thumbnail"
|
3964 |
msgstr ""
|
3965 |
|
3966 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:904
|
3967 |
msgid "Video Thumbnail"
|
3968 |
msgstr ""
|
3969 |
|
3970 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:907
|
3971 |
msgid "Minimum size: 160x90px (1920x1080 max), JPG, PNG or GIF formats. Default: your post featured image."
|
3972 |
msgstr ""
|
3973 |
|
3974 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:912
|
3975 |
msgid "Video Duration (recommended)"
|
3976 |
msgstr ""
|
3977 |
|
3978 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:917
|
3979 |
msgid "Duration in seconds"
|
3980 |
msgstr ""
|
3981 |
|
3982 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:918
|
3983 |
msgid "Video duration"
|
3984 |
msgstr ""
|
3985 |
|
3986 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:920
|
3987 |
msgid "The duration of the video in seconds. Value must be between 0 and 28800 (8 hours)."
|
3988 |
msgstr ""
|
3989 |
|
3990 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:924
|
3991 |
msgid "Video Rating"
|
3992 |
msgstr ""
|
3993 |
|
3994 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:929
|
3995 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:930
|
3996 |
msgid "Video rating"
|
3997 |
msgstr ""
|
3998 |
|
3999 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:932
|
4000 |
msgid "Allowed values are float numbers in the range 0.0 to 5.0."
|
4001 |
msgstr ""
|
4002 |
|
4003 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:936
|
4004 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:942
|
4005 |
msgid "View count"
|
4006 |
msgstr ""
|
4007 |
|
4008 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:941
|
4009 |
msgid "Number of views"
|
4010 |
msgstr ""
|
4011 |
|
4012 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:947
|
4013 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:953
|
4014 |
msgid "Video tags"
|
4015 |
msgstr ""
|
4016 |
|
4017 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:952
|
4018 |
msgid "Enter your video tags"
|
4019 |
msgstr ""
|
4020 |
|
|
|
|
|
|
|
|
|
|
|
4021 |
#: inc/admin/metaboxes/admin-metaboxes-form.php:955
|
4022 |
+
msgid "32 tags max., separate tags with commas. Default: target keywords + post tags if available."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4023 |
msgstr ""
|
4024 |
|
4025 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:966
|
4026 |
msgid "NOT family friendly?"
|
4027 |
msgstr ""
|
4028 |
|
4029 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:968
|
4030 |
msgid "The video will be available only to users with SafeSearch turned off."
|
4031 |
msgstr ""
|
4032 |
|
4033 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:971
|
4034 |
#: app/react/layout/Main/components/VideoSitemap/index.js:135
|
4035 |
msgid "Remove video"
|
4036 |
msgstr ""
|
4037 |
|
4038 |
+
#: inc/admin/metaboxes/admin-metaboxes-form.php:981
|
4039 |
#: app/react/layout/Main/components/VideoSitemap/index.js:165
|
4040 |
msgid "Add video"
|
4041 |
msgstr ""
|
4247 |
msgstr ""
|
4248 |
|
4249 |
#: inc/admin/sections/Analytics.php:137
|
4250 |
+
msgid "Use Matomo to track your users with privacy in mind. We support both On Premise and Cloud installations."
|
4251 |
msgstr ""
|
4252 |
|
4253 |
#: inc/admin/sections/Analytics.php:142
|
4263 |
msgstr ""
|
4264 |
|
4265 |
#: inc/admin/sections/Analytics.php:163
|
4266 |
+
msgid "Create your first Microsoft Clarity project <a href=\"%s\" target=\"_blank\">here</a>."
|
4267 |
msgstr ""
|
4268 |
|
4269 |
#: inc/admin/sections/ImageSEO.php:13
|
4330 |
msgid "Your server uses NGINX. If XML Sitemaps doesn't work properly, you need to add this rule to your configuration:"
|
4331 |
msgstr ""
|
4332 |
|
4333 |
+
#: inc/admin/sections/Sitemaps.php:72
|
4334 |
msgid "<strong>Noindex content</strong> will not be displayed in Sitemaps."
|
4335 |
msgstr ""
|
4336 |
|
4337 |
+
#: inc/admin/sections/Sitemaps.php:75
|
4338 |
msgid "If you disable globally this feature (using the blue toggle from above), the native WordPress XML sitemaps will be re-activated."
|
4339 |
msgstr ""
|
4340 |
|
4341 |
+
#: inc/admin/sections/Sitemaps.php:82
|
4342 |
msgid "Blank sitemap?"
|
4343 |
msgstr ""
|
4344 |
|
4345 |
+
#: inc/admin/sections/Sitemaps.php:87
|
4346 |
msgid "404 error?"
|
4347 |
msgstr ""
|
4348 |
|
4349 |
+
#: inc/admin/sections/Sitemaps.php:92
|
4350 |
msgid "HTML error? Exclude XML and XSL from caching plugins!"
|
4351 |
msgstr ""
|
4352 |
|
4353 |
+
#: inc/admin/sections/Sitemaps.php:96
|
4354 |
msgid "Add your XML sitemaps to Google Search Console (video)"
|
4355 |
msgstr ""
|
4356 |
|
4357 |
+
#: inc/admin/sections/Sitemaps.php:102
|
4358 |
msgid "View your sitemap"
|
4359 |
msgstr ""
|
4360 |
|
4361 |
+
#: inc/admin/sections/Sitemaps.php:107
|
4362 |
msgid "Ping Google manually"
|
4363 |
msgstr ""
|
4364 |
|
4365 |
+
#: inc/admin/sections/Sitemaps.php:111
|
4366 |
msgid "Flush permalinks"
|
4367 |
msgstr ""
|
4368 |
|
4369 |
+
#: inc/admin/sections/Sitemaps.php:130
|
4370 |
msgid "Create an HTML Sitemap for your visitors and boost your SEO."
|
4371 |
msgstr ""
|
4372 |
|
4373 |
+
#: inc/admin/sections/Sitemaps.php:133
|
4374 |
msgid "Limited to 1,000 posts per post type. You can change the order and sorting criteria below."
|
4375 |
msgstr ""
|
4376 |
|
4377 |
+
#: inc/admin/sections/Sitemaps.php:157
|
4378 |
msgid "Include/Exclude Post Types."
|
4379 |
msgstr ""
|
4380 |
|
4381 |
+
#: inc/admin/sections/Sitemaps.php:172
|
4382 |
msgid "Include/Exclude Taxonomies."
|
4383 |
msgstr ""
|
4384 |
|
4733 |
msgid "Track Logged In Users"
|
4734 |
msgstr ""
|
4735 |
|
4736 |
+
#: inc/admin/settings/Analytics.php:474
|
4737 |
+
msgid "Self hosted Matomo installation"
|
4738 |
msgstr ""
|
4739 |
|
4740 |
+
#: inc/admin/settings/Analytics.php:490
|
4741 |
msgid "Enter your site ID"
|
4742 |
msgstr ""
|
4743 |
|
4744 |
+
#: inc/admin/settings/Analytics.php:498
|
4745 |
msgid "Track visitors across all subdomains"
|
4746 |
msgstr ""
|
4747 |
|
4748 |
+
#: inc/admin/settings/Analytics.php:506
|
4749 |
msgid "Prepend the site domain"
|
4750 |
msgstr ""
|
4751 |
|
4752 |
+
#: inc/admin/settings/Analytics.php:530
|
4753 |
msgid "Cross domain"
|
4754 |
msgstr ""
|
4755 |
|
4756 |
+
#: inc/admin/settings/Analytics.php:537
|
4757 |
msgid "Enable DoNotTrack detection"
|
4758 |
msgstr ""
|
4759 |
|
4760 |
+
#: inc/admin/settings/Analytics.php:545
|
4761 |
msgid "Disable all tracking cookies"
|
4762 |
msgstr ""
|
4763 |
|
4764 |
+
#: inc/admin/settings/Analytics.php:553
|
4765 |
msgid "Download & Outlink tracking"
|
4766 |
msgstr ""
|
4767 |
|
4768 |
+
#: inc/admin/settings/Analytics.php:561
|
4769 |
msgid "Disable all heatmaps and session recordings"
|
4770 |
msgstr ""
|
4771 |
|
4772 |
+
#: inc/admin/settings/Analytics.php:578
|
4773 |
msgid "Enable Microsoft Clarity"
|
4774 |
msgstr ""
|
4775 |
|
4776 |
+
#: inc/admin/settings/Analytics.php:586
|
4777 |
msgid "Enter your Clarity project ID"
|
4778 |
msgstr ""
|
4779 |
|
4937 |
msgstr ""
|
4938 |
|
4939 |
#: inc/admin/wizard/admin-wizard.php:132
|
4940 |
+
#: seopress.php:372
|
4941 |
msgid "Export completed!"
|
4942 |
msgstr ""
|
4943 |
|
4969 |
#: inc/admin/wizard/admin-wizard.php:902
|
4970 |
#: inc/admin/wizard/admin-wizard.php:993
|
4971 |
#: inc/admin/wizard/admin-wizard.php:1092
|
4972 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:265
|
4973 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:429
|
4974 |
msgid "Indexing"
|
4975 |
msgstr ""
|
4976 |
|
5423 |
msgstr ""
|
5424 |
|
5425 |
#: inc/functions/options-google-analytics.php:902
|
5426 |
+
#: inc/functions/options-matomo.php:234
|
5427 |
msgid "Authors"
|
5428 |
msgstr ""
|
5429 |
|
5430 |
#: inc/functions/options-google-analytics.php:921
|
5431 |
+
#: inc/functions/options-matomo.php:248
|
5432 |
msgid "Categories"
|
5433 |
msgstr ""
|
5434 |
|
5435 |
#: inc/functions/options-google-analytics.php:947
|
5436 |
+
#: inc/functions/options-matomo.php:268
|
5437 |
msgid "Tags"
|
5438 |
msgstr ""
|
5439 |
|
5440 |
#: inc/functions/options-google-analytics.php:961
|
5441 |
+
#: inc/functions/options-matomo.php:277
|
5442 |
msgid "Post types"
|
5443 |
msgstr ""
|
5444 |
|
5445 |
#: inc/functions/options-google-analytics.php:975
|
5446 |
+
#: inc/functions/options-matomo.php:286
|
5447 |
msgid "Connected users"
|
5448 |
msgstr ""
|
5449 |
|
5523 |
msgid "has been successfully updated!"
|
5524 |
msgstr ""
|
5525 |
|
5526 |
+
#: seopress.php:371
|
5527 |
+
msgid "Regeneration completed!"
|
5528 |
+
msgstr ""
|
5529 |
+
|
5530 |
+
#: seopress.php:405
|
5531 |
msgid "Clear"
|
5532 |
msgstr ""
|
5533 |
|
5534 |
+
#: seopress.php:406
|
5535 |
msgid "Clear color"
|
5536 |
msgstr ""
|
5537 |
|
5538 |
+
#: seopress.php:408
|
5539 |
msgid "Select default color"
|
5540 |
msgstr ""
|
5541 |
|
5542 |
+
#: seopress.php:409
|
5543 |
msgid "Select Color"
|
5544 |
msgstr ""
|
5545 |
|
5546 |
+
#: seopress.php:410
|
5547 |
msgid "Color value"
|
5548 |
msgstr ""
|
5549 |
|
5550 |
+
#: seopress.php:602
|
5551 |
msgid "Docs"
|
5552 |
msgstr ""
|
5553 |
|
5554 |
+
#: seopress.php:603
|
5555 |
msgid "Configuration Wizard"
|
5556 |
msgstr ""
|
5557 |
|
5558 |
+
#: seopress.php:605
|
5559 |
msgid "GO PRO!"
|
5560 |
msgstr ""
|
5561 |
|
5562 |
+
#: seopress.php:641
|
5563 |
+
msgid "Important changes incoming for XML sitemaps in version 5.8: <a href=\"%s\" target=\"_blank\">Learn more</a>."
|
5564 |
+
msgstr ""
|
5565 |
+
|
5566 |
#: src/Actions/Admin/ManageColumn.php:58
|
5567 |
msgid "Meta Desc."
|
5568 |
msgstr ""
|
5602 |
#: src/Actions/Admin/ManageColumn.php:183
|
5603 |
#: src/Actions/Admin/ManageColumn.php:199
|
5604 |
#: src/Services/ContentAnalysis/RenderContentAnalysis.php:26
|
5605 |
+
#: app/react/layout/Main/components/ContentAnalysis/index.js:539
|
5606 |
msgid "Good"
|
5607 |
msgstr ""
|
5608 |
|
5609 |
#: src/Actions/Admin/ManageColumn.php:188
|
5610 |
#: src/Actions/Admin/ManageColumn.php:204
|
5611 |
#: src/Services/ContentAnalysis/RenderContentAnalysis.php:23
|
5612 |
+
#: app/react/layout/Main/components/ContentAnalysis/index.js:538
|
5613 |
msgid "Should be improved"
|
5614 |
msgstr ""
|
5615 |
|
5616 |
+
#: src/Actions/Options/Init.php:266
|
5617 |
msgid "404 - Page not found"
|
5618 |
msgstr ""
|
5619 |
|
6262 |
msgstr ""
|
6263 |
|
6264 |
#: src/Services/ContentAnalysis/RenderContentAnalysis.php:37
|
6265 |
+
#: app/react/layout/Main/components/ContentAnalysis/index.js:554
|
6266 |
#: app/react/layout/Main/components/SchemasManual/index.js:249
|
6267 |
msgid "Expand"
|
6268 |
msgstr ""
|
6269 |
|
6270 |
#: src/Services/ContentAnalysis/RenderContentAnalysis.php:37
|
6271 |
+
#: app/react/layout/Main/components/ContentAnalysis/index.js:569
|
6272 |
#: app/react/layout/Main/components/SchemasManual/index.js:264
|
6273 |
msgid "Close"
|
6274 |
msgstr ""
|
6275 |
|
6276 |
+
#: src/Services/ContentAnalysis/RenderContentAnalysis.php:64
|
6277 |
+
msgid "Degree of severity: %s"
|
6278 |
+
msgstr ""
|
6279 |
+
|
6280 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:20
|
6281 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:490
|
6282 |
+
msgid "Inspect the current post URL with Google Search Console and get informations about your indexing, crawling, rich snippets and more."
|
6283 |
+
msgstr ""
|
6284 |
+
|
6285 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:23
|
6286 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:496
|
6287 |
+
msgid "Inspect URL with Google"
|
6288 |
+
msgstr ""
|
6289 |
+
|
6290 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:29
|
6291 |
+
msgid "No Google API key found."
|
6292 |
+
msgstr ""
|
6293 |
+
|
6294 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:36
|
6295 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:501
|
6296 |
+
msgid "No data found, click Inspect URL button above."
|
6297 |
+
msgstr ""
|
6298 |
+
|
6299 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:52
|
6300 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:546
|
6301 |
+
msgid "View Full Report"
|
6302 |
+
msgstr ""
|
6303 |
+
|
6304 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:60
|
6305 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:31
|
6306 |
+
msgid "Unknown verdict"
|
6307 |
+
msgstr ""
|
6308 |
+
|
6309 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:61
|
6310 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:65
|
6311 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:34
|
6312 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:47
|
6313 |
+
msgid "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)."
|
6314 |
+
msgstr ""
|
6315 |
+
|
6316 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:64
|
6317 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:44
|
6318 |
+
msgid "URL is on Google"
|
6319 |
+
msgstr ""
|
6320 |
+
|
6321 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:69
|
6322 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:58
|
6323 |
+
msgid "URL is on Google, but has issues"
|
6324 |
+
msgstr ""
|
6325 |
+
|
6326 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:70
|
6327 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:61
|
6328 |
+
msgid "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."
|
6329 |
+
msgstr ""
|
6330 |
+
|
6331 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:74
|
6332 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:72
|
6333 |
+
msgid "URL is not on Google: Indexing errors"
|
6334 |
+
msgstr ""
|
6335 |
+
|
6336 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:75
|
6337 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:78
|
6338 |
+
msgid "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."
|
6339 |
+
msgstr ""
|
6340 |
+
|
6341 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:79
|
6342 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:90
|
6343 |
+
msgid "URL is not on Google"
|
6344 |
+
msgstr ""
|
6345 |
+
|
6346 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:80
|
6347 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:93
|
6348 |
+
msgid "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."
|
6349 |
+
msgstr ""
|
6350 |
+
|
6351 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:94
|
6352 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:117
|
6353 |
+
msgid "Unknown indexing status."
|
6354 |
+
msgstr ""
|
6355 |
+
|
6356 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:97
|
6357 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:125
|
6358 |
+
msgid "Indexing allowed."
|
6359 |
+
msgstr ""
|
6360 |
+
|
6361 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:100
|
6362 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:132
|
6363 |
+
msgid "Indexing not allowed, 'noindex' detected in 'robots' meta tag."
|
6364 |
+
msgstr ""
|
6365 |
+
|
6366 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:103
|
6367 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:143
|
6368 |
+
msgid "Indexing not allowed, 'noindex' detected in 'X-Robots-Tag' http header."
|
6369 |
+
msgstr ""
|
6370 |
+
|
6371 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:106
|
6372 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:154
|
6373 |
+
msgid "Indexing not allowed, blocked to Googlebot with a robots.txt file."
|
6374 |
+
msgstr ""
|
6375 |
+
|
6376 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:116
|
6377 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:174
|
6378 |
+
msgid "Unknown fetch state."
|
6379 |
+
msgstr ""
|
6380 |
+
|
6381 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:119
|
6382 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:176
|
6383 |
+
msgid "Successful fetch."
|
6384 |
+
msgstr ""
|
6385 |
+
|
6386 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:122
|
6387 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:178
|
6388 |
+
msgid "Soft 404."
|
6389 |
+
msgstr ""
|
6390 |
+
|
6391 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:125
|
6392 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:180
|
6393 |
+
msgid "Blocked by robots.txt."
|
6394 |
+
msgstr ""
|
6395 |
+
|
6396 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:128
|
6397 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:182
|
6398 |
+
msgid "Not found (404)."
|
6399 |
+
msgstr ""
|
6400 |
+
|
6401 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:131
|
6402 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:184
|
6403 |
+
msgid "Blocked due to unauthorized request (401)."
|
6404 |
+
msgstr ""
|
6405 |
+
|
6406 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:134
|
6407 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:189
|
6408 |
+
msgid "Server error (5xx)."
|
6409 |
+
msgstr ""
|
6410 |
+
|
6411 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:137
|
6412 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:191
|
6413 |
+
msgid "Redirection error."
|
6414 |
+
msgstr ""
|
6415 |
+
|
6416 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:140
|
6417 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:193
|
6418 |
+
msgid "Blocked due to access forbidden (403)."
|
6419 |
+
msgstr ""
|
6420 |
+
|
6421 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:143
|
6422 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:195
|
6423 |
+
msgid "Blocked due to other 4xx issue (not 403, 404)."
|
6424 |
+
msgstr ""
|
6425 |
+
|
6426 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:146
|
6427 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:200
|
6428 |
+
msgid "Internal error."
|
6429 |
+
msgstr ""
|
6430 |
+
|
6431 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:149
|
6432 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:202
|
6433 |
+
msgid "Invalid URL."
|
6434 |
+
msgstr ""
|
6435 |
+
|
6436 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:160
|
6437 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:217
|
6438 |
+
msgid "Unknown user agent."
|
6439 |
+
msgstr ""
|
6440 |
+
|
6441 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:163
|
6442 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:219
|
6443 |
+
msgid "Googlebot desktop"
|
6444 |
+
msgstr ""
|
6445 |
+
|
6446 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:166
|
6447 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:221
|
6448 |
+
msgid "Googlebot smartphone"
|
6449 |
+
msgstr ""
|
6450 |
+
|
6451 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:174
|
6452 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:236
|
6453 |
+
msgid "Unknown robots.txt state, typically because the page wasn‘t fetched or found, or because robots.txt itself couldn‘t be reached."
|
6454 |
+
msgstr ""
|
6455 |
+
|
6456 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:177
|
6457 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:241
|
6458 |
+
msgid "Yes"
|
6459 |
+
msgstr ""
|
6460 |
+
|
6461 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:180
|
6462 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:243
|
6463 |
+
msgid "Crawl blocked by robots.txt."
|
6464 |
+
msgstr ""
|
6465 |
+
|
6466 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:191
|
6467 |
+
msgid "N/A"
|
6468 |
+
msgstr ""
|
6469 |
+
|
6470 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:201
|
6471 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:219
|
6472 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:225
|
6473 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:265
|
6474 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:321
|
6475 |
+
msgid "No data available"
|
6476 |
+
msgstr ""
|
6477 |
+
|
6478 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:202
|
6479 |
+
msgid "For some reason we couldn‘t retrieve the page or test its mobile-friendliness. Please wait a bit and try again."
|
6480 |
+
msgstr ""
|
6481 |
+
|
6482 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:205
|
6483 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:279
|
6484 |
+
msgid "Page is mobile friendly"
|
6485 |
+
msgstr ""
|
6486 |
+
|
6487 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:206
|
6488 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:282
|
6489 |
+
msgid "The page should probably work well on a mobile device."
|
6490 |
+
msgstr ""
|
6491 |
+
|
6492 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:211
|
6493 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:295
|
6494 |
+
msgid "Page is not mobile friendly"
|
6495 |
+
msgstr ""
|
6496 |
+
|
6497 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:212
|
6498 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:298
|
6499 |
+
msgid "The page won‘t work well on a mobile device because of a few issues."
|
6500 |
+
msgstr ""
|
6501 |
+
|
6502 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:218
|
6503 |
+
msgid "No detected schemas"
|
6504 |
+
msgstr ""
|
6505 |
+
|
6506 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:228
|
6507 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:328
|
6508 |
+
msgid "Your Rich Snippets are valid"
|
6509 |
+
msgstr ""
|
6510 |
+
|
6511 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:233
|
6512 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:337
|
6513 |
+
msgid "Your Rich Snippets are not valid"
|
6514 |
+
msgstr ""
|
6515 |
+
|
6516 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:247
|
6517 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:411
|
6518 |
+
msgid "Discovery"
|
6519 |
+
msgstr ""
|
6520 |
+
|
6521 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:249
|
6522 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:413
|
6523 |
+
msgid "Sitemaps"
|
6524 |
+
msgstr ""
|
6525 |
+
|
6526 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:250
|
6527 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:414
|
6528 |
+
msgid "Referring page"
|
6529 |
+
msgstr ""
|
6530 |
+
|
6531 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:254
|
6532 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:418
|
6533 |
+
msgid "Crawl"
|
6534 |
+
msgstr ""
|
6535 |
+
|
6536 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:257
|
6537 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:421
|
6538 |
+
msgid "Last crawl"
|
6539 |
+
msgstr ""
|
6540 |
+
|
6541 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:258
|
6542 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:422
|
6543 |
+
msgid "Crawled as"
|
6544 |
+
msgstr ""
|
6545 |
+
|
6546 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:259
|
6547 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:423
|
6548 |
+
msgid "Crawl allowed?"
|
6549 |
+
msgstr ""
|
6550 |
+
|
6551 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:260
|
6552 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:424
|
6553 |
+
msgid "Page fetch"
|
6554 |
+
msgstr ""
|
6555 |
+
|
6556 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:261
|
6557 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:425
|
6558 |
+
msgid "Indexing allowed?"
|
6559 |
+
msgstr ""
|
6560 |
+
|
6561 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:267
|
6562 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:431
|
6563 |
+
msgid "User-declared canonical"
|
6564 |
+
msgstr ""
|
6565 |
+
|
6566 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:268
|
6567 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:433
|
6568 |
+
msgid "Google-selected canonical"
|
6569 |
+
msgstr ""
|
6570 |
+
|
6571 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:272
|
6572 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:439
|
6573 |
+
msgid "Enhancements"
|
6574 |
+
msgstr ""
|
6575 |
+
|
6576 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:274
|
6577 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:441
|
6578 |
+
msgid "Mobile Usability"
|
6579 |
+
msgstr ""
|
6580 |
+
|
6581 |
+
#: src/Services/ContentAnalysis/RenderGSCInspectUrl.php:278
|
6582 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:443
|
6583 |
+
msgid "Rich Snippets detected"
|
6584 |
+
msgstr ""
|
6585 |
+
|
6586 |
#: src/Services/Settings/Roles/SectionPagesSEOPress.php:38
|
6587 |
msgid "Check a user role to authorized it to edit a specific SEO page."
|
6588 |
msgstr ""
|
6760 |
msgstr ""
|
6761 |
|
6762 |
#: app/react/components/Forms/components/Input/index.js:62
|
6763 |
+
#: app/react/components/Forms/components/Input/index.js:137
|
6764 |
#: app/react/components/Forms/components/TextArea/index.js:32
|
6765 |
msgid "maximum limit"
|
6766 |
msgstr ""
|
6848 |
msgid "Enter your description"
|
6849 |
msgstr ""
|
6850 |
|
6851 |
+
#: app/react/components/GooglePreview/index.js:205
|
6852 |
msgid "The Google preview is a simulation."
|
6853 |
msgstr ""
|
6854 |
|
6855 |
+
#: app/react/components/GooglePreview/index.js:210
|
6856 |
msgid "There is no reliable preview because it depends on the screen resolution, the device used, the expression sought, and Google."
|
6857 |
msgstr ""
|
6858 |
|
6859 |
+
#: app/react/components/GooglePreview/index.js:215
|
6860 |
msgid "There is not one snippet for one URL but several."
|
6861 |
msgstr ""
|
6862 |
|
6863 |
+
#: app/react/components/GooglePreview/index.js:220
|
6864 |
msgid "All the data in this overview comes directly from your source code."
|
6865 |
msgstr ""
|
6866 |
|
6867 |
+
#: app/react/components/GooglePreview/index.js:225
|
6868 |
msgid "This is what the crawlers will see."
|
6869 |
msgstr ""
|
6870 |
|
6872 |
msgid "Search a tag"
|
6873 |
msgstr ""
|
6874 |
|
6875 |
+
#: app/react/constants/tabs.js:35
|
6876 |
msgid "Content Analysis"
|
6877 |
msgstr ""
|
6878 |
|
6879 |
+
#: app/react/constants/tabs.js:54
|
6880 |
msgid "Title settings"
|
6881 |
msgstr ""
|
6882 |
|
6883 |
+
#: app/react/constants/tabs.js:104
|
|
|
|
|
|
|
|
|
6884 |
msgid "Internal Linking"
|
6885 |
msgstr ""
|
6886 |
|
6887 |
+
#: app/react/constants/tabs.js:110
|
6888 |
msgid "Manual"
|
6889 |
msgstr ""
|
6890 |
|
6956 |
msgid "Note that your images can always be indexed if they are linked from other pages."
|
6957 |
msgstr ""
|
6958 |
|
6959 |
+
#: app/react/layout/Main/components/ContentAnalysis/index.js:381
|
6960 |
msgid "The keyword:"
|
6961 |
msgid_plural "These keywords:"
|
6962 |
msgstr[0] ""
|
6963 |
msgstr[1] ""
|
6964 |
|
6965 |
+
#: app/react/layout/Main/components/ContentAnalysis/index.js:413
|
6966 |
msgid "You should avoid using multiple times the same keyword for different pages. Try to consolidate your content into one single page."
|
6967 |
msgstr ""
|
6968 |
|
6969 |
+
#: app/react/layout/Main/components/InspectUrl/index.js:268
|
6970 |
+
msgid "For some reason we couldn't retrieve the page or test its mobile-friendliness. Please wait a bit and try again."
|
6971 |
+
msgstr ""
|
6972 |
+
|
6973 |
#: app/react/layout/Main/components/InternalLinking/index.js:47
|
6974 |
msgid "Internal links are important for SEO and user experience. Always try to link your content together, with quality link anchors."
|
6975 |
msgstr ""
|
7020 |
msgid "Please choose an image"
|
7021 |
msgstr ""
|
7022 |
|
7023 |
+
#: app/react/layout/Main/index.js:97
|
7024 |
+
#: app/react/layout/SeoBar/index.js:54
|
7025 |
msgid "Loading your data"
|
7026 |
msgstr ""
|
7027 |
|
@@ -1,2 +1,2 @@
|
|
1 |
/*! For license information please see metaboxe.js.LICENSE.txt */
|
2 |
-
(()=>{var e={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,""")+'"'),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),V=n(8693),U=z.f,B=V.f,W=o.RangeError,H=o.TypeError,$=o.Uint8Array,G="ArrayBuffer",q="SharedArrayBuffer",Y="BYTES_PER_ELEMENT",K=Array.prototype,Q=l.ArrayBuffer,X=l.DataView,Z=A(0),J=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=K.lastIndexOf,ce=K.reduce,fe=K.reduceRight,pe=K.join,de=K.sort,he=K.slice,me=K.toString,ve=K.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){U(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,J(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){Z(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))},Ve=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++]},Ue={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?U(e,t,n):(e[t]=n.value,e)};xe||(V.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,Ue),p($e,ge,Ue.values),d($e,{slice:ze,set:Ve,constructor:function(){},toString:me,toLocaleString:Le}),Re($e,"buffer","b"),Re($e,"byteOffset","o"),Re($e,"byteLength","l"),Re($e,"length","e"),U($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){U(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 Q||(l=w(n))==G||l==q))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 Q(i=s*t);for(p(e,"_d",{b:a,o:d,l:i,e:s,v:new X(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 Q||(a=w(n))==G||a==q?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))})),Z(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=Ue.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)||U(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}),Y in S||p(S,Y,t),i(i.P,u,De),F(u),i(i.P+i.F*Ce,u,{set:Ve}),i(i.P+i.F*!j,u,Ue),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 V(e){return e[3]<<24|e[2]<<16|e[1]<<8|e[0]}function U(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 q(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 Y(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 K,Q=(x=function(e){return c(this,x),new O(d(e))}).prototype=O.prototype,X=h(O),Z=0;X.length>Z;)(K=X[Z++])in x||s(x,K,O[K]);a||(Q.constructor=x)}var J=new E(new x(2)),ee=E.prototype.setInt8;J.setInt8(0,2147483648),J.setInt8(1,2147483649),!J.getInt8(0)&&J.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 q(this,1,e)[0]<<24>>24},getUint8:function(e){return q(this,1,e)[0]},getInt16:function(e){var t=q(this,2,e,arguments[1]);return(t[1]<<8|t[0])<<16>>16},getUint16:function(e){var t=q(this,2,e,arguments[1]);return t[1]<<8|t[0]},getInt32:function(e){return V(q(this,4,e,arguments[1]))},getUint32:function(e){return V(q(this,4,e,arguments[1]))>>>0},getFloat32:function(e){return z(q(this,4,e,arguments[1]),23,4)},getFloat64:function(e){return z(q(this,8,e,arguments[1]),52,8)},setInt8:function(e,t){Y(this,1,e,U,t)},setUint8:function(e,t){Y(this,1,e,U,t)},setInt16:function(e,t){Y(this,2,e,B,t,arguments[2])},setUint16:function(e,t){Y(this,2,e,B,t,arguments[2])},setInt32:function(e,t){Y(this,4,e,W,t,arguments[2])},setUint32:function(e,t){Y(this,4,e,W,t,arguments[2])},setFloat32:function(e,t){Y(this,4,e,$,t,arguments[2])},setFloat64:function(e,t){Y(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"),V=c("symbols"),U=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,q=function(e){var t=V[e]=k(R.prototype);return t._k=e,t},Y=W&&"symbol"==typeof R.iterator?function(e){return"symbol"==typeof e}:function(e){return e instanceof R},K=function(e,t,n){return e===B&&K(U,t,n),y(e),t=E(t,!0),y(n),o(V,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)},Q=function(e,t){y(e);for(var n,r=v(t=x(t)),o=0,a=r.length;a>o;)K(e,n=r[o++],t[n]);return e},X=function(e){var t=D.call(this,e=E(e,!0));return!(this===B&&o(V,e)&&!o(U,e))&&(!(t||!o(this,e)||!o(V,e)||o(this,F)&&this[F][e])||t)},Z=function(e,t){if(e=x(e),t=E(t,!0),e!==B||!o(V,t)||o(U,t)){var n=A(e,t);return!n||!o(V,t)||o(e,F)&&e[F][t]||(n.enumerable=!0),n}},J=function(e){for(var t,n=T(x(e)),r=[],a=0;n.length>a;)o(V,t=n[a++])||t==F||t==l||r.push(t);return r},ee=function(e){for(var t,n=e===B,r=T(n?U:x(e)),a=[],i=0;r.length>i;)!o(V,t=r[i++])||n&&!o(B,t)||a.push(V[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(U,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}),q(e)}).prototype,"toString",(function(){return this._k})),O.f=Z,P.f=K,n(616).f=_.f=J,n(4682).f=X,C.f=ee,a&&!n(4461)&&s(B,"propertyIsEnumerable",X,!0),h.f=function(e){return q(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(!Y(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):Q(k(e),t)},defineProperty:K,defineProperties:Q,getOwnPropertyDescriptor:Z,getOwnPropertyNames:J,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)&&!Y(e))return g(t)||(t=function(e,t){if("function"==typeof n&&(t=n.call(this,e,t)),!Y(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)},3316:e=>{function t(e,t,n,r){var o,a=null==(o=r)||"number"==typeof o||"boolean"==typeof o?r:n(r),i=t.get(a);return void 0===i&&(i=e.call(this,r),t.set(a,i)),i}function n(e,t,n){var r=Array.prototype.slice.call(arguments,3),o=n(r),a=t.get(o);return void 0===a&&(a=e.apply(this,r),t.set(o,a)),a}function r(e,t,n,r,o){return n.bind(t,e,r,o)}function o(e,o){return r(e,this,1===e.length?t:n,o.cache.create(),o.serializer)}function a(){return JSON.stringify(arguments)}function i(){this.cache=Object.create(null)}i.prototype.has=function(e){return e in this.cache},i.prototype.get=function(e){return this.cache[e]},i.prototype.set=function(e,t){this.cache[e]=t};var s={create:function(){return new i}};e.exports=function(e,t){var n=t&&t.cache?t.cache:s,r=t&&t.serializer?t.serializer:a;return(t&&t.strategy?t.strategy:o)(e,{cache:n,serializer:r})},e.exports.strategies={variadic:function(e,t){return r(e,this,n,t.cache.create(),t.serializer)},monadic:function(e,n){return r(e,this,t,n.cache.create(),n.serializer)}}},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}},7418:e=>{"use strict";var t=Object.getOwnPropertySymbols,n=Object.prototype.hasOwnProperty,r=Object.prototype.propertyIsEnumerable;function o(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var r={};return"abcdefghijklmnopqrst".split("").forEach((function(e){r[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},r)).join("")}catch(e){return!1}}()?Object.assign:function(e,a){for(var i,s,l=o(e),u=1;u<arguments.length;u++){for(var c in i=Object(arguments[u]))n.call(i,c)&&(l[c]=i[c]);if(t){s=t(i);for(var f=0;f<s.length;f++)r.call(i,s[f])&&(l[s[f]]=i[s[f]])}}return l}},2703:(e,t,n)=>{"use strict";var r=n(414);function o(){}function a(){}a.resetWarningCache=o,e.exports=function(){function e(e,t,n,o,a,i){if(i!==r){var s=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw s.name="Invariant Violation",s}}function t(){return e}e.isRequired=e;var n={array:e,bigint:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:a,resetWarningCache:o};return n.PropTypes=n,n}},5697:(e,t,n)=>{e.exports=n(2703)()},414:e=>{"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},4300:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.CopyToClipboard=void 0;var r=a(n(7294)),o=a(n(640));function a(e){return e&&e.__esModule?e:{default:e}}function i(e){return i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i(e)}function s(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 l(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function u(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 c(e,t){return!t||"object"!==i(t)&&"function"!=typeof t?p(e):t}function f(e){return f=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},f(e)}function p(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function d(e,t){return d=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},d(e,t)}function h(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var m=function(e){function t(){var e,n;l(this,t);for(var a=arguments.length,i=new Array(a),s=0;s<a;s++)i[s]=arguments[s];return h(p(n=c(this,(e=f(t)).call.apply(e,[this].concat(i)))),"onClick",(function(e){var t=n.props,a=t.text,i=t.onCopy,s=t.children,l=t.options,u=r.default.Children.only(s),c=(0,o.default)(a,l);i&&i(a,c),u&&u.props&&"function"==typeof u.props.onClick&&u.props.onClick(e)})),n}var n,a;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&d(e,t)}(t,e),n=t,a=[{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,["text","onCopy","options","children"]),o=r.default.Children.only(t);return r.default.cloneElement(o,function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?s(n,!0).forEach((function(t){h(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):s(n).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({},n,{onClick:this.onClick}))}}],a&&u(n.prototype,a),t}(r.default.PureComponent);t.CopyToClipboard=m,h(m,"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(7418),a=n(3840);function i(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."}if(!r)throw Error(i(227));var s=new Set,l={};function u(e,t){c(e,t),c(e+"Capture",t)}function c(e,t){for(l[e]=t,e=0;e<t.length;e++)s.add(t[e])}var f=!("undefined"==typeof window||void 0===window.document||void 0===window.document.createElement),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=Object.prototype.hasOwnProperty,h={},m={};function v(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 g={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach((function(e){g[e]=new v(e,0,!1,e,null,!1,!1)})),[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach((function(e){var t=e[0];g[t]=new v(t,1,!1,e[1],null,!1,!1)})),["contentEditable","draggable","spellCheck","value"].forEach((function(e){g[e]=new v(e,2,!1,e.toLowerCase(),null,!1,!1)})),["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach((function(e){g[e]=new v(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){g[e]=new v(e,3,!1,e.toLowerCase(),null,!1,!1)})),["checked","multiple","muted","selected"].forEach((function(e){g[e]=new v(e,3,!0,e,null,!1,!1)})),["capture","download"].forEach((function(e){g[e]=new v(e,4,!1,e,null,!1,!1)})),["cols","rows","size","span"].forEach((function(e){g[e]=new v(e,6,!1,e,null,!1,!1)})),["rowSpan","start"].forEach((function(e){g[e]=new v(e,5,!1,e.toLowerCase(),null,!1,!1)}));var y=/[\-:]([a-z])/g;function b(e){return e[1].toUpperCase()}function w(e,t,n,r){var o=g.hasOwnProperty(t)?g[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!!d.call(m,e)||!d.call(h,e)&&(p.test(e)?m[e]=!0:(h[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(y,b);g[t]=new v(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(y,b);g[t]=new v(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(y,b);g[t]=new v(t,1,!1,e,"http://www.w3.org/XML/1998/namespace",!1,!1)})),["tabIndex","crossOrigin"].forEach((function(e){g[e]=new v(e,1,!1,e.toLowerCase(),null,!1,!1)})),g.xlinkHref=new v("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1),["src","href","action","formAction"].forEach((function(e){g[e]=new v(e,1,!1,e.toLowerCase(),null,!0,!0)}));var x=r.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,E=60103,S=60106,k=60107,_=60108,O=60114,C=60109,P=60110,j=60112,A=60113,I=60120,T=60115,R=60116,N=60121,M=60128,F=60129,L=60130,D=60131;if("function"==typeof Symbol&&Symbol.for){var z=Symbol.for;E=z("react.element"),S=z("react.portal"),k=z("react.fragment"),_=z("react.strict_mode"),O=z("react.profiler"),C=z("react.provider"),P=z("react.context"),j=z("react.forward_ref"),A=z("react.suspense"),I=z("react.suspense_list"),T=z("react.memo"),R=z("react.lazy"),N=z("react.block"),z("react.scope"),M=z("react.opaque.id"),F=z("react.debug_trace_mode"),L=z("react.offscreen"),D=z("react.legacy_hidden")}var V,U="function"==typeof Symbol&&Symbol.iterator;function B(e){return null===e||"object"!=typeof e?null:"function"==typeof(e=U&&e[U]||e["@@iterator"])?e:null}function W(e){if(void 0===V)try{throw Error()}catch(e){var t=e.stack.trim().match(/\n( *(at )?)/);V=t&&t[1]||""}return"\n"+V+e}var H=!1;function $(e,t){if(!e||H)return"";H=!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(e){if(e&&r&&"string"==typeof e.stack){for(var o=e.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])return"\n"+o[i].replace(" at new "," at ")}while(1<=i&&0<=s);break}}}finally{H=!1,Error.prepareStackTrace=n}return(e=e?e.displayName||e.name:"")?W(e):""}function G(e){switch(e.tag){case 5:return W(e.type);case 16:return W("Lazy");case 13:return W("Suspense");case 19:return W("SuspenseList");case 0:case 2:case 15:return $(e.type,!1);case 11:return $(e.type.render,!1);case 22:return $(e.type._render,!1);case 1:return $(e.type,!0);default:return""}}function q(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 k:return"Fragment";case S:return"Portal";case O:return"Profiler";case _:return"StrictMode";case A:return"Suspense";case I:return"SuspenseList"}if("object"==typeof e)switch(e.$$typeof){case P:return(e.displayName||"Context")+".Consumer";case C:return(e._context.displayName||"Context")+".Provider";case j:var t=e.render;return t=t.displayName||t.name||"",e.displayName||(""!==t?"ForwardRef("+t+")":"ForwardRef");case T:return q(e.type);case N:return q(e._render);case R:t=e._payload,e=e._init;try{return q(e(t))}catch(e){}}return null}function Y(e){switch(typeof e){case"boolean":case"number":case"object":case"string":case"undefined":return e;default:return""}}function K(e){var t=e.type;return(e=e.nodeName)&&"input"===e.toLowerCase()&&("checkbox"===t||"radio"===t)}function Q(e){e._valueTracker||(e._valueTracker=function(e){var t=K(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 X(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),r="";return e&&(r=K(e)?e.checked?"true":"false":e.value),(e=r)!==n&&(t.setValue(e),!0)}function Z(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 J(e,t){var n=t.checked;return o({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:null!=n?n:e._wrapperState.initialChecked})}function ee(e,t){var n=null==t.defaultValue?"":t.defaultValue,r=null!=t.checked?t.checked:t.defaultChecked;n=Y(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 te(e,t){null!=(t=t.checked)&&w(e,"checked",t,!1)}function ne(e,t){te(e,t);var n=Y(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")?oe(e,t.type,n):t.hasOwnProperty("defaultValue")&&oe(e,t.type,Y(t.defaultValue)),null==t.checked&&null!=t.defaultChecked&&(e.defaultChecked=!!t.defaultChecked)}function re(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 oe(e,t,n){"number"===t&&Z(e.ownerDocument)===e||(null==n?e.defaultValue=""+e._wrapperState.initialValue:e.defaultValue!==""+n&&(e.defaultValue=""+n))}function ae(e,t){return e=o({children:void 0},t),(t=function(e){var t="";return r.Children.forEach(e,(function(e){null!=e&&(t+=e)})),t}(t.children))&&(e.children=t),e}function ie(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=""+Y(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 se(e,t){if(null!=t.dangerouslySetInnerHTML)throw Error(i(91));return o({},t,{value:void 0,defaultValue:void 0,children:""+e._wrapperState.initialValue})}function le(e,t){var n=t.value;if(null==n){if(n=t.children,t=t.defaultValue,null!=n){if(null!=t)throw Error(i(92));if(Array.isArray(n)){if(!(1>=n.length))throw Error(i(93));n=n[0]}t=n}null==t&&(t=""),n=t}e._wrapperState={initialValue:Y(n)}}function ue(e,t){var n=Y(t.value),r=Y(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 ce(e){var t=e.textContent;t===e._wrapperState.initialValue&&""!==t&&null!==t&&(e.value=t)}var fe="http://www.w3.org/1999/xhtml";function pe(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 de(e,t){return null==e||"http://www.w3.org/1999/xhtml"===e?pe(t):"http://www.w3.org/2000/svg"===e&&"foreignObject"===t?"http://www.w3.org/1999/xhtml":e}var he,me,ve=(me=function(e,t){if("http://www.w3.org/2000/svg"!==e.namespaceURI||"innerHTML"in e)e.innerHTML=t;else{for((he=he||document.createElement("div")).innerHTML="<svg>"+t.valueOf().toString()+"</svg>",t=he.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 me(e,t)}))}:me);function ge(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 ye={animationIterationCount:!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},be=["Webkit","ms","Moz","O"];function we(e,t,n){return null==t||"boolean"==typeof t||""===t?"":n||"number"!=typeof t||0===t||ye.hasOwnProperty(e)&&ye[e]?(""+t).trim():t+"px"}function xe(e,t){for(var n in e=e.style,t)if(t.hasOwnProperty(n)){var r=0===n.indexOf("--"),o=we(n,t[n],r);"float"===n&&(n="cssFloat"),r?e.setProperty(n,o):e[n]=o}}Object.keys(ye).forEach((function(e){be.forEach((function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),ye[t]=ye[e]}))}));var Ee=o({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 Se(e,t){if(t){if(Ee[e]&&(null!=t.children||null!=t.dangerouslySetInnerHTML))throw Error(i(137,e));if(null!=t.dangerouslySetInnerHTML){if(null!=t.children)throw Error(i(60));if("object"!=typeof t.dangerouslySetInnerHTML||!("__html"in t.dangerouslySetInnerHTML))throw Error(i(61))}if(null!=t.style&&"object"!=typeof t.style)throw Error(i(62))}}function ke(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}}function _e(e){return(e=e.target||e.srcElement||window).correspondingUseElement&&(e=e.correspondingUseElement),3===e.nodeType?e.parentNode:e}var Oe=null,Ce=null,Pe=null;function je(e){if(e=no(e)){if("function"!=typeof Oe)throw Error(i(280));var t=e.stateNode;t&&(t=oo(t),Oe(e.stateNode,e.type,t))}}function Ae(e){Ce?Pe?Pe.push(e):Pe=[e]:Ce=e}function Ie(){if(Ce){var e=Ce,t=Pe;if(Pe=Ce=null,je(e),t)for(e=0;e<t.length;e++)je(t[e])}}function Te(e,t){return e(t)}function Re(e,t,n,r,o){return e(t,n,r,o)}function Ne(){}var Me=Te,Fe=!1,Le=!1;function De(){null===Ce&&null===Pe||(Ne(),Ie())}function ze(e,t){var n=e.stateNode;if(null===n)return null;var r=oo(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(i(231,t,typeof n));return n}var Ve=!1;if(f)try{var Ue={};Object.defineProperty(Ue,"passive",{get:function(){Ve=!0}}),window.addEventListener("test",Ue,Ue),window.removeEventListener("test",Ue,Ue)}catch(me){Ve=!1}function Be(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 We=!1,He=null,$e=!1,Ge=null,qe={onError:function(e){We=!0,He=e}};function Ye(e,t,n,r,o,a,i,s,l){We=!1,He=null,Be.apply(qe,arguments)}function Ke(e){var t=e,n=e;if(e.alternate)for(;t.return;)t=t.return;else{e=t;do{0!=(1026&(t=e).flags)&&(n=t.return),e=t.return}while(e)}return 3===t.tag?n:null}function Qe(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 Xe(e){if(Ke(e)!==e)throw Error(i(188))}function Ze(e){if(e=function(e){var t=e.alternate;if(!t){if(null===(t=Ke(e)))throw Error(i(188));return t!==e?null:e}for(var n=e,r=t;;){var o=n.return;if(null===o)break;var a=o.alternate;if(null===a){if(null!==(r=o.return)){n=r;continue}break}if(o.child===a.child){for(a=o.child;a;){if(a===n)return Xe(o),e;if(a===r)return Xe(o),t;a=a.sibling}throw Error(i(188))}if(n.return!==r.return)n=o,r=a;else{for(var s=!1,l=o.child;l;){if(l===n){s=!0,n=o,r=a;break}if(l===r){s=!0,r=o,n=a;break}l=l.sibling}if(!s){for(l=a.child;l;){if(l===n){s=!0,n=a,r=o;break}if(l===r){s=!0,r=a,n=o;break}l=l.sibling}if(!s)throw Error(i(189))}}if(n.alternate!==r)throw Error(i(190))}if(3!==n.tag)throw Error(i(188));return n.stateNode.current===n?e:t}(e),!e)return null;for(var t=e;;){if(5===t.tag||6===t.tag)return t;if(t.child)t.child.return=t,t=t.child;else{if(t===e)break;for(;!t.sibling;){if(!t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}}return null}function Je(e,t){for(var n=e.alternate;null!==t;){if(t===e||t===n)return!0;t=t.return}return!1}var et,tt,nt,rt,ot=!1,at=[],it=null,st=null,lt=null,ut=new Map,ct=new Map,ft=[],pt="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 dt(e,t,n,r,o){return{blockedOn:e,domEventName:t,eventSystemFlags:16|n,nativeEvent:o,targetContainers:[r]}}function ht(e,t){switch(e){case"focusin":case"focusout":it=null;break;case"dragenter":case"dragleave":st=null;break;case"mouseover":case"mouseout":lt=null;break;case"pointerover":case"pointerout":ut.delete(t.pointerId);break;case"gotpointercapture":case"lostpointercapture":ct.delete(t.pointerId)}}function mt(e,t,n,r,o,a){return null===e||e.nativeEvent!==a?(e=dt(t,n,r,o,a),null!==t&&null!==(t=no(t))&&tt(t),e):(e.eventSystemFlags|=r,t=e.targetContainers,null!==o&&-1===t.indexOf(o)&&t.push(o),e)}function vt(e){var t=to(e.target);if(null!==t){var n=Ke(t);if(null!==n)if(13===(t=n.tag)){if(null!==(t=Qe(n)))return e.blockedOn=t,void rt(e.lanePriority,(function(){a.unstable_runWithPriority(e.priority,(function(){nt(n)}))}))}else if(3===t&&n.stateNode.hydrate)return void(e.blockedOn=3===n.tag?n.stateNode.containerInfo:null)}e.blockedOn=null}function gt(e){if(null!==e.blockedOn)return!1;for(var t=e.targetContainers;0<t.length;){var n=Zt(e.domEventName,e.eventSystemFlags,t[0],e.nativeEvent);if(null!==n)return null!==(t=no(n))&&tt(t),e.blockedOn=n,!1;t.shift()}return!0}function yt(e,t,n){gt(e)&&n.delete(t)}function bt(){for(ot=!1;0<at.length;){var e=at[0];if(null!==e.blockedOn){null!==(e=no(e.blockedOn))&&et(e);break}for(var t=e.targetContainers;0<t.length;){var n=Zt(e.domEventName,e.eventSystemFlags,t[0],e.nativeEvent);if(null!==n){e.blockedOn=n;break}t.shift()}null===e.blockedOn&&at.shift()}null!==it&>(it)&&(it=null),null!==st&>(st)&&(st=null),null!==lt&>(lt)&&(lt=null),ut.forEach(yt),ct.forEach(yt)}function wt(e,t){e.blockedOn===t&&(e.blockedOn=null,ot||(ot=!0,a.unstable_scheduleCallback(a.unstable_NormalPriority,bt)))}function xt(e){function t(t){return wt(t,e)}if(0<at.length){wt(at[0],e);for(var n=1;n<at.length;n++){var r=at[n];r.blockedOn===e&&(r.blockedOn=null)}}for(null!==it&&wt(it,e),null!==st&&wt(st,e),null!==lt&&wt(lt,e),ut.forEach(t),ct.forEach(t),n=0;n<ft.length;n++)(r=ft[n]).blockedOn===e&&(r.blockedOn=null);for(;0<ft.length&&null===(n=ft[0]).blockedOn;)vt(n),null===n.blockedOn&&ft.shift()}function Et(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n["Webkit"+e]="webkit"+t,n["Moz"+e]="moz"+t,n}var St={animationend:Et("Animation","AnimationEnd"),animationiteration:Et("Animation","AnimationIteration"),animationstart:Et("Animation","AnimationStart"),transitionend:Et("Transition","TransitionEnd")},kt={},_t={};function Ot(e){if(kt[e])return kt[e];if(!St[e])return e;var t,n=St[e];for(t in n)if(n.hasOwnProperty(t)&&t in _t)return kt[e]=n[t];return e}f&&(_t=document.createElement("div").style,"AnimationEvent"in window||(delete St.animationend.animation,delete St.animationiteration.animation,delete St.animationstart.animation),"TransitionEvent"in window||delete St.transitionend.transition);var Ct=Ot("animationend"),Pt=Ot("animationiteration"),jt=Ot("animationstart"),At=Ot("transitionend"),It=new Map,Tt=new Map,Rt=["abort","abort",Ct,"animationEnd",Pt,"animationIteration",jt,"animationStart","canplay","canPlay","canplaythrough","canPlayThrough","durationchange","durationChange","emptied","emptied","encrypted","encrypted","ended","ended","error","error","gotpointercapture","gotPointerCapture","load","load","loadeddata","loadedData","loadedmetadata","loadedMetadata","loadstart","loadStart","lostpointercapture","lostPointerCapture","playing","playing","progress","progress","seeking","seeking","stalled","stalled","suspend","suspend","timeupdate","timeUpdate",At,"transitionEnd","waiting","waiting"];function Nt(e,t){for(var n=0;n<e.length;n+=2){var r=e[n],o=e[n+1];o="on"+(o[0].toUpperCase()+o.slice(1)),Tt.set(r,t),It.set(r,o),u(o,[r])}}(0,a.unstable_now)();var Mt=8;function Ft(e){if(0!=(1&e))return Mt=15,1;if(0!=(2&e))return Mt=14,2;if(0!=(4&e))return Mt=13,4;var t=24&e;return 0!==t?(Mt=12,t):0!=(32&e)?(Mt=11,32):0!=(t=192&e)?(Mt=10,t):0!=(256&e)?(Mt=9,256):0!=(t=3584&e)?(Mt=8,t):0!=(4096&e)?(Mt=7,4096):0!=(t=4186112&e)?(Mt=6,t):0!=(t=62914560&e)?(Mt=5,t):67108864&e?(Mt=4,67108864):0!=(134217728&e)?(Mt=3,134217728):0!=(t=805306368&e)?(Mt=2,t):0!=(1073741824&e)?(Mt=1,1073741824):(Mt=8,e)}function Lt(e,t){var n=e.pendingLanes;if(0===n)return Mt=0;var r=0,o=0,a=e.expiredLanes,i=e.suspendedLanes,s=e.pingedLanes;if(0!==a)r=a,o=Mt=15;else if(0!=(a=134217727&n)){var l=a&~i;0!==l?(r=Ft(l),o=Mt):0!=(s&=a)&&(r=Ft(s),o=Mt)}else 0!=(a=n&~i)?(r=Ft(a),o=Mt):0!==s&&(r=Ft(s),o=Mt);if(0===r)return 0;if(r=n&((0>(r=31-Wt(r))?0:1<<r)<<1)-1,0!==t&&t!==r&&0==(t&i)){if(Ft(t),o<=Mt)return t;Mt=o}if(0!==(t=e.entangledLanes))for(e=e.entanglements,t&=r;0<t;)o=1<<(n=31-Wt(t)),r|=e[n],t&=~o;return r}function Dt(e){return 0!=(e=-1073741825&e.pendingLanes)?e:1073741824&e?1073741824:0}function zt(e,t){switch(e){case 15:return 1;case 14:return 2;case 12:return 0===(e=Vt(24&~t))?zt(10,t):e;case 10:return 0===(e=Vt(192&~t))?zt(8,t):e;case 8:return 0===(e=Vt(3584&~t))&&0===(e=Vt(4186112&~t))&&(e=512),e;case 2:return 0===(t=Vt(805306368&~t))&&(t=268435456),t}throw Error(i(358,e))}function Vt(e){return e&-e}function Ut(e){for(var t=[],n=0;31>n;n++)t.push(e);return t}function Bt(e,t,n){e.pendingLanes|=t;var r=t-1;e.suspendedLanes&=r,e.pingedLanes&=r,(e=e.eventTimes)[t=31-Wt(t)]=n}var Wt=Math.clz32?Math.clz32:function(e){return 0===e?32:31-(Ht(e)/$t|0)|0},Ht=Math.log,$t=Math.LN2,Gt=a.unstable_UserBlockingPriority,qt=a.unstable_runWithPriority,Yt=!0;function Kt(e,t,n,r){Fe||Ne();var o=Xt,a=Fe;Fe=!0;try{Re(o,e,t,n,r)}finally{(Fe=a)||De()}}function Qt(e,t,n,r){qt(Gt,Xt.bind(null,e,t,n,r))}function Xt(e,t,n,r){var o;if(Yt)if((o=0==(4&t))&&0<at.length&&-1<pt.indexOf(e))e=dt(null,e,t,n,r),at.push(e);else{var a=Zt(e,t,n,r);if(null===a)o&&ht(e,r);else{if(o){if(-1<pt.indexOf(e))return e=dt(a,e,t,n,r),void at.push(e);if(function(e,t,n,r,o){switch(t){case"focusin":return it=mt(it,e,t,n,r,o),!0;case"dragenter":return st=mt(st,e,t,n,r,o),!0;case"mouseover":return lt=mt(lt,e,t,n,r,o),!0;case"pointerover":var a=o.pointerId;return ut.set(a,mt(ut.get(a)||null,e,t,n,r,o)),!0;case"gotpointercapture":return a=o.pointerId,ct.set(a,mt(ct.get(a)||null,e,t,n,r,o)),!0}return!1}(a,e,t,n,r))return;ht(e,r)}Nr(e,t,r,null,n)}}}function Zt(e,t,n,r){var o=_e(r);if(null!==(o=to(o))){var a=Ke(o);if(null===a)o=null;else{var i=a.tag;if(13===i){if(null!==(o=Qe(a)))return o;o=null}else if(3===i){if(a.stateNode.hydrate)return 3===a.tag?a.stateNode.containerInfo:null;o=null}else a!==o&&(o=null)}}return Nr(e,t,r,o,n),null}var Jt=null,en=null,tn=null;function nn(){if(tn)return tn;var e,t,n=en,r=n.length,o="value"in Jt?Jt.value:Jt.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 tn=o.slice(e,1<t?1-t:void 0)}function rn(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 on(){return!0}function an(){return!1}function sn(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)?on:an,this.isPropagationStopped=an,this}return o(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=on)},stopPropagation:function(){var e=this.nativeEvent;e&&(e.stopPropagation?e.stopPropagation():"unknown"!=typeof e.cancelBubble&&(e.cancelBubble=!0),this.isPropagationStopped=on)},persist:function(){},isPersistent:on}),t}var ln,un,cn,fn={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},pn=sn(fn),dn=o({},fn,{view:0,detail:0}),hn=sn(dn),mn=o({},dn,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:Cn,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!==cn&&(cn&&"mousemove"===e.type?(ln=e.screenX-cn.screenX,un=e.screenY-cn.screenY):un=ln=0,cn=e),ln)},movementY:function(e){return"movementY"in e?e.movementY:un}}),vn=sn(mn),gn=sn(o({},mn,{dataTransfer:0})),yn=sn(o({},dn,{relatedTarget:0})),bn=sn(o({},fn,{animationName:0,elapsedTime:0,pseudoElement:0})),wn=o({},fn,{clipboardData:function(e){return"clipboardData"in e?e.clipboardData:window.clipboardData}}),xn=sn(wn),En=sn(o({},fn,{data:0})),Sn={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},kn={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"},_n={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function On(e){var t=this.nativeEvent;return t.getModifierState?t.getModifierState(e):!!(e=_n[e])&&!!t[e]}function Cn(){return On}var Pn=o({},dn,{key:function(e){if(e.key){var t=Sn[e.key]||e.key;if("Unidentified"!==t)return t}return"keypress"===e.type?13===(e=rn(e))?"Enter":String.fromCharCode(e):"keydown"===e.type||"keyup"===e.type?kn[e.keyCode]||"Unidentified":""},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:Cn,charCode:function(e){return"keypress"===e.type?rn(e):0},keyCode:function(e){return"keydown"===e.type||"keyup"===e.type?e.keyCode:0},which:function(e){return"keypress"===e.type?rn(e):"keydown"===e.type||"keyup"===e.type?e.keyCode:0}}),jn=sn(Pn),An=sn(o({},mn,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0})),In=sn(o({},dn,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:Cn})),Tn=sn(o({},fn,{propertyName:0,elapsedTime:0,pseudoElement:0})),Rn=o({},mn,{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}),Nn=sn(Rn),Mn=[9,13,27,32],Fn=f&&"CompositionEvent"in window,Ln=null;f&&"documentMode"in document&&(Ln=document.documentMode);var Dn=f&&"TextEvent"in window&&!Ln,zn=f&&(!Fn||Ln&&8<Ln&&11>=Ln),Vn=String.fromCharCode(32),Un=!1;function Bn(e,t){switch(e){case"keyup":return-1!==Mn.indexOf(t.keyCode);case"keydown":return 229!==t.keyCode;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function Wn(e){return"object"==typeof(e=e.detail)&&"data"in e?e.data:null}var Hn=!1,$n={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 Gn(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return"input"===t?!!$n[e.type]:"textarea"===t}function qn(e,t,n,r){Ae(r),0<(t=Fr(t,"onChange")).length&&(n=new pn("onChange","change",null,n,r),e.push({event:n,listeners:t}))}var Yn=null,Kn=null;function Qn(e){Pr(e,0)}function Xn(e){if(X(ro(e)))return e}function Zn(e,t){if("change"===e)return t}var Jn=!1;if(f){var er;if(f){var tr="oninput"in document;if(!tr){var nr=document.createElement("div");nr.setAttribute("oninput","return;"),tr="function"==typeof nr.oninput}er=tr}else er=!1;Jn=er&&(!document.documentMode||9<document.documentMode)}function rr(){Yn&&(Yn.detachEvent("onpropertychange",or),Kn=Yn=null)}function or(e){if("value"===e.propertyName&&Xn(Kn)){var t=[];if(qn(t,Kn,e,_e(e)),e=Qn,Fe)e(t);else{Fe=!0;try{Te(e,t)}finally{Fe=!1,De()}}}}function ar(e,t,n){"focusin"===e?(rr(),Kn=n,(Yn=t).attachEvent("onpropertychange",or)):"focusout"===e&&rr()}function ir(e){if("selectionchange"===e||"keyup"===e||"keydown"===e)return Xn(Kn)}function sr(e,t){if("click"===e)return Xn(t)}function lr(e,t){if("input"===e||"change"===e)return Xn(t)}var ur="function"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t},cr=Object.prototype.hasOwnProperty;function fr(e,t){if(ur(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++)if(!cr.call(t,n[r])||!ur(e[n[r]],t[n[r]]))return!1;return!0}function pr(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function dr(e,t){var n,r=pr(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=pr(r)}}function hr(e,t){return!(!e||!t)&&(e===t||(!e||3!==e.nodeType)&&(t&&3===t.nodeType?hr(e,t.parentNode):"contains"in e?e.contains(t):!!e.compareDocumentPosition&&!!(16&e.compareDocumentPosition(t))))}function mr(){for(var e=window,t=Z();t instanceof e.HTMLIFrameElement;){try{var n="string"==typeof t.contentWindow.location.href}catch(e){n=!1}if(!n)break;t=Z((e=t.contentWindow).document)}return t}function vr(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)}var gr=f&&"documentMode"in document&&11>=document.documentMode,yr=null,br=null,wr=null,xr=!1;function Er(e,t,n){var r=n.window===n?n.document:9===n.nodeType?n:n.ownerDocument;xr||null==yr||yr!==Z(r)||(r="selectionStart"in(r=yr)&&vr(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},wr&&fr(wr,r)||(wr=r,0<(r=Fr(br,"onSelect")).length&&(t=new pn("onSelect","select",null,t,n),e.push({event:t,listeners:r}),t.target=yr)))}Nt("cancel cancel click click close close contextmenu contextMenu copy copy cut cut auxclick auxClick dblclick doubleClick dragend dragEnd dragstart dragStart drop drop focusin focus focusout blur input input invalid invalid keydown keyDown keypress keyPress keyup keyUp mousedown mouseDown mouseup mouseUp paste paste pause pause play play pointercancel pointerCancel pointerdown pointerDown pointerup pointerUp ratechange rateChange reset reset seeked seeked submit submit touchcancel touchCancel touchend touchEnd touchstart touchStart volumechange volumeChange".split(" "),0),Nt("drag drag dragenter dragEnter dragexit dragExit dragleave dragLeave dragover dragOver mousemove mouseMove mouseout mouseOut mouseover mouseOver pointermove pointerMove pointerout pointerOut pointerover pointerOver scroll scroll toggle toggle touchmove touchMove wheel wheel".split(" "),1),Nt(Rt,2);for(var Sr="change selectionchange textInput compositionstart compositionend compositionupdate".split(" "),kr=0;kr<Sr.length;kr++)Tt.set(Sr[kr],0);c("onMouseEnter",["mouseout","mouseover"]),c("onMouseLeave",["mouseout","mouseover"]),c("onPointerEnter",["pointerout","pointerover"]),c("onPointerLeave",["pointerout","pointerover"]),u("onChange","change click focusin focusout input keydown keyup selectionchange".split(" ")),u("onSelect","focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange".split(" ")),u("onBeforeInput",["compositionend","keypress","textInput","paste"]),u("onCompositionEnd","compositionend focusout keydown keypress keyup mousedown".split(" ")),u("onCompositionStart","compositionstart focusout keydown keypress keyup mousedown".split(" ")),u("onCompositionUpdate","compositionupdate focusout keydown keypress keyup mousedown".split(" "));var _r="abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange seeked seeking stalled suspend timeupdate volumechange waiting".split(" "),Or=new Set("cancel close invalid load scroll toggle".split(" ").concat(_r));function Cr(e,t,n){var r=e.type||"unknown-event";e.currentTarget=n,function(e,t,n,r,o,a,s,l,u){if(Ye.apply(this,arguments),We){if(!We)throw Error(i(198));var c=He;We=!1,He=null,$e||($e=!0,Ge=c)}}(r,t,void 0,e),e.currentTarget=null}function Pr(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;Cr(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;Cr(o,s,u),a=l}}}if($e)throw e=Ge,$e=!1,Ge=null,e}function jr(e,t){var n=ao(t),r=e+"__bubble";n.has(r)||(Rr(t,e,2,!1),n.add(r))}var Ar="_reactListening"+Math.random().toString(36).slice(2);function Ir(e){e[Ar]||(e[Ar]=!0,s.forEach((function(t){Or.has(t)||Tr(t,!1,e,null),Tr(t,!0,e,null)})))}function Tr(e,t,n,r){var o=4<arguments.length&&void 0!==arguments[4]?arguments[4]:0,a=n;if("selectionchange"===e&&9!==n.nodeType&&(a=n.ownerDocument),null!==r&&!t&&Or.has(e)){if("scroll"!==e)return;o|=2,a=r}var i=ao(a),s=e+"__"+(t?"capture":"bubble");i.has(s)||(t&&(o|=4),Rr(a,e,o,t),i.add(s))}function Rr(e,t,n,r){var o=Tt.get(t);switch(void 0===o?2:o){case 0:o=Kt;break;case 1:o=Qt;break;default:o=Xt}n=o.bind(null,t,n,e),o=void 0,!Ve||"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 Nr(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=to(s)))return;if(5===(l=i.tag)||6===l){r=a=i;continue e}s=s.parentNode}}r=r.return}!function(e,t,n){if(Le)return e();Le=!0;try{Me(e,t,n)}finally{Le=!1,De()}}((function(){var r=a,o=_e(n),i=[];e:{var s=It.get(e);if(void 0!==s){var l=pn,u=e;switch(e){case"keypress":if(0===rn(n))break e;case"keydown":case"keyup":l=jn;break;case"focusin":u="focus",l=yn;break;case"focusout":u="blur",l=yn;break;case"beforeblur":case"afterblur":l=yn;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=vn;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":l=gn;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":l=In;break;case Ct:case Pt:case jt:l=bn;break;case At:l=Tn;break;case"scroll":l=hn;break;case"wheel":l=Nn;break;case"copy":case"cut":case"paste":l=xn;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":l=An}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=ze(h,p))&&c.push(Mr(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)||0!=(16&t)||!(u=n.relatedTarget||n.fromElement)||!to(u)&&!u[Jr])&&(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)?to(u):null)&&(u!==(f=Ke(u))||5!==u.tag&&6!==u.tag)&&(u=null)):(l=null,u=r),l!==u)){if(c=vn,m="onMouseLeave",p="onMouseEnter",h="mouse","pointerout"!==e&&"pointerover"!==e||(c=An,m="onPointerLeave",p="onPointerEnter",h="pointer"),f=null==l?s:ro(l),d=null==u?s:ro(u),(s=new c(m,h+"leave",l,n,o)).target=f,s.relatedTarget=d,m=null,to(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=Lr(d))h++;for(d=0,m=p;m;m=Lr(m))d++;for(;0<h-d;)c=Lr(c),h--;for(;0<d-h;)p=Lr(p),d--;for(;h--;){if(c===p||null!==p&&c===p.alternate)break e;c=Lr(c),p=Lr(p)}c=null}else c=null;null!==l&&Dr(i,s,l,c,!1),null!==u&&null!==f&&Dr(i,f,u,c,!0)}if("select"===(l=(s=r?ro(r):window).nodeName&&s.nodeName.toLowerCase())||"input"===l&&"file"===s.type)var v=Zn;else if(Gn(s))if(Jn)v=lr;else{v=ir;var g=ar}else(l=s.nodeName)&&"input"===l.toLowerCase()&&("checkbox"===s.type||"radio"===s.type)&&(v=sr);switch(v&&(v=v(e,r))?qn(i,v,n,o):(g&&g(e,s,r),"focusout"===e&&(g=s._wrapperState)&&g.controlled&&"number"===s.type&&oe(s,"number",s.value)),g=r?ro(r):window,e){case"focusin":(Gn(g)||"true"===g.contentEditable)&&(yr=g,br=r,wr=null);break;case"focusout":wr=br=yr=null;break;case"mousedown":xr=!0;break;case"contextmenu":case"mouseup":case"dragend":xr=!1,Er(i,n,o);break;case"selectionchange":if(gr)break;case"keydown":case"keyup":Er(i,n,o)}var y;if(Fn)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 Hn?Bn(e,n)&&(b="onCompositionEnd"):"keydown"===e&&229===n.keyCode&&(b="onCompositionStart");b&&(zn&&"ko"!==n.locale&&(Hn||"onCompositionStart"!==b?"onCompositionEnd"===b&&Hn&&(y=nn()):(en="value"in(Jt=o)?Jt.value:Jt.textContent,Hn=!0)),0<(g=Fr(r,b)).length&&(b=new En(b,e,null,n,o),i.push({event:b,listeners:g}),(y||null!==(y=Wn(n)))&&(b.data=y))),(y=Dn?function(e,t){switch(e){case"compositionend":return Wn(t);case"keypress":return 32!==t.which?null:(Un=!0,Vn);case"textInput":return(e=t.data)===Vn&&Un?null:e;default:return null}}(e,n):function(e,t){if(Hn)return"compositionend"===e||!Fn&&Bn(e,t)?(e=nn(),tn=en=Jt=null,Hn=!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 zn&&"ko"!==t.locale?null:t.data}}(e,n))&&0<(r=Fr(r,"onBeforeInput")).length&&(o=new En("onBeforeInput","beforeinput",null,n,o),i.push({event:o,listeners:r}),o.data=y)}Pr(i,t)}))}function Mr(e,t,n){return{instance:e,listener:t,currentTarget:n}}function Fr(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=ze(e,n))&&r.unshift(Mr(e,a,o)),null!=(a=ze(e,t))&&r.push(Mr(e,a,o))),e=e.return}return r}function Lr(e){if(null===e)return null;do{e=e.return}while(e&&5!==e.tag);return e||null}function Dr(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=ze(n,a))&&i.unshift(Mr(n,l,s)):o||null!=(l=ze(n,a))&&i.push(Mr(n,l,s))),n=n.return}0!==i.length&&e.push({event:t,listeners:i})}function zr(){}var Vr=null,Ur=null;function Br(e,t){switch(e){case"button":case"input":case"select":case"textarea":return!!t.autoFocus}return!1}function Wr(e,t){return"textarea"===e||"option"===e||"noscript"===e||"string"==typeof t.children||"number"==typeof t.children||"object"==typeof t.dangerouslySetInnerHTML&&null!==t.dangerouslySetInnerHTML&&null!=t.dangerouslySetInnerHTML.__html}var Hr="function"==typeof setTimeout?setTimeout:void 0,$r="function"==typeof clearTimeout?clearTimeout:void 0;function Gr(e){(1===e.nodeType||9===e.nodeType&&null!=(e=e.body))&&(e.textContent="")}function qr(e){for(;null!=e;e=e.nextSibling){var t=e.nodeType;if(1===t||3===t)break}return e}function Yr(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 Kr=0,Qr=Math.random().toString(36).slice(2),Xr="__reactFiber$"+Qr,Zr="__reactProps$"+Qr,Jr="__reactContainer$"+Qr,eo="__reactEvents$"+Qr;function to(e){var t=e[Xr];if(t)return t;for(var n=e.parentNode;n;){if(t=n[Jr]||n[Xr]){if(n=t.alternate,null!==t.child||null!==n&&null!==n.child)for(e=Yr(e);null!==e;){if(n=e[Xr])return n;e=Yr(e)}return t}n=(e=n).parentNode}return null}function no(e){return!(e=e[Xr]||e[Jr])||5!==e.tag&&6!==e.tag&&13!==e.tag&&3!==e.tag?null:e}function ro(e){if(5===e.tag||6===e.tag)return e.stateNode;throw Error(i(33))}function oo(e){return e[Zr]||null}function ao(e){var t=e[eo];return void 0===t&&(t=e[eo]=new Set),t}var io=[],so=-1;function lo(e){return{current:e}}function uo(e){0>so||(e.current=io[so],io[so]=null,so--)}function co(e,t){so++,io[so]=e.current,e.current=t}var fo={},po=lo(fo),ho=lo(!1),mo=fo;function vo(e,t){var n=e.type.contextTypes;if(!n)return fo;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 go(e){return null!=e.childContextTypes}function yo(){uo(ho),uo(po)}function bo(e,t,n){if(po.current!==fo)throw Error(i(168));co(po,t),co(ho,n)}function wo(e,t,n){var r=e.stateNode;if(e=t.childContextTypes,"function"!=typeof r.getChildContext)return n;for(var a in r=r.getChildContext())if(!(a in e))throw Error(i(108,q(t)||"Unknown",a));return o({},n,r)}function xo(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||fo,mo=po.current,co(po,e),co(ho,ho.current),!0}function Eo(e,t,n){var r=e.stateNode;if(!r)throw Error(i(169));n?(e=wo(e,t,mo),r.__reactInternalMemoizedMergedChildContext=e,uo(ho),uo(po),co(po,e)):uo(ho),co(ho,n)}var So=null,ko=null,_o=a.unstable_runWithPriority,Oo=a.unstable_scheduleCallback,Co=a.unstable_cancelCallback,Po=a.unstable_shouldYield,jo=a.unstable_requestPaint,Ao=a.unstable_now,Io=a.unstable_getCurrentPriorityLevel,To=a.unstable_ImmediatePriority,Ro=a.unstable_UserBlockingPriority,No=a.unstable_NormalPriority,Mo=a.unstable_LowPriority,Fo=a.unstable_IdlePriority,Lo={},Do=void 0!==jo?jo:function(){},zo=null,Vo=null,Uo=!1,Bo=Ao(),Wo=1e4>Bo?Ao:function(){return Ao()-Bo};function Ho(){switch(Io()){case To:return 99;case Ro:return 98;case No:return 97;case Mo:return 96;case Fo:return 95;default:throw Error(i(332))}}function $o(e){switch(e){case 99:return To;case 98:return Ro;case 97:return No;case 96:return Mo;case 95:return Fo;default:throw Error(i(332))}}function Go(e,t){return e=$o(e),_o(e,t)}function qo(e,t,n){return e=$o(e),Oo(e,t,n)}function Yo(){if(null!==Vo){var e=Vo;Vo=null,Co(e)}Ko()}function Ko(){if(!Uo&&null!==zo){Uo=!0;var e=0;try{var t=zo;Go(99,(function(){for(;e<t.length;e++){var n=t[e];do{n=n(!0)}while(null!==n)}})),zo=null}catch(t){throw null!==zo&&(zo=zo.slice(e+1)),Oo(To,Yo),t}finally{Uo=!1}}}var Qo=x.ReactCurrentBatchConfig;function Xo(e,t){if(e&&e.defaultProps){for(var n in t=o({},t),e=e.defaultProps)void 0===t[n]&&(t[n]=e[n]);return t}return t}var Zo=lo(null),Jo=null,ea=null,ta=null;function na(){ta=ea=Jo=null}function ra(e){var t=Zo.current;uo(Zo),e.type._context._currentValue=t}function oa(e,t){for(;null!==e;){var n=e.alternate;if((e.childLanes&t)===t){if(null===n||(n.childLanes&t)===t)break;n.childLanes|=t}else e.childLanes|=t,null!==n&&(n.childLanes|=t);e=e.return}}function aa(e,t){Jo=e,ta=ea=null,null!==(e=e.dependencies)&&null!==e.firstContext&&(0!=(e.lanes&t)&&(Fi=!0),e.firstContext=null)}function ia(e,t){if(ta!==e&&!1!==t&&0!==t)if("number"==typeof t&&1073741823!==t||(ta=e,t=1073741823),t={context:e,observedBits:t,next:null},null===ea){if(null===Jo)throw Error(i(308));ea=t,Jo.dependencies={lanes:0,firstContext:t,responders:null}}else ea=ea.next=t;return e._currentValue}var sa=!1;function la(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null},effects:null}}function ua(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 ca(e,t){return{eventTime:e,lane:t,tag:0,payload:null,callback:null,next:null}}function fa(e,t){if(null!==(e=e.updateQueue)){var n=(e=e.shared).pending;null===n?t.next=t:(t.next=n.next,n.next=t),e.pending=t}}function pa(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 da(e,t,n,r){var a=e.updateQueue;sa=!1;var i=a.firstBaseUpdate,s=a.lastBaseUpdate,l=a.shared.pending;if(null!==l){a.shared.pending=null;var u=l,c=u.next;u.next=null,null===s?i=c:s.next=c,s=u;var f=e.alternate;if(null!==f){var p=(f=f.updateQueue).lastBaseUpdate;p!==s&&(null===p?f.firstBaseUpdate=c:p.next=c,f.lastBaseUpdate=u)}}if(null!==i){for(p=a.baseState,s=0,f=c=u=null;;){l=i.lane;var d=i.eventTime;if((r&l)===l){null!==f&&(f=f.next={eventTime:d,lane:0,tag:i.tag,payload:i.payload,callback:i.callback,next:null});e:{var h=e,m=i;switch(l=t,d=n,m.tag){case 1:if("function"==typeof(h=m.payload)){p=h.call(d,p,l);break e}p=h;break e;case 3:h.flags=-4097&h.flags|64;case 0:if(null==(l="function"==typeof(h=m.payload)?h.call(d,p,l):h))break e;p=o({},p,l);break e;case 2:sa=!0}}null!==i.callback&&(e.flags|=32,null===(l=a.effects)?a.effects=[i]:l.push(i))}else d={eventTime:d,lane:l,tag:i.tag,payload:i.payload,callback:i.callback,next:null},null===f?(c=f=d,u=p):f=f.next=d,s|=l;if(null===(i=i.next)){if(null===(l=a.shared.pending))break;i=l.next,l.next=null,a.lastBaseUpdate=l,a.shared.pending=null}}null===f&&(u=p),a.baseState=u,a.firstBaseUpdate=c,a.lastBaseUpdate=f,Ds|=s,e.lanes=s,e.memoizedState=p}}function ha(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(i(191,o));o.call(r)}}}var ma=(new r.Component).refs;function va(e,t,n,r){n=null==(n=n(r,t=e.memoizedState))?t:o({},t,n),e.memoizedState=n,0===e.lanes&&(e.updateQueue.baseState=n)}var ga={isMounted:function(e){return!!(e=e._reactInternals)&&Ke(e)===e},enqueueSetState:function(e,t,n){e=e._reactInternals;var r=ul(),o=cl(e),a=ca(r,o);a.payload=t,null!=n&&(a.callback=n),fa(e,a),fl(e,o,r)},enqueueReplaceState:function(e,t,n){e=e._reactInternals;var r=ul(),o=cl(e),a=ca(r,o);a.tag=1,a.payload=t,null!=n&&(a.callback=n),fa(e,a),fl(e,o,r)},enqueueForceUpdate:function(e,t){e=e._reactInternals;var n=ul(),r=cl(e),o=ca(n,r);o.tag=2,null!=t&&(o.callback=t),fa(e,o),fl(e,r,n)}};function ya(e,t,n,r,o,a,i){return"function"==typeof(e=e.stateNode).shouldComponentUpdate?e.shouldComponentUpdate(r,a,i):!(t.prototype&&t.prototype.isPureReactComponent&&fr(n,r)&&fr(o,a))}function ba(e,t,n){var r=!1,o=fo,a=t.contextType;return"object"==typeof a&&null!==a?a=ia(a):(o=go(t)?mo:po.current,a=(r=null!=(r=t.contextTypes))?vo(e,o):fo),t=new t(n,a),e.memoizedState=null!==t.state&&void 0!==t.state?t.state:null,t.updater=ga,e.stateNode=t,t._reactInternals=e,r&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=o,e.__reactInternalMemoizedMaskedChildContext=a),t}function wa(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&&ga.enqueueReplaceState(t,t.state,null)}function xa(e,t,n,r){var o=e.stateNode;o.props=n,o.state=e.memoizedState,o.refs=ma,la(e);var a=t.contextType;"object"==typeof a&&null!==a?o.context=ia(a):(a=go(t)?mo:po.current,o.context=vo(e,a)),da(e,n,o,r),o.state=e.memoizedState,"function"==typeof(a=t.getDerivedStateFromProps)&&(va(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&&ga.enqueueReplaceState(o,o.state,null),da(e,n,o,r),o.state=e.memoizedState),"function"==typeof o.componentDidMount&&(e.flags|=4)}var Ea=Array.isArray;function Sa(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(i(309));var r=n.stateNode}if(!r)throw Error(i(147,e));var o=""+e;return null!==t&&null!==t.ref&&"function"==typeof t.ref&&t.ref._stringRef===o?t.ref:(t=function(e){var t=r.refs;t===ma&&(t=r.refs={}),null===e?delete t[o]:t[o]=e},t._stringRef=o,t)}if("string"!=typeof e)throw Error(i(284));if(!n._owner)throw Error(i(290,e))}return e}function ka(e,t){if("textarea"!==e.type)throw Error(i(31,"[object Object]"===Object.prototype.toString.call(t)?"object with keys {"+Object.keys(t).join(", ")+"}":t))}function _a(e){function t(t,n){if(e){var r=t.lastEffect;null!==r?(r.nextEffect=n,t.lastEffect=n):t.firstEffect=t.lastEffect=n,n.nextEffect=null,n.flags=8}}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=Wl(e,t)).index=0,e.sibling=null,e}function a(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):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=ql(n,e.mode,r)).return=e,t):((t=o(t,n)).return=e,t)}function u(e,t,n,r){return null!==t&&t.elementType===n.type?((r=o(t,n.props)).ref=Sa(e,t,n),r.return=e,r):((r=Hl(n.type,n.key,n.props,null,e.mode,r)).ref=Sa(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=Yl(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=$l(n,e.mode,r,a)).return=e,t):((t=o(t,n)).return=e,t)}function p(e,t,n){if("string"==typeof t||"number"==typeof t)return(t=ql(""+t,e.mode,n)).return=e,t;if("object"==typeof t&&null!==t){switch(t.$$typeof){case E:return(n=Hl(t.type,t.key,t.props,null,e.mode,n)).ref=Sa(e,null,t),n.return=e,n;case S:return(t=Yl(t,e.mode,n)).return=e,t}if(Ea(t)||B(t))return(t=$l(t,e.mode,n,null)).return=e,t;ka(e,t)}return null}function d(e,t,n,r){var o=null!==t?t.key:null;if("string"==typeof n||"number"==typeof n)return null!==o?null:l(e,t,""+n,r);if("object"==typeof n&&null!==n){switch(n.$$typeof){case E:return n.key===o?n.type===k?f(e,t,n.props.children,r,o):u(e,t,n,r):null;case S:return n.key===o?c(e,t,n,r):null}if(Ea(n)||B(n))return null!==o?null:f(e,t,n,r,null);ka(e,n)}return null}function h(e,t,n,r,o){if("string"==typeof r||"number"==typeof r)return l(t,e=e.get(n)||null,""+r,o);if("object"==typeof r&&null!==r){switch(r.$$typeof){case E:return e=e.get(null===r.key?n:r.key)||null,r.type===k?f(t,e,r.props.children,o,r.key):u(t,e,r,o);case S:return c(t,e=e.get(null===r.key?n:r.key)||null,r,o)}if(Ea(r)||B(r))return f(t,e=e.get(n)||null,r,o,null);ka(t,r)}return null}function m(o,i,s,l){for(var u=null,c=null,f=i,m=i=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),i=a(g,i,m),null===c?u=g:c.sibling=g,c=g,f=v}if(m===s.length)return n(o,f),u;if(null===f){for(;m<s.length;m++)null!==(f=p(o,s[m],l))&&(i=a(f,i,m),null===c?u=f:c.sibling=f,c=f);return 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),i=a(v,i,m),null===c?u=v:c.sibling=v,c=v);return e&&f.forEach((function(e){return t(o,e)})),u}function v(o,s,l,u){var c=B(l);if("function"!=typeof c)throw Error(i(150));if(null==(l=c.call(l)))throw Error(i(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=a(b,s,v),null===f?c=b:f.sibling=b,f=b,m=g}if(y.done)return n(o,m),c;if(null===m){for(;!y.done;v++,y=l.next())null!==(y=p(o,y.value,u))&&(s=a(y,s,v),null===f?c=y:f.sibling=y,f=y);return 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=a(y,s,v),null===f?c=y:f.sibling=y,f=y);return e&&m.forEach((function(e){return t(o,e)})),c}return function(e,r,a,l){var u="object"==typeof a&&null!==a&&a.type===k&&null===a.key;u&&(a=a.props.children);var c="object"==typeof a&&null!==a;if(c)switch(a.$$typeof){case E:e:{for(c=a.key,u=r;null!==u;){if(u.key===c){if(7===u.tag){if(a.type===k){n(e,u.sibling),(r=o(u,a.props.children)).return=e,e=r;break e}}else if(u.elementType===a.type){n(e,u.sibling),(r=o(u,a.props)).ref=Sa(e,u,a),r.return=e,e=r;break e}n(e,u);break}t(e,u),u=u.sibling}a.type===k?((r=$l(a.props.children,e.mode,l,a.key)).return=e,e=r):((l=Hl(a.type,a.key,a.props,null,e.mode,l)).ref=Sa(e,r,a),l.return=e,e=l)}return s(e);case S:e:{for(u=a.key;null!==r;){if(r.key===u){if(4===r.tag&&r.stateNode.containerInfo===a.containerInfo&&r.stateNode.implementation===a.implementation){n(e,r.sibling),(r=o(r,a.children||[])).return=e,e=r;break e}n(e,r);break}t(e,r),r=r.sibling}(r=Yl(a,e.mode,l)).return=e,e=r}return s(e)}if("string"==typeof a||"number"==typeof a)return a=""+a,null!==r&&6===r.tag?(n(e,r.sibling),(r=o(r,a)).return=e,e=r):(n(e,r),(r=ql(a,e.mode,l)).return=e,e=r),s(e);if(Ea(a))return m(e,r,a,l);if(B(a))return v(e,r,a,l);if(c&&ka(e,a),void 0===a&&!u)switch(e.tag){case 1:case 22:case 0:case 11:case 15:throw Error(i(152,q(e.type)||"Component"))}return n(e,r)}}var Oa=_a(!0),Ca=_a(!1),Pa={},ja=lo(Pa),Aa=lo(Pa),Ia=lo(Pa);function Ta(e){if(e===Pa)throw Error(i(174));return e}function Ra(e,t){switch(co(Ia,t),co(Aa,e),co(ja,Pa),e=t.nodeType){case 9:case 11:t=(t=t.documentElement)?t.namespaceURI:de(null,"");break;default:t=de(t=(e=8===e?t.parentNode:t).namespaceURI||null,e=e.tagName)}uo(ja),co(ja,t)}function Na(){uo(ja),uo(Aa),uo(Ia)}function Ma(e){Ta(Ia.current);var t=Ta(ja.current),n=de(t,e.type);t!==n&&(co(Aa,e),co(ja,n))}function Fa(e){Aa.current===e&&(uo(ja),uo(Aa))}var La=lo(0);function Da(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!=(64&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 za=null,Va=null,Ua=!1;function Ba(e,t){var n=Ul(5,null,null,0);n.elementType="DELETED",n.type="DELETED",n.stateNode=t,n.return=e,n.flags=8,null!==e.lastEffect?(e.lastEffect.nextEffect=n,e.lastEffect=n):e.firstEffect=e.lastEffect=n}function Wa(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,!0);case 6:return null!==(t=""===e.pendingProps||3!==t.nodeType?null:t)&&(e.stateNode=t,!0);default:return!1}}function Ha(e){if(Ua){var t=Va;if(t){var n=t;if(!Wa(e,t)){if(!(t=qr(n.nextSibling))||!Wa(e,t))return e.flags=-1025&e.flags|2,Ua=!1,void(za=e);Ba(za,n)}za=e,Va=qr(t.firstChild)}else e.flags=-1025&e.flags|2,Ua=!1,za=e}}function $a(e){for(e=e.return;null!==e&&5!==e.tag&&3!==e.tag&&13!==e.tag;)e=e.return;za=e}function Ga(e){if(e!==za)return!1;if(!Ua)return $a(e),Ua=!0,!1;var t=e.type;if(5!==e.tag||"head"!==t&&"body"!==t&&!Wr(t,e.memoizedProps))for(t=Va;t;)Ba(e,t),t=qr(t.nextSibling);if($a(e),13===e.tag){if(!(e=null!==(e=e.memoizedState)?e.dehydrated:null))throw Error(i(317));e:{for(e=e.nextSibling,t=0;e;){if(8===e.nodeType){var n=e.data;if("/$"===n){if(0===t){Va=qr(e.nextSibling);break e}t--}else"$"!==n&&"$!"!==n&&"$?"!==n||t++}e=e.nextSibling}Va=null}}else Va=za?qr(e.stateNode.nextSibling):null;return!0}function qa(){Va=za=null,Ua=!1}var Ya=[];function Ka(){for(var e=0;e<Ya.length;e++)Ya[e]._workInProgressVersionPrimary=null;Ya.length=0}var Qa=x.ReactCurrentDispatcher,Xa=x.ReactCurrentBatchConfig,Za=0,Ja=null,ei=null,ti=null,ni=!1,ri=!1;function oi(){throw Error(i(321))}function ai(e,t){if(null===t)return!1;for(var n=0;n<t.length&&n<e.length;n++)if(!ur(e[n],t[n]))return!1;return!0}function ii(e,t,n,r,o,a){if(Za=a,Ja=t,t.memoizedState=null,t.updateQueue=null,t.lanes=0,Qa.current=null===e||null===e.memoizedState?Ti:Ri,e=n(r,o),ri){a=0;do{if(ri=!1,!(25>a))throw Error(i(301));a+=1,ti=ei=null,t.updateQueue=null,Qa.current=Ni,e=n(r,o)}while(ri)}if(Qa.current=Ii,t=null!==ei&&null!==ei.next,Za=0,ti=ei=Ja=null,ni=!1,t)throw Error(i(300));return e}function si(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return null===ti?Ja.memoizedState=ti=e:ti=ti.next=e,ti}function li(){if(null===ei){var e=Ja.alternate;e=null!==e?e.memoizedState:null}else e=ei.next;var t=null===ti?Ja.memoizedState:ti.next;if(null!==t)ti=t,ei=e;else{if(null===e)throw Error(i(310));e={memoizedState:(ei=e).memoizedState,baseState:ei.baseState,baseQueue:ei.baseQueue,queue:ei.queue,next:null},null===ti?Ja.memoizedState=ti=e:ti=ti.next=e}return ti}function ui(e,t){return"function"==typeof t?t(e):t}function ci(e){var t=li(),n=t.queue;if(null===n)throw Error(i(311));n.lastRenderedReducer=e;var r=ei,o=r.baseQueue,a=n.pending;if(null!==a){if(null!==o){var s=o.next;o.next=a.next,a.next=s}r.baseQueue=o=a,n.pending=null}if(null!==o){o=o.next,r=r.baseState;var l=s=a=null,u=o;do{var c=u.lane;if((Za&c)===c)null!==l&&(l=l.next={lane:0,action:u.action,eagerReducer:u.eagerReducer,eagerState:u.eagerState,next:null}),r=u.eagerReducer===e?u.eagerState:e(r,u.action);else{var f={lane:c,action:u.action,eagerReducer:u.eagerReducer,eagerState:u.eagerState,next:null};null===l?(s=l=f,a=r):l=l.next=f,Ja.lanes|=c,Ds|=c}u=u.next}while(null!==u&&u!==o);null===l?a=r:l.next=s,ur(r,t.memoizedState)||(Fi=!0),t.memoizedState=r,t.baseState=a,t.baseQueue=l,n.lastRenderedState=r}return[t.memoizedState,n.dispatch]}function fi(e){var t=li(),n=t.queue;if(null===n)throw Error(i(311));n.lastRenderedReducer=e;var r=n.dispatch,o=n.pending,a=t.memoizedState;if(null!==o){n.pending=null;var s=o=o.next;do{a=e(a,s.action),s=s.next}while(s!==o);ur(a,t.memoizedState)||(Fi=!0),t.memoizedState=a,null===t.baseQueue&&(t.baseState=a),n.lastRenderedState=a}return[a,r]}function pi(e,t,n){var r=t._getVersion;r=r(t._source);var o=t._workInProgressVersionPrimary;if(null!==o?e=o===r:(e=e.mutableReadLanes,(e=(Za&e)===e)&&(t._workInProgressVersionPrimary=r,Ya.push(t))),e)return n(t._source);throw Ya.push(t),Error(i(350))}function di(e,t,n,r){var o=As;if(null===o)throw Error(i(349));var a=t._getVersion,s=a(t._source),l=Qa.current,u=l.useState((function(){return pi(o,t,n)})),c=u[1],f=u[0];u=ti;var p=e.memoizedState,d=p.refs,h=d.getSnapshot,m=p.source;p=p.subscribe;var v=Ja;return e.memoizedState={refs:d,source:t,subscribe:r},l.useEffect((function(){d.getSnapshot=n,d.setSnapshot=c;var e=a(t._source);if(!ur(s,e)){e=n(t._source),ur(f,e)||(c(e),e=cl(v),o.mutableReadLanes|=e&o.pendingLanes),e=o.mutableReadLanes,o.entangledLanes|=e;for(var r=o.entanglements,i=e;0<i;){var l=31-Wt(i),u=1<<l;r[l]|=e,i&=~u}}}),[n,t,r]),l.useEffect((function(){return r(t._source,(function(){var e=d.getSnapshot,n=d.setSnapshot;try{n(e(t._source));var r=cl(v);o.mutableReadLanes|=r&o.pendingLanes}catch(e){n((function(){throw e}))}}))}),[t,r]),ur(h,n)&&ur(m,t)&&ur(p,r)||((e={pending:null,dispatch:null,lastRenderedReducer:ui,lastRenderedState:f}).dispatch=c=Ai.bind(null,Ja,e),u.queue=e,u.baseQueue=null,f=pi(o,t,n),u.memoizedState=u.baseState=f),f}function hi(e,t,n){return di(li(),e,t,n)}function mi(e){var t=si();return"function"==typeof e&&(e=e()),t.memoizedState=t.baseState=e,e=(e=t.queue={pending:null,dispatch:null,lastRenderedReducer:ui,lastRenderedState:e}).dispatch=Ai.bind(null,Ja,e),[t.memoizedState,e]}function vi(e,t,n,r){return e={tag:e,create:t,destroy:n,deps:r,next:null},null===(t=Ja.updateQueue)?(t={lastEffect:null},Ja.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 gi(e){return e={current:e},si().memoizedState=e}function yi(){return li().memoizedState}function bi(e,t,n,r){var o=si();Ja.flags|=e,o.memoizedState=vi(1|t,n,void 0,void 0===r?null:r)}function wi(e,t,n,r){var o=li();r=void 0===r?null:r;var a=void 0;if(null!==ei){var i=ei.memoizedState;if(a=i.destroy,null!==r&&ai(r,i.deps))return void vi(t,n,a,r)}Ja.flags|=e,o.memoizedState=vi(1|t,n,a,r)}function xi(e,t){return bi(516,4,e,t)}function Ei(e,t){return wi(516,4,e,t)}function Si(e,t){return wi(4,2,e,t)}function ki(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 _i(e,t,n){return n=null!=n?n.concat([e]):null,wi(4,2,ki.bind(null,t,e),n)}function Oi(){}function Ci(e,t){var n=li();t=void 0===t?null:t;var r=n.memoizedState;return null!==r&&null!==t&&ai(t,r[1])?r[0]:(n.memoizedState=[e,t],e)}function Pi(e,t){var n=li();t=void 0===t?null:t;var r=n.memoizedState;return null!==r&&null!==t&&ai(t,r[1])?r[0]:(e=e(),n.memoizedState=[e,t],e)}function ji(e,t){var n=Ho();Go(98>n?98:n,(function(){e(!0)})),Go(97<n?97:n,(function(){var n=Xa.transition;Xa.transition=1;try{e(!1),t()}finally{Xa.transition=n}}))}function Ai(e,t,n){var r=ul(),o=cl(e),a={lane:o,action:n,eagerReducer:null,eagerState:null,next:null},i=t.pending;if(null===i?a.next=a:(a.next=i.next,i.next=a),t.pending=a,i=e.alternate,e===Ja||null!==i&&i===Ja)ri=ni=!0;else{if(0===e.lanes&&(null===i||0===i.lanes)&&null!==(i=t.lastRenderedReducer))try{var s=t.lastRenderedState,l=i(s,n);if(a.eagerReducer=i,a.eagerState=l,ur(l,s))return}catch(e){}fl(e,o,r)}}var Ii={readContext:ia,useCallback:oi,useContext:oi,useEffect:oi,useImperativeHandle:oi,useLayoutEffect:oi,useMemo:oi,useReducer:oi,useRef:oi,useState:oi,useDebugValue:oi,useDeferredValue:oi,useTransition:oi,useMutableSource:oi,useOpaqueIdentifier:oi,unstable_isNewReconciler:!1},Ti={readContext:ia,useCallback:function(e,t){return si().memoizedState=[e,void 0===t?null:t],e},useContext:ia,useEffect:xi,useImperativeHandle:function(e,t,n){return n=null!=n?n.concat([e]):null,bi(4,2,ki.bind(null,t,e),n)},useLayoutEffect:function(e,t){return bi(4,2,e,t)},useMemo:function(e,t){var n=si();return t=void 0===t?null:t,e=e(),n.memoizedState=[e,t],e},useReducer:function(e,t,n){var r=si();return t=void 0!==n?n(t):t,r.memoizedState=r.baseState=t,e=(e=r.queue={pending:null,dispatch:null,lastRenderedReducer:e,lastRenderedState:t}).dispatch=Ai.bind(null,Ja,e),[r.memoizedState,e]},useRef:gi,useState:mi,useDebugValue:Oi,useDeferredValue:function(e){var t=mi(e),n=t[0],r=t[1];return xi((function(){var t=Xa.transition;Xa.transition=1;try{r(e)}finally{Xa.transition=t}}),[e]),n},useTransition:function(){var e=mi(!1),t=e[0];return gi(e=ji.bind(null,e[1])),[e,t]},useMutableSource:function(e,t,n){var r=si();return r.memoizedState={refs:{getSnapshot:t,setSnapshot:null},source:e,subscribe:n},di(r,e,t,n)},useOpaqueIdentifier:function(){if(Ua){var e=!1,t=function(e){return{$$typeof:M,toString:e,valueOf:e}}((function(){throw e||(e=!0,n("r:"+(Kr++).toString(36))),Error(i(355))})),n=mi(t)[1];return 0==(2&Ja.mode)&&(Ja.flags|=516,vi(5,(function(){n("r:"+(Kr++).toString(36))}),void 0,null)),t}return mi(t="r:"+(Kr++).toString(36)),t},unstable_isNewReconciler:!1},Ri={readContext:ia,useCallback:Ci,useContext:ia,useEffect:Ei,useImperativeHandle:_i,useLayoutEffect:Si,useMemo:Pi,useReducer:ci,useRef:yi,useState:function(){return ci(ui)},useDebugValue:Oi,useDeferredValue:function(e){var t=ci(ui),n=t[0],r=t[1];return Ei((function(){var t=Xa.transition;Xa.transition=1;try{r(e)}finally{Xa.transition=t}}),[e]),n},useTransition:function(){var e=ci(ui)[0];return[yi().current,e]},useMutableSource:hi,useOpaqueIdentifier:function(){return ci(ui)[0]},unstable_isNewReconciler:!1},Ni={readContext:ia,useCallback:Ci,useContext:ia,useEffect:Ei,useImperativeHandle:_i,useLayoutEffect:Si,useMemo:Pi,useReducer:fi,useRef:yi,useState:function(){return fi(ui)},useDebugValue:Oi,useDeferredValue:function(e){var t=fi(ui),n=t[0],r=t[1];return Ei((function(){var t=Xa.transition;Xa.transition=1;try{r(e)}finally{Xa.transition=t}}),[e]),n},useTransition:function(){var e=fi(ui)[0];return[yi().current,e]},useMutableSource:hi,useOpaqueIdentifier:function(){return fi(ui)[0]},unstable_isNewReconciler:!1},Mi=x.ReactCurrentOwner,Fi=!1;function Li(e,t,n,r){t.child=null===e?Ca(t,null,n,r):Oa(t,e.child,n,r)}function Di(e,t,n,r,o){n=n.render;var a=t.ref;return aa(t,o),r=ii(e,t,n,r,a,o),null===e||Fi?(t.flags|=1,Li(e,t,r,o),t.child):(t.updateQueue=e.updateQueue,t.flags&=-517,e.lanes&=~o,ns(e,t,o))}function zi(e,t,n,r,o,a){if(null===e){var i=n.type;return"function"!=typeof i||Bl(i)||void 0!==i.defaultProps||null!==n.compare||void 0!==n.defaultProps?((e=Hl(n.type,null,r,t,t.mode,a)).ref=t.ref,e.return=t,t.child=e):(t.tag=15,t.type=i,Vi(e,t,i,r,o,a))}return i=e.child,0==(o&a)&&(o=i.memoizedProps,(n=null!==(n=n.compare)?n:fr)(o,r)&&e.ref===t.ref)?ns(e,t,a):(t.flags|=1,(e=Wl(i,r)).ref=t.ref,e.return=t,t.child=e)}function Vi(e,t,n,r,o,a){if(null!==e&&fr(e.memoizedProps,r)&&e.ref===t.ref){if(Fi=!1,0==(a&o))return t.lanes=e.lanes,ns(e,t,a);0!=(16384&e.flags)&&(Fi=!0)}return Wi(e,t,n,r,a)}function Ui(e,t,n){var r=t.pendingProps,o=r.children,a=null!==e?e.memoizedState:null;if("hidden"===r.mode||"unstable-defer-without-hiding"===r.mode)if(0==(4&t.mode))t.memoizedState={baseLanes:0},bl(0,n);else{if(0==(1073741824&n))return e=null!==a?a.baseLanes|n:n,t.lanes=t.childLanes=1073741824,t.memoizedState={baseLanes:e},bl(0,e),null;t.memoizedState={baseLanes:0},bl(0,null!==a?a.baseLanes:n)}else null!==a?(r=a.baseLanes|n,t.memoizedState=null):r=n,bl(0,r);return Li(e,t,o,n),t.child}function Bi(e,t){var n=t.ref;(null===e&&null!==n||null!==e&&e.ref!==n)&&(t.flags|=128)}function Wi(e,t,n,r,o){var a=go(n)?mo:po.current;return a=vo(t,a),aa(t,o),n=ii(e,t,n,r,a,o),null===e||Fi?(t.flags|=1,Li(e,t,n,o),t.child):(t.updateQueue=e.updateQueue,t.flags&=-517,e.lanes&=~o,ns(e,t,o))}function Hi(e,t,n,r,o){if(go(n)){var a=!0;xo(t)}else a=!1;if(aa(t,o),null===t.stateNode)null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),ba(t,n,r),xa(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?ia(u):vo(t,u=go(n)?mo:po.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)&&wa(t,i,r,u),sa=!1;var p=t.memoizedState;i.state=p,da(t,r,i,o),l=t.memoizedState,s!==r||p!==l||ho.current||sa?("function"==typeof c&&(va(t,n,c,r),l=t.memoizedState),(s=sa||ya(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|=4)):("function"==typeof i.componentDidMount&&(t.flags|=4),t.memoizedProps=r,t.memoizedState=l),i.props=r,i.state=l,i.context=u,r=s):("function"==typeof i.componentDidMount&&(t.flags|=4),r=!1)}else{i=t.stateNode,ua(e,t),s=t.memoizedProps,u=t.type===t.elementType?s:Xo(t.type,s),i.props=u,f=t.pendingProps,p=i.context,l="object"==typeof(l=n.contextType)&&null!==l?ia(l):vo(t,l=go(n)?mo:po.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)&&wa(t,i,r,l),sa=!1,p=t.memoizedState,i.state=p,da(t,r,i,o);var h=t.memoizedState;s!==f||p!==h||ho.current||sa?("function"==typeof d&&(va(t,n,d,r),h=t.memoizedState),(u=sa||ya(t,n,u,r,p,h,l))?(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|=256)):("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|=256),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|=256),r=!1)}return $i(e,t,n,r,a,o)}function $i(e,t,n,r,o,a){Bi(e,t);var i=0!=(64&t.flags);if(!r&&!i)return o&&Eo(t,n,!1),ns(e,t,a);r=t.stateNode,Mi.current=t;var s=i&&"function"!=typeof n.getDerivedStateFromError?null:r.render();return t.flags|=1,null!==e&&i?(t.child=Oa(t,e.child,null,a),t.child=Oa(t,null,s,a)):Li(e,t,s,a),t.memoizedState=r.state,o&&Eo(t,n,!0),t.child}function Gi(e){var t=e.stateNode;t.pendingContext?bo(0,t.pendingContext,t.pendingContext!==t.context):t.context&&bo(0,t.context,!1),Ra(e,t.containerInfo)}var qi,Yi,Ki,Qi={dehydrated:null,retryLane:0};function Xi(e,t,n){var r,o=t.pendingProps,a=La.current,i=!1;return(r=0!=(64&t.flags))||(r=(null===e||null!==e.memoizedState)&&0!=(2&a)),r?(i=!0,t.flags&=-65):null!==e&&null===e.memoizedState||void 0===o.fallback||!0===o.unstable_avoidThisFallback||(a|=1),co(La,1&a),null===e?(void 0!==o.fallback&&Ha(t),e=o.children,a=o.fallback,i?(e=Zi(t,e,a,n),t.child.memoizedState={baseLanes:n},t.memoizedState=Qi,e):"number"==typeof o.unstable_expectedLoadTime?(e=Zi(t,e,a,n),t.child.memoizedState={baseLanes:n},t.memoizedState=Qi,t.lanes=33554432,e):((n=Gl({mode:"visible",children:e},t.mode,n,null)).return=t,t.child=n)):(e.memoizedState,i?(o=function(e,t,n,r,o){var a=t.mode,i=e.child;e=i.sibling;var s={mode:"hidden",children:n};return 0==(2&a)&&t.child!==i?((n=t.child).childLanes=0,n.pendingProps=s,null!==(i=n.lastEffect)?(t.firstEffect=n.firstEffect,t.lastEffect=i,i.nextEffect=null):t.firstEffect=t.lastEffect=null):n=Wl(i,s),null!==e?r=Wl(e,r):(r=$l(r,a,o,null)).flags|=2,r.return=t,n.return=t,n.sibling=r,t.child=n,r}(e,t,o.children,o.fallback,n),i=t.child,a=e.child.memoizedState,i.memoizedState=null===a?{baseLanes:n}:{baseLanes:a.baseLanes|n},i.childLanes=e.childLanes&~n,t.memoizedState=Qi,o):(n=function(e,t,n,r){var o=e.child;return e=o.sibling,n=Wl(o,{mode:"visible",children:n}),0==(2&t.mode)&&(n.lanes=r),n.return=t,n.sibling=null,null!==e&&(e.nextEffect=null,e.flags=8,t.firstEffect=t.lastEffect=e),t.child=n}(e,t,o.children,n),t.memoizedState=null,n))}function Zi(e,t,n,r){var o=e.mode,a=e.child;return t={mode:"hidden",children:t},0==(2&o)&&null!==a?(a.childLanes=0,a.pendingProps=t):a=Gl(t,o,0,null),n=$l(n,o,r,null),a.return=e,n.return=e,a.sibling=n,e.child=a,n}function Ji(e,t){e.lanes|=t;var n=e.alternate;null!==n&&(n.lanes|=t),oa(e.return,t)}function es(e,t,n,r,o,a){var i=e.memoizedState;null===i?e.memoizedState={isBackwards:t,rendering:null,renderingStartTime:0,last:r,tail:n,tailMode:o,lastEffect:a}:(i.isBackwards=t,i.rendering=null,i.renderingStartTime=0,i.last=r,i.tail=n,i.tailMode=o,i.lastEffect=a)}function ts(e,t,n){var r=t.pendingProps,o=r.revealOrder,a=r.tail;if(Li(e,t,r.children,n),0!=(2&(r=La.current)))r=1&r|2,t.flags|=64;else{if(null!==e&&0!=(64&e.flags))e:for(e=t.child;null!==e;){if(13===e.tag)null!==e.memoizedState&&Ji(e,n);else if(19===e.tag)Ji(e,n);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(La,r),0==(2&t.mode))t.memoizedState=null;else switch(o){case"forwards":for(n=t.child,o=null;null!==n;)null!==(e=n.alternate)&&null===Da(e)&&(o=n),n=n.sibling;null===(n=o)?(o=t.child,t.child=null):(o=n.sibling,n.sibling=null),es(t,!1,o,n,a,t.lastEffect);break;case"backwards":for(n=null,o=t.child,t.child=null;null!==o;){if(null!==(e=o.alternate)&&null===Da(e)){t.child=o;break}e=o.sibling,o.sibling=n,n=o,o=e}es(t,!0,n,null,a,t.lastEffect);break;case"together":es(t,!1,null,null,void 0,t.lastEffect);break;default:t.memoizedState=null}return t.child}function ns(e,t,n){if(null!==e&&(t.dependencies=e.dependencies),Ds|=t.lanes,0!=(n&t.childLanes)){if(null!==e&&t.child!==e.child)throw Error(i(153));if(null!==t.child){for(n=Wl(e=t.child,e.pendingProps),t.child=n,n.return=t;null!==e.sibling;)e=e.sibling,(n=n.sibling=Wl(e,e.pendingProps)).return=t;n.sibling=null}return t.child}return null}function rs(e,t){if(!Ua)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 os(e,t,n){var r=t.pendingProps;switch(t.tag){case 2:case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return null;case 1:case 17:return go(t.type)&&yo(),null;case 3:return Na(),uo(ho),uo(po),Ka(),(r=t.stateNode).pendingContext&&(r.context=r.pendingContext,r.pendingContext=null),null!==e&&null!==e.child||(Ga(t)?t.flags|=4:r.hydrate||(t.flags|=256)),null;case 5:Fa(t);var a=Ta(Ia.current);if(n=t.type,null!==e&&null!=t.stateNode)Yi(e,t,n,r),e.ref!==t.ref&&(t.flags|=128);else{if(!r){if(null===t.stateNode)throw Error(i(166));return null}if(e=Ta(ja.current),Ga(t)){r=t.stateNode,n=t.type;var s=t.memoizedProps;switch(r[Xr]=t,r[Zr]=s,n){case"dialog":jr("cancel",r),jr("close",r);break;case"iframe":case"object":case"embed":jr("load",r);break;case"video":case"audio":for(e=0;e<_r.length;e++)jr(_r[e],r);break;case"source":jr("error",r);break;case"img":case"image":case"link":jr("error",r),jr("load",r);break;case"details":jr("toggle",r);break;case"input":ee(r,s),jr("invalid",r);break;case"select":r._wrapperState={wasMultiple:!!s.multiple},jr("invalid",r);break;case"textarea":le(r,s),jr("invalid",r)}for(var u in Se(n,s),e=null,s)s.hasOwnProperty(u)&&(a=s[u],"children"===u?"string"==typeof a?r.textContent!==a&&(e=["children",a]):"number"==typeof a&&r.textContent!==""+a&&(e=["children",""+a]):l.hasOwnProperty(u)&&null!=a&&"onScroll"===u&&jr("scroll",r));switch(n){case"input":Q(r),re(r,s,!0);break;case"textarea":Q(r),ce(r);break;case"select":case"option":break;default:"function"==typeof s.onClick&&(r.onclick=zr)}r=e,t.updateQueue=r,null!==r&&(t.flags|=4)}else{switch(u=9===a.nodeType?a:a.ownerDocument,e===fe&&(e=pe(n)),e===fe?"script"===n?((e=u.createElement("div")).innerHTML="<script><\/script>",e=e.removeChild(e.firstChild)):"string"==typeof r.is?e=u.createElement(n,{is:r.is}):(e=u.createElement(n),"select"===n&&(u=e,r.multiple?u.multiple=!0:r.size&&(u.size=r.size))):e=u.createElementNS(e,n),e[Xr]=t,e[Zr]=r,qi(e,t),t.stateNode=e,u=ke(n,r),n){case"dialog":jr("cancel",e),jr("close",e),a=r;break;case"iframe":case"object":case"embed":jr("load",e),a=r;break;case"video":case"audio":for(a=0;a<_r.length;a++)jr(_r[a],e);a=r;break;case"source":jr("error",e),a=r;break;case"img":case"image":case"link":jr("error",e),jr("load",e),a=r;break;case"details":jr("toggle",e),a=r;break;case"input":ee(e,r),a=J(e,r),jr("invalid",e);break;case"option":a=ae(e,r);break;case"select":e._wrapperState={wasMultiple:!!r.multiple},a=o({},r,{value:void 0}),jr("invalid",e);break;case"textarea":le(e,r),a=se(e,r),jr("invalid",e);break;default:a=r}Se(n,a);var c=a;for(s in c)if(c.hasOwnProperty(s)){var f=c[s];"style"===s?xe(e,f):"dangerouslySetInnerHTML"===s?null!=(f=f?f.__html:void 0)&&ve(e,f):"children"===s?"string"==typeof f?("textarea"!==n||""!==f)&&ge(e,f):"number"==typeof f&&ge(e,""+f):"suppressContentEditableWarning"!==s&&"suppressHydrationWarning"!==s&&"autoFocus"!==s&&(l.hasOwnProperty(s)?null!=f&&"onScroll"===s&&jr("scroll",e):null!=f&&w(e,s,f,u))}switch(n){case"input":Q(e),re(e,r,!1);break;case"textarea":Q(e),ce(e);break;case"option":null!=r.value&&e.setAttribute("value",""+Y(r.value));break;case"select":e.multiple=!!r.multiple,null!=(s=r.value)?ie(e,!!r.multiple,s,!1):null!=r.defaultValue&&ie(e,!!r.multiple,r.defaultValue,!0);break;default:"function"==typeof a.onClick&&(e.onclick=zr)}Br(n,r)&&(t.flags|=4)}null!==t.ref&&(t.flags|=128)}return null;case 6:if(e&&null!=t.stateNode)Ki(0,t,e.memoizedProps,r);else{if("string"!=typeof r&&null===t.stateNode)throw Error(i(166));n=Ta(Ia.current),Ta(ja.current),Ga(t)?(r=t.stateNode,n=t.memoizedProps,r[Xr]=t,r.nodeValue!==n&&(t.flags|=4)):((r=(9===n.nodeType?n:n.ownerDocument).createTextNode(r))[Xr]=t,t.stateNode=r)}return null;case 13:return uo(La),r=t.memoizedState,0!=(64&t.flags)?(t.lanes=n,t):(r=null!==r,n=!1,null===e?void 0!==t.memoizedProps.fallback&&Ga(t):n=null!==e.memoizedState,r&&!n&&0!=(2&t.mode)&&(null===e&&!0!==t.memoizedProps.unstable_avoidThisFallback||0!=(1&La.current)?0===Ms&&(Ms=3):(0!==Ms&&3!==Ms||(Ms=4),null===As||0==(134217727&Ds)&&0==(134217727&zs)||ml(As,Ts))),(r||n)&&(t.flags|=4),null);case 4:return Na(),null===e&&Ir(t.stateNode.containerInfo),null;case 10:return ra(t),null;case 19:if(uo(La),null===(r=t.memoizedState))return null;if(s=0!=(64&t.flags),null===(u=r.rendering))if(s)rs(r,!1);else{if(0!==Ms||null!==e&&0!=(64&e.flags))for(e=t.child;null!==e;){if(null!==(u=Da(e))){for(t.flags|=64,rs(r,!1),null!==(s=u.updateQueue)&&(t.updateQueue=s,t.flags|=4),null===r.lastEffect&&(t.firstEffect=null),t.lastEffect=r.lastEffect,r=n,n=t.child;null!==n;)e=r,(s=n).flags&=2,s.nextEffect=null,s.firstEffect=null,s.lastEffect=null,null===(u=s.alternate)?(s.childLanes=0,s.lanes=e,s.child=null,s.memoizedProps=null,s.memoizedState=null,s.updateQueue=null,s.dependencies=null,s.stateNode=null):(s.childLanes=u.childLanes,s.lanes=u.lanes,s.child=u.child,s.memoizedProps=u.memoizedProps,s.memoizedState=u.memoizedState,s.updateQueue=u.updateQueue,s.type=u.type,e=u.dependencies,s.dependencies=null===e?null:{lanes:e.lanes,firstContext:e.firstContext}),n=n.sibling;return co(La,1&La.current|2),t.child}e=e.sibling}null!==r.tail&&Wo()>Ws&&(t.flags|=64,s=!0,rs(r,!1),t.lanes=33554432)}else{if(!s)if(null!==(e=Da(u))){if(t.flags|=64,s=!0,null!==(n=e.updateQueue)&&(t.updateQueue=n,t.flags|=4),rs(r,!0),null===r.tail&&"hidden"===r.tailMode&&!u.alternate&&!Ua)return null!==(t=t.lastEffect=r.lastEffect)&&(t.nextEffect=null),null}else 2*Wo()-r.renderingStartTime>Ws&&1073741824!==n&&(t.flags|=64,s=!0,rs(r,!1),t.lanes=33554432);r.isBackwards?(u.sibling=t.child,t.child=u):(null!==(n=r.last)?n.sibling=u:t.child=u,r.last=u)}return null!==r.tail?(n=r.tail,r.rendering=n,r.tail=n.sibling,r.lastEffect=t.lastEffect,r.renderingStartTime=Wo(),n.sibling=null,t=La.current,co(La,s?1&t|2:1&t),n):null;case 23:case 24:return wl(),null!==e&&null!==e.memoizedState!=(null!==t.memoizedState)&&"unstable-defer-without-hiding"!==r.mode&&(t.flags|=4),null}throw Error(i(156,t.tag))}function as(e){switch(e.tag){case 1:go(e.type)&&yo();var t=e.flags;return 4096&t?(e.flags=-4097&t|64,e):null;case 3:if(Na(),uo(ho),uo(po),Ka(),0!=(64&(t=e.flags)))throw Error(i(285));return e.flags=-4097&t|64,e;case 5:return Fa(e),null;case 13:return uo(La),4096&(t=e.flags)?(e.flags=-4097&t|64,e):null;case 19:return uo(La),null;case 4:return Na(),null;case 10:return ra(e),null;case 23:case 24:return wl(),null;default:return null}}function is(e,t){try{var n="",r=t;do{n+=G(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}))}}qi=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}},Yi=function(e,t,n,r){var a=e.memoizedProps;if(a!==r){e=t.stateNode,Ta(ja.current);var i,s=null;switch(n){case"input":a=J(e,a),r=J(e,r),s=[];break;case"option":a=ae(e,a),r=ae(e,r),s=[];break;case"select":a=o({},a,{value:void 0}),r=o({},r,{value:void 0}),s=[];break;case"textarea":a=se(e,a),r=se(e,r),s=[];break;default:"function"!=typeof a.onClick&&"function"==typeof r.onClick&&(e.onclick=zr)}for(f in Se(n,r),n=null,a)if(!r.hasOwnProperty(f)&&a.hasOwnProperty(f)&&null!=a[f])if("style"===f){var u=a[f];for(i in u)u.hasOwnProperty(i)&&(n||(n={}),n[i]="")}else"dangerouslySetInnerHTML"!==f&&"children"!==f&&"suppressContentEditableWarning"!==f&&"suppressHydrationWarning"!==f&&"autoFocus"!==f&&(l.hasOwnProperty(f)?s||(s=[]):(s=s||[]).push(f,null));for(f in r){var c=r[f];if(u=null!=a?a[f]:void 0,r.hasOwnProperty(f)&&c!==u&&(null!=c||null!=u))if("style"===f)if(u){for(i in u)!u.hasOwnProperty(i)||c&&c.hasOwnProperty(i)||(n||(n={}),n[i]="");for(i in c)c.hasOwnProperty(i)&&u[i]!==c[i]&&(n||(n={}),n[i]=c[i])}else n||(s||(s=[]),s.push(f,n)),n=c;else"dangerouslySetInnerHTML"===f?(c=c?c.__html:void 0,u=u?u.__html:void 0,null!=c&&u!==c&&(s=s||[]).push(f,c)):"children"===f?"string"!=typeof c&&"number"!=typeof c||(s=s||[]).push(f,""+c):"suppressContentEditableWarning"!==f&&"suppressHydrationWarning"!==f&&(l.hasOwnProperty(f)?(null!=c&&"onScroll"===f&&jr("scroll",e),s||u===c||(s=[])):"object"==typeof c&&null!==c&&c.$$typeof===M?c.toString():(s=s||[]).push(f,c))}n&&(s=s||[]).push("style",n);var f=s;(t.updateQueue=f)&&(t.flags|=4)}},Ki=function(e,t,n,r){n!==r&&(t.flags|=4)};var ls="function"==typeof WeakMap?WeakMap:Map;function us(e,t,n){(n=ca(-1,n)).tag=3,n.payload={element:null};var r=t.value;return n.callback=function(){qs||(qs=!0,Ys=r),ss(0,t)},n}function cs(e,t,n){(n=ca(-1,n)).tag=3;var r=e.type.getDerivedStateFromError;if("function"==typeof r){var o=t.value;n.payload=function(){return ss(0,t),r(o)}}var a=e.stateNode;return null!==a&&"function"==typeof a.componentDidCatch&&(n.callback=function(){"function"!=typeof r&&(null===Ks?Ks=new Set([this]):Ks.add(this),ss(0,t));var e=t.stack;this.componentDidCatch(t.value,{componentStack:null!==e?e:""})}),n}var fs="function"==typeof WeakSet?WeakSet:Set;function ps(e){var t=e.ref;if(null!==t)if("function"==typeof t)try{t(null)}catch(t){Ll(e,t)}else t.current=null}function ds(e,t){switch(t.tag){case 0:case 11:case 15:case 22:case 5:case 6:case 4:case 17:return;case 1:if(256&t.flags&&null!==e){var n=e.memoizedProps,r=e.memoizedState;t=(e=t.stateNode).getSnapshotBeforeUpdate(t.elementType===t.type?n:Xo(t.type,n),r),e.__reactInternalSnapshotBeforeUpdate=t}return;case 3:return void(256&t.flags&&Gr(t.stateNode.containerInfo))}throw Error(i(163))}function hs(e,t,n){switch(n.tag){case 0:case 11:case 15:case 22:if(null!==(t=null!==(t=n.updateQueue)?t.lastEffect:null)){e=t=t.next;do{if(3==(3&e.tag)){var r=e.create;e.destroy=r()}e=e.next}while(e!==t)}if(null!==(t=null!==(t=n.updateQueue)?t.lastEffect:null)){e=t=t.next;do{var o=e;r=o.next,0!=(4&(o=o.tag))&&0!=(1&o)&&(Nl(n,e),Rl(n,e)),e=r}while(e!==t)}return;case 1:return e=n.stateNode,4&n.flags&&(null===t?e.componentDidMount():(r=n.elementType===n.type?t.memoizedProps:Xo(n.type,t.memoizedProps),e.componentDidUpdate(r,t.memoizedState,e.__reactInternalSnapshotBeforeUpdate))),void(null!==(t=n.updateQueue)&&ha(n,t,e));case 3:if(null!==(t=n.updateQueue)){if(e=null,null!==n.child)switch(n.child.tag){case 5:case 1:e=n.child.stateNode}ha(n,t,e)}return;case 5:return e=n.stateNode,void(null===t&&4&n.flags&&Br(n.type,n.memoizedProps)&&e.focus());case 6:case 4:case 12:case 19:case 17:case 20:case 21:case 23:case 24:return;case 13:return void(null===n.memoizedState&&(n=n.alternate,null!==n&&(n=n.memoizedState,null!==n&&(n=n.dehydrated,null!==n&&xt(n)))))}throw Error(i(163))}function ms(e,t){for(var n=e;;){if(5===n.tag){var r=n.stateNode;if(t)"function"==typeof(r=r.style).setProperty?r.setProperty("display","none","important"):r.display="none";else{r=n.stateNode;var o=n.memoizedProps.style;o=null!=o&&o.hasOwnProperty("display")?o.display:null,r.style.display=we("display",o)}}else if(6===n.tag)n.stateNode.nodeValue=t?"":n.memoizedProps;else if((23!==n.tag&&24!==n.tag||null===n.memoizedState||n===e)&&null!==n.child){n.child.return=n,n=n.child;continue}if(n===e)break;for(;null===n.sibling;){if(null===n.return||n.return===e)return;n=n.return}n.sibling.return=n.return,n=n.sibling}}function vs(e,t){if(ko&&"function"==typeof ko.onCommitFiberUnmount)try{ko.onCommitFiberUnmount(So,t)}catch(e){}switch(t.tag){case 0:case 11:case 14:case 15:case 22:if(null!==(e=t.updateQueue)&&null!==(e=e.lastEffect)){var n=e=e.next;do{var r=n,o=r.destroy;if(r=r.tag,void 0!==o)if(0!=(4&r))Nl(t,n);else{r=t;try{o()}catch(e){Ll(r,e)}}n=n.next}while(n!==e)}break;case 1:if(ps(t),"function"==typeof(e=t.stateNode).componentWillUnmount)try{e.props=t.memoizedProps,e.state=t.memoizedState,e.componentWillUnmount()}catch(e){Ll(t,e)}break;case 5:ps(t);break;case 4:Es(e,t)}}function gs(e){e.alternate=null,e.child=null,e.dependencies=null,e.firstEffect=null,e.lastEffect=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.return=null,e.updateQueue=null}function ys(e){return 5===e.tag||3===e.tag||4===e.tag}function bs(e){e:{for(var t=e.return;null!==t;){if(ys(t))break e;t=t.return}throw Error(i(160))}var n=t;switch(t=n.stateNode,n.tag){case 5:var r=!1;break;case 3:case 4:t=t.containerInfo,r=!0;break;default:throw Error(i(161))}16&n.flags&&(ge(t,""),n.flags&=-17);e:t:for(n=e;;){for(;null===n.sibling;){if(null===n.return||ys(n.return)){n=null;break e}n=n.return}for(n.sibling.return=n.return,n=n.sibling;5!==n.tag&&6!==n.tag&&18!==n.tag;){if(2&n.flags)continue t;if(null===n.child||4===n.tag)continue t;n.child.return=n,n=n.child}if(!(2&n.flags)){n=n.stateNode;break e}}r?ws(e,n,t):xs(e,n,t)}function ws(e,t,n){var r=e.tag,o=5===r||6===r;if(o)e=o?e.stateNode:e.stateNode.instance,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(ws(e,t,n),e=e.sibling;null!==e;)ws(e,t,n),e=e.sibling}function xs(e,t,n){var r=e.tag,o=5===r||6===r;if(o)e=o?e.stateNode:e.stateNode.instance,t?n.insertBefore(e,t):n.appendChild(e);else if(4!==r&&null!==(e=e.child))for(xs(e,t,n),e=e.sibling;null!==e;)xs(e,t,n),e=e.sibling}function Es(e,t){for(var n,r,o=t,a=!1;;){if(!a){a=o.return;e:for(;;){if(null===a)throw Error(i(160));switch(n=a.stateNode,a.tag){case 5:r=!1;break e;case 3:case 4:n=n.containerInfo,r=!0;break e}a=a.return}a=!0}if(5===o.tag||6===o.tag){e:for(var s=e,l=o,u=l;;)if(vs(s,u),null!==u.child&&4!==u.tag)u.child.return=u,u=u.child;else{if(u===l)break e;for(;null===u.sibling;){if(null===u.return||u.return===l)break e;u=u.return}u.sibling.return=u.return,u=u.sibling}r?(s=n,l=o.stateNode,8===s.nodeType?s.parentNode.removeChild(l):s.removeChild(l)):n.removeChild(o.stateNode)}else if(4===o.tag){if(null!==o.child){n=o.stateNode.containerInfo,r=!0,o.child.return=o,o=o.child;continue}}else if(vs(e,o),null!==o.child){o.child.return=o,o=o.child;continue}if(o===t)break;for(;null===o.sibling;){if(null===o.return||o.return===t)return;4===(o=o.return).tag&&(a=!1)}o.sibling.return=o.return,o=o.sibling}}function Ss(e,t){switch(t.tag){case 0:case 11:case 14:case 15:case 22:var n=t.updateQueue;if(null!==(n=null!==n?n.lastEffect:null)){var r=n=n.next;do{3==(3&r.tag)&&(e=r.destroy,r.destroy=void 0,void 0!==e&&e()),r=r.next}while(r!==n)}return;case 1:case 12:case 17:return;case 5:if(null!=(n=t.stateNode)){r=t.memoizedProps;var o=null!==e?e.memoizedProps:r;e=t.type;var a=t.updateQueue;if(t.updateQueue=null,null!==a){for(n[Zr]=r,"input"===e&&"radio"===r.type&&null!=r.name&&te(n,r),ke(e,o),t=ke(e,r),o=0;o<a.length;o+=2){var s=a[o],l=a[o+1];"style"===s?xe(n,l):"dangerouslySetInnerHTML"===s?ve(n,l):"children"===s?ge(n,l):w(n,s,l,t)}switch(e){case"input":ne(n,r);break;case"textarea":ue(n,r);break;case"select":e=n._wrapperState.wasMultiple,n._wrapperState.wasMultiple=!!r.multiple,null!=(a=r.value)?ie(n,!!r.multiple,a,!1):e!==!!r.multiple&&(null!=r.defaultValue?ie(n,!!r.multiple,r.defaultValue,!0):ie(n,!!r.multiple,r.multiple?[]:"",!1))}}}return;case 6:if(null===t.stateNode)throw Error(i(162));return void(t.stateNode.nodeValue=t.memoizedProps);case 3:return void((n=t.stateNode).hydrate&&(n.hydrate=!1,xt(n.containerInfo)));case 13:return null!==t.memoizedState&&(Bs=Wo(),ms(t.child,!0)),void ks(t);case 19:return void ks(t);case 23:case 24:return void ms(t,null!==t.memoizedState)}throw Error(i(163))}function ks(e){var t=e.updateQueue;if(null!==t){e.updateQueue=null;var n=e.stateNode;null===n&&(n=e.stateNode=new fs),t.forEach((function(t){var r=zl.bind(null,e,t);n.has(t)||(n.add(t),t.then(r,r))}))}}function _s(e,t){return null!==e&&(null===(e=e.memoizedState)||null!==e.dehydrated)&&null!==(t=t.memoizedState)&&null===t.dehydrated}var Os=Math.ceil,Cs=x.ReactCurrentDispatcher,Ps=x.ReactCurrentOwner,js=0,As=null,Is=null,Ts=0,Rs=0,Ns=lo(0),Ms=0,Fs=null,Ls=0,Ds=0,zs=0,Vs=0,Us=null,Bs=0,Ws=1/0;function Hs(){Ws=Wo()+500}var $s,Gs=null,qs=!1,Ys=null,Ks=null,Qs=!1,Xs=null,Zs=90,Js=[],el=[],tl=null,nl=0,rl=null,ol=-1,al=0,il=0,sl=null,ll=!1;function ul(){return 0!=(48&js)?Wo():-1!==ol?ol:ol=Wo()}function cl(e){if(0==(2&(e=e.mode)))return 1;if(0==(4&e))return 99===Ho()?1:2;if(0===al&&(al=Ls),0!==Qo.transition){0!==il&&(il=null!==Us?Us.pendingLanes:0),e=al;var t=4186112&~il;return 0==(t&=-t)&&0==(t=(e=4186112&~e)&-e)&&(t=8192),t}return e=Ho(),e=zt(0!=(4&js)&&98===e?12:e=function(e){switch(e){case 99:return 15;case 98:return 10;case 97:case 96:return 8;case 95:return 2;default:return 0}}(e),al)}function fl(e,t,n){if(50<nl)throw nl=0,rl=null,Error(i(185));if(null===(e=pl(e,t)))return null;Bt(e,t,n),e===As&&(zs|=t,4===Ms&&ml(e,Ts));var r=Ho();1===t?0!=(8&js)&&0==(48&js)?vl(e):(dl(e,n),0===js&&(Hs(),Yo())):(0==(4&js)||98!==r&&99!==r||(null===tl?tl=new Set([e]):tl.add(e)),dl(e,n)),Us=e}function pl(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 dl(e,t){for(var n=e.callbackNode,r=e.suspendedLanes,o=e.pingedLanes,a=e.expirationTimes,s=e.pendingLanes;0<s;){var l=31-Wt(s),u=1<<l,c=a[l];if(-1===c){if(0==(u&r)||0!=(u&o)){c=t,Ft(u);var f=Mt;a[l]=10<=f?c+250:6<=f?c+5e3:-1}}else c<=t&&(e.expiredLanes|=u);s&=~u}if(r=Lt(e,e===As?Ts:0),t=Mt,0===r)null!==n&&(n!==Lo&&Co(n),e.callbackNode=null,e.callbackPriority=0);else{if(null!==n){if(e.callbackPriority===t)return;n!==Lo&&Co(n)}15===t?(n=vl.bind(null,e),null===zo?(zo=[n],Vo=Oo(To,Ko)):zo.push(n),n=Lo):14===t?n=qo(99,vl.bind(null,e)):(n=function(e){switch(e){case 15:case 14:return 99;case 13:case 12:case 11:case 10:return 98;case 9:case 8:case 7:case 6:case 4:case 5:return 97;case 3:case 2:case 1:return 95;case 0:return 90;default:throw Error(i(358,e))}}(t),n=qo(n,hl.bind(null,e))),e.callbackPriority=t,e.callbackNode=n}}function hl(e){if(ol=-1,il=al=0,0!=(48&js))throw Error(i(327));var t=e.callbackNode;if(Tl()&&e.callbackNode!==t)return null;var n=Lt(e,e===As?Ts:0);if(0===n)return null;var r=n,o=js;js|=16;var a=Sl();for(As===e&&Ts===r||(Hs(),xl(e,r));;)try{Ol();break}catch(t){El(e,t)}if(na(),Cs.current=a,js=o,null!==Is?r=0:(As=null,Ts=0,r=Ms),0!=(Ls&zs))xl(e,0);else if(0!==r){if(2===r&&(js|=64,e.hydrate&&(e.hydrate=!1,Gr(e.containerInfo)),0!==(n=Dt(e))&&(r=kl(e,n))),1===r)throw t=Fs,xl(e,0),ml(e,n),dl(e,Wo()),t;switch(e.finishedWork=e.current.alternate,e.finishedLanes=n,r){case 0:case 1:throw Error(i(345));case 2:case 5:jl(e);break;case 3:if(ml(e,n),(62914560&n)===n&&10<(r=Bs+500-Wo())){if(0!==Lt(e,0))break;if(((o=e.suspendedLanes)&n)!==n){ul(),e.pingedLanes|=e.suspendedLanes&o;break}e.timeoutHandle=Hr(jl.bind(null,e),r);break}jl(e);break;case 4:if(ml(e,n),(4186112&n)===n)break;for(r=e.eventTimes,o=-1;0<n;){var s=31-Wt(n);a=1<<s,(s=r[s])>o&&(o=s),n&=~a}if(n=o,10<(n=(120>(n=Wo()-n)?120:480>n?480:1080>n?1080:1920>n?1920:3e3>n?3e3:4320>n?4320:1960*Os(n/1960))-n)){e.timeoutHandle=Hr(jl.bind(null,e),n);break}jl(e);break;default:throw Error(i(329))}}return dl(e,Wo()),e.callbackNode===t?hl.bind(null,e):null}function ml(e,t){for(t&=~Vs,t&=~zs,e.suspendedLanes|=t,e.pingedLanes&=~t,e=e.expirationTimes;0<t;){var n=31-Wt(t),r=1<<n;e[n]=-1,t&=~r}}function vl(e){if(0!=(48&js))throw Error(i(327));if(Tl(),e===As&&0!=(e.expiredLanes&Ts)){var t=Ts,n=kl(e,t);0!=(Ls&zs)&&(n=kl(e,t=Lt(e,t)))}else n=kl(e,t=Lt(e,0));if(0!==e.tag&&2===n&&(js|=64,e.hydrate&&(e.hydrate=!1,Gr(e.containerInfo)),0!==(t=Dt(e))&&(n=kl(e,t))),1===n)throw n=Fs,xl(e,0),ml(e,t),dl(e,Wo()),n;return e.finishedWork=e.current.alternate,e.finishedLanes=t,jl(e),dl(e,Wo()),null}function gl(e,t){var n=js;js|=1;try{return e(t)}finally{0===(js=n)&&(Hs(),Yo())}}function yl(e,t){var n=js;js&=-2,js|=8;try{return e(t)}finally{0===(js=n)&&(Hs(),Yo())}}function bl(e,t){co(Ns,Rs),Rs|=t,Ls|=t}function wl(){Rs=Ns.current,uo(Ns)}function xl(e,t){e.finishedWork=null,e.finishedLanes=0;var n=e.timeoutHandle;if(-1!==n&&(e.timeoutHandle=-1,$r(n)),null!==Is)for(n=Is.return;null!==n;){var r=n;switch(r.tag){case 1:null!=(r=r.type.childContextTypes)&&yo();break;case 3:Na(),uo(ho),uo(po),Ka();break;case 5:Fa(r);break;case 4:Na();break;case 13:case 19:uo(La);break;case 10:ra(r);break;case 23:case 24:wl()}n=n.return}As=e,Is=Wl(e.current,null),Ts=Rs=Ls=t,Ms=0,Fs=null,Vs=zs=Ds=0}function El(e,t){for(;;){var n=Is;try{if(na(),Qa.current=Ii,ni){for(var r=Ja.memoizedState;null!==r;){var o=r.queue;null!==o&&(o.pending=null),r=r.next}ni=!1}if(Za=0,ti=ei=Ja=null,ri=!1,Ps.current=null,null===n||null===n.return){Ms=1,Fs=t,Is=null;break}e:{var a=e,i=n.return,s=n,l=t;if(t=Ts,s.flags|=2048,s.firstEffect=s.lastEffect=null,null!==l&&"object"==typeof l&&"function"==typeof l.then){var u=l;if(0==(2&s.mode)){var c=s.alternate;c?(s.updateQueue=c.updateQueue,s.memoizedState=c.memoizedState,s.lanes=c.lanes):(s.updateQueue=null,s.memoizedState=null)}var f=0!=(1&La.current),p=i;do{var d;if(d=13===p.tag){var h=p.memoizedState;if(null!==h)d=null!==h.dehydrated;else{var m=p.memoizedProps;d=void 0!==m.fallback&&(!0!==m.unstable_avoidThisFallback||!f)}}if(d){var v=p.updateQueue;if(null===v){var g=new Set;g.add(u),p.updateQueue=g}else v.add(u);if(0==(2&p.mode)){if(p.flags|=64,s.flags|=16384,s.flags&=-2981,1===s.tag)if(null===s.alternate)s.tag=17;else{var y=ca(-1,1);y.tag=2,fa(s,y)}s.lanes|=1;break e}l=void 0,s=t;var b=a.pingCache;if(null===b?(b=a.pingCache=new ls,l=new Set,b.set(u,l)):void 0===(l=b.get(u))&&(l=new Set,b.set(u,l)),!l.has(s)){l.add(s);var w=Dl.bind(null,a,u,s);u.then(w,w)}p.flags|=4096,p.lanes=t;break e}p=p.return}while(null!==p);l=Error((q(s.type)||"A React component")+" suspended while rendering, but no fallback UI was specified.\n\nAdd a <Suspense fallback=...> component higher in the tree to provide a loading indicator or placeholder to display.")}5!==Ms&&(Ms=2),l=is(l,s),p=i;do{switch(p.tag){case 3:a=l,p.flags|=4096,t&=-t,p.lanes|=t,pa(p,us(0,a,t));break e;case 1:a=l;var x=p.type,E=p.stateNode;if(0==(64&p.flags)&&("function"==typeof x.getDerivedStateFromError||null!==E&&"function"==typeof E.componentDidCatch&&(null===Ks||!Ks.has(E)))){p.flags|=4096,t&=-t,p.lanes|=t,pa(p,cs(p,a,t));break e}}p=p.return}while(null!==p)}Pl(n)}catch(e){t=e,Is===n&&null!==n&&(Is=n=n.return);continue}break}}function Sl(){var e=Cs.current;return Cs.current=Ii,null===e?Ii:e}function kl(e,t){var n=js;js|=16;var r=Sl();for(As===e&&Ts===t||xl(e,t);;)try{_l();break}catch(t){El(e,t)}if(na(),js=n,Cs.current=r,null!==Is)throw Error(i(261));return As=null,Ts=0,Ms}function _l(){for(;null!==Is;)Cl(Is)}function Ol(){for(;null!==Is&&!Po();)Cl(Is)}function Cl(e){var t=$s(e.alternate,e,Rs);e.memoizedProps=e.pendingProps,null===t?Pl(e):Is=t,Ps.current=null}function Pl(e){var t=e;do{var n=t.alternate;if(e=t.return,0==(2048&t.flags)){if(null!==(n=os(n,t,Rs)))return void(Is=n);if(24!==(n=t).tag&&23!==n.tag||null===n.memoizedState||0!=(1073741824&Rs)||0==(4&n.mode)){for(var r=0,o=n.child;null!==o;)r|=o.lanes|o.childLanes,o=o.sibling;n.childLanes=r}null!==e&&0==(2048&e.flags)&&(null===e.firstEffect&&(e.firstEffect=t.firstEffect),null!==t.lastEffect&&(null!==e.lastEffect&&(e.lastEffect.nextEffect=t.firstEffect),e.lastEffect=t.lastEffect),1<t.flags&&(null!==e.lastEffect?e.lastEffect.nextEffect=t:e.firstEffect=t,e.lastEffect=t))}else{if(null!==(n=as(t)))return n.flags&=2047,void(Is=n);null!==e&&(e.firstEffect=e.lastEffect=null,e.flags|=2048)}if(null!==(t=t.sibling))return void(Is=t);Is=t=e}while(null!==t);0===Ms&&(Ms=5)}function jl(e){var t=Ho();return Go(99,Al.bind(null,e,t)),null}function Al(e,t){do{Tl()}while(null!==Xs);if(0!=(48&js))throw Error(i(327));var n=e.finishedWork;if(null===n)return null;if(e.finishedWork=null,e.finishedLanes=0,n===e.current)throw Error(i(177));e.callbackNode=null;var r=n.lanes|n.childLanes,o=r,a=e.pendingLanes&~o;e.pendingLanes=o,e.suspendedLanes=0,e.pingedLanes=0,e.expiredLanes&=o,e.mutableReadLanes&=o,e.entangledLanes&=o,o=e.entanglements;for(var s=e.eventTimes,l=e.expirationTimes;0<a;){var u=31-Wt(a),c=1<<u;o[u]=0,s[u]=-1,l[u]=-1,a&=~c}if(null!==tl&&0==(24&r)&&tl.has(e)&&tl.delete(e),e===As&&(Is=As=null,Ts=0),1<n.flags?null!==n.lastEffect?(n.lastEffect.nextEffect=n,r=n.firstEffect):r=n:r=n.firstEffect,null!==r){if(o=js,js|=32,Ps.current=null,Vr=Yt,vr(s=mr())){if("selectionStart"in s)l={start:s.selectionStart,end:s.selectionEnd};else e:if(l=(l=s.ownerDocument)&&l.defaultView||window,(c=l.getSelection&&l.getSelection())&&0!==c.rangeCount){l=c.anchorNode,a=c.anchorOffset,u=c.focusNode,c=c.focusOffset;try{l.nodeType,u.nodeType}catch(e){l=null;break e}var f=0,p=-1,d=-1,h=0,m=0,v=s,g=null;t:for(;;){for(var y;v!==l||0!==a&&3!==v.nodeType||(p=f+a),v!==u||0!==c&&3!==v.nodeType||(d=f+c),3===v.nodeType&&(f+=v.nodeValue.length),null!==(y=v.firstChild);)g=v,v=y;for(;;){if(v===s)break t;if(g===l&&++h===a&&(p=f),g===u&&++m===c&&(d=f),null!==(y=v.nextSibling))break;g=(v=g).parentNode}v=y}l=-1===p||-1===d?null:{start:p,end:d}}else l=null;l=l||{start:0,end:0}}else l=null;Ur={focusedElem:s,selectionRange:l},Yt=!1,sl=null,ll=!1,Gs=r;do{try{Il()}catch(e){if(null===Gs)throw Error(i(330));Ll(Gs,e),Gs=Gs.nextEffect}}while(null!==Gs);sl=null,Gs=r;do{try{for(s=e;null!==Gs;){var b=Gs.flags;if(16&b&&ge(Gs.stateNode,""),128&b){var w=Gs.alternate;if(null!==w){var x=w.ref;null!==x&&("function"==typeof x?x(null):x.current=null)}}switch(1038&b){case 2:bs(Gs),Gs.flags&=-3;break;case 6:bs(Gs),Gs.flags&=-3,Ss(Gs.alternate,Gs);break;case 1024:Gs.flags&=-1025;break;case 1028:Gs.flags&=-1025,Ss(Gs.alternate,Gs);break;case 4:Ss(Gs.alternate,Gs);break;case 8:Es(s,l=Gs);var E=l.alternate;gs(l),null!==E&&gs(E)}Gs=Gs.nextEffect}}catch(e){if(null===Gs)throw Error(i(330));Ll(Gs,e),Gs=Gs.nextEffect}}while(null!==Gs);if(x=Ur,w=mr(),b=x.focusedElem,s=x.selectionRange,w!==b&&b&&b.ownerDocument&&hr(b.ownerDocument.documentElement,b)){null!==s&&vr(b)&&(w=s.start,void 0===(x=s.end)&&(x=w),"selectionStart"in b?(b.selectionStart=w,b.selectionEnd=Math.min(x,b.value.length)):(x=(w=b.ownerDocument||document)&&w.defaultView||window).getSelection&&(x=x.getSelection(),l=b.textContent.length,E=Math.min(s.start,l),s=void 0===s.end?E:Math.min(s.end,l),!x.extend&&E>s&&(l=s,s=E,E=l),l=dr(b,E),a=dr(b,s),l&&a&&(1!==x.rangeCount||x.anchorNode!==l.node||x.anchorOffset!==l.offset||x.focusNode!==a.node||x.focusOffset!==a.offset)&&((w=w.createRange()).setStart(l.node,l.offset),x.removeAllRanges(),E>s?(x.addRange(w),x.extend(a.node,a.offset)):(w.setEnd(a.node,a.offset),x.addRange(w))))),w=[];for(x=b;x=x.parentNode;)1===x.nodeType&&w.push({element:x,left:x.scrollLeft,top:x.scrollTop});for("function"==typeof b.focus&&b.focus(),b=0;b<w.length;b++)(x=w[b]).element.scrollLeft=x.left,x.element.scrollTop=x.top}Yt=!!Vr,Ur=Vr=null,e.current=n,Gs=r;do{try{for(b=e;null!==Gs;){var S=Gs.flags;if(36&S&&hs(b,Gs.alternate,Gs),128&S){w=void 0;var k=Gs.ref;if(null!==k){var _=Gs.stateNode;Gs.tag,w=_,"function"==typeof k?k(w):k.current=w}}Gs=Gs.nextEffect}}catch(e){if(null===Gs)throw Error(i(330));Ll(Gs,e),Gs=Gs.nextEffect}}while(null!==Gs);Gs=null,Do(),js=o}else e.current=n;if(Qs)Qs=!1,Xs=e,Zs=t;else for(Gs=r;null!==Gs;)t=Gs.nextEffect,Gs.nextEffect=null,8&Gs.flags&&((S=Gs).sibling=null,S.stateNode=null),Gs=t;if(0===(r=e.pendingLanes)&&(Ks=null),1===r?e===rl?nl++:(nl=0,rl=e):nl=0,n=n.stateNode,ko&&"function"==typeof ko.onCommitFiberRoot)try{ko.onCommitFiberRoot(So,n,void 0,64==(64&n.current.flags))}catch(e){}if(dl(e,Wo()),qs)throw qs=!1,e=Ys,Ys=null,e;return 0!=(8&js)||Yo(),null}function Il(){for(;null!==Gs;){var e=Gs.alternate;ll||null===sl||(0!=(8&Gs.flags)?Je(Gs,sl)&&(ll=!0):13===Gs.tag&&_s(e,Gs)&&Je(Gs,sl)&&(ll=!0));var t=Gs.flags;0!=(256&t)&&ds(e,Gs),0==(512&t)||Qs||(Qs=!0,qo(97,(function(){return Tl(),null}))),Gs=Gs.nextEffect}}function Tl(){if(90!==Zs){var e=97<Zs?97:Zs;return Zs=90,Go(e,Ml)}return!1}function Rl(e,t){Js.push(t,e),Qs||(Qs=!0,qo(97,(function(){return Tl(),null})))}function Nl(e,t){el.push(t,e),Qs||(Qs=!0,qo(97,(function(){return Tl(),null})))}function Ml(){if(null===Xs)return!1;var e=Xs;if(Xs=null,0!=(48&js))throw Error(i(331));var t=js;js|=32;var n=el;el=[];for(var r=0;r<n.length;r+=2){var o=n[r],a=n[r+1],s=o.destroy;if(o.destroy=void 0,"function"==typeof s)try{s()}catch(e){if(null===a)throw Error(i(330));Ll(a,e)}}for(n=Js,Js=[],r=0;r<n.length;r+=2){o=n[r],a=n[r+1];try{var l=o.create;o.destroy=l()}catch(e){if(null===a)throw Error(i(330));Ll(a,e)}}for(l=e.current.firstEffect;null!==l;)e=l.nextEffect,l.nextEffect=null,8&l.flags&&(l.sibling=null,l.stateNode=null),l=e;return js=t,Yo(),!0}function Fl(e,t,n){fa(e,t=us(0,t=is(n,t),1)),t=ul(),null!==(e=pl(e,1))&&(Bt(e,1,t),dl(e,t))}function Ll(e,t){if(3===e.tag)Fl(e,e,t);else for(var n=e.return;null!==n;){if(3===n.tag){Fl(n,e,t);break}if(1===n.tag){var r=n.stateNode;if("function"==typeof n.type.getDerivedStateFromError||"function"==typeof r.componentDidCatch&&(null===Ks||!Ks.has(r))){var o=cs(n,e=is(t,e),1);if(fa(n,o),o=ul(),null!==(n=pl(n,1)))Bt(n,1,o),dl(n,o);else if("function"==typeof r.componentDidCatch&&(null===Ks||!Ks.has(r)))try{r.componentDidCatch(t,e)}catch(e){}break}}n=n.return}}function Dl(e,t,n){var r=e.pingCache;null!==r&&r.delete(t),t=ul(),e.pingedLanes|=e.suspendedLanes&n,As===e&&(Ts&n)===n&&(4===Ms||3===Ms&&(62914560&Ts)===Ts&&500>Wo()-Bs?xl(e,0):Vs|=n),dl(e,t)}function zl(e,t){var n=e.stateNode;null!==n&&n.delete(t),0==(t=0)&&(0==(2&(t=e.mode))?t=1:0==(4&t)?t=99===Ho()?1:2:(0===al&&(al=Ls),0===(t=Vt(62914560&~al))&&(t=4194304))),n=ul(),null!==(e=pl(e,t))&&(Bt(e,t,n),dl(e,n))}function Vl(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.flags=0,this.lastEffect=this.firstEffect=this.nextEffect=null,this.childLanes=this.lanes=0,this.alternate=null}function Ul(e,t,n,r){return new Vl(e,t,n,r)}function Bl(e){return!(!(e=e.prototype)||!e.isReactComponent)}function Wl(e,t){var n=e.alternate;return null===n?((n=Ul(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.nextEffect=null,n.firstEffect=null,n.lastEffect=null),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 Hl(e,t,n,r,o,a){var s=2;if(r=e,"function"==typeof e)Bl(e)&&(s=1);else if("string"==typeof e)s=5;else e:switch(e){case k:return $l(n.children,o,a,t);case F:s=8,o|=16;break;case _:s=8,o|=1;break;case O:return(e=Ul(12,n,t,8|o)).elementType=O,e.type=O,e.lanes=a,e;case A:return(e=Ul(13,n,t,o)).type=A,e.elementType=A,e.lanes=a,e;case I:return(e=Ul(19,n,t,o)).elementType=I,e.lanes=a,e;case L:return Gl(n,o,a,t);case D:return(e=Ul(24,n,t,o)).elementType=D,e.lanes=a,e;default:if("object"==typeof e&&null!==e)switch(e.$$typeof){case C:s=10;break e;case P:s=9;break e;case j:s=11;break e;case T:s=14;break e;case R:s=16,r=null;break e;case N:s=22;break e}throw Error(i(130,null==e?e:typeof e,""))}return(t=Ul(s,n,t,o)).elementType=e,t.type=r,t.lanes=a,t}function $l(e,t,n,r){return(e=Ul(7,e,r,t)).lanes=n,e}function Gl(e,t,n,r){return(e=Ul(23,e,r,t)).elementType=L,e.lanes=n,e}function ql(e,t,n){return(e=Ul(6,e,null,t)).lanes=n,e}function Yl(e,t,n){return(t=Ul(4,null!==e.children?e.children:[],e.key,t)).lanes=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function Kl(e,t,n){this.tag=t,this.containerInfo=e,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.pendingContext=this.context=null,this.hydrate=n,this.callbackNode=null,this.callbackPriority=0,this.eventTimes=Ut(0),this.expirationTimes=Ut(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Ut(0),this.mutableSourceEagerHydrationData=null}function Ql(e,t,n){var r=3<arguments.length&&void 0!==arguments[3]?arguments[3]:null;return{$$typeof:S,key:null==r?null:""+r,children:e,containerInfo:t,implementation:n}}function Xl(e,t,n,r){var o=t.current,a=ul(),s=cl(o);e:if(n){t:{if(Ke(n=n._reactInternals)!==n||1!==n.tag)throw Error(i(170));var l=n;do{switch(l.tag){case 3:l=l.stateNode.context;break t;case 1:if(go(l.type)){l=l.stateNode.__reactInternalMemoizedMergedChildContext;break t}}l=l.return}while(null!==l);throw Error(i(171))}if(1===n.tag){var u=n.type;if(go(u)){n=wo(n,u,l);break e}}n=l}else n=fo;return null===t.context?t.context=n:t.pendingContext=n,(t=ca(a,s)).payload={element:e},null!==(r=void 0===r?null:r)&&(t.callback=r),fa(o,t),fl(o,s,a),s}function Zl(e){return(e=e.current).child?(e.child.tag,e.child.stateNode):null}function Jl(e,t){if(null!==(e=e.memoizedState)&&null!==e.dehydrated){var n=e.retryLane;e.retryLane=0!==n&&n<t?n:t}}function eu(e,t){Jl(e,t),(e=e.alternate)&&Jl(e,t)}function tu(e,t,n){var r=null!=n&&null!=n.hydrationOptions&&n.hydrationOptions.mutableSources||null;if(n=new Kl(e,t,null!=n&&!0===n.hydrate),t=Ul(3,null,null,2===t?7:1===t?3:0),n.current=t,t.stateNode=n,la(t),e[Jr]=n.current,Ir(8===e.nodeType?e.parentNode:e),r)for(e=0;e<r.length;e++){var o=(t=r[e])._getVersion;o=o(t._source),null==n.mutableSourceEagerHydrationData?n.mutableSourceEagerHydrationData=[t,o]:n.mutableSourceEagerHydrationData.push(t,o)}this._internalRoot=n}function nu(e){return!(!e||1!==e.nodeType&&9!==e.nodeType&&11!==e.nodeType&&(8!==e.nodeType||" react-mount-point-unstable "!==e.nodeValue))}function ru(e,t,n,r,o){var a=n._reactRootContainer;if(a){var i=a._internalRoot;if("function"==typeof o){var s=o;o=function(){var e=Zl(i);s.call(e)}}Xl(t,i,e,o)}else{if(a=n._reactRootContainer=function(e,t){if(t||(t=!(!(t=e?9===e.nodeType?e.documentElement:e.firstChild:null)||1!==t.nodeType||!t.hasAttribute("data-reactroot"))),!t)for(var n;n=e.lastChild;)e.removeChild(n);return new tu(e,0,t?{hydrate:!0}:void 0)}(n,r),i=a._internalRoot,"function"==typeof o){var l=o;o=function(){var e=Zl(i);l.call(e)}}yl((function(){Xl(t,i,e,o)}))}return Zl(i)}function ou(e,t){var n=2<arguments.length&&void 0!==arguments[2]?arguments[2]:null;if(!nu(t))throw Error(i(200));return Ql(e,t,null,n)}$s=function(e,t,n){var r=t.lanes;if(null!==e)if(e.memoizedProps!==t.pendingProps||ho.current)Fi=!0;else{if(0==(n&r)){switch(Fi=!1,t.tag){case 3:Gi(t),qa();break;case 5:Ma(t);break;case 1:go(t.type)&&xo(t);break;case 4:Ra(t,t.stateNode.containerInfo);break;case 10:r=t.memoizedProps.value;var o=t.type._context;co(Zo,o._currentValue),o._currentValue=r;break;case 13:if(null!==t.memoizedState)return 0!=(n&t.child.childLanes)?Xi(e,t,n):(co(La,1&La.current),null!==(t=ns(e,t,n))?t.sibling:null);co(La,1&La.current);break;case 19:if(r=0!=(n&t.childLanes),0!=(64&e.flags)){if(r)return ts(e,t,n);t.flags|=64}if(null!==(o=t.memoizedState)&&(o.rendering=null,o.tail=null,o.lastEffect=null),co(La,La.current),r)break;return null;case 23:case 24:return t.lanes=0,Ui(e,t,n)}return ns(e,t,n)}Fi=0!=(16384&e.flags)}else Fi=!1;switch(t.lanes=0,t.tag){case 2:if(r=t.type,null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),e=t.pendingProps,o=vo(t,po.current),aa(t,n),o=ii(null,t,r,e,o,n),t.flags|=1,"object"==typeof o&&null!==o&&"function"==typeof o.render&&void 0===o.$$typeof){if(t.tag=1,t.memoizedState=null,t.updateQueue=null,go(r)){var a=!0;xo(t)}else a=!1;t.memoizedState=null!==o.state&&void 0!==o.state?o.state:null,la(t);var s=r.getDerivedStateFromProps;"function"==typeof s&&va(t,r,s,e),o.updater=ga,t.stateNode=o,o._reactInternals=t,xa(t,r,e,n),t=$i(null,t,r,!0,a,n)}else t.tag=0,Li(null,t,o,n),t=t.child;return t;case 16:o=t.elementType;e:{switch(null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),e=t.pendingProps,o=(a=o._init)(o._payload),t.type=o,a=t.tag=function(e){if("function"==typeof e)return Bl(e)?1:0;if(null!=e){if((e=e.$$typeof)===j)return 11;if(e===T)return 14}return 2}(o),e=Xo(o,e),a){case 0:t=Wi(null,t,o,e,n);break e;case 1:t=Hi(null,t,o,e,n);break e;case 11:t=Di(null,t,o,e,n);break e;case 14:t=zi(null,t,o,Xo(o.type,e),r,n);break e}throw Error(i(306,o,""))}return t;case 0:return r=t.type,o=t.pendingProps,Wi(e,t,r,o=t.elementType===r?o:Xo(r,o),n);case 1:return r=t.type,o=t.pendingProps,Hi(e,t,r,o=t.elementType===r?o:Xo(r,o),n);case 3:if(Gi(t),r=t.updateQueue,null===e||null===r)throw Error(i(282));if(r=t.pendingProps,o=null!==(o=t.memoizedState)?o.element:null,ua(e,t),da(t,r,null,n),(r=t.memoizedState.element)===o)qa(),t=ns(e,t,n);else{if((a=(o=t.stateNode).hydrate)&&(Va=qr(t.stateNode.containerInfo.firstChild),za=t,a=Ua=!0),a){if(null!=(e=o.mutableSourceEagerHydrationData))for(o=0;o<e.length;o+=2)(a=e[o])._workInProgressVersionPrimary=e[o+1],Ya.push(a);for(n=Ca(t,null,r,n),t.child=n;n;)n.flags=-3&n.flags|1024,n=n.sibling}else Li(e,t,r,n),qa();t=t.child}return t;case 5:return Ma(t),null===e&&Ha(t),r=t.type,o=t.pendingProps,a=null!==e?e.memoizedProps:null,s=o.children,Wr(r,o)?s=null:null!==a&&Wr(r,a)&&(t.flags|=16),Bi(e,t),Li(e,t,s,n),t.child;case 6:return null===e&&Ha(t),null;case 13:return Xi(e,t,n);case 4:return Ra(t,t.stateNode.containerInfo),r=t.pendingProps,null===e?t.child=Oa(t,null,r,n):Li(e,t,r,n),t.child;case 11:return r=t.type,o=t.pendingProps,Di(e,t,r,o=t.elementType===r?o:Xo(r,o),n);case 7:return Li(e,t,t.pendingProps,n),t.child;case 8:case 12:return Li(e,t,t.pendingProps.children,n),t.child;case 10:e:{r=t.type._context,o=t.pendingProps,s=t.memoizedProps,a=o.value;var l=t.type._context;if(co(Zo,l._currentValue),l._currentValue=a,null!==s)if(l=s.value,0==(a=ur(l,a)?0:0|("function"==typeof r._calculateChangedBits?r._calculateChangedBits(l,a):1073741823))){if(s.children===o.children&&!ho.current){t=ns(e,t,n);break e}}else for(null!==(l=t.child)&&(l.return=t);null!==l;){var u=l.dependencies;if(null!==u){s=l.child;for(var c=u.firstContext;null!==c;){if(c.context===r&&0!=(c.observedBits&a)){1===l.tag&&((c=ca(-1,n&-n)).tag=2,fa(l,c)),l.lanes|=n,null!==(c=l.alternate)&&(c.lanes|=n),oa(l.return,n),u.lanes|=n;break}c=c.next}}else s=10===l.tag&&l.type===t.type?null:l.child;if(null!==s)s.return=l;else for(s=l;null!==s;){if(s===t){s=null;break}if(null!==(l=s.sibling)){l.return=s.return,s=l;break}s=s.return}l=s}Li(e,t,o.children,n),t=t.child}return t;case 9:return o=t.type,r=(a=t.pendingProps).children,aa(t,n),r=r(o=ia(o,a.unstable_observedBits)),t.flags|=1,Li(e,t,r,n),t.child;case 14:return a=Xo(o=t.type,t.pendingProps),zi(e,t,o,a=Xo(o.type,a),r,n);case 15:return Vi(e,t,t.type,t.pendingProps,r,n);case 17:return r=t.type,o=t.pendingProps,o=t.elementType===r?o:Xo(r,o),null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2),t.tag=1,go(r)?(e=!0,xo(t)):e=!1,aa(t,n),ba(t,r,o),xa(t,r,o,n),$i(null,t,r,!0,e,n);case 19:return ts(e,t,n);case 23:case 24:return Ui(e,t,n)}throw Error(i(156,t.tag))},tu.prototype.render=function(e){Xl(e,this._internalRoot,null,null)},tu.prototype.unmount=function(){var e=this._internalRoot,t=e.containerInfo;Xl(null,e,null,(function(){t[Jr]=null}))},et=function(e){13===e.tag&&(fl(e,4,ul()),eu(e,4))},tt=function(e){13===e.tag&&(fl(e,67108864,ul()),eu(e,67108864))},nt=function(e){if(13===e.tag){var t=ul(),n=cl(e);fl(e,n,t),eu(e,n)}},rt=function(e,t){return t()},Oe=function(e,t,n){switch(t){case"input":if(ne(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=oo(r);if(!o)throw Error(i(90));X(r),ne(r,o)}}}break;case"textarea":ue(e,n);break;case"select":null!=(t=n.value)&&ie(e,!!n.multiple,t,!1)}},Te=gl,Re=function(e,t,n,r,o){var a=js;js|=4;try{return Go(98,e.bind(null,t,n,r,o))}finally{0===(js=a)&&(Hs(),Yo())}},Ne=function(){0==(49&js)&&(function(){if(null!==tl){var e=tl;tl=null,e.forEach((function(e){e.expiredLanes|=24&e.pendingLanes,dl(e,Wo())}))}Yo()}(),Tl())},Me=function(e,t){var n=js;js|=2;try{return e(t)}finally{0===(js=n)&&(Hs(),Yo())}};var au={Events:[no,ro,oo,Ae,Ie,Tl,{current:!1}]},iu={findFiberByHostInstance:to,bundleType:0,version:"17.0.2",rendererPackageName:"react-dom"},su={bundleType:iu.bundleType,version:iu.version,rendererPackageName:iu.rendererPackageName,rendererConfig:iu.rendererConfig,overrideHookState:null,overrideHookStateDeletePath:null,overrideHookStateRenamePath:null,overrideProps:null,overridePropsDeletePath:null,overridePropsRenamePath:null,setSuspenseHandler:null,scheduleUpdate:null,currentDispatcherRef:x.ReactCurrentDispatcher,findHostInstanceByFiber:function(e){return null===(e=Ze(e))?null:e.stateNode},findFiberByHostInstance:iu.findFiberByHostInstance||function(){return null},findHostInstancesForRefresh:null,scheduleRefresh:null,scheduleRoot:null,setRefreshHandler:null,getCurrentFiber:null};if("undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__){var lu=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!lu.isDisabled&&lu.supportsFiber)try{So=lu.inject(su),ko=lu}catch(me){}}t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=au,t.createPortal=ou,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(i(188));throw Error(i(268,Object.keys(e)))}return null===(e=Ze(t))?null:e.stateNode},t.flushSync=function(e,t){var n=js;if(0!=(48&n))return e(t);js|=1;try{if(e)return Go(99,e.bind(null,t))}finally{js=n,Yo()}},t.hydrate=function(e,t,n){if(!nu(t))throw Error(i(200));return ru(null,e,t,!0,n)},t.render=function(e,t,n){if(!nu(t))throw Error(i(200));return ru(null,e,t,!1,n)},t.unmountComponentAtNode=function(e){if(!nu(e))throw Error(i(40));return!!e._reactRootContainer&&(yl((function(){ru(null,null,e,!1,(function(){e._reactRootContainer=null,e[Jr]=null}))})),!0)},t.unstable_batchedUpdates=gl,t.unstable_createPortal=function(e,t){return ou(e,t,2<arguments.length&&void 0!==arguments[2]?arguments[2]:null)},t.unstable_renderSubtreeIntoContainer=function(e,t,n,r){if(!nu(n))throw Error(i(200));if(null==e||void 0===e._reactInternals)throw Error(i(38));return ru(e,t,n,!1,r)},t.version="17.0.2"},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}}},7914:(e,t,n)=>{"use strict";var r=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},o=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),a=n(7294),i=l(a),s=l(n(5697));function l(e){return e&&e.__esModule?e:{default:e}}var u={position:"absolute",top:0,left:0,visibility:"hidden",height:0,overflow:"scroll",whiteSpace:"pre"},c=["extraWidth","injectStyles","inputClassName","inputRef","inputStyle","minWidth","onAutosize","placeholderIsMinWidth"],f=function(e,t){t.style.fontSize=e.fontSize,t.style.fontFamily=e.fontFamily,t.style.fontWeight=e.fontWeight,t.style.fontStyle=e.fontStyle,t.style.letterSpacing=e.letterSpacing,t.style.textTransform=e.textTransform},p=!("undefined"==typeof window||!window.navigator)&&/MSIE |Trident\/|Edge\//.test(window.navigator.userAgent),d=function(){return p?"_"+Math.random().toString(36).substr(2,12):void 0},h=function(e){function t(e){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);var n=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e));return n.inputRef=function(e){n.input=e,"function"==typeof n.props.inputRef&&n.props.inputRef(e)},n.placeHolderSizerRef=function(e){n.placeHolderSizer=e},n.sizerRef=function(e){n.sizer=e},n.state={inputWidth:e.minWidth,inputId:e.id||d(),prevId:e.id},n}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),o(t,null,[{key:"getDerivedStateFromProps",value:function(e,t){var n=e.id;return n!==t.prevId?{inputId:n||d(),prevId:n}:null}}]),o(t,[{key:"componentDidMount",value:function(){this.mounted=!0,this.copyInputStyles(),this.updateInputWidth()}},{key:"componentDidUpdate",value:function(e,t){t.inputWidth!==this.state.inputWidth&&"function"==typeof this.props.onAutosize&&this.props.onAutosize(this.state.inputWidth),this.updateInputWidth()}},{key:"componentWillUnmount",value:function(){this.mounted=!1}},{key:"copyInputStyles",value:function(){if(this.mounted&&window.getComputedStyle){var e=this.input&&window.getComputedStyle(this.input);e&&(f(e,this.sizer),this.placeHolderSizer&&f(e,this.placeHolderSizer))}}},{key:"updateInputWidth",value:function(){if(this.mounted&&this.sizer&&void 0!==this.sizer.scrollWidth){var e=void 0;e=this.props.placeholder&&(!this.props.value||this.props.value&&this.props.placeholderIsMinWidth)?Math.max(this.sizer.scrollWidth,this.placeHolderSizer.scrollWidth)+2:this.sizer.scrollWidth+2,(e+="number"===this.props.type&&void 0===this.props.extraWidth?16:parseInt(this.props.extraWidth)||0)<this.props.minWidth&&(e=this.props.minWidth),e!==this.state.inputWidth&&this.setState({inputWidth:e})}}},{key:"getInput",value:function(){return this.input}},{key:"focus",value:function(){this.input.focus()}},{key:"blur",value:function(){this.input.blur()}},{key:"select",value:function(){this.input.select()}},{key:"renderStyles",value:function(){var e=this.props.injectStyles;return p&&e?i.default.createElement("style",{dangerouslySetInnerHTML:{__html:"input#"+this.state.inputId+"::-ms-clear {display: none;}"}}):null}},{key:"render",value:function(){var e=[this.props.defaultValue,this.props.value,""].reduce((function(e,t){return null!=e?e:t})),t=r({},this.props.style);t.display||(t.display="inline-block");var n=r({boxSizing:"content-box",width:this.state.inputWidth+"px"},this.props.inputStyle),o=function(e,t){var n={};for(var r in e)t.indexOf(r)>=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}(this.props,[]);return function(e){c.forEach((function(t){return delete e[t]}))}(o),o.className=this.props.inputClassName,o.id=this.state.inputId,o.style=n,i.default.createElement("div",{className:this.props.className,style:t},this.renderStyles(),i.default.createElement("input",r({},o,{ref:this.inputRef})),i.default.createElement("div",{ref:this.sizerRef,style:u},e),this.props.placeholder?i.default.createElement("div",{ref:this.placeHolderSizerRef,style:u},this.props.placeholder):null)}}]),t}(a.Component);h.propTypes={className:s.default.string,defaultValue:s.default.any,extraWidth:s.default.oneOfType([s.default.number,s.default.string]),id:s.default.string,injectStyles:s.default.bool,inputClassName:s.default.string,inputRef:s.default.func,inputStyle:s.default.object,minWidth:s.default.oneOfType([s.default.number,s.default.string]),onAutosize:s.default.func,onChange:s.default.func,placeholder:s.default.string,placeholderIsMinWidth:s.default.bool,style:s.default.object,value:s.default.any},h.defaultProps={minWidth:1,injectStyles:!0},t.Z=h},9921:(e,t)=>{"use strict";var n=60103,r=60106,o=60107,a=60108,i=60114,s=60109,l=60110,u=60112,c=60113,f=60120,p=60115,d=60116,h=60121,m=60122,v=60117,g=60129,y=60131;if("function"==typeof Symbol&&Symbol.for){var b=Symbol.for;n=b("react.element"),r=b("react.portal"),o=b("react.fragment"),a=b("react.strict_mode"),i=b("react.profiler"),s=b("react.provider"),l=b("react.context"),u=b("react.forward_ref"),c=b("react.suspense"),f=b("react.suspense_list"),p=b("react.memo"),d=b("react.lazy"),h=b("react.block"),m=b("react.server.block"),v=b("react.fundamental"),g=b("react.debug_trace_mode"),y=b("react.legacy_hidden")}t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===o||e===i||e===g||e===a||e===c||e===f||e===y||"object"==typeof e&&null!==e&&(e.$$typeof===d||e.$$typeof===p||e.$$typeof===s||e.$$typeof===l||e.$$typeof===u||e.$$typeof===v||e.$$typeof===h||e[0]===m)},t.typeOf=function(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case n:switch(e=e.type){case o:case i:case a:case c:case f:return e;default:switch(e=e&&e.$$typeof){case l:case u:case d:case p:case s:return e;default:return t}}case r:return t}}}},9864:(e,t,n)=>{"use strict";e.exports=n(9921)},2408:(e,t,n)=>{"use strict";var r=n(7418),o=60103,a=60106;t.Fragment=60107,t.StrictMode=60108,t.Profiler=60114;var i=60109,s=60110,l=60112;t.Suspense=60113;var u=60115,c=60116;if("function"==typeof Symbol&&Symbol.for){var f=Symbol.for;o=f("react.element"),a=f("react.portal"),t.Fragment=f("react.fragment"),t.StrictMode=f("react.strict_mode"),t.Profiler=f("react.profiler"),i=f("react.provider"),s=f("react.context"),l=f("react.forward_ref"),t.Suspense=f("react.suspense"),u=f("react.memo"),c=f("react.lazy")}var p="function"==typeof Symbol&&Symbol.iterator;function d(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n<arguments.length;n++)t+="&args[]="+encodeURIComponent(arguments[n]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var h={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},m={};function v(e,t,n){this.props=e,this.context=t,this.refs=m,this.updater=n||h}function g(){}function y(e,t,n){this.props=e,this.context=t,this.refs=m,this.updater=n||h}v.prototype.isReactComponent={},v.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(d(85));this.updater.enqueueSetState(this,e,t,"setState")},v.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},g.prototype=v.prototype;var b=y.prototype=new g;b.constructor=y,r(b,v.prototype),b.isPureReactComponent=!0;var w={current:null},x=Object.prototype.hasOwnProperty,E={key:!0,ref:!0,__self:!0,__source:!0};function S(e,t,n){var r,a={},i=null,s=null;if(null!=t)for(r in void 0!==t.ref&&(s=t.ref),void 0!==t.key&&(i=""+t.key),t)x.call(t,r)&&!E.hasOwnProperty(r)&&(a[r]=t[r]);var l=arguments.length-2;if(1===l)a.children=n;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(r in l=e.defaultProps)void 0===a[r]&&(a[r]=l[r]);return{$$typeof:o,type:e,key:i,ref:s,props:a,_owner:w.current}}function k(e){return"object"==typeof e&&null!==e&&e.$$typeof===o}var _=/\/+/g;function O(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 C(e,t,n,r,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 o:case a:l=!0}}if(l)return i=i(l=e),e=""===r?"."+O(l,0):r,Array.isArray(i)?(n="",null!=e&&(n=e.replace(_,"$&/")+"/"),C(i,t,n,"",(function(e){return e}))):null!=i&&(k(i)&&(i=function(e,t){return{$$typeof:o,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}}(i,n+(!i.key||l&&l.key===i.key?"":(""+i.key).replace(_,"$&/")+"/")+e)),t.push(i)),1;if(l=0,r=""===r?".":r+":",Array.isArray(e))for(var u=0;u<e.length;u++){var c=r+O(s=e[u],u);l+=C(s,t,n,c,i)}else if(c=function(e){return null===e||"object"!=typeof e?null:"function"==typeof(e=p&&e[p]||e["@@iterator"])?e:null}(e),"function"==typeof c)for(e=c.call(e),u=0;!(s=e.next()).done;)l+=C(s=s.value,t,n,c=r+O(s,u++),i);else if("object"===s)throw t=""+e,Error(d(31,"[object Object]"===t?"object with keys {"+Object.keys(e).join(", ")+"}":t));return l}function P(e,t,n){if(null==e)return e;var r=[],o=0;return C(e,r,"","",(function(e){return t.call(n,e,o++)})),r}function j(e){if(-1===e._status){var t=e._result;t=t(),e._status=0,e._result=t,t.then((function(t){0===e._status&&(t=t.default,e._status=1,e._result=t)}),(function(t){0===e._status&&(e._status=2,e._result=t)}))}if(1===e._status)return e._result;throw e._result}var A={current:null};function I(){var e=A.current;if(null===e)throw Error(d(321));return e}var T={ReactCurrentDispatcher:A,ReactCurrentBatchConfig:{transition:0},ReactCurrentOwner:w,IsSomeRendererActing:{current:!1},assign:r};t.Children={map:P,forEach:function(e,t,n){P(e,(function(){t.apply(this,arguments)}),n)},count:function(e){var t=0;return P(e,(function(){t++})),t},toArray:function(e){return P(e,(function(e){return e}))||[]},only:function(e){if(!k(e))throw Error(d(143));return e}},t.Component=v,t.PureComponent=y,t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=T,t.cloneElement=function(e,t,n){if(null==e)throw Error(d(267,e));var a=r({},e.props),i=e.key,s=e.ref,l=e._owner;if(null!=t){if(void 0!==t.ref&&(s=t.ref,l=w.current),void 0!==t.key&&(i=""+t.key),e.type&&e.type.defaultProps)var u=e.type.defaultProps;for(c in t)x.call(t,c)&&!E.hasOwnProperty(c)&&(a[c]=void 0===t[c]&&void 0!==u?u[c]:t[c])}var c=arguments.length-2;if(1===c)a.children=n;else if(1<c){u=Array(c);for(var f=0;f<c;f++)u[f]=arguments[f+2];a.children=u}return{$$typeof:o,type:e.type,key:i,ref:s,props:a,_owner:l}},t.createContext=function(e,t){return void 0===t&&(t=null),(e={$$typeof:s,_calculateChangedBits:t,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null}).Provider={$$typeof:i,_context:e},e.Consumer=e},t.createElement=S,t.createFactory=function(e){var t=S.bind(null,e);return t.type=e,t},t.createRef=function(){return{current:null}},t.forwardRef=function(e){return{$$typeof:l,render:e}},t.isValidElement=k,t.lazy=function(e){return{$$typeof:c,_payload:{_status:-1,_result:e},_init:j}},t.memo=function(e,t){return{$$typeof:u,type:e,compare:void 0===t?null:t}},t.useCallback=function(e,t){return I().useCallback(e,t)},t.useContext=function(e,t){return I().useContext(e,t)},t.useDebugValue=function(){},t.useEffect=function(e,t){return I().useEffect(e,t)},t.useImperativeHandle=function(e,t,n){return I().useImperativeHandle(e,t,n)},t.useLayoutEffect=function(e,t){return I().useLayoutEffect(e,t)},t.useMemo=function(e,t){return I().useMemo(e,t)},t.useReducer=function(e,t,n){return I().useReducer(e,t,n)},t.useRef=function(e){return I().useRef(e)},t.useState=function(e){return I().useState(e)},t.version="17.0.2"},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";var n,r,o,a;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}}if("undefined"==typeof window||"function"!=typeof MessageChannel){var u=null,c=null,f=function(){if(null!==u)try{var e=t.unstable_now();u(!0,e),u=null}catch(e){throw setTimeout(f,0),e}};n=function(e){null!==u?setTimeout(n,0,e):(u=e,setTimeout(f,0))},r=function(e,t){c=setTimeout(e,t)},o=function(){clearTimeout(c)},t.unstable_shouldYield=function(){return!1},a=t.unstable_forceFrameRate=function(){}}else{var p=window.setTimeout,d=window.clearTimeout;if("undefined"!=typeof console){var h=window.cancelAnimationFrame;"function"!=typeof window.requestAnimationFrame&&console.error("This browser doesn't support requestAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills"),"function"!=typeof h&&console.error("This browser doesn't support cancelAnimationFrame. Make sure that you load a polyfill in older browsers. https://reactjs.org/link/react-polyfills")}var m=!1,v=null,g=-1,y=5,b=0;t.unstable_shouldYield=function(){return t.unstable_now()>=b},a=function(){},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"):y=0<e?Math.floor(1e3/e):5};var w=new MessageChannel,x=w.port2;w.port1.onmessage=function(){if(null!==v){var e=t.unstable_now();b=e+y;try{v(!0,e)?x.postMessage(null):(m=!1,v=null)}catch(e){throw x.postMessage(null),e}}else m=!1},n=function(e){v=e,m||(m=!0,x.postMessage(null))},r=function(e,n){g=p((function(){e(t.unstable_now())}),n)},o=function(){d(g),g=-1}}function E(e,t){var n=e.length;e.push(t);e:for(;;){var r=n-1>>>1,o=e[r];if(!(void 0!==o&&0<_(o,t)))break e;e[r]=t,e[n]=o,n=r}}function S(e){return void 0===(e=e[0])?null:e}function k(e){var t=e[0];if(void 0!==t){var n=e.pop();if(n!==t){e[0]=n;e:for(var r=0,o=e.length;r<o;){var a=2*(r+1)-1,i=e[a],s=a+1,l=e[s];if(void 0!==i&&0>_(i,n))void 0!==l&&0>_(l,i)?(e[r]=l,e[s]=n,r=s):(e[r]=i,e[a]=n,r=a);else{if(!(void 0!==l&&0>_(l,n)))break e;e[r]=l,e[s]=n,r=s}}}return t}return null}function _(e,t){var n=e.sortIndex-t.sortIndex;return 0!==n?n:e.id-t.id}var O=[],C=[],P=1,j=null,A=3,I=!1,T=!1,R=!1;function N(e){for(var t=S(C);null!==t;){if(null===t.callback)k(C);else{if(!(t.startTime<=e))break;k(C),t.sortIndex=t.expirationTime,E(O,t)}t=S(C)}}function M(e){if(R=!1,N(e),!T)if(null!==S(O))T=!0,n(F);else{var t=S(C);null!==t&&r(M,t.startTime-e)}}function F(e,n){T=!1,R&&(R=!1,o()),I=!0;var a=A;try{for(N(n),j=S(O);null!==j&&(!(j.expirationTime>n)||e&&!t.unstable_shouldYield());){var i=j.callback;if("function"==typeof i){j.callback=null,A=j.priorityLevel;var s=i(j.expirationTime<=n);n=t.unstable_now(),"function"==typeof s?j.callback=s:j===S(O)&&k(O),N(n)}else k(O);j=S(O)}if(null!==j)var l=!0;else{var u=S(C);null!==u&&r(M,u.startTime-n),l=!1}return l}finally{j=null,A=a,I=!1}}var L=a;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(){T||I||(T=!0,n(F))},t.unstable_getCurrentPriorityLevel=function(){return A},t.unstable_getFirstCallbackNode=function(){return S(O)},t.unstable_next=function(e){switch(A){case 1:case 2:case 3:var t=3;break;default:t=A}var n=A;A=t;try{return e()}finally{A=n}},t.unstable_pauseExecution=function(){},t.unstable_requestPaint=L,t.unstable_runWithPriority=function(e,t){switch(e){case 1:case 2:case 3:case 4:case 5:break;default:e=3}var n=A;A=e;try{return t()}finally{A=n}},t.unstable_scheduleCallback=function(e,a,i){var s=t.unstable_now();switch(i="object"==typeof i&&null!==i&&"number"==typeof(i=i.delay)&&0<i?s+i:s,e){case 1:var l=-1;break;case 2:l=250;break;case 5:l=1073741823;break;case 4:l=1e4;break;default:l=5e3}return e={id:P++,callback:a,priorityLevel:e,startTime:i,expirationTime:l=i+l,sortIndex:-1},i>s?(e.sortIndex=i,E(C,e),null===S(O)&&e===S(C)&&(R?o():R=!0,r(M,i-s))):(e.sortIndex=l,E(O,e),T||I||(T=!0,n(F))),e},t.unstable_wrapCallback=function(e){var t=A;return function(){var n=A;A=t;try{return e.apply(this,arguments)}finally{A=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()}}}},t={};function n(r){var o=t[r];if(void 0!==o)return o.exports;var a=t[r]={id:r,loaded:!1,exports:{}};return e[r](a,a.exports,n),a.loaded=!0,a.exports}n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.nmd=e=>(e.paths=[],e.children||(e.children=[]),e),(()=>{"use strict";var e=n(7294),t=n(3935),r=(n(919),Object.prototype.hasOwnProperty),o=new WeakMap,a=0,i=function(){function e(e){void 0===e&&(e={}),this.cache=new Map(Object.entries(e)),this.subs=[]}return e.prototype.get=function(e){var t=this.serializeKey(e)[0];return this.cache.get(t)},e.prototype.set=function(e,t){var n=this.serializeKey(e)[0];this.cache.set(n,t),this.notify()},e.prototype.keys=function(){return Array.from(this.cache.keys())},e.prototype.has=function(e){var t=this.serializeKey(e)[0];return this.cache.has(t)},e.prototype.clear=function(){this.cache.clear(),this.notify()},e.prototype.delete=function(e){var t=this.serializeKey(e)[0];this.cache.delete(t),this.notify()},e.prototype.serializeKey=function(e){var t=null;if("function"==typeof e)try{e=e()}catch(t){e=""}return Array.isArray(e)?(t=e,e=function(e){if(!e.length)return"";for(var t="arg",n=0;n<e.length;++n)if(null!==e[n]){var r=void 0;"object"!=typeof e[n]&&"function"!=typeof e[n]?r="string"==typeof e[n]?'"'+e[n]+'"':String(e[n]):o.has(e[n])?r=o.get(e[n]):(r=a,o.set(e[n],a++)),t+="@"+r}else t+="@null";return t}(e)):e=String(e||""),[e,t,e?"err@"+e:"",e?"validating@"+e:""]},e.prototype.subscribe=function(e){var t=this;if("function"!=typeof e)throw new Error("Expected the listener to be a function.");var n=!0;return this.subs.push(e),function(){if(n){n=!1;var r=t.subs.indexOf(e);r>-1&&(t.subs[r]=t.subs[t.subs.length-1],t.subs.length--)}}},e.prototype.notify=function(){for(var e=0,t=this.subs;e<t.length;e++)(0,t[e])()},e}(),s=!0;const l={isOnline:function(){return s},isDocumentVisible:function(){return"undefined"==typeof document||void 0===document.visibilityState||"hidden"!==document.visibilityState},fetcher:function(e){return fetch(e).then((function(e){return e.json()}))},registerOnFocus:function(e){"undefined"!=typeof window&&void 0!==window.addEventListener&&"undefined"!=typeof document&&void 0!==document.addEventListener&&(document.addEventListener("visibilitychange",(function(){return e()}),!1),window.addEventListener("focus",(function(){return e()}),!1))},registerOnReconnect:function(e){"undefined"!=typeof window&&void 0!==window.addEventListener&&(window.addEventListener("online",(function(){s=!0,e()}),!1),window.addEventListener("offline",(function(){return s=!1}),!1))}};var u=function(){return u=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},u.apply(this,arguments)},c=new i,f="undefined"!=typeof window&&navigator.connection&&-1!==["slow-2g","2g"].indexOf(navigator.connection.effectiveType),p=u({onLoadingSlow:function(){},onSuccess:function(){},onError:function(){},onErrorRetry:function(e,t,n,r,o){if(n.isDocumentVisible()&&!("number"==typeof n.errorRetryCount&&o.retryCount>n.errorRetryCount)){var a=Math.min(o.retryCount,8),i=~~((Math.random()+.5)*(1<<a))*n.errorRetryInterval;setTimeout(r,i,o)}},errorRetryInterval:1e3*(f?10:5),focusThrottleInterval:5e3,dedupingInterval:2e3,loadingTimeout:1e3*(f?5:3),refreshInterval:0,revalidateOnFocus:!0,revalidateOnReconnect:!0,refreshWhenHidden:!1,refreshWhenOffline:!1,shouldRetryOnError:!0,suspense:!1,compare:function e(t,n){var o,a;if(t===n)return!0;if(t&&n&&(o=t.constructor)===n.constructor){if(o===Date)return t.getTime()===n.getTime();if(o===RegExp)return t.toString()===n.toString();if(o===Array){if((a=t.length)===n.length)for(;a--&&e(t[a],n[a]););return-1===a}if(!o||"object"==typeof t){for(o in a=0,t){if(r.call(t,o)&&++a&&!r.call(n,o))return!1;if(!(o in n)||!e(t[o],n[o]))return!1}return Object.keys(n).length===a}}return t!=t&&n!=n},isPaused:function(){return!1}},l);const d=p;var h="undefined"==typeof window||!!("undefined"!=typeof Deno&&Deno&&Deno.version&&Deno.version.deno),m=h?null:window.requestAnimationFrame?function(e){return window.requestAnimationFrame(e)}:function(e){return setTimeout(e,1)},v=h?e.useEffect:e.useLayoutEffect,g=(0,e.createContext)({});g.displayName="SWRConfigContext";const y=g;var b,w=function(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())}))},x=function(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])}}},E={},S={},k={},_={},O={},C={},P={},j=(b=0,function(){return++b});if(!h){var A=function(e){if(d.isDocumentVisible()&&d.isOnline())for(var t in e)e[t][0]&&e[t][0]()};"function"==typeof d.registerOnFocus&&d.registerOnFocus((function(){return A(k)})),"function"==typeof d.registerOnReconnect&&d.registerOnReconnect((function(){return A(_)}))}var I=function(e,t){void 0===t&&(t=!0);var n=c.serializeKey(e),r=n[0],o=n[2],a=n[3];if(!r)return Promise.resolve();var i=O[r];if(r&&i){for(var s=c.get(r),l=c.get(o),u=c.get(a),f=[],p=0;p<i.length;++p)f.push(i[p](t,s,l,u,p>0));return Promise.all(f).then((function(){return c.get(r)}))}return Promise.resolve(c.get(r))},T=function(e,t,n,r){var o=O[e];if(e&&o)for(var a=0;a<o.length;++a)o[a](!1,t,n,r)},R=function(e,t,n){return void 0===n&&(n=!0),w(void 0,void 0,void 0,(function(){var r,o,a,i,s,l,u,f,p,d,h,m,v;return x(this,(function(g){switch(g.label){case 0:if(r=c.serializeKey(e),o=r[0],a=r[2],!o)return[2];if(void 0===t)return[2,I(e,n)];if(C[o]=j()-1,P[o]=0,i=C[o],s=S[o],f=!1,t&&"function"==typeof t)try{t=t(c.get(o))}catch(e){t=void 0,u=e}if(!t||"function"!=typeof t.then)return[3,5];f=!0,g.label=1;case 1:return g.trys.push([1,3,,4]),[4,t];case 2:return l=g.sent(),[3,4];case 3:return p=g.sent(),u=p,[3,4];case 4:return[3,6];case 5:l=t,g.label=6;case 6:if((d=function(){if(i!==C[o]||s!==S[o]){if(u)throw u;return!0}})())return[2,l];if(void 0!==l&&c.set(o,l),c.set(a,u),P[o]=j()-1,!f&&d())return[2,l];if(h=O[o]){for(m=[],v=0;v<h.length;++v)m.push(h[v](!!n,l,u,void 0,v>0));return[2,Promise.all(m).then((function(){if(u)throw u;return c.get(o)}))]}if(u)throw u;return[2,l]}}))}))};Object.defineProperty(y.Provider,"default",{value:d});var N=y.Provider;const M=function(){for(var t=this,n=[],r=0;r<arguments.length;r++)n[r]=arguments[r];var o=n[0],a=Object.assign({},d,(0,e.useContext)(y),n.length>2?n[2]:2===n.length&&"object"==typeof n[1]?n[1]:{}),i=n.length>2||2===n.length&&"function"==typeof n[1]||null===n[1]?n[1]:a.fetcher,s=c.serializeKey(o),l=s[0],u=s[1],f=s[2],p=s[3],g=(0,e.useRef)(a);v((function(){g.current=a}));var b=function(){return a.revalidateOnMount||!a.initialData&&void 0===a.revalidateOnMount},A=function(){var e=c.get(l);return void 0===e?a.initialData:e},I=function(){return!!c.get(p)||l&&b()},N=A(),M=c.get(f),F=I(),L=(0,e.useRef)({data:!1,error:!1,isValidating:!1}),D=(0,e.useRef)({data:N,error:M,isValidating:F});(0,e.useDebugValue)(D.current.data);var z,V,U=(0,e.useState)({})[1],B=(0,e.useCallback)((function(e){var t=!1;for(var n in e)D.current[n]!==e[n]&&(D.current[n]=e[n],L.current[n]&&(t=!0));if(t){if(W.current||!$.current)return;U({})}}),[]),W=(0,e.useRef)(!1),H=(0,e.useRef)(l),$=(0,e.useRef)(!1),G=(0,e.useCallback)((function(e){for(var t,n=[],r=1;r<arguments.length;r++)n[r-1]=arguments[r];W.current||$.current&&l===H.current&&(t=g.current)[e].apply(t,n)}),[l]),q=(0,e.useCallback)((function(e,t){return R(H.current,e,t)}),[]),Y=function(e,t){return e[l]?e[l].push(t):e[l]=[t],function(){var n=e[l],r=n.indexOf(t);r>=0&&(n[r]=n[n.length-1],n.pop())}},K=(0,e.useCallback)((function(e){return void 0===e&&(e={}),w(t,void 0,void 0,(function(){var t,n,r,o,s,d,h,m,v,y;return x(this,(function(b){switch(b.label){case 0:if(!l||!i)return[2,!1];if(W.current)return[2,!1];if(g.current.isPaused())return[2,!1];t=e.retryCount,n=void 0===t?0:t,r=e.dedupe,o=void 0!==r&&r,s=!0,d=void 0!==E[l]&&o,b.label=1;case 1:return b.trys.push([1,6,,7]),B({isValidating:!0}),c.set(p,!0),d||T(l,D.current.data,D.current.error,!0),h=void 0,m=void 0,d?(m=S[l],[4,E[l]]):[3,3];case 2:return h=b.sent(),[3,5];case 3:return a.loadingTimeout&&!c.get(l)&&setTimeout((function(){s&&G("onLoadingSlow",l,a)}),a.loadingTimeout),E[l]=null!==u?i.apply(void 0,u):i(l),S[l]=m=j(),[4,E[l]];case 4:h=b.sent(),setTimeout((function(){delete E[l],delete S[l]}),a.dedupingInterval),G("onSuccess",h,l,a),b.label=5;case 5:return S[l]>m?[2,!1]:C[l]&&(m<=C[l]||m<=P[l]||0===P[l])?(B({isValidating:!1}),[2,!1]):(c.set(f,void 0),c.set(p,!1),v={isValidating:!1},void 0!==D.current.error&&(v.error=void 0),a.compare(D.current.data,h)||(v.data=h),a.compare(c.get(l),h)||c.set(l,h),B(v),d||T(l,h,v.error,!1),[3,7]);case 6:return y=b.sent(),delete E[l],delete S[l],g.current.isPaused()?(B({isValidating:!1}),[2,!1]):(c.set(f,y),D.current.error!==y&&(B({isValidating:!1,error:y}),d||T(l,void 0,y,!1)),G("onError",y,l,a),a.shouldRetryOnError&&G("onErrorRetry",y,l,a,K,{retryCount:n+1,dedupe:!0}),[3,7]);case 7:return s=!1,[2,!0]}}))}))}),[l]);if(v((function(){if(l){W.current=!1;var e=$.current;$.current=!0;var t=D.current.data,n=A();H.current=l,a.compare(t,n)||B({data:n});var r=function(){return K({dedupe:!0})};(e||b())&&(void 0===n||h?r():m(r));var o=!1,i=Y(k,(function(){!o&&g.current.revalidateOnFocus&&(o=!0,r(),setTimeout((function(){return o=!1}),g.current.focusThrottleInterval))})),s=Y(_,(function(){g.current.revalidateOnReconnect&&r()})),u=Y(O,(function(e,t,n,o,i){void 0===e&&(e=!0),void 0===i&&(i=!0);var s={},l=!1;return void 0===t||a.compare(D.current.data,t)||(s.data=t,l=!0),D.current.error!==n&&(s.error=n,l=!0),void 0!==o&&D.current.isValidating!==o&&(s.isValidating=o,l=!0),l&&B(s),!!e&&(i?r():K())}));return function(){B=function(){return null},W.current=!0,i(),s(),u()}}}),[l,K]),v((function(){var e=null,n=function(){return w(t,void 0,void 0,(function(){return x(this,(function(t){switch(t.label){case 0:return D.current.error||!g.current.refreshWhenHidden&&!g.current.isDocumentVisible()||!g.current.refreshWhenOffline&&!g.current.isOnline()?[3,2]:[4,K({dedupe:!0})];case 1:t.sent(),t.label=2;case 2:return g.current.refreshInterval&&e&&(e=setTimeout(n,g.current.refreshInterval)),[2]}}))}))};return g.current.refreshInterval&&(e=setTimeout(n,g.current.refreshInterval)),function(){e&&(clearTimeout(e),e=null)}}),[a.refreshInterval,a.refreshWhenHidden,a.refreshWhenOffline,K]),a.suspense){if(z=c.get(l),V=c.get(f),void 0===z&&(z=N),void 0===V&&(V=M),void 0===z&&void 0===V){if(E[l]||K(),E[l]&&"function"==typeof E[l].then)throw E[l];z=E[l]}if(void 0===z&&V)throw V}var Q=(0,e.useMemo)((function(){var e={revalidate:K,mutate:q};return Object.defineProperties(e,{error:{get:function(){return L.current.error=!0,a.suspense?V:H.current===l?D.current.error:M},enumerable:!0},data:{get:function(){return L.current.data=!0,a.suspense?z:H.current===l?D.current.data:N},enumerable:!0},isValidating:{get:function(){return L.current.isValidating=!0,!!l&&D.current.isValidating},enumerable:!0}}),e}),[K,N,M,q,l,a.suspense,V,z]);return Q};var F=n(8804),L=n.n(F);function D(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 z(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var a=e.apply(t,n);function i(e){D(a,r,o,i,s,"next",e)}function s(e){D(a,r,o,i,s,"throw",e)}i(void 0)}))}}var V=function(){var e=z(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)}}(),U=n(7361),B=n.n(U),W=function(e){return"".concat(SEOPRESS_DATA.SEOPRESS_URL_ASSETS).concat(e)},H=n(9864),$=n(1032),G=n.n($);const q=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,V=l.length,U=V-1,B="",W="",H="",$="";F<V;){if(h=l.charCodeAt(F),F===U&&0!==S+_+k+E&&(0!==S&&(h=47===S?10:47),_=k=E=0,V++,U++),0===S+_+k+E){if(F===U&&(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<V;){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<U;++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++<U&&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},Y={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};var K=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|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|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|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|inert|itemProp|itemScope|itemType|itemID|itemRef|on|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 Q=(X={},function(e){return void 0===X[e]&&(X[e]=(t=e,K.test(t)||111===t.charCodeAt(0)&&110===t.charCodeAt(1)&&t.charCodeAt(2)<91)),X[e];var t});var X,Z=n(8679),J=n.n(Z);function ee(){return(ee=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 te=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},ne=function(e){return null!==e&&"object"==typeof e&&"[object Object]"===(e.toString?e.toString():Object.prototype.toString.call(e))&&!(0,H.typeOf)(e)},re=Object.freeze([]),oe=Object.freeze({});function ae(e){return"function"==typeof e}function ie(e){return e.displayName||e.name||"Component"}function se(e){return e&&"string"==typeof e.styledComponentId}var le="undefined"!=typeof process&&(process.env.REACT_APP_SC_ATTR||process.env.SC_ATTR)||"data-styled",ue="undefined"!=typeof window&&"HTMLElement"in window,ce=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),fe={};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 de=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}(),he=new Map,me=new Map,ve=1,ge=function(e){if(he.has(e))return he.get(e);for(;me.has(ve);)ve++;var t=ve++;return he.set(e,t),me.set(t,e),t},ye=function(e){return me.get(e)},be=function(e,t){t>=ve&&(ve=t+1),he.set(e,t),me.set(t,e)},we="style["+le+'][data-styled-version="5.3.3"]',xe=new RegExp("^"+le+'\\.g(\\d+)\\[id="([\\w\\d-]+)"\\].*?"([^"]*)'),Ee=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)},Se=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(xe);if(s){var l=0|parseInt(s[1],10),u=s[2];0!==l&&(be(u,l),Ee(e,u,s[3]),e.getTag().insertRules(l,r)),r.length=0}else r.push(i)}}},ke=function(){return"undefined"!=typeof window&&void 0!==window.__webpack_nonce__?window.__webpack_nonce__:null},_e=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(le))return r}}(n),a=void 0!==o?o.nextSibling:null;r.setAttribute(le,"active"),r.setAttribute("data-styled-version","5.3.3");var i=ke();return i&&r.setAttribute("nonce",i),n.insertBefore(r,a),r},Oe=function(){function e(e){var t=this.element=_e(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}(),Ce=function(){function e(e){var t=this.element=_e(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}(),Pe=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}(),je=ue,Ae={isServer:!ue,useCSSOMInjection:!ce},Ie=function(){function e(e,t,n){void 0===e&&(e=oe),void 0===t&&(t={}),this.options=ee({},Ae,{},e),this.gs=t,this.names=new Map(n),this.server=!!e.isServer,!this.server&&ue&&je&&(je=!1,function(e){for(var t=document.querySelectorAll(we),n=0,r=t.length;n<r;n++){var o=t[n];o&&"active"!==o.getAttribute(le)&&(Se(e,o),o.parentNode&&o.parentNode.removeChild(o))}}(this))}e.registerId=function(e){return ge(e)};var t=e.prototype;return t.reconstructWithOptions=function(t,n){return void 0===n&&(n=!0),new e(ee({},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 Pe(o):r?new Oe(o):new Ce(o),new de(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(ge(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(ge(e),n)},t.clearNames=function(e){this.names.has(e)&&this.names.get(e).clear()},t.clearRules=function(e){this.getTag().clearGroup(ge(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=ye(o);if(void 0!==a){var i=e.names.get(a),s=t.getGroup(o);if(i&&s&&i.size){var l=le+".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}(),Te=/(a)(d)/gi,Re=function(e){return String.fromCharCode(e+(e>25?39:97))};function Ne(e){var t,n="";for(t=Math.abs(e);t>52;t=t/52|0)n=Re(t%52)+n;return(Re(t%52)+n).replace(Te,"$1-$2")}var Me=function(e,t){for(var n=t.length;n;)e=33*e^t.charCodeAt(--n);return e},Fe=function(e){return Me(5381,e)};function Le(e){for(var t=0;t<e.length;t+=1){var n=e[t];if(ae(n)&&!se(n))return!1}return!0}var De=Fe("5.3.3"),ze=function(){function e(e,t,n){this.rules=e,this.staticRulesId="",this.isStatic=(void 0===n||n.isStatic)&&Le(e),this.componentId=t,this.baseHash=Me(De,t),this.baseStyle=n,Ie.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=rt(this.rules,e,t,n).join(""),i=Ne(Me(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=Me(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=rt(p,e,t,n),h=Array.isArray(d)?d.join(""):d;u=Me(u,h+f),c+=h}}if(c){var m=Ne(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}(),Ve=/^\s*\/\/.*$/gm,Ue=[":","[",".","#"];function Be(e){var t,n,r,o,a=void 0===e?oe:e,i=a.options,s=void 0===i?oe:i,l=a.plugins,u=void 0===l?re:l,c=new q(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!==Ue.indexOf(a[n.length])||a.match(o)?e:"."+t};function h(e,a,i,s){void 0===s&&(s="&");var l=e.replace(Ve,""),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),Me(e,t.name)}),5381).toString():"",h}var We=e.createContext(),He=(We.Consumer,e.createContext()),$e=(He.Consumer,new Ie),Ge=Be();function qe(){return(0,e.useContext)(We)||$e}function Ye(){return(0,e.useContext)(He)||Ge}function Ke(t){var n=(0,e.useState)(t.stylisPlugins),r=n[0],o=n[1],a=qe(),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 Be({options:{prefix:!t.disableVendorPrefixes},plugins:r})}),[t.disableVendorPrefixes,r]);return(0,e.useEffect)((function(){G()(r,t.stylisPlugins)||o(t.stylisPlugins)}),[t.stylisPlugins]),e.createElement(We.Provider,{value:i},e.createElement(He.Provider,{value:s},t.children))}var Qe=function(){function e(e,t){var n=this;this.inject=function(e,t){void 0===t&&(t=Ge);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=Ge),this.name+e.hash},e}(),Xe=/([A-Z])/,Ze=/([A-Z])/g,Je=/^ms-/,et=function(e){return"-"+e.toLowerCase()};function tt(e){return Xe.test(e)?e.replace(Ze,et).replace(Je,"-ms-"):e}var nt=function(e){return null==e||!1===e||""===e};function rt(e,t,n,r){if(Array.isArray(e)){for(var o,a=[],i=0,s=e.length;i<s;i+=1)""!==(o=rt(e[i],t,n,r))&&(Array.isArray(o)?a.push.apply(a,o):a.push(o));return a}return nt(e)?"":se(e)?"."+e.styledComponentId:ae(e)?"function"!=typeof(l=e)||l.prototype&&l.prototype.isReactComponent||!t?e:rt(e(t),t,n,r):e instanceof Qe?n?(e.inject(n,r),e.getName(r)):e:ne(e)?function e(t,n){var r,o,a=[];for(var i in t)t.hasOwnProperty(i)&&!nt(t[i])&&(Array.isArray(t[i])&&t[i].isCss||ae(t[i])?a.push(tt(i)+":",t[i],";"):ne(t[i])?a.push.apply(a,e(t[i],i)):a.push(tt(i)+": "+(r=i,(null==(o=t[i])||"boolean"==typeof o||""===o?"":"number"!=typeof o||0===o||r in Y?String(o).trim():o+"px")+";")));return n?[n+" {"].concat(a,["}"]):a}(e):e.toString();var l}var ot=function(e){return Array.isArray(e)&&(e.isCss=!0),e};function at(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 ae(e)||ne(e)?ot(rt(te(re,[e].concat(n)))):0===n.length&&1===e.length&&"string"==typeof e[0]?e:ot(rt(te(e,n)))}new Set;var it=function(e,t,n){return void 0===n&&(n=oe),e.theme!==n.theme&&e.theme||t||n.theme},st=/[!"#$%&'()*+,./:;<=>?@[\\\]^`{|}~-]+/g,lt=/(^-|-$)/g;function ut(e){return e.replace(st,"-").replace(lt,"")}var ct=function(e){return Ne(Fe(e)>>>0)};function ft(e){return"string"==typeof e&&!0}var pt=function(e){return"function"==typeof e||"object"==typeof e&&null!==e&&!Array.isArray(e)},dt=function(e){return"__proto__"!==e&&"constructor"!==e&&"prototype"!==e};function ht(e,t,n){var r=e[n];pt(t)&&pt(r)?mt(r,t):e[n]=t}function mt(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)dt(s)&&ht(e,i[s],s)}return e}var vt=e.createContext();vt.Consumer;var gt={};function yt(t,n,r){var o=se(t),a=!ft(t),i=n.attrs,s=void 0===i?re:i,l=n.componentId,u=void 0===l?function(e,t){var n="string"!=typeof e?"sc":ut(e);gt[n]=(gt[n]||0)+1;var r=n+"-"+ct("5.3.3"+n+gt[n]);return t?t+"-"+r:r}(n.displayName,n.parentComponentId):l,c=n.displayName,f=void 0===c?function(e){return ft(e)?"styled."+e:"Styled("+ie(e)+")"}(t):c,p=n.displayName&&n.componentId?ut(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 ze(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=oe);var r=ee({},t,{theme:e}),o={};return n.forEach((function(e){var t,n,a,i=e;for(t in ae(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]}(it(n,(0,e.useContext)(vt),s)||oe,n,a),d=p[0],h=p[1],m=function(e,t,n,r){var o=qe(),a=Ye();return t?e.generateAndInjectStyles(oe,o,a):e.generateAndInjectStyles(n,o,a)}(i,o,d),v=r,g=h.$as||n.$as||h.as||n.as||f,y=ft(g),b=h!==n?ee({},n,{},h):n,w={};for(var x in b)"$"!==x[0]&&"as"!==x&&("forwardedAs"===x?w.as=b[x]:(u?u(x,Q,g):!y||Q(x))&&(w[x]=b[x]));return n.style&&h.style!==n.style&&(w.style=ee({},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):re,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+"-"+(ft(e)?e:ut(ie(e)));return yt(e,ee({},o,{attrs:d,componentId:a}),r)},Object.defineProperty(m,"defaultProps",{get:function(){return this._foldedDefaultProps},set:function(e){this._foldedDefaultProps=o?mt({},t.defaultProps,e):e}}),m.toString=function(){return"."+m.styledComponentId},a&&J()(m,t,{attrs:!0,componentStyle:!0,displayName:!0,foldedComponentIds:!0,shouldForwardProp:!0,styledComponentId:!0,target:!0,withComponent:!0}),m}var bt=function(e){return function e(t,n,r){if(void 0===r&&(r=oe),!(0,H.isValidElementType)(n))return pe(1,String(n));var o=function(){return t(n,r,at.apply(void 0,arguments))};return o.withConfig=function(o){return e(t,n,ee({},r,{},o))},o.attrs=function(o){return e(t,n,ee({},r,{attrs:Array.prototype.concat(r.attrs,o).filter(Boolean)}))},o}(yt,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){bt[e]=bt(e)}));var wt,xt=function(){function e(e,t){this.rules=e,this.componentId=t,this.isStatic=Le(e),Ie.registerId(this.componentId+1)}var t=e.prototype;return t.createStyles=function(e,t,n,r){var o=r(rt(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&&Ie.registerId(this.componentId+e),this.removeStyles(e,n),this.createStyles(e,t,n,r)},e}();wt=function(){var t=this;this._emitSheetCSS=function(){var e=t.instance.toString();if(!e)return"";var n=ke();return"<style "+[n&&'nonce="'+n+'"',le+'="true"','data-styled-version="5.3.3"'].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={})[le]="",n["data-styled-version"]="5.3.3",n.dangerouslySetInnerHTML={__html:t.instance.toString()},n),o=ke();return o&&(r.nonce=o),[e.createElement("style",ee({},r,{key:"sc-0-0"}))]},this.seal=function(){t.sealed=!0},this.instance=new Ie({isServer:!0}),this.sealed=!1}.prototype,wt.collectStyles=function(t){return this.sealed?pe(2):e.createElement(Ke,{sheet:this.instance},t)},wt.interleaveWithNodeStream=function(e){return pe(3)};const Et=bt;var St=Et.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;}"]),kt=Et.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 _t=kt;var Ot=n(4293),Ct=n.n(Ot),Pt=n(3311),jt=n.n(Pt),At="TITLE_DESCRIPTION_META",It="CONTENT_ANALYSIS",Tt="SCHEMAS",Rt="TITLE_SETTINGS",Nt="ADVANCED",Mt="SOCIAL",Ft="REDIRECTION",Lt="OVERVIEW",Dt="GOOGLE_NEWS",zt="VIDEO_SITEMAP",Vt="INTERNAL_LINKING",Ut="SCHEMA_MANUAL",Bt="GLOBAL",Wt=wp.i18n.__,Ht=function(){return[{key:At,title:Wt("Titles & Metas","wp-seopress"),canView:function(){return!0},type_role:Bt,default_sub_tab:Rt},{key:It,title:Wt("Content Analysis","wp-seopress"),canView:function(){return!0},type_role:"CONTENT_ANALYSIS",default_sub_tab:Lt},{key:Tt,title:Wt("Schemas","wp-seopress"),canView:function(){return B()(SEOPRESS_DATA,["TABS","SCHEMAS"],!1)},type_role:Bt,default_sub_tab:Ut}]},$t=function(){return[{parent:At,key:Rt,canView:function(){return!0},title:Wt("Title settings","wp-seopress")},{parent:At,key:Mt,canView:function(){return!0},title:Wt("Social","wp-seopress")},{parent:At,key:Nt,canView:function(){return!0},title:Wt("Advanced","wp-seopress")},{parent:At,key:Ft,canView:function(){return!0},title:Wt("Redirection","wp-seopress")},{parent:At,key:Dt,canView:function(){return B()(SEOPRESS_DATA,["SUB_TABS",Dt],!1)},title:Wt("Google News","wp-seopress")},{parent:At,key:zt,canView:function(){return B()(SEOPRESS_DATA,["SUB_TABS",zt],!1)},title:Wt("Video Sitemap","wp-seopress")},{parent:It,key:Lt,canView:function(){return!0},title:Wt("Overview","wp-seopress")},{parent:It,key:Vt,canView:function(){return B()(SEOPRESS_DATA,["SUB_TABS",Vt],!1)},title:Wt("Internal Linking","wp-seopress")},{parent:Tt,key:Ut,canView:function(){return!0},title:Wt("Manual","wp-seopress")}]};function Gt(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=Yt(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 qt(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)||Yt(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 Yt(e,t){if(e){if("string"==typeof e)return Kt(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)?Kt(e,t):void 0}}function Kt(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 Qt=(0,e.createContext)({values:{openBar:!1,tab:At,dataPagePreview:null}}),Xt=function(){return(0,e.useContext)(Qt).values.dataPagePreview},Zt=function(){return(0,e.useContext)(Qt).values.isGutenberg},Jt=function(t){var n=t.children,r=t.data,o=void 0===r?{}:r,a=qt((0,e.useState)(!1),2),i=a[0],s=a[1],l=qt((0,e.useState)(B()(o,"isGutenberg",!1)),2),u=l[0],c=(l[1],qt((0,e.useState)(function(){var e,t=B()(SEOPRESS_DATA,"USER_ROLES",null),n=B()(SEOPRESS_DATA,"ROLES_BLOCKED",{}),r=Gt(Ht());try{for(r.s();!(e=r.n()).done;){var o,a=e.value,i=B()(a,"type_role",null),s=B()(n,[i],null),l=!1,u=Gt(t);try{for(u.s();!(o=u.n()).done;){var c=o.value;Ct()(s)||Ct()(B()(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 jt()(Ht(),{key:At}).key}()),2)),f=c[0],p=c[1],d=qt((0,e.useState)(null),2),h=d[0],m=d[1],v=jt()(Ht(),{key:f}),g=Ct()(v.default_sub_tab)?null:v.default_sub_tab,y=qt((0,e.useState)(g),2),b=y[0],w=y[1];return(0,e.useEffect)((function(){var e=jt()($t(),{key:b});e&&B()(e,"parent",!1)&&p(e.parent)}),[b]),e.createElement(Qt.Provider,{value:{values:{openBar:i,dataPagePreview:h,tab:f,subTab:b,isGutenberg:u},actions:{setOpenBar:s,setDataPagePreview:m,setTab:function(e){var t=jt()(Ht(),{key:e});t&&(Ct()(t.default_sub_tab)?w(null):w(t.default_sub_tab),p(e))},setSubTab:function(e){jt()($t(),{key:e})&&w(e)}}}},n)};function en(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 tn=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 en(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)?en(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 nn(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 rn(){var e=window;return{width:e.innerWidth,height:e.innerHeight}}function on(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 an(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?on(Object(n),!0).forEach((function(t){sn(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):on(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function sn(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function ln(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 un(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)?un(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 un(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 fn=function(){var t=Zt(),n=(0,e.useContext)(Qt).actions,r=ln(tn("seopress_beacon_position",{x:2,y:90}),2),o=r[0],a=r[1],i=ln((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)(rn()),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 nn(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)?nn(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(rn())}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=an(an({},m),{},{x:n})),r<=h&&r>=70&&(o.style.top="".concat(cn(f,r),"%"),m=an(an({},m),{},{y:r}))}}),[s.isDragging]),g=(0,e.useCallback)((function(){s.isDragging&&(l((function(e){return an(an({},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 an(an({},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(_t,{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:B()(SEOPRESS_DATA,"BEACON_SVG",W("/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(_t,{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:B()(SEOPRESS_DATA,"BEACON_SVG",W("/img/beacon.svg")),alt:""})),e.createElement(St,{className:"dashicons dashicons-move",onMouseDown:y})))};var pn=n(1609),dn=n.n(pn);function hn(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 mn(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)?mn(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 mn(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 vn=(0,e.createContext)({values:{show:!1,message:""},actions:{}}),gn=function(t){var n=t.values,r=t.children,o=hn((0,e.useState)(B()(n,"show",!1)),2),a=o[0],i=o[1],s=hn((0,e.useState)(B()(n,"messages","")),2),l=s[0],u=s[1];return(0,e.useEffect)((function(){dn()(l)||(i(!0),setTimeout((function(){u(""),i(!1)}),4e3))}),[l]),e.createElement(vn.Provider,{value:{values:{show:a,message:l},actions:{setMessage:u}}},r)},yn=Et.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 bn=function(t){var n=t.children;return e.createElement(yn,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 wn=function(){var t=(0,e.useContext)(vn).values;return t.show?e.createElement(bn,null,t.message):null};var xn=Object.prototype.hasOwnProperty;const En=function(e,t){return null!=e&&xn.call(e,t)},Sn=Array.isArray,kn="object"==typeof global&&global&&global.Object===Object&&global;var _n="object"==typeof self&&self&&self.Object===Object&&self;const On=kn||_n||Function("return this")(),Cn=On.Symbol;var Pn=Object.prototype,jn=Pn.hasOwnProperty,An=Pn.toString,In=Cn?Cn.toStringTag:void 0;var Tn=Object.prototype.toString;var Rn=Cn?Cn.toStringTag:void 0;const Nn=function(e){return null==e?void 0===e?"[object Undefined]":"[object Null]":Rn&&Rn in Object(e)?function(e){var t=jn.call(e,In),n=e[In];try{e[In]=void 0;var r=!0}catch(e){}var o=An.call(e);return r&&(t?e[In]=n:delete e[In]),o}(e):function(e){return Tn.call(e)}(e)},Mn=function(e){return null!=e&&"object"==typeof e},Fn=function(e){return"symbol"==typeof e||Mn(e)&&"[object Symbol]"==Nn(e)};var Ln=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,Dn=/^\w*$/;const zn=function(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)},Vn=function(e){if(!zn(e))return!1;var t=Nn(e);return"[object Function]"==t||"[object GeneratorFunction]"==t||"[object AsyncFunction]"==t||"[object Proxy]"==t},Un=On["__core-js_shared__"];var Bn,Wn=(Bn=/[^.]+$/.exec(Un&&Un.keys&&Un.keys.IE_PROTO||""))?"Symbol(src)_1."+Bn:"";var Hn=Function.prototype.toString;const $n=function(e){if(null!=e){try{return Hn.call(e)}catch(e){}try{return e+""}catch(e){}}return""};var Gn=/^\[object .+?Constructor\]$/,qn=Function.prototype,Yn=Object.prototype,Kn=qn.toString,Qn=Yn.hasOwnProperty,Xn=RegExp("^"+Kn.call(Qn).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");const Zn=function(e){return!(!zn(e)||(t=e,Wn&&Wn in t))&&(Vn(e)?Xn:Gn).test($n(e));var t},Jn=function(e,t){var n=function(e,t){return null==e?void 0:e[t]}(e,t);return Zn(n)?n:void 0},er=Jn(Object,"create");var tr=Object.prototype.hasOwnProperty;var nr=Object.prototype.hasOwnProperty;function rr(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])}}rr.prototype.clear=function(){this.__data__=er?er(null):{},this.size=0},rr.prototype.delete=function(e){var t=this.has(e)&&delete this.__data__[e];return this.size-=t?1:0,t},rr.prototype.get=function(e){var t=this.__data__;if(er){var n=t[e];return"__lodash_hash_undefined__"===n?void 0:n}return tr.call(t,e)?t[e]:void 0},rr.prototype.has=function(e){var t=this.__data__;return er?void 0!==t[e]:nr.call(t,e)},rr.prototype.set=function(e,t){var n=this.__data__;return this.size+=this.has(e)?0:1,n[e]=er&&void 0===t?"__lodash_hash_undefined__":t,this};const or=rr,ar=function(e,t){return e===t||e!=e&&t!=t},ir=function(e,t){for(var n=e.length;n--;)if(ar(e[n][0],t))return n;return-1};var sr=Array.prototype.splice;function lr(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])}}lr.prototype.clear=function(){this.__data__=[],this.size=0},lr.prototype.delete=function(e){var t=this.__data__,n=ir(t,e);return!(n<0||(n==t.length-1?t.pop():sr.call(t,n,1),--this.size,0))},lr.prototype.get=function(e){var t=this.__data__,n=ir(t,e);return n<0?void 0:t[n][1]},lr.prototype.has=function(e){return ir(this.__data__,e)>-1},lr.prototype.set=function(e,t){var n=this.__data__,r=ir(n,e);return r<0?(++this.size,n.push([e,t])):n[r][1]=t,this};const ur=lr,cr=Jn(On,"Map"),fr=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 pr(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])}}pr.prototype.clear=function(){this.size=0,this.__data__={hash:new or,map:new(cr||ur),string:new or}},pr.prototype.delete=function(e){var t=fr(this,e).delete(e);return this.size-=t?1:0,t},pr.prototype.get=function(e){return fr(this,e).get(e)},pr.prototype.has=function(e){return fr(this,e).has(e)},pr.prototype.set=function(e,t){var n=fr(this,e),r=n.size;return n.set(e,t),this.size+=n.size==r?0:1,this};const dr=pr;function hr(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(hr.Cache||dr),n}hr.Cache=dr;const mr=hr;var vr=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,gr=/\\(\\)?/g,yr=function(e){var t=mr((function(e){var t=[];return 46===e.charCodeAt(0)&&t.push(""),e.replace(vr,(function(e,n,r,o){t.push(r?o.replace(gr,"$1"):n||e)})),t}),(function(e){return 500===n.size&&n.clear(),e})),n=t.cache;return t}();const br=yr,wr=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 xr=Cn?Cn.prototype:void 0,Er=xr?xr.toString:void 0;const Sr=function e(t){if("string"==typeof t)return t;if(Sn(t))return wr(t,e)+"";if(Fn(t))return Er?Er.call(t):"";var n=t+"";return"0"==n&&1/t==-1/0?"-0":n},kr=function(e){return null==e?"":Sr(e)},_r=function(e,t){return Sn(e)?e:function(e,t){if(Sn(e))return!1;var n=typeof e;return!("number"!=n&&"symbol"!=n&&"boolean"!=n&&null!=e&&!Fn(e))||Dn.test(e)||!Ln.test(e)||null!=t&&e in Object(t)}(e,t)?[e]:br(kr(e))},Or=function(e){return Mn(e)&&"[object Arguments]"==Nn(e)};var Cr=Object.prototype,Pr=Cr.hasOwnProperty,jr=Cr.propertyIsEnumerable;const Ar=Or(function(){return arguments}())?Or:function(e){return Mn(e)&&Pr.call(e,"callee")&&!jr.call(e,"callee")};var Ir=/^(?:0|[1-9]\d*)$/;const Tr=function(e,t){var n=typeof e;return!!(t=null==t?9007199254740991:t)&&("number"==n||"symbol"!=n&&Ir.test(e))&&e>-1&&e%1==0&&e<t},Rr=function(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=9007199254740991},Nr=function(e){if("string"==typeof e||Fn(e))return e;var t=e+"";return"0"==t&&1/e==-1/0?"-0":t},Mr=function(e,t){return null!=e&&function(e,t,n){for(var r=-1,o=(t=_r(t,e)).length,a=!1;++r<o;){var i=Nr(t[r]);if(!(a=null!=e&&n(e,i)))break;e=e[i]}return a||++r!=o?a:!!(o=null==e?0:e.length)&&Rr(o)&&Tr(i,o)&&(Sn(e)||Ar(e))}(e,t,En)},Fr=function(e,t,n){var r=null==e?void 0:function(e,t){for(var n=0,r=(t=_r(t,e)).length;null!=e&&n<r;)e=e[Nr(t[n++])];return n&&n==r?e:void 0}(e,t);return void 0===r?n:r};var Lr=function(){try{var e=new URLSearchParams(window.location.search);return e.has("post")?e.get("post"):Mr(SEOPRESS_DATA,"POST_ID")?Fr(SEOPRESS_DATA,"POST_ID"):null}catch(e){return null}};function Dr(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 zr(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Dr(Object(n),!0).forEach((function(t){Vr(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Dr(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Vr(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ur(t,n){var r=(0,e.useRef)(),o=M(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 V.apply(void 0,t.concat([r.current.signal]))}),n);return zr(zr({},o),{},{abort:function(){var e;return null===(e=r.current)||void 0===e?void 0:e.abort()}})}var Br,Wr=(Br=function(e,t){return Br=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])},Br(e,t)},function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function n(){this.constructor=e}Br(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}),Hr=function(){return Hr=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},Hr.apply(this,arguments)},$r={top:{width:"100%",height:"10px",top:"-5px",left:"0px",cursor:"row-resize"},right:{width:"10px",height:"100%",top:"0px",right:"-5px",cursor:"col-resize"},bottom:{width:"100%",height:"10px",bottom:"-5px",left:"0px",cursor:"row-resize"},left:{width:"10px",height:"100%",top:"0px",left:"-5px",cursor:"col-resize"},topRight:{width:"20px",height:"20px",position:"absolute",right:"-10px",top:"-10px",cursor:"ne-resize"},bottomRight:{width:"20px",height:"20px",position:"absolute",right:"-10px",bottom:"-10px",cursor:"se-resize"},bottomLeft:{width:"20px",height:"20px",position:"absolute",left:"-10px",bottom:"-10px",cursor:"sw-resize"},topLeft:{width:"20px",height:"20px",position:"absolute",left:"-10px",top:"-10px",cursor:"nw-resize"}},Gr=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 Wr(n,t),n.prototype.render=function(){return e.createElement("div",{className:this.props.className||"",style:Hr(Hr({position:"absolute",userSelect:"none"},$r[this.props.direction]),this.props.replaceStyles||{}),onMouseDown:this.onMouseDown,onTouchStart:this.onTouchStart},this.props.children)},n}(e.PureComponent),qr=n(3316),Yr=n.n(qr),Kr=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){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}(),Qr=function(){return Qr=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},Qr.apply(this,arguments)},Xr={width:"auto",height:"auto"},Zr=Yr()((function(e,t,n){return Math.max(Math.min(e,n),t)})),Jr=Yr()((function(e,t){return Math.round(e/t)*t})),eo=Yr()((function(e,t){return new RegExp(e,"i").test(t)})),to=function(e){return Boolean(e.touches&&e.touches.length)},no=Yr()((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})),ro=Yr()((function(e,t){return e.substr(e.length-t.length,t.length)===t})),oo=Yr()((function(e){return"auto"===(e=e.toString())||ro(e,"px")||ro(e,"%")||ro(e,"vh")||ro(e,"vw")||ro(e,"vmax")||ro(e,"vmin")?e:e+"px"})),ao=function(e,t,n,r){if(e&&"string"==typeof e){if(ro(e,"px"))return Number(e.replace("px",""));if(ro(e,"%"))return t*(Number(e.replace("%",""))/100);if(ro(e,"vw"))return n*(Number(e.replace("vw",""))/100);if(ro(e,"vh"))return r*(Number(e.replace("vh",""))/100)}return e},io=Yr()((function(e,t,n,r,o,a,i){return r=ao(r,e.width,t,n),o=ao(o,e.height,t,n),a=ao(a,e.width,t,n),i=ao(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)}})),so=["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"],lo="__resizable_base__",uo=function(t){function n(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",t.classList?t.classList.add(lo):t.className+=lo,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 Kr(n,t),Object.defineProperty(n.prototype,"parentNode",{get:function(){return this.resizable?this.resizable.parentNode:null},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"window",{get:function(){return this.resizable&&this.resizable.ownerDocument?this.resizable.ownerDocument.defaultView:null},enumerable:!1,configurable:!0}),Object.defineProperty(n.prototype,"propsSize",{get:function(){return this.props.size||this.props.defaultSize||Xr},enumerable:!1,configurable:!0}),Object.defineProperty(n.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(n.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]&&ro(e.propsSize[t].toString(),"%")){if(ro(e.state[t].toString(),"%"))return e.state[t].toString();var n=e.getParentSize();return Number(e.state[t].toString().replace("px",""))/n[t]*100+"%"}return oo(e.state[t])};return{width:t&&void 0!==t.width&&!this.state.isResizing?oo(t.width):n("width"),height:t&&void 0!==t.height&&!this.state.isResizing?oo(t.height):n("height")}},enumerable:!1,configurable:!0}),n.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%";var r={width:e.offsetWidth,height:e.offsetHeight};return t&&(this.parentNode.style.flexWrap=n),this.removeBase(e),r},n.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))},n.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))},n.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})}},n.prototype.componentWillUnmount=function(){this.window&&this.unbindEvents()},n.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"},n.prototype.calculateNewMaxFromBoundary=function(e,t){var n,r,o=this.props.boundsByDirection,a=this.state.direction,i=o&&eo("left",a),s=o&&eo("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}},n.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 eo("right",a)&&(f=i.width+(e-i.x)*r/n,l&&(p=(f-h)/this.ratio+d)),eo("left",a)&&(f=i.width-(e-i.x)*r/n,l&&(p=(f-h)/this.ratio+d)),eo("bottom",a)&&(p=i.height+(t-i.y)*r/n,l&&(f=(p-d)*this.ratio+h)),eo("top",a)&&(p=i.height-(t-i.y)*r/n,l&&(f=(p-d)*this.ratio+h)),{newWidth:f,newHeight:p}},n.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=Zr(e,y,b),t=Zr(t,w,x)}else e=Zr(e,l,u),t=Zr(t,c,f);return{newWidth:e,newHeight:t}},n.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}},n.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&&to(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:Qr(Qr({},this.state.backgroundStyle),{cursor:this.window.getComputedStyle(e.target).cursor||"auto"}),direction:t,flexBasis:n};this.setState(l)}},n.prototype.onMouseMove=function(e){if(this.state.isResizing&&this.resizable&&this.window){if(this.window.TouchEvent&&to(e))try{e.preventDefault(),e.stopPropagation()}catch(e){}var t=this.props,n=t.maxWidth,r=t.maxHeight,o=t.minWidth,a=t.minHeight,i=to(e)?e.touches[0].clientX:e.clientX,s=to(e)?e.touches[0].clientY:e.clientY,l=this.state,u=l.direction,c=l.original,f=l.width,p=l.height,d=this.getParentSize(),h=io(d,this.window.innerWidth,this.window.innerHeight,n,r,o,a);n=h.maxWidth,r=h.maxHeight,o=h.minWidth,a=h.minHeight;var m=this.calculateNewSizeFromDirection(i,s),v=m.newHeight,g=m.newWidth,y=this.calculateNewMaxFromBoundary(n,r),b=this.calculateNewSizeFromAspectRatio(g,v,{width:y.maxWidth,height:y.maxHeight},{width:o,height:a});if(g=b.newWidth,v=b.newHeight,this.props.grid){var w=Jr(g,this.props.grid[0]),x=Jr(v,this.props.grid[1]),E=this.props.snapGap||0;g=0===E||Math.abs(w-g)<=E?w:g,v=0===E||Math.abs(x-v)<=E?x:v}this.props.snap&&this.props.snap.x&&(g=no(g,this.props.snap.x,this.props.snapGap)),this.props.snap&&this.props.snap.y&&(v=no(v,this.props.snap.y,this.props.snapGap));var S={width:g-c.width,height:v-c.height};f&&"string"==typeof f&&(ro(f,"%")?g=g/d.width*100+"%":ro(f,"vw")?g=g/this.window.innerWidth*100+"vw":ro(f,"vh")&&(g=g/this.window.innerHeight*100+"vh")),p&&"string"==typeof p&&(ro(p,"%")?v=v/d.height*100+"%":ro(p,"vw")?v=v/this.window.innerWidth*100+"vw":ro(p,"vh")&&(v=v/this.window.innerHeight*100+"vh"));var k={width:this.createSizeForCssProperty(g,"width"),height:this.createSizeForCssProperty(v,"height")};"row"===this.flexDir?k.flexBasis=k.width:"column"===this.flexDir&&(k.flexBasis=k.height),this.setState(k),this.props.onResize&&this.props.onResize(e,u,this.resizable,S)}},n.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:Qr(Qr({},this.state.backgroundStyle),{cursor:"auto"})})}},n.prototype.updateSize=function(e){this.setState({width:e.width,height:e.height})},n.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(Gr,{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)},n.prototype.render=function(){var t=this,n=Object.keys(this.props).reduce((function(e,n){return-1!==so.indexOf(n)||(e[n]=t.props[n]),e}),{}),r=Qr(Qr(Qr({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,Qr({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())},n.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},n}(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 fo=function(t){var n,r,o=t.children,a=(n=tn("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(uo,{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 po=Et.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 ho=e.memo(po),mo=Et.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;}"]),vo=Et.h1.withConfig({componentId:"sc-z87h2w-0"})(["&&&{font-size:16px;margin:0;}"]);var go=["children"];const yo=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,go);return e.createElement(vo,r,n)};var bo=wp.i18n.__;const wo=function(){var t=(0,e.useContext)(Qt),n=(t.values,t.actions);return e.createElement(mo,null,e.createElement(yo,{style:{flex:1}},bo("SEO","wp-seopress")),e.createElement(ho,{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 xo=n(9590),Eo=n.n(xo),So=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===ko}(e)}(e)},ko="function"==typeof Symbol&&Symbol.for?Symbol.for("react.element"):60103;function _o(e,t){return!1!==t.clone&&t.isMergeableObject(e)?Co((n=e,Array.isArray(n)?[]:{}),e,t):e;var n}function Oo(e,t,n){return e.concat(t).map((function(e){return _o(e,n)}))}function Co(e,t,n){(n=n||{}).arrayMerge=n.arrayMerge||Oo,n.isMergeableObject=n.isMergeableObject||So;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]=_o(e[t],n)})),Object.keys(t).forEach((function(o){n.isMergeableObject(t[o])&&e[o]?r[o]=Co(e[o],t[o],n):r[o]=_o(t[o],n)})),r}(e,t,n):_o(t,n)}Co.all=function(e,t){if(!Array.isArray(e))throw new Error("first argument should be an array");return e.reduce((function(e,n){return Co(e,n,t)}),{})};const Po=Co,jo=function(e,t){return function(n){return e(t(n))}},Ao=jo(Object.getPrototypeOf,Object);var Io=Function.prototype,To=Object.prototype,Ro=Io.toString,No=To.hasOwnProperty,Mo=Ro.call(Object);const Fo=function(e){if(!Mn(e)||"[object Object]"!=Nn(e))return!1;var t=Ao(e);if(null===t)return!0;var n=No.call(t,"constructor")&&t.constructor;return"function"==typeof n&&n instanceof n&&Ro.call(n)==Mo};function Lo(e){var t=this.__data__=new ur(e);this.size=t.size}Lo.prototype.clear=function(){this.__data__=new ur,this.size=0},Lo.prototype.delete=function(e){var t=this.__data__,n=t.delete(e);return this.size=t.size,n},Lo.prototype.get=function(e){return this.__data__.get(e)},Lo.prototype.has=function(e){return this.__data__.has(e)},Lo.prototype.set=function(e,t){var n=this.__data__;if(n instanceof ur){var r=n.__data__;if(!cr||r.length<199)return r.push([e,t]),this.size=++n.size,this;n=this.__data__=new dr(r)}return n.set(e,t),this.size=n.size,this};const Do=Lo,zo=function(){try{var e=Jn(Object,"defineProperty");return e({},"",{}),e}catch(e){}}(),Vo=function(e,t,n){"__proto__"==t&&zo?zo(e,t,{configurable:!0,enumerable:!0,value:n,writable:!0}):e[t]=n};var Uo=Object.prototype.hasOwnProperty;const Bo=function(e,t,n){var r=e[t];Uo.call(e,t)&&ar(r,n)&&(void 0!==n||t in e)||Vo(e,t,n)},Wo=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?Vo(n,s,l):Bo(n,s,l)}return n};var Ho="object"==typeof exports&&exports&&!exports.nodeType&&exports,$o=Ho&&"object"==typeof module&&module&&!module.nodeType&&module,Go=$o&&$o.exports===Ho?On.Buffer:void 0;const qo=(Go?Go.isBuffer:void 0)||function(){return!1};var Yo={};Yo["[object Float32Array]"]=Yo["[object Float64Array]"]=Yo["[object Int8Array]"]=Yo["[object Int16Array]"]=Yo["[object Int32Array]"]=Yo["[object Uint8Array]"]=Yo["[object Uint8ClampedArray]"]=Yo["[object Uint16Array]"]=Yo["[object Uint32Array]"]=!0,Yo["[object Arguments]"]=Yo["[object Array]"]=Yo["[object ArrayBuffer]"]=Yo["[object Boolean]"]=Yo["[object DataView]"]=Yo["[object Date]"]=Yo["[object Error]"]=Yo["[object Function]"]=Yo["[object Map]"]=Yo["[object Number]"]=Yo["[object Object]"]=Yo["[object RegExp]"]=Yo["[object Set]"]=Yo["[object String]"]=Yo["[object WeakMap]"]=!1;const Ko=function(e){return function(t){return e(t)}};var Qo="object"==typeof exports&&exports&&!exports.nodeType&&exports,Xo=Qo&&"object"==typeof module&&module&&!module.nodeType&&module,Zo=Xo&&Xo.exports===Qo&&kn.process;const Jo=function(){try{return Xo&&Xo.require&&Xo.require("util").types||Zo&&Zo.binding&&Zo.binding("util")}catch(e){}}();var ea=Jo&&Jo.isTypedArray;const ta=ea?Ko(ea):function(e){return Mn(e)&&Rr(e.length)&&!!Yo[Nn(e)]};var na=Object.prototype.hasOwnProperty;const ra=function(e,t){var n=Sn(e),r=!n&&Ar(e),o=!n&&!r&&qo(e),a=!n&&!r&&!o&&ta(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&&!na.call(e,u)||i&&("length"==u||o&&("offset"==u||"parent"==u)||a&&("buffer"==u||"byteLength"==u||"byteOffset"==u)||Tr(u,l))||s.push(u);return s};var oa=Object.prototype;const aa=function(e){var t=e&&e.constructor;return e===("function"==typeof t&&t.prototype||oa)},ia=jo(Object.keys,Object);var sa=Object.prototype.hasOwnProperty;const la=function(e){if(!aa(e))return ia(e);var t=[];for(var n in Object(e))sa.call(e,n)&&"constructor"!=n&&t.push(n);return t},ua=function(e){return null!=e&&Rr(e.length)&&!Vn(e)},ca=function(e){return ua(e)?ra(e):la(e)};var fa=Object.prototype.hasOwnProperty;const pa=function(e){if(!zn(e))return function(e){var t=[];if(null!=e)for(var n in Object(e))t.push(n);return t}(e);var t=aa(e),n=[];for(var r in e)("constructor"!=r||!t&&fa.call(e,r))&&n.push(r);return n},da=function(e){return ua(e)?ra(e,!0):pa(e)};var ha="object"==typeof exports&&exports&&!exports.nodeType&&exports,ma=ha&&"object"==typeof module&&module&&!module.nodeType&&module,va=ma&&ma.exports===ha?On.Buffer:void 0,ga=va?va.allocUnsafe:void 0;const ya=function(e,t){var n=-1,r=e.length;for(t||(t=Array(r));++n<r;)t[n]=e[n];return t},ba=function(){return[]};var wa=Object.prototype.propertyIsEnumerable,xa=Object.getOwnPropertySymbols;const Ea=xa?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}(xa(e),(function(t){return wa.call(e,t)})))}:ba,Sa=function(e,t){for(var n=-1,r=t.length,o=e.length;++n<r;)e[o+n]=t[n];return e},ka=Object.getOwnPropertySymbols?function(e){for(var t=[];e;)Sa(t,Ea(e)),e=Ao(e);return t}:ba,_a=function(e,t,n){var r=t(e);return Sn(e)?r:Sa(r,n(e))},Oa=function(e){return _a(e,ca,Ea)},Ca=function(e){return _a(e,da,ka)},Pa=Jn(On,"DataView"),ja=Jn(On,"Promise"),Aa=Jn(On,"Set"),Ia=Jn(On,"WeakMap");var Ta="[object Map]",Ra="[object Promise]",Na="[object Set]",Ma="[object WeakMap]",Fa="[object DataView]",La=$n(Pa),Da=$n(cr),za=$n(ja),Va=$n(Aa),Ua=$n(Ia),Ba=Nn;(Pa&&Ba(new Pa(new ArrayBuffer(1)))!=Fa||cr&&Ba(new cr)!=Ta||ja&&Ba(ja.resolve())!=Ra||Aa&&Ba(new Aa)!=Na||Ia&&Ba(new Ia)!=Ma)&&(Ba=function(e){var t=Nn(e),n="[object Object]"==t?e.constructor:void 0,r=n?$n(n):"";if(r)switch(r){case La:return Fa;case Da:return Ta;case za:return Ra;case Va:return Na;case Ua:return Ma}return t});const Wa=Ba;var Ha=Object.prototype.hasOwnProperty;const $a=On.Uint8Array,Ga=function(e){var t=new e.constructor(e.byteLength);return new $a(t).set(new $a(e)),t};var qa=/\w*$/;var Ya=Cn?Cn.prototype:void 0,Ka=Ya?Ya.valueOf:void 0;const Qa=function(e,t,n){var r,o,a,i=e.constructor;switch(t){case"[object ArrayBuffer]":return Ga(e);case"[object Boolean]":case"[object Date]":return new i(+e);case"[object DataView]":return function(e,t){var n=t?Ga(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?Ga(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,qa.exec(o))).lastIndex=o.lastIndex,a;case"[object Symbol]":return r=e,Ka?Object(Ka.call(r)):{}}};var Xa=Object.create;const Za=function(){function e(){}return function(t){if(!zn(t))return{};if(Xa)return Xa(t);e.prototype=t;var n=new e;return e.prototype=void 0,n}}();var Ja=Jo&&Jo.isMap;const ei=Ja?Ko(Ja):function(e){return Mn(e)&&"[object Map]"==Wa(e)};var ti=Jo&&Jo.isSet;const ni=ti?Ko(ti):function(e){return Mn(e)&&"[object Set]"==Wa(e)};var ri="[object Arguments]",oi="[object Function]",ai={};ai[ri]=ai["[object Array]"]=ai["[object ArrayBuffer]"]=ai["[object DataView]"]=ai["[object Boolean]"]=ai["[object Date]"]=ai["[object Float32Array]"]=ai["[object Float64Array]"]=ai["[object Int8Array]"]=ai["[object Int16Array]"]=ai["[object Int32Array]"]=ai["[object Map]"]=ai["[object Number]"]=ai["[object Object]"]=ai["[object RegExp]"]=ai["[object Set]"]=ai["[object String]"]=ai["[object Symbol]"]=ai["[object Uint8Array]"]=ai["[object Uint8ClampedArray]"]=ai["[object Uint16Array]"]=ai["[object Uint32Array]"]=!0,ai["[object Error]"]=ai[oi]=ai["[object WeakMap]"]=!1;const ii=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(!zn(t))return t;var f=Sn(t);if(f){if(s=function(e){var t=e.length,n=new e.constructor(t);return t&&"string"==typeof e[0]&&Ha.call(e,"index")&&(n.index=e.index,n.input=e.input),n}(t),!l)return ya(t,s)}else{var p=Wa(t),d=p==oi||"[object GeneratorFunction]"==p;if(qo(t))return function(e,t){if(t)return e.slice();var n=e.length,r=ga?ga(n):new e.constructor(n);return e.copy(r),r}(t,l);if("[object Object]"==p||p==ri||d&&!a){if(s=u||d?{}:function(e){return"function"!=typeof e.constructor||aa(e)?{}:Za(Ao(e))}(t),!l)return u?function(e,t){return Wo(e,ka(e),t)}(t,function(e,t){return e&&Wo(t,da(t),e)}(s,t)):function(e,t){return Wo(e,Ea(e),t)}(t,function(e,t){return e&&Wo(t,ca(t),e)}(s,t))}else{if(!ai[p])return a?t:{};s=Qa(t,p,l)}}i||(i=new Do);var h=i.get(t);if(h)return h;i.set(t,s),ni(t)?t.forEach((function(o){s.add(e(o,n,r,o,t,i))})):ei(t)&&t.forEach((function(o,a){s.set(a,e(o,n,r,a,t,i))}));var m=f?void 0:(c?u?Ca:Oa:u?da:ca)(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]),Bo(s,a,e(o,n,r,a,t,i))})),s},si=function(e){return ii(e,4)},li=function(e){return Sn(e)?wr(e,Nr):Fn(e)?[e]:ya(br(kr(e)))},ui=function(e){return ii(e,5)};function ci(){return ci=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},ci.apply(this,arguments)}function fi(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 di=function(e){return Array.isArray(e)&&0===e.length},hi=function(e){return"function"==typeof e},mi=function(e){return null!==e&&"object"==typeof e},vi=function(e){return String(Math.floor(Number(e)))===e},gi=function(e){return"[object String]"===Object.prototype.toString.call(e)},yi=function(t){return 0===e.Children.count(t)},bi=function(e){return mi(e)&&hi(e.then)};function wi(e,t,n,r){void 0===r&&(r=0);for(var o=li(t);e&&r<o.length;)e=e[o[r++]];return void 0===e?n:e}function xi(e,t,n){for(var r=si(e),o=r,a=0,i=li(t);a<i.length-1;a++){var s=i[a],l=wi(e,i.slice(0,a+1));if(l&&(mi(l)||Array.isArray(l)))o=o[s]=si(l);else{var u=i[a+1];o=o[s]=vi(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 Ei(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];mi(s)?n.get(s)||(n.set(s,!0),r[i]=Array.isArray(s)?[]:{},Ei(s,t,n,r[i])):r[i]=t}return r}var Si=(0,e.createContext)(void 0);Si.displayName="FormikContext";var ki=Si.Provider,_i=Si.Consumer;function Oi(){var t=(0,e.useContext)(Si);return t}function Ci(e,t){switch(t.type){case"SET_VALUES":return ci({},e,{values:t.payload});case"SET_TOUCHED":return ci({},e,{touched:t.payload});case"SET_ERRORS":return Eo()(e.errors,t.payload)?e:ci({},e,{errors:t.payload});case"SET_STATUS":return ci({},e,{status:t.payload});case"SET_ISSUBMITTING":return ci({},e,{isSubmitting:t.payload});case"SET_ISVALIDATING":return ci({},e,{isValidating:t.payload});case"SET_FIELD_VALUE":return ci({},e,{values:xi(e.values,t.payload.field,t.payload.value)});case"SET_FIELD_TOUCHED":return ci({},e,{touched:xi(e.touched,t.payload.field,t.payload.value)});case"SET_FIELD_ERROR":return ci({},e,{errors:xi(e.errors,t.payload.field,t.payload.value)});case"RESET_FORM":return ci({},e,t.payload);case"SET_FORMIK_STATE":return t.payload(e);case"SUBMIT_ATTEMPT":return ci({},e,{touched:Ei(e.values,!0),isSubmitting:!0,submitCount:e.submitCount+1});case"SUBMIT_FAILURE":case"SUBMIT_SUCCESS":return ci({},e,{isSubmitting:!1});default:return e}}var Pi={},ji={};function Ai(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=fi(t,["validateOnChange","validateOnBlur","validateOnMount","isInitialValid","enableReinitialize","onSubmit"]),d=ci({validateOnChange:r,validateOnBlur:a,validateOnMount:s,onSubmit:f},p),h=(0,e.useRef)(d.initialValues),m=(0,e.useRef)(d.initialErrors||Pi),v=(0,e.useRef)(d.initialTouched||ji),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)(Ci,{values:d.initialValues,errors:d.initialErrors||Pi,touched:d.initialTouched||ji,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(Pi):bi(o)?o.then((function(e){n(e||Pi)}),(function(e){r(e)})):n(o)}))}),[d.validate]),k=(0,e.useCallback)((function(e,t){var n=d.validationSchema,r=hi(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=Ti(e);return t[n?"validateSync":"validate"](o,{abortEarly:!1,context:r})}(e,r);return new Promise((function(e,t){o.then((function(){e(Pi)}),(function(n){"ValidationError"===n.name?e(function(e){var t={};if(e.inner){if(0===e.inner.length)return xi(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;wi(t,i.path)||(t=xi(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 hi(b.current[e].validate)})),n=t.length>0?t.map((function(t){return _(t,wi(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=xi(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 Po.all([t,n,r],{arrayMerge:Ri})}))}),[d.validate,d.validationSchema,O,S,k]),P=Mi((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&&Eo()(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,Y);bi(i)?i.then(a):a()}else a()}),[d.initialErrors,d.initialStatus,d.initialTouched]);(0,e.useEffect)((function(){!0!==y.current||Eo()(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&&!Eo()(m.current,d.initialErrors)&&(m.current=d.initialErrors||Pi,E({type:"SET_ERRORS",payload:d.initialErrors||Pi}))}),[c,d.initialErrors]),(0,e.useEffect)((function(){c&&!0===y.current&&!Eo()(v.current,d.initialTouched)&&(v.current=d.initialTouched||ji,E({type:"SET_TOUCHED",payload:d.initialTouched||ji}))}),[c,d.initialTouched]),(0,e.useEffect)((function(){c&&!0===y.current&&!Eo()(g.current,d.initialStatus)&&(g.current=d.initialStatus,E({type:"SET_STATUS",payload:d.initialStatus}))}),[c,d.initialStatus,d.initialTouched]);var A=Mi((function(e){if(b.current[e]&&hi(b.current[e].validate)){var t=wi(x.values,e),n=b.current[e].validate(t);return bi(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=Mi((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=Mi((function(e,t){var n=hi(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=Mi((function(e,t,n){return E({type:"SET_FIELD_VALUE",payload:{field:e,value:t}}),(void 0===n?r:n)?P(xi(x.values,e,t)):Promise.resolve()})),D=(0,e.useCallback)((function(e,t){var n,r=t,o=e;if(!gi(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}(wi(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=Mi((function(e){if(gi(e))return function(t){return D(t,e)};D(e)})),V=Mi((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()})),U=(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);V(a,!0)}),[V]),B=Mi((function(e){if(gi(e))return function(t){return U(t,e)};U(e)})),W=(0,e.useCallback)((function(e){hi(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=Mi((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=K()))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}))})),q=Mi((function(e){e&&e.preventDefault&&hi(e.preventDefault)&&e.preventDefault(),e&&e.stopPropagation&&hi(e.stopPropagation)&&e.stopPropagation(),G().catch((function(e){console.warn("Warning: An unhandled error was caught from submitForm()",e)}))})),Y={resetForm:j,validateForm:P,validateField:A,setErrors:N,setFieldError:F,setFieldTouched:V,setFieldValue:L,setStatus:H,setSubmitting:$,setTouched:R,setValues:M,setFormikState:W,submitForm:G},K=Mi((function(){return f(x.values,Y)})),Q=Mi((function(e){e&&e.preventDefault&&hi(e.preventDefault)&&e.preventDefault(),e&&e.stopPropagation&&hi(e.stopPropagation)&&e.stopPropagation(),j()})),X=(0,e.useCallback)((function(e){return{value:wi(x.values,e),error:wi(x.errors,e),touched:!!wi(x.touched,e),initialValue:wi(h.current,e),initialTouched:!!wi(v.current,e),initialError:wi(m.current,e)}}),[x.errors,x.touched,x.values]),Z=(0,e.useCallback)((function(e){return{setValue:function(t,n){return L(e,t,n)},setTouched:function(t,n){return V(e,t,n)},setError:function(t){return F(e,t)}}}),[L,V,F]),J=(0,e.useCallback)((function(e){var t=mi(e),n=t?e.name:e,r=wi(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!Eo()(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&&hi(l)?l(d):l:x.errors&&0===Object.keys(x.errors).length}),[l,ee,x.errors,d]);return ci({},x,{initialValues:h.current,initialErrors:m.current,initialTouched:v.current,initialStatus:g.current,handleBlur:B,handleChange:z,handleReset:Q,handleSubmit:q,resetForm:j,setErrors:N,setFormikState:W,setFieldTouched:V,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:J,getFieldMeta:X,getFieldHelpers:Z,validateOnBlur:a,validateOnChange:r,validateOnMount:s})}function Ii(t){var n=Ai(t),r=t.component,o=t.children,a=t.render,i=t.innerRef;return(0,e.useImperativeHandle)(i,(function(){return n})),(0,e.createElement)(ki,{value:n},r?(0,e.createElement)(r,n):a?a(n):o?hi(o)?o(n):yi(o)?null:e.Children.only(o):null)}function Ti(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)||Fo(e)?Ti(e):""!==e?e:void 0})):Fo(e[r])?t[r]=Ti(e[r]):t[r]=""!==e[r]?e[r]:void 0}return t}function Ri(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?Po(Array.isArray(t)?[]:{},t,n):t}else n.isMergeableObject(t)?r[o]=Po(e[o],t,n):-1===e.indexOf(t)&&r.push(t)})),r}var Ni="undefined"!=typeof window&&void 0!==window.document&&void 0!==window.document.createElement?e.useLayoutEffect:e.useEffect;function Mi(t){var n=(0,e.useRef)(t);return Ni((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 Fi(t){var n=t.validate,r=t.name,o=t.render,a=t.children,i=t.as,s=t.component,l=fi(t,["validate","name","render","children","as","component"]),u=fi(Oi(),["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(ci({name:r},l)),d=u.getFieldMeta(r),h={field:p,form:u};if(o)return o(ci({},h,{meta:d}));if(hi(a))return a(ci({},h,{meta:d}));if(s){if("string"==typeof s){var m=l.innerRef,v=fi(l,["innerRef"]);return(0,e.createElement)(s,ci({ref:m},p,v),a)}return(0,e.createElement)(s,ci({field:p,form:u},l),a)}var g=i||"input";if("string"==typeof g){var y=l.innerRef,b=fi(l,["innerRef"]);return(0,e.createElement)(g,ci({ref:y},p,b),a)}return(0,e.createElement)(g,ci({},p,l),a)}var Li=(0,e.forwardRef)((function(t,n){var r=t.action,o=fi(t,["action"]),a=null!=r?r:"#",i=Oi(),s=i.handleReset,l=i.handleSubmit;return(0,e.createElement)("form",Object.assign({onSubmit:l,ref:n,onReset:s,action:a},o))}));function Di(t){var n=function(n){return(0,e.createElement)(_i,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+")",J()(n,t)}Li.displayName="Form";var zi=function(e,t,n){var r=Vi(e);return r.splice(t,0,n),r},Vi=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(ci({},e,{length:t+1}))}return[]},Ui=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=xi(n.values,a,e(wi(n.values,a))),l=r?o(wi(n.errors,a)):void 0,u=t?i(wi(n.touched,a)):void 0;return di(l)&&(l=void 0),di(u)&&(u=void 0),ci({},n,{values:s,errors:r?xi(n.errors,a,l):n.errors,touched:t?xi(n.touched,a,u):n.touched})}))},n.push=function(e){return n.updateArrayField((function(t){return[].concat(Vi(t),[ui(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=Vi(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=Vi(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 zi(n,e,t)}),(function(t){return zi(t,e,null)}),(function(t){return zi(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=Vi(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&&!Eo()(wi(e.formik.values,e.name),wi(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?Vi(n):[];return t||(t=r[e]),hi(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=ci({},t,{form:fi(n.formik,["validate","validationSchema"]),name:i});return r?(0,e.createElement)(r,s):o?o(s):a?"function"==typeof a?a(s):yi(a)?null:e.Children.only(a):null},n}(e.Component);Ui.defaultProps={validateOnChange:!0};var Bi=Di(Ui),Wi=(e.Component,e.Component,n(3279)),Hi=n.n(Wi),$i=["className"];function Gi(){return Gi=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},Gi.apply(this,arguments)}const qi=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,$i);return e.createElement("span",Gi({className:"dashicons dashicons-no-alt ".concat(r)},o))};var Yi=["className","valid","error"];function Ki(){return Ki=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},Ki.apply(this,arguments)}const Qi=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,Yi));return e.createElement(Fi,Ki({className:n},r))};var Xi=Et.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 Zi=Et(Qi).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;}}"]),Ji=Et.div.withConfig({componentId:"sc-8f3q3f-0"})(["&&&{overflow:hidden;font-size:0.75rem;background-color:#e9ecef;border-radius:0.25rem;}"]),es=Et.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;}"]),ts=function(t){var n=t.children;return e.createElement(Ji,null,e.createElement(es,null,n))};var ns=["name","id","value","type","emptyIcon","setFieldValue","item"];function rs(){return rs=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},rs.apply(this,arguments)}function os(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 as=wp.i18n.__;const is=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,ns),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 os(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)?os(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)(Hi()((function(e){f(o,e)}),200),[]);return c?e.createElement(e.Fragment,null,e.createElement("div",{style:{position:"relative",width:"100%"}},e.createElement(Zi,rs({name:o,id:a,type:l,value:m,onChange:function(e){v(e.target.value)},style:{width:"100%"}},d)),!dn()(i)&&e.createElement(qi,{style:{position:"absolute",right:4,zIndex:10,top:0,transform:"translateY(50%)",marginTop:-5,backgroundColor:"#fff"},className:"sp-cursor-pointer",onClick:function(){Ct()(f)||f(o,"")}})),!Ct()(B()(p,"recommended_limit",null))&&e.createElement("div",{style:{marginTop:5}},e.createElement(ts,null,e.createElement("span",{style:{color:""}},m.length)," ","/ ",e.createElement("strong",null,p.recommended_limit)," ",e.createElement("span",null," (",as("maximum limit","wp-seopress"),")")))):e.createElement(e.Fragment,null,e.createElement(Zi,rs({name:o,id:a,type:l,value:m,onChange:function(e){v(e.target.value)}},d)),!Ct()(B()(p,"recommended_limit",null))&&e.createElement("div",{style:{marginTop:5}},e.createElement(ts,null,e.createElement("span",{style:{color:""}},m.length)," ","/ ",e.createElement("strong",null,p.recommended_limit)," ",e.createElement("span",null," (",as("maximum limit","wp-seopress"),")"))))};var ss=n(4184),ls=n.n(ss),us=["name","className","item"];function cs(){return cs=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},cs.apply(this,arguments)}var fs=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,us);return e.createElement(e.Fragment,null,e.createElement(Fi,cs({name:n,type:"textarea",as:"textarea",className:ls()(o,"form-textarea")},i)),!Ct()(B()(a,"recommended_limit",null))&&e.createElement("div",{style:{marginTop:5}},e.createElement(ts,null,e.createElement("span",{style:{color:""}},formValue.length)," ","/ ",e.createElement("strong",null,a.recommended_limit)," ",e.createElement("span",null," (",fs("maximum limit","wp-seopress"),")"))))};var ds=["htmlFor","className","children"];function hs(){return hs=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},hs.apply(this,arguments)}var ms=Et.label.withConfig({componentId:"sc-1yhm0qw-0"})(["&&&{font-weight:bold;display:block;margin-bottom:4px;font-size:1em;}&:hover{cursor:pointer;}"]);const vs=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,ds);return e.createElement(ms,hs({htmlFor:n,className:ls()(r)},a),o)},gs=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 ys=["className","loading","children"];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)}const ws=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,ys);return e.createElement(ho,bs({className:ls()({"inline-flex items-center":!0},r),disabled:o},i),o&&e.createElement(gs,null),a)};function xs(e){return Array.isArray?Array.isArray(e):"[object Array]"===Cs(e)}function Es(e){return"string"==typeof e}function Ss(e){return"number"==typeof e}function ks(e){return"object"==typeof e}function _s(e){return null!=e}function Os(e){return!e.trim().length}function Cs(e){return null==e?void 0===e?"[object Undefined]":"[object Null]":Object.prototype.toString.call(e)}const Ps=Object.prototype.hasOwnProperty;class js{constructor(e){this._keys=[],this._keyMap={};let t=0;e.forEach((e=>{let n=As(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 As(e){let t=null,n=null,r=null,o=1;if(Es(e)||xs(e))r=e,t=Is(e),n=Ts(e);else{if(!Ps.call(e,"name"))throw new Error("Missing name property in key");const a=e.name;if(r=a,Ps.call(e,"weight")&&(o=e.weight,o<=0))throw new Error((e=>`Property 'weight' in key '${e}' must be a positive integer`)(a));t=Is(a),n=Ts(a)}return{path:t,id:n,weight:o,src:r}}function Is(e){return xs(e)?e:e.split(".")}function Ts(e){return xs(e)?e.join("."):e}var Rs={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(_s(e))if(t[a]){const i=e[t[a]];if(!_s(i))return;if(a===t.length-1&&(Es(i)||Ss(i)||function(e){return!0===e||!1===e||function(e){return ks(e)&&null!==e}(e)&&"[object Boolean]"==Cs(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(xs(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,Es(t)?t.split("."):t,0),r?n:n[0]},ignoreLocation:!1,ignoreFieldNorm:!1,fieldNormWeight:1}};const Ns=/[^ ]+/g;class Ms{constructor({getFn:e=Rs.getFn,fieldNormWeight:t=Rs.fieldNormWeight}={}){this.norm=function(e=1,t=3){const n=new Map,r=Math.pow(10,t);return{get(t){const o=t.match(Ns).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,Es(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();Es(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(!_s(e)||Os(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=this.getFn(e,t.path);if(_s(o))if(xs(o)){let e=[];const t=[{nestedArrIndex:-1,value:o}];for(;t.length;){const{nestedArrIndex:n,value:r}=t.pop();if(_s(r))if(Es(r)&&!Os(r)){let t={v:r,i:n,n:this.norm.get(r)};e.push(t)}else xs(r)&&r.forEach(((e,n)=>{t.push({nestedArrIndex:n,value:e})}))}n.$[r]=e}else if(!Os(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 Fs(e,t,{getFn:n=Rs.getFn,fieldNormWeight:r=Rs.fieldNormWeight}={}){const o=new Ms({getFn:n,fieldNormWeight:r});return o.setKeys(e.map(As)),o.setSources(t),o.create(),o}function Ls(e,{errors:t=0,currentLocation:n=0,expectedLocation:r=0,distance:o=Rs.distance,ignoreLocation:a=Rs.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 Ds=32;function zs(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 Vs{constructor(e,{location:t=Rs.location,threshold:n=Rs.threshold,distance:r=Rs.distance,includeMatches:o=Rs.includeMatches,findAllMatches:a=Rs.findAllMatches,minMatchCharLength:i=Rs.minMatchCharLength,isCaseSensitive:s=Rs.isCaseSensitive,ignoreLocation:l=Rs.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:zs(e),startIndex:t})},c=this.pattern.length;if(c>Ds){let e=0;const t=c%Ds,n=c-t;for(;e<n;)u(this.pattern.substr(e,Ds),e),e+=Ds;if(t){const e=c-Ds;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=Rs.location,distance:o=Rs.distance,threshold:a=Rs.threshold,findAllMatches:i=Rs.findAllMatches,minMatchCharLength:s=Rs.minMatchCharLength,includeMatches:l=Rs.includeMatches,ignoreLocation:u=Rs.ignoreLocation}={}){if(t.length>Ds)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=Ls(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;)Ls(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=Ls(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(Ls(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=Rs.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 Us{constructor(e){this.pattern=e}static isMultiMatch(e){return Bs(e,this.multiRegex)}static isSingleMatch(e){return Bs(e,this.singleRegex)}search(){}}function Bs(e,t){const n=e.match(t);return n?n[1]:null}class Ws extends Us{constructor(e,{location:t=Rs.location,threshold:n=Rs.threshold,distance:r=Rs.distance,includeMatches:o=Rs.includeMatches,findAllMatches:a=Rs.findAllMatches,minMatchCharLength:i=Rs.minMatchCharLength,isCaseSensitive:s=Rs.isCaseSensitive,ignoreLocation:l=Rs.ignoreLocation}={}){super(e),this._bitapSearch=new Vs(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 Hs extends Us{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 $s=[class extends Us{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]}}},Hs,class extends Us{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 Us{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 Us{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 Us{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 Us{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]}}},Ws],Gs=$s.length,qs=/ +(?=([^\"]*\"[^\"]*\")*[^\"]*$)/,Ys=new Set([Ws.type,Hs.type]);const Ks=[];function Qs(e,t){for(let n=0,r=Ks.length;n<r;n+=1){let r=Ks[n];if(r.condition(e,t))return new r(e,t)}return new Vs(e,t)}const Xs="$and",Zs=e=>!(!e.$and&&!e.$or),Js=e=>({[Xs]:Object.keys(e).map((t=>({[t]:e[t]})))});function el(e,t,{auto:n=!0}={}){const r=e=>{let o=Object.keys(e);const a=(e=>!!e.$path)(e);if(!a&&o.length>1&&!Zs(e))return r(Js(e));if((e=>!xs(e)&&ks(e)&&!Zs(e))(e)){const r=a?e.$path:o[0],i=a?e.$val:e[r];if(!Es(i))throw new Error((e=>`Invalid value for key ${e}`)(r));const s={keyId:Ts(r),pattern:i};return n&&(s.searcher=Qs(i,t)),s}let i={children:[],operator:o[0]};return o.forEach((t=>{const n=e[t];xs(n)&&n.forEach((e=>{i.children.push(r(e))}))})),i};return Zs(e)||(e=Js(e)),r(e)}function tl(e,t){const n=e.matches;t.matches=[],_s(n)&&n.forEach((e=>{if(!_s(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 nl(e,t){t.score=e.score}class rl{constructor(e,t={},n){this.options={...Rs,...t},this.options.useExtendedSearch,this._keyStore=new js(this.options.keys),this.setCollection(e,n)}setCollection(e,t){if(this._docs=e,t&&!(t instanceof Ms))throw new Error("Incorrect 'index' type");this._myIndex=t||Fs(this.options.keys,this._docs,{getFn:this.options.getFn,fieldNormWeight:this.options.fieldNormWeight})}add(e){_s(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=Es(e)?Es(this._docs[0])?this._searchStringList(e):this._searchObjectList(e):this._searchLogical(e);return function(e,{ignoreFieldNorm:t=Rs.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),Ss(t)&&t>-1&&(s=s.slice(0,t)),function(e,t,{includeMatches:n=Rs.includeMatches,includeScore:r=Rs.includeScore}={}){const o=[];return n&&o.push(tl),r&&o.push(nl),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=Qs(e,this.options),{records:n}=this._myIndex,r=[];return n.forEach((({v:e,i:n,n:o})=>{if(!_s(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=el(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===Xs)return[]}return o},r=this._myIndex.records,o={},a=[];return r.forEach((({$:e,i:r})=>{if(_s(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=Qs(e,this.options),{keys:n,records:r}=this._myIndex,o=[];return r.forEach((({$:e,i:r})=>{if(!_s(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(!_s(t))return[];let r=[];if(xs(t))t.forEach((({v:t,i:o,n:a})=>{if(!_s(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}}rl.version="6.5.3",rl.createIndex=Fs,rl.parseIndex=function(e,{getFn:t=Rs.getFn,fieldNormWeight:n=Rs.fieldNormWeight}={}){const{keys:r,records:o}=e,a=new Ms({getFn:t,fieldNormWeight:n});return a.setKeys(r),a.setIndexRecords(o),a},rl.config=Rs,rl.parseQuery=el,function(...e){Ks.push(...e)}(class{constructor(e,{isCaseSensitive:t=Rs.isCaseSensitive,includeMatches:n=Rs.includeMatches,minMatchCharLength:r=Rs.minMatchCharLength,ignoreLocation:o=Rs.ignoreLocation,findAllMatches:a=Rs.findAllMatches,location:i=Rs.location,threshold:s=Rs.threshold,distance:l=Rs.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(qs).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<Gs;){const e=$s[i];let n=e.isMultiMatch(o);n&&(r.push(new e(n,t)),a=!0)}if(!a)for(i=-1;++i<Gs;){const e=$s[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;Ys.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 ol=Et.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 al=Et.div.withConfig({componentId:"sc-15df4jl-0"})(["&&&{font-weight:bold;margin-bottom:4px;}"]),il=Et.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=Et.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;}}}"]),ll=Et.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;}}"]),ul=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 cl(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 fl(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)?fl(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 fl(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.__,dl=B()(SEOPRESS_DATA,"TAGS",[]),hl=new rl(dl,{keys:["name","alias","description"]});const ml=function(t){var n=t.buttons,r=void 0===n?[]:n,o=t.handleChoiceTag,a=void 0===o?function(){}:o,i=cl((0,e.useState)(""),2),s=i[0],l=i[1],u=dn()(s)?dl:hl.search(s),c=cl((0,e.useState)(!1),2),f=c[0],p=c[1],d=(0,e.useRef)();return ul(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=jt()(dl,{name:t});if(!Ct()(n))return e.createElement(ll,{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"}),dn()(B()(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&&!dn()(u)&&e.createElement(ol,null,u.map((function(t){var n=B()(t,"item.name",B()(t,"name","")),r=B()(t,"item.description",B()(t,"description","")),o=B()(t,"item.input",B()(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(al,null,r||n),e.createElement(il,null,o))}))))))},vl=Et.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;}"]),gl=function(t){var n=t.percent,r=void 0===n?0:n,o=t.children;return e.createElement(Ji,null,e.createElement(vl,{style:{width:"".concat(r,"%")}},r.toFixed(1),"%"),e.createElement(es,null,o))};function yl(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 bl(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)?bl(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 bl(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 wl=(0,e.createContext)({values:{title:"",description:""}}),xl=function(t){var n=t.children,r=yl((0,e.useState)(""),2),o=r[0],a=r[1],i=yl((0,e.useState)(""),2),s=i[0],l=i[1];return e.createElement(wl.Provider,{value:{values:{title:o,description:s},actions:{setTitle:a,setDescription:l}}},n)},El=function(e,t){return 100*e/t},Sl=function(e){var t=document.createElement("canvas").getContext("2d");t.font="18px Arial";var n=t.measureText(e).width;return Math.ceil(n)};const kl=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 _l=["values","loading","handleOnSubmit"];var Ol=wp.i18n.__;const Cl=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,_l),i=Xt(),s=function(){var t=(0,e.useContext)(wl).values;return B()(t,"title","")}(),l=function(){var t=(0,e.useContext)(wl).values;return B()(t,"description","")}(),u=Sl(dn()(s)?B()(i,"title.value",""):s),c=El(u,568),f=Sl(dn()(l)?B()(i,"description.value",""):l),p=El(f,940);return e.createElement(Li,null,e.createElement(vs,{htmlFor:"title"},Ol("Title","wp-seopress"),e.createElement(kl,{title:Ol("Meta title","wp-seopress"),description:e.createElement(e.Fragment,null,Ol("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(is,{id:"title",name:"title",value:n.title,placeholder:B()(i,"title.value",Ol("Enter your title","wp-seopress")),className:"w-full",setFieldValue:a.setFieldValue}),e.createElement("div",{style:{marginTop:5}},e.createElement(gl,{percent:c>100?100:c},e.createElement("span",{style:{color:c>=100?"red":""}},u)," ","/ ",e.createElement("strong",null,568)," ",Ol("pixels","wp-seopress")," -",e.createElement("span",{style:{color:s.length>=60?"red":""}}," ",s.length)," ","/ ",e.createElement("strong",null,60)," ",e.createElement("span",null," ","(",Ol("maximum recommended limit","wp-seopress"),")"))),e.createElement("div",{style:{marginTop:5,marginBottom:20}},e.createElement(ml,{buttons:["post_title","sitetitle","sep"],handleChoiceTag:function(e){var t=dn()(n.title)?e:"".concat(n.title," ").concat(e);a.setFieldValue("title",t)}})),e.createElement(vs,{htmlFor:"description"},Ol("Meta description","wp-seopress"),e.createElement(kl,{title:Ol("Meta description","wp-seopress"),description:e.createElement(e.Fragment,null,Ol("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)," ",Ol("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)," ",Ol("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:B()(i,"description.value",Ol("Enter your description","wp-seopress")),className:"w-full"}),e.createElement("div",{style:{marginTop:5}},e.createElement(gl,{percent:p>100?100:p},e.createElement("span",{style:{color:p>=100?"red":""}},f)," ","/"," ",e.createElement("strong",null,940)," ",Ol("pixels","wp-seopress")," -",e.createElement("span",{style:{color:l.length>=160?"red":""}}," ",l.length)," ","/"," ",e.createElement("strong",null,160)," ","(",Ol("maximum recommended limit","wp-seopress"),")")),e.createElement("div",{style:{marginTop:5}},e.createElement(ml,{buttons:["post_title","sitetitle","sep"],handleChoiceTag:function(e){var t=dn()(n.description)?e:"".concat(n.description," ").concat(e);a.setFieldValue("description",t)}})),e.createElement("div",{className:"sp-fixed"},e.createElement(ws,{loading:r,onClick:function(){return o()},blue:!0},Ol("Save","wp-seopress"))))};var Pl=n(9138),jl=n.n(Pl),Al=function(e){var t=e.postId;return"".concat(SEOPRESS_DATA.REST_URL,"seopress/v1/posts/").concat(t,"/preview-title-description-metas")},Il=Et.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 Tl=Il;function Rl(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 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=wp.i18n.__;const Ll=function(t){var n=t.title,r=t.description,o=t.postId,a=Nl(tn("seopress_toggle_mobile_preview",B()(SEOPRESS_DATA,"TOGGLE_MOBILE_PREVIEW",1)),2),i=a[0],s=a[1],l=(0,e.useContext)(Qt).values.dataPagePreview,u=Nl((0,e.useState)(""),2),c=u[0],f=u[1],p=Nl((0,e.useState)(""),2),d=p[0],h=p[1],m=(0,e.useContext)(wl),v=m.values,g=m.actions,y=function(){return dn()(c)&&dn()(v.title)?B()(l,"title.value",""):dn()(c)?v.title:c},b=function(){return dn()(d)&&dn()(v.description)?B()(l,"description.value",""):dn()(d)?v.description:d},w=(0,e.useCallback)(Hi()(function(){var e,t=(e=regeneratorRuntime.mark((function e(t,n){var r,a,i,s,l,u,p,m,v;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return r=t.title,a=t.description,(i=new URL(Al({postId:o}))).searchParams.append("title",r),i.searchParams.append("description",a),e.next=6,fetch(i.href,{signal:n.signal});case 6:return s=e.sent,e.next=9,s.json();case 9:l=e.sent,g.setTitle(l.title),g.setDescription(l.description),u=Sl(l.title),p=El(u,568),m=Sl(l.description),v=El(m,940),p<100?f(""):dn()(c)&&f(jl()(l.title,{length:Math.ceil(100*l.title.length/p),separator:"..."})),v<100?h(""):dn()(d)&&h(jl()(l.description,{length:Math.ceil(100*l.description.length/v),separator:"..."}));case 18: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){Rl(a,r,o,i,s,"next",e)}function s(e){Rl(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),w({title:n,description:r},e),function(){e.abort()}}),[n,r]);var x=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"}},Fl("Google Snippet Preview","wp-seopress"),e.createElement(kl,{title:Fl("Snippet Preview","wp-seopress"),description:e.createElement(e.Fragment,null,Fl("The Google preview is a simulation.","wp-seopress")," ",e.createElement("br",null)," ",Fl("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)," ",Fl("There is not one snippet for one URL but several.","wp-seopress")," ",e.createElement("br",null)," ",Fl("All the data in this overview comes directly from your source code.","wp-seopress")," ",e.createElement("br",null)," ",Fl("This is what the crawlers will see.","wp-seopress"))})),e.createElement("p",null,Fl("This is what your page will look like in Google search results. You have to publish your post to get the Google Snippet Preview.","wp-seopress")),e.createElement("label",{htmlFor:"toggle-preview",className:"flex items-center",style:{marginBottom:10},onClick:function(){s(0===x?1:0)}},e.createElement("span",{className:"dashicons dashicons-smartphone"}),e.createElement("strong",null,Fl("Mobile Preview","wp-seopress")),e.createElement(Tl,{selected:1===x,style:{marginLeft:5},tabIndex:"0",onKeyUp:function(e){13===e.keyCode&&(e.preventDefault(),s(0===x?1:0))}})),0===x&&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}},B()(l,"permalink.value")),e.createElement("div",{style:{color:"#545454",fontSize:"14px",fontWeight:400,lineHeight:"18.2px"}},b())),1===x&&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:dn()(B()(SEOPRESS_DATA,"FAVICON",""))?"https://s2.googleusercontent.com/s2/favicons?domain_url=".concat(B()(l,"permalink.value"),"&sz=32"):B()(SEOPRESS_DATA,"FAVICON",""),loading:"lazy",width:16,height:16,"aria-hidden":!0,alt:"Favicon",style:{marginRight:10}}),B()(l,"permalink.value")),e.createElement("div",{style:{color:"#1a0dab",fontSize:"18px",lineHeight:"21.6px",marginBottom:12}},y()),e.createElement("div",{style:{color:"#545454",fontSize:"14px",fontWeight:400,lineHeight:"18.2px"}},b()))))};var Dl=function(e){var t=e.postId;return"".concat(SEOPRESS_DATA.REST_URL,"seopress/v1/posts/").concat(t,"/title-description-metas")};const zl=function(e){var t=e.postId;return Ur(Dl({postId:t}),{suspense:!0})};function Vl(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 Ul=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(Dl({postId:t}),{method:"PUT",headers:{"Content-Type":"application/json","X-WP-Nonce":B()(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){Vl(a,r,o,i,s,"next",e)}function s(e){Vl(a,r,o,i,s,"throw",e)}i(void 0)}))});return function(e,n){return t.apply(this,arguments)}}(),Bl=["values"];function Wl(){return Wl=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},Wl.apply(this,arguments)}function Hl(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 $l(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var Gl=wp.i18n.__;const ql=function(t){var n=t.mainBarRef,r=Lr(),o=zl({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 $l(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)?$l(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)(vn).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,Ul(r,t);case 3:e.sent,i(),p(!1),d.setMessage(Gl("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){Hl(a,r,o,i,s,"next",e)}function s(e){Hl(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(Ii,{enableReinitialize:!0,onSubmit:h,initialValues:{title:B()(a,"title",""),description:B()(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,Bl);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(Cl,Wl({values:o,loading:f,handleOnSubmit:function(){return h(o)}},a))),e.createElement("div",{className:"w-6/12"},e.createElement(Ll,{postId:r,title:B()(o,"title",""),description:B()(o,"description","")}))))})))};var Yl=n(6604),Kl=n.n(Yl),Ql=n(4350),Xl=n.n(Ql),Zl=function(e){var t=e.postId;return"".concat(SEOPRESS_DATA.REST_URL,"seopress/v1/posts/").concat(t,"/social-settings")};function Jl(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 eu=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(Zl({postId:t}),{method:"PUT",headers:{"Content-Type":"application/json","X-WP-Nonce":B()(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){Jl(a,r,o,i,s,"next",e)}function s(e){Jl(a,r,o,i,s,"throw",e)}i(void 0)}))});return function(e,n){return t.apply(this,arguments)}}(),tu=Et.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 nu=Et(Qi).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 ru=["name","id","value"];function ou(){return ou=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},ou.apply(this,arguments)}const au=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,ru);return e.createElement(nu,ou({name:n,id:r,type:"checkbox",value:o},a))};var iu=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(is,{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:B()(c,"".concat(n,"_attachment_id"),"")}),e.createElement("input",{type:"hidden",name:"".concat(n,"_width"),value:B()(c,"".concat(n,"_width"),"")}),e.createElement("input",{type:"hidden",name:"".concat(n,"_height"),value:B()(c,"".concat(n,"_height"),"")}),e.createElement(ho,{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"},iu("Choose an image","wp-seopress")))};var lu=Et.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 uu=Et(Qi).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 cu=["name","id","value","options"];function fu(){return fu=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},fu.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,cu);return e.createElement(uu,fu({},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)})))},du=Et.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;}"]),hu=Et.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 mu(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 vu(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)?vu(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 vu(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 gu=wp.i18n.__,yu=Et.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%;}}"]),bu=Et.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%;}}"]),wu=Et.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%;}}"]),xu=Et.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%;}}"]),Eu=Et.div.withConfig({componentId:"sc-qj6j9q-4"})(["&&&{color:#1d2327;font-size:1.3em;margin:20px 0;font-weight:bold;}"]),Su=function(e,t){return(e/t).toFixed(2)},ku=function(e){var t=e.split(/\#|\?/)[0].split(".").pop().trim();return["jpg","jpeg","gif","png","webp"].indexOf(t)>=0},_u=function(e,t){var n=t.width,r=t.height;return"facebook"===e?n>=200&&r>=200:n>=144&&r>=144};const Ou=function(t){var n=t.values,r=t.placeholders,o=mu((0,e.useState)(null),2),a=o[0],i=o[1],s=mu((0,e.useState)(null),2),l=s[0],u=s[1],c=mu((0,e.useState)(null),2),f=c[0],p=c[1],d=mu((0,e.useState)(null),2),h=d[0],m=d[1],v=mu((0,e.useState)(null),2),g=v[0],y=v[1],b=mu((0,e.useState)(null),2),w=b[0],x=b[1],E=mu((0,e.useState)(!1),2),S=E[0],k=E[1],_=mu((0,e.useState)(!1),2),O=_[0],C=_[1],P=B()(n,"_seopress_social_fb_img","");dn()(P)&&(P=jt()(r,{key:"_seopress_social_fb_img"}).placeholder);var j=B()(n,"_seopress_social_fb_title","");dn()(j)&&(j=jt()(r,{key:"_seopress_social_fb_title"}).placeholder);var A=B()(n,"_seopress_social_fb_desc","");dn()(A)&&(A=jt()(r,{key:"_seopress_social_fb_desc"}).placeholder);var I=B()(n,"_seopress_social_twitter_img","");dn()(I)&&(I=jt()(r,{key:"_seopress_social_twitter_img"}).placeholder);var T=B()(n,"_seopress_social_twitter_title","");dn()(T)&&(T=jt()(r,{key:"_seopress_social_twitter_title"}).placeholder);var R=B()(n,"_seopress_social_twitter_desc","");dn()(R)&&(R=jt()(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(B()(SEOPRESS_DATA,"SITEURL"))}catch(e){}return e.createElement(e.Fragment,null,e.createElement(Eu,null,gu("Facebook Preview","wp-seopress")),e.createElement("p",null,gu("This is what your post will look like in Facebook. You have to publish your post to get the Facebook Preview.","wp-seopress")),!Ct()(a)&&e.createElement(hu,null,gu("Your image ratio is:","wp-seopress")," ",e.createElement("strong",null,a),". ",gu("The closer to 1.91 the better.","wp-seopress")),!Ct()(g)&&!g&&e.createElement(du,{dangerouslySetInnerHTML:{__html:gu("Minimun size for Facebook is <strong>200x200px</strong>. Please choose another image.","wp-seopress")}}),!Ct()(f)&&!f&&e.createElement(du,null,gu("File type not supported by Facebook. Please choose another image.","wp-seopress")," "),P&&S&&e.createElement(du,null,gu("File error. Please choose another image.","wp-seopress")," "),e.createElement(yu,null,!P&&e.createElement(du,null,gu("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(Su(n,r)),p(ku(t.src)),y(_u("facebook",{width:n,height:r}))},onError:function(){return k(!0)}})),e.createElement(bu,null,e.createElement("div",{style:{color:"#606770",fontSize:"12px",lineHeight:"11px",textTransform:"uppercase",textOverflow:"ellipsis"}},B()(N,"hostname","")," | By ",SEOPRESS_DATA.SITENAME),e.createElement("div",{className:"sp-title"},j),e.createElement("div",{className:"sp-description"},A)),e.createElement(Eu,null,gu("Twitter Preview","wp-seopress")),e.createElement("p",null,gu("This is what your post will look like in Twitter. You have to publish your post to get the Twitter Preview.","wp-seopress")),!Ct()(l)&&e.createElement(hu,null,gu("Your image ratio is:","wp-seopress")," ",e.createElement("strong",null,l),". ",gu("The closer to 1 the better (with large card, 2 is better).","wp-seopress")),!Ct()(w)&&!w&&e.createElement(du,{dangerouslySetInnerHTML:{__html:gu("Minimun size for Twitter is <strong>144x144px</strong>. Please choose another image.","wp-seopress")}}),!Ct()(h)&&!h&&e.createElement(du,null,gu("File type not supported by Twitter. Please choose another image.","wp-seopress")," "),I&&O&&e.createElement(du,null,gu("File error. Please choose another image.","wp-seopress")," "),e.createElement(wu,null,!I&&e.createElement(du,null,gu("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(Su(n,r)),m(ku(t.src)),x(_u("twitter",{width:n,height:r}))}})),e.createElement(xu,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}},B()(N,"hostname",""))))};var Cu=["htmlFor","className","children"];function Pu(){return Pu=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},Pu.apply(this,arguments)}var ju=Et.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 Au=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,Cu);return e.createElement(ju,Pu({htmlFor:n,className:ls()(r)},a),e.createElement("div",null,o))};var Iu=["name","id","value"];const Tu=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,Iu),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 Ru=["name","id","value"];function Nu(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 Mu(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Nu(Object(n),!0).forEach((function(t){Fu(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Nu(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Fu(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Lu=wp.i18n.__,Du=["monday","tuesday","wednesday","thursday","friday","saturday","sunday"],zu=["00","01","02","03","04","05","06","07","08","09","10","11","12","13","14","15","16","17","18","19","20","21","22","23"],Vu=["00","15","30","45","59"],Uu=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,Mu(Mu({},r),{},{seopress_local_business_opening_hours:r.seopress_local_business_opening_hours.map((function(n,r){return r!==i?n:Mu(Mu({},n),{},{am:Mu(Mu({},n.am),{},Fu({},t,Mu(Mu({},n.am[t]),{},{hours:e})))})}))}))},u=function(e,t){a(n,Mu(Mu({},r),{},{seopress_local_business_opening_hours:r.seopress_local_business_opening_hours.map((function(n,r){return r!==i?n:Mu(Mu({},n),{},{am:Mu(Mu({},n.am),{},Fu({},t,Mu(Mu({},n.am[t]),{},{mins:e})))})}))}))};return e.createElement("div",{className:"flex items-center",style:{marginBottom:8}},e.createElement(tu,{type:"checkbox",value:"1",checked:B()(o,[i,"am","open"]),onChange:function(e){return t=e.target.checked,void a(n,Mu(Mu({},r),{},{seopress_local_business_opening_hours:r.seopress_local_business_opening_hours.map((function(e,n){return n!==i?e:Mu(Mu({},e),{},{am:Mu(Mu({},e.am),{},{open:t?"1":""})})}))}));var t}}),e.createElement("span",{style:{minWidth:"14%"}},Lu("Open in the morning?","wp-seopress")),e.createElement(lu,{name:"".concat(n,"[seopress_local_business_opening_hours][").concat(i,"][am][start][hours]"),value:B()(o,[i,"am","start","hours"]),style:{marginLeft:10},onChange:function(e){l(e.target.value,"start")}},zu.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(lu,{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:B()(o,[i,"am","start","mins"])},Vu.map((function(t){return e.createElement("option",{key:"day_".concat(s,"_min_am_start_").concat(t),value:t},t)}))),"-",e.createElement(lu,{name:"".concat(n,"[seopress_local_business_opening_hours][").concat(i,"][am][end][hours]"),style:{marginLeft:10},value:B()(o,[i,"am","end","hours"]),onChange:function(e){l(e.target.value,"end")}},zu.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(lu,{name:"".concat(n,"[seopress_local_business_opening_hours][").concat(i,"][am][end][mins]"),value:B()(o,[i,"am","end","mins"]),onChange:function(e){u(e.target.value,"end")}},Vu.map((function(t){return e.createElement("option",{key:"day_".concat(s,"_min_am_end_").concat(t),value:t},t)}))))},Bu=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,Mu(Mu({},r),{},{seopress_local_business_opening_hours:r.seopress_local_business_opening_hours.map((function(n,r){return r!==i?n:Mu(Mu({},n),{},{pm:Mu(Mu({},n.pm),{},Fu({},t,Mu(Mu({},n.pm[t]),{},{hours:e})))})}))}))},u=function(e,t){a(n,Mu(Mu({},r),{},{seopress_local_business_opening_hours:r.seopress_local_business_opening_hours.map((function(n,r){return r!==i?n:Mu(Mu({},n),{},{pm:Mu(Mu({},n.pm),{},Fu({},t,Mu(Mu({},n.pm[t]),{},{mins:e})))})}))}))};return e.createElement("div",{className:"flex items-center",style:{marginBottom:8}},e.createElement(tu,{type:"checkbox",value:"1",checked:B()(o,[i,"pm","open"]),onChange:function(e){return t=e.target.checked,void a(n,Mu(Mu({},r),{},{seopress_local_business_opening_hours:r.seopress_local_business_opening_hours.map((function(e,n){return n!==i?e:Mu(Mu({},e),{},{pm:Mu(Mu({},e.pm),{},{open:t?"1":""})})}))}));var t}}),e.createElement("span",{style:{minWidth:"14%"}},Lu("Open in the afternoon?","wp-seopress")),e.createElement(lu,{name:"".concat(n,"[seopress_local_business_opening_hours][").concat(i,"][pm][start][hours]"),value:B()(o,[i,"pm","start","hours"]),style:{marginLeft:10},onChange:function(e){l(e.target.value,"start")}},zu.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(lu,{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:B()(o,[i,"pm","start","mins"])},Vu.map((function(t){return e.createElement("option",{key:"day_".concat(s,"_min_am_start_").concat(t),value:t},t)}))),"-",e.createElement(lu,{name:"".concat(n,"[seopress_local_business_opening_hours][").concat(i,"][pm][end][hours]"),style:{marginLeft:10},value:B()(o,[i,"pm","end","hours"]),onChange:function(e){l(e.target.value,"end")}},zu.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(lu,{name:"".concat(n,"[seopress_local_business_opening_hours][").concat(i,"][pm][end][mins]"),value:B()(o,[i,"pm","end","mins"]),onChange:function(e){u(e.target.value,"end")}},Vu.map((function(t){return e.createElement("option",{key:"day_".concat(s,"_min_am_end_").concat(t),value:t},t)}))))};const Wu=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,Ru),a=function(e){return dn()(e)||Ct()(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=B()(a,"seopress_local_business_opening_hours");return e.createElement(e.Fragment,null,Du.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(tu,{type:"checkbox",value:"1",checked:B()(i,[r,"open"]),onChange:function(e){o.setFieldValue(n,Mu(Mu({},a),{},{seopress_local_business_opening_hours:a.seopress_local_business_opening_hours.map((function(t,n){return n!==r?t:Mu(Mu({},t),{},{open:e.target.checked?"1":""})}))}))}}),"Closed all the day?"),e.createElement(Uu,{name:n,day:t,currentValue:a,legacyValue:i,setFieldValue:o.setFieldValue,index:r}),e.createElement(Bu,{name:n,day:t,currentValue:a,legacyValue:i,setFieldValue:o.setFieldValue,index:r}))})))};function Hu(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function $u(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 Gu(e,t,n){return t&&$u(e.prototype,t),n&&$u(e,n),e}function qu(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Yu(){return Yu=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},Yu.apply(this,arguments)}function Ku(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 Qu(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&&Zu(e,t)}function Xu(e){return Xu=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},Xu(e)}function Zu(e,t){return Zu=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},Zu(e,t)}function Ju(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 ec(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function tc(e,t){return!t||"object"!=typeof t&&"function"!=typeof t?ec(e):t}function nc(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=Xu(e);if(t){var o=Xu(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return tc(this,n)}}function rc(e,t){if(e){if("string"==typeof e)return oc(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)?oc(e,t):void 0}}function oc(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 ac=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;Hu(this,e),qu(this,"expanded",void 0),qu(this,"allowMultipleExpanded",void 0),qu(this,"allowZeroExpanded",void 0),qu(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 oc(e)}(t)||function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}(t)||rc(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})),qu(this,"isItemDisabled",(function(e){var t=n.isItemExpanded(e),r=1===n.expanded.length;return Boolean(t&&!n.allowZeroExpanded&&r)})),qu(this,"isItemExpanded",(function(e){return-1!==n.expanded.indexOf(e)})),qu(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}})),qu(this,"getHeadingAttributes",(function(){return{role:"heading"}})),qu(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}})),qu(this,"getPanelId",(function(e){return"accordion__panel-".concat(e)})),qu(this,"getButtonId",(function(e){return"accordion__heading-".concat(e)})),qu(this,"augment",(function(t){return new e(function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Ku(Object(n),!0).forEach((function(t){qu(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Ku(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({expanded:n.expanded,allowMultipleExpanded:n.allowMultipleExpanded,allowZeroExpanded:n.allowZeroExpanded},t))})),this.expanded=o,this.allowMultipleExpanded=i,this.allowZeroExpanded=l},ic=(0,e.createContext)(null),sc=function(t){Qu(r,t);var n=nc(r);function r(){var e;Hu(this,r);for(var t=arguments.length,o=new Array(t),a=0;a<t;a++)o[a]=arguments[a];return qu(ec(e=n.call.apply(n,[this].concat(o))),"state",new ac({expanded:e.props.preExpanded,allowMultipleExpanded:e.props.allowMultipleExpanded,allowZeroExpanded:e.props.allowZeroExpanded})),qu(ec(e),"toggleExpanded",(function(t){e.setState((function(e){return e.toggleExpanded(t)}),(function(){e.props.onChange&&e.props.onChange(e.state.expanded)}))})),qu(ec(e),"isItemDisabled",(function(t){return e.state.isItemDisabled(t)})),qu(ec(e),"isItemExpanded",(function(t){return e.state.isItemExpanded(t)})),qu(ec(e),"getPanelAttributes",(function(t,n){return e.state.getPanelAttributes(t,n)})),qu(ec(e),"getHeadingAttributes",(function(){return e.state.getHeadingAttributes()})),qu(ec(e),"getButtonAttributes",(function(t,n){return e.state.getButtonAttributes(t,n)})),e}return Gu(r,[{key:"render",value:function(){var t=this.state,n=t.allowZeroExpanded,r=t.allowMultipleExpanded;return(0,e.createElement)(ic.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);qu(sc,"defaultProps",{allowMultipleExpanded:!1,allowZeroExpanded:!1});var lc,uc=function(t){Qu(r,t);var n=nc(r);function r(){var e;Hu(this,r);for(var t=arguments.length,o=new Array(t),a=0;a<t;a++)o[a]=arguments[a];return qu(ec(e=n.call.apply(n,[this].concat(o))),"renderChildren",(function(t){return t?e.props.children(t):null})),e}return Gu(r,[{key:"render",value:function(){return(0,e.createElement)(ic.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=Ju(t,["className","allowMultipleExpanded","allowZeroExpanded","onChange","preExpanded"]);return(0,e.createElement)(sc,{preExpanded:s,allowMultipleExpanded:o,allowZeroExpanded:a,onChange:i},(0,e.createElement)("div",Yu({"data-accordion-component":"Accordion",className:r},l)))};!function(e){e.Accordion="Accordion",e.AccordionItem="AccordionItem",e.AccordionItemButton="AccordionItemButton",e.AccordionItemHeading="AccordionItemHeading",e.AccordionItemPanel="AccordionItemPanel"}(lc||(lc={}));var fc=lc,pc=0,dc=/[\u0009\u000a\u000c\u000d\u0020]/g;function hc(e){return""!==e&&!dc.test(e)||(console.error('uuid must be a valid HTML5 id but was given "'.concat(e,'", ASCII whitespaces are forbidden')),!1)}var mc=(0,e.createContext)(null),vc=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)(mc.Provider,{value:{uuid:r,expanded:o,disabled:s,toggleExpanded:i,panelAttributes:l,headingAttributes:u,buttonAttributes:c}},n)};return(0,e.createElement)(uc,null,s)},gc=function(t){return(0,e.createElement)(uc,null,(function(n){return(0,e.createElement)(vc,Yu({},t,{accordionContext:n}))}))},yc=function(t){var n=t.children,r=function(e){return e?n(e):null};return(0,e.createElement)(mc.Consumer,null,r)},bc=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=Ju(t,["uuid","dangerouslySetExpanded","className","activeClassName"]),f=(r=(0,e.useState)((n=pc,pc+=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)||rc(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",Yu({"data-accordion-component":"AccordionItem",className:n},c))};return hc(p.toString()),c.id&&hc(c.id),(0,e.createElement)(gc,{uuid:p,dangerouslySetExpanded:i},(0,e.createElement)(yc,null,d))};function wc(e){return e&&(e.matches('[data-accordion-component="Accordion"]')?e:wc(e.parentElement))}function xc(e){var t=wc(e);return t&&Array.from(t.querySelectorAll('[data-accordion-component="AccordionItemButton"]'))}bc.displayName=fc.AccordionItem;var Ec=function(t){var n=t.toggleExpanded,r=t.className,o=void 0===r?"accordion__button":r,a=Ju(t,["toggleExpanded","className"]);return a.id&&hc(a.id),(0,e.createElement)("div",Yu({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=(xc(e)||[])[0];t&&t.focus()}(e.target);break;case"End":e.preventDefault(),t=e.target,r=xc(t)||[],(o=r[r.length-1])&&o.focus();break;case"ArrowLeft":case"ArrowUp":e.preventDefault(),function(e){var t=xc(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=xc(e)||[],n=t.indexOf(e);if(-1!==n){var r=t[n+1];r&&r.focus()}}(e.target)}},"data-accordion-component":"AccordionItemButton"}))},Sc=function(t){return(0,e.createElement)(yc,null,(function(n){var r=n.toggleExpanded,o=n.buttonAttributes;return(0,e.createElement)(Ec,Yu({toggleExpanded:r},t,o))}))},kc=function(t){Qu(r,t);var n=nc(r);function r(){var e;Hu(this,r);for(var t=arguments.length,o=new Array(t),a=0;a<t;a++)o[a]=arguments[a];return qu(ec(e=n.call.apply(n,[this].concat(o))),"ref",void 0),qu(ec(e),"setRef",(function(t){e.ref=t})),e}return Gu(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",Yu({"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);qu(kc,"defaultProps",{className:"accordion__heading","aria-level":3});var _c=function(t){return(0,e.createElement)(yc,null,(function(n){var r=n.headingAttributes;return t.id&&hc(t.id),(0,e.createElement)(kc,Yu({},t,r))}))};_c.displayName=fc.AccordionItemHeading;var Oc=function(t){var n=t.className,r=void 0===n?"accordion__panel":n,o=t.id,a=Ju(t,["className","id"]),i=function(t){var n=t.panelAttributes;return o&&hc(o),(0,e.createElement)("div",Yu({"data-accordion-component":"AccordionItemPanel",className:r},a,n))};return(0,e.createElement)(yc,null,i)},Cc=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)(yc,null,r)};const Pc=Et.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);}"]),jc=Et.div.withConfig({componentId:"sc-uqs8yk-0"})(["&&&&{display:flex;align-items:center;padding:10px 0px;font-weight:bold;position:relative;}"]);var Ac=["name","id","value"];function Ic(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 Tc(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Ic(Object(n),!0).forEach((function(t){Rc(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Ic(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Rc(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Nc(e,t){if(e){if("string"==typeof e)return Mc(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)?Mc(e,t):void 0}}function Mc(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 Fc=wp.i18n.__;const Lc=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,Ac),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)||Nc(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)(Hi()((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(bc,{key:"".concat(o,"_").concat(n)},e.createElement(Pc,null,e.createElement(_c,null,e.createElement(Sc,null,e.createElement(jc,null,e.createElement("div",null,"#",n+1," - ",t.name),e.createElement("span",{className:"seopress-arrow","aria-hidden":"true"})))),e.createElement(Oc,null,e.createElement("p",{style:{fontWeight:"bold"}},Fc("The title of the step (required)","wp-seopress")),e.createElement(Xi,{type:"text",value:t.name,onChange:function(e){u(l.map((function(t,r){return r!==n?t:Tc(Tc({},t),{},{name:e.target.value})})))}}),e.createElement("p",{style:{fontWeight:"bold"}},Fc("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:Tc(Tc({},t),{},{text:e.target.value})})))}}),e.createElement("p",{style:{fontWeight:"bold"}},Fc("Thumbnail","wp-seopress")),e.createElement("div",{className:"flex items-center justify-content"},e.createElement(Xi,{type:"text",value:B()(t,"image",""),onChange:function(e){u(l.map((function(t,r){return r!==n?t:Tc(Tc({},t),{},{image:e.target.value})})))}}),e.createElement("input",{type:"hidden",name:"image_attachment_id",value:B()(t,"image_attachment_id","")}),e.createElement("input",{type:"hidden",name:"image_width",value:B()(t,"image_width","")}),e.createElement("input",{type:"hidden",name:"image_height",value:B()(t,"image_height","")}),e.createElement(ho,{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:Tc(Tc({},n),{},{image:e.url,image_attachment_id:e.id,image_width:e.width,image_height:e.height})})))})),n.open()}(e,n)},className:"ms-2"},Fc("Choose an image","wp-seopress"))),e.createElement(ho,{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})))}},Fc("Remove step","wp-seopress")))))}))),e.createElement(ho,{as:"div",secondary:!0,style:{marginTom:12},onClick:function(e){e.stopPropagation(),u([].concat(function(e){return function(e){if(Array.isArray(e))return Mc(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||Nc(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:""}]))}},Fc("Add step","wp-seopress")))};var Dc=["name","id","value"];function zc(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 Vc(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?zc(Object(n),!0).forEach((function(t){Uc(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):zc(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return 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 Bc(e,t){if(e){if("string"==typeof e)return Wc(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)?Wc(e,t):void 0}}function Wc(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 Hc=wp.i18n.__;const $c=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,Dc),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)||Bc(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)(Hi()((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(bc,{key:"".concat(o,"_").concat(n)},e.createElement(Pc,null,e.createElement(_c,null,e.createElement(Sc,null,e.createElement(jc,null,e.createElement("div",null,"#",n+1," - ",t.question.length>0?t.question:e.createElement("span",{style:{color:"red"}}," ",Hc("Empty Question","wp-seopress")),0==t.answer.length&&e.createElement("span",{style:{color:"red"}}," - ",Hc("Empty Answer","wp-seopress"))),e.createElement("span",{className:"seopress-arrow","aria-hidden":"true"})))),e.createElement(Oc,null,e.createElement("p",{style:{fontWeight:"bold"}},Hc("Question (required)","wp-seopress")),e.createElement(Xi,{type:"text",value:t.question,onChange:function(e){u(l.map((function(t,r){return r!==n?t:Vc(Vc({},t),{},{question:e.target.value})})))}}),e.createElement("p",{style:{fontWeight:"bold"}},Hc("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:Vc(Vc({},t),{},{answer:e.target.value})})))}}),e.createElement(ho,{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})))}},Hc("Remove question","wp-seopress")))))}))),e.createElement(ho,{secondary:!0,style:{marginTom:12},onClick:function(e){e.stopPropagation(),u([].concat(function(e){return function(e){if(Array.isArray(e))return Wc(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||Bc(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:""}]))}},Hc("Add question","wp-seopress")))};var Gc=["name","id","value"];const qc=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,Gc);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 Yc=["item","nameInput","values","itemValue","checkboxLegacyValue","emptyIcon","placeholder"];function Kc(){return Kc=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},Kc.apply(this,arguments)}function Qc(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}const Xc=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,Yc),h=Ct()(o)?n.key:o,m=Ct()(s)?a[n.key]:s;(0,e.useEffect)((function(){!Ct()(m)&&!dn()(m)||Ct()(n.value)||"checkbox"===n.type||d.setFieldValue(h,B()(n,"value",""))}),[m]);var v,g={};return"upload"===n.type&&(Qc(v={},"".concat(h,"_attachment_id"),B()(a,"".concat(h,"_attachment_id"),"")),Qc(v,"".concat(h,"_width"),B()(a,"".concat(h,"_width"),"")),Qc(v,"".concat(h,"_height"),B()(a,"".concat(h,"_height"),"")),g=v),e.createElement(e.Fragment,null,"checkbox"!==n.type&&e.createElement(vs,{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(Au,{htmlFor:h},e.createElement(au,{id:h,name:h,checked:m||!1,className:ls()({"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(is,{id:h,name:h,placeholder:p||n.placeholder,value:m||"",className:ls()("w-full",B()(n,"class","")),emptyIcon:c,setFieldValue:d.setFieldValue,item:n})),"number"===n.type&&e.createElement(e.Fragment,null,e.createElement(is,{id:h,name:h,placeholder:p||n.placeholder,type:"number",value:m||"",className:ls()("w-full",B()(n,"class","")),emptyIcon:c,setFieldValue:d.setFieldValue,step:B()(n,"step",null),min:B()(n,"min",null),max:B()(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:ls()("w-full",B()(n,"class","")),style:{resize:"vertical"},item:n})),"select"===n.type&&e.createElement(e.Fragment,null,e.createElement(pu,Kc({id:h,name:h,placeholder:n.placeholder,value:m||"",className:ls()("w-full",B()(n,"class","")),options:n.options,onChange:d.handleChange},d))),"upload"===n.type&&e.createElement(e.Fragment,null,e.createElement(su,Kc({id:h,name:h,placeholder:p||n.placeholder,value:m||"",className:ls()("w-full",B()(n,"class","")),emptyIcon:c,setFieldValue:d.setFieldValue,combinedValuesForm:g},d))),"date"===n.type&&e.createElement(e.Fragment,null,e.createElement(Tu,Kc({id:h,name:h,value:m||"",className:ls()("w-full",B()(n,"class",""))},d))),"time"===n.type&&e.createElement(e.Fragment,null,e.createElement(qc,Kc({id:h,name:h,value:m||"",className:ls()("w-full",B()(n,"class",""))},d))),"opening_hours"===n.type&&e.createElement(e.Fragment,null,e.createElement(Wu,Kc({id:h,name:h,value:m||"",className:ls()("w-full",B()(n,"class",""))},d))),"repeater_how_to"===n.type&&e.createElement(e.Fragment,null,e.createElement(Lc,Kc({id:h,name:h,value:m||"",className:ls()("w-full",B()(n,"class",""))},d))),"repeater_faq"===n.type&&e.createElement(e.Fragment,null,e.createElement($c,Kc({id:h,name:h,value:m||"",className:ls()("w-full",B()(n,"class",""))},d))))};var Zc=["values"];function Jc(){return Jc=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},Jc.apply(this,arguments)}function ef(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 tf(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?ef(Object(n),!0).forEach((function(t){nf(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):ef(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function nf(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function rf(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 of(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 af=wp.i18n.__;const sf=function(t){var n,r,o=t.mainBarRef,a=Lr(),i=function(e){var t=e.postId;return Ur(Zl({postId:t}),{suspense:!0})}({postId:a}),s=i.data,l=i.mutate,u=i.abort,c=Xt(),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 of(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)?of(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)(vn).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,eu(a,t);case 3:e.sent,l(),d(!1),h.setMessage(af("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){rf(a,r,o,i,s,"next",e)}function s(e){rf(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 L()(B()(c,"og:title.value",[e.placeholder]));case"_seopress_social_fb_desc":return L()(B()(c,"og:description.value",[e.placeholder]));case"_seopress_social_fb_img":return L()(B()(c,"og:image.value",[e.placeholder]));case"_seopress_social_twitter_title":return L()(B()(c,"twitter:title.value",[e.placeholder]));case"_seopress_social_twitter_desc":return L()(B()(c,"twitter:description.value",[e.placeholder]));case"_seopress_social_twitter_img":return L()(B()(c,"twitter:image.value",[e.placeholder]));default:return e.placeholder}},g=Kl()(Xl()(s,"key"),(function(e){return B()(e,"value","")})),y=Kl()(Xl()(s,"key"),(function(e){var t=B()(e,"value","");return dn()(t)&&(t=v(e)),{key:e.key,placeholder:t}}));return e.createElement(e.Fragment,null,e.createElement(Ii,{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,Zc);return e.createElement("div",{ref:o,className:"flex",style:{gap:32},tabIndex:"0"},e.createElement("div",{className:"w-1/2"},e.createElement(Li,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"})),af("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 is;case"select":return pu;case"textarea":return ps;case"upload":return su;case"checkbox":return au}return null}(t.type);if(!Ct()(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"},af("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"},af("Preview your Twitter card using the official validator","wp-seopress")))),e.createElement("div",{className:"mt-3"},e.createElement(Xc,Jc({item:tf(tf({},t),{},{value:B()(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(ws,{loading:p,blue:!0,tabIndex:"0",onClick:function(){return m(n)}},af("Save","wp-seopress"))))),e.createElement("div",{className:"w-1/2"},e.createElement(Ou,{values:n,placeholders:y})))})))};var lf=Object.prototype.hasOwnProperty;var uf=n(8975),cf=["data","values"];var ff=wp.i18n.__;const pf=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,uf.sprintf)(ff('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(ua(e)&&(Sn(e)||"string"==typeof e||"function"==typeof e.splice||qo(e)||ta(e)||Ar(e)))return!e.length;var t=Wa(e);if("[object Map]"==t||"[object Set]"==t)return!e.size;if(aa(e))return!la(e).length;for(var n in e)if(lf.call(e,n))return!1;return!0}(n)&&n.map((function(t,n){return e.createElement(Au,{key:"robot_".concat(n)},e.createElement(au,{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,ff("Do not display this page in search engine results / XML - HTML sitemaps","wp-seopress")," ",e.createElement("strong",null,"(noindex)"),e.createElement(kl,{title:ff('"noindex" robots meta tag',"wp-seopress"),description:e.createElement(e.Fragment,null,ff('By checking this option, you will add a meta robots tag with the value "noindex".',"wp-seopress")," ",e.createElement("br",null)," ",ff("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,ff("Do not follow links for this page","wp-seopress")," ",e.createElement("strong",null,"(nofollow)"),e.createElement(kl,{title:ff('"nofollow" robots meta tag',"wp-seopress"),description:e.createElement(e.Fragment,null,ff('By checking this option, you will add a meta robots tag with the value "nofollow".',"wp-seopress")," ",e.createElement("br",null)," ",ff("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,ff("Do not use Open Directory project metadata for titles or excerpts for this page","wp-seopress")," ",e.createElement("strong",null,"(noodp)"),e.createElement(kl,{title:ff('"noodp" robots meta tag',"wp-seopress"),description:e.createElement(e.Fragment,null,ff('By checking this option, you will add a meta robots tag with the value "noodp".',"wp-seopress")," ",e.createElement("br",null)," ",ff("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,ff("Do not display a 'Cached' link in the Google search results","wp-seopress")," ",e.createElement("strong",null,"(noarchive)"),e.createElement(kl,{title:ff('"noarchive" robots meta tag',"wp-seopress"),description:e.createElement(e.Fragment,null,ff('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,ff("Do not display a description in search results for this page","wp-seopress")," ",e.createElement("strong",null,"(nosnippet)"),e.createElement(kl,{title:ff('"nosnippet" robots meta tag',"wp-seopress"),description:e.createElement(e.Fragment,null,ff('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,ff("Do not index images for this page","wp-seopress")," ",e.createElement("strong",null," (noimageindex)"),e.createElement(kl,{title:ff('"noimageindex" robots meta tag',"wp-seopress"),description:e.createElement(e.Fragment,null,ff('By checking this option, you will add a meta robots tag with the value "noimageindex".',"wp-seopress")," ",e.createElement("br",null)," ",ff("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 df=function(e){var t=e.postId;return"".concat(SEOPRESS_DATA.REST_URL,"seopress/v1/posts/").concat(t,"/meta-robot-settings")};const hf=function(e){var t=e.postId;return Ur(df({postId:t}),{suspense:!0})};function mf(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 vf=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(df({postId:t}),{method:"PUT",headers:{"Content-Type":"application/json","X-WP-Nonce":B()(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){mf(a,r,o,i,s,"next",e)}function s(e){mf(a,r,o,i,s,"throw",e)}i(void 0)}))});return function(e,n){return t.apply(this,arguments)}}(),gf=["values"];function yf(){return yf=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},yf.apply(this,arguments)}function bf(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 wf(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 xf=wp.i18n.__;const Ef=function(t){var n=t.mainBarRef,r=Lr(),o=hf({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 wf(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)?wf(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)(vn).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,vf(r,t);case 3:e.sent,i(),p(!1),d.setMessage(xf("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){bf(a,r,o,i,s,"next",e)}function s(e){bf(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"}},xf("Meta robots settings","wp-seopress")),e.createElement(Ii,{enableReinitialize:!0,onSubmit:h,initialValues:{_seopress_robots_index:B()(jt()(a,{key:"_seopress_robots_index"}),"value",""),_seopress_robots_follow:B()(jt()(a,{key:"_seopress_robots_follow"}),"value",""),_seopress_robots_odp:B()(jt()(a,{key:"_seopress_robots_odp"}),"value",""),_seopress_robots_archive:B()(jt()(a,{key:"_seopress_robots_archive"}),"value",""),_seopress_robots_snippet:B()(jt()(a,{key:"_seopress_robots_snippet"}),"value",""),_seopress_robots_imageindex:B()(jt()(a,{key:"_seopress_robots_imageindex"}),"value",""),_seopress_robots_canonical:B()(jt()(a,{key:"_seopress_robots_canonical"}),"value",!1),_seopress_robots_primary_cat:B()(jt()(a,{key:"_seopress_robots_primary_cat"}),"value",!1),_seopress_robots_breadcrumbs:B()(jt()(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,gf),o=["_seopress_robots_index","_seopress_robots_follow","_seopress_robots_odp","_seopress_robots_archive","_seopress_robots_snippet","_seopress_robots_imageindex"],i=jt()(a,{key:"_seopress_robots_canonical"}),s=jt()(a,{key:"_seopress_robots_primary_cat"}),l=jt()(a,{key:"_seopress_robots_breadcrumbs"});return e.createElement(Li,null,e.createElement(pf,yf({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(vs,{htmlFor:i.key},i.label,e.createElement(kl,{title:xf("Canonical URL","wp-seopress"),description:e.createElement(e.Fragment,null,xf("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)," ",xf("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)," ",xf("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(is,{id:i.key,name:i.key,placeholder:i.placeholder,value:n[i.key]||"",className:"w-full",setFieldValue:r.setFieldValue})),s&&!dn()(B()(s,"options",[]))&&s.visible&&e.createElement("div",{className:"mt-3"},e.createElement(vs,{htmlFor:s.key},s.label),e.createElement(pu,yf({id:s.key,name:s.key,value:n[s.key]||"none",options:B()(s,"options",[]).map((function(e){if(!Ct()(e.name)&&!Ct()(e.term_id))return{label:e.name,value:e.term_id}}))},r))),l&&l.visible&&e.createElement("div",{className:"mt-3"},e.createElement(vs,{htmlFor:l.key},l.label),l.description&&e.createElement("p",{className:"description"},l.description),e.createElement(is,{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(ws,{blue:!0,loading:f,onClick:function(){return h(n)}},xf("Save","wp-seopress"))))})))};var Sf=function(e){var t=e.postId;return"".concat(SEOPRESS_DATA.REST_URL,"seopress/v1/posts/").concat(t,"/redirection-settings")};function kf(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 _f=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(Sf({postId:t}),{method:"PUT",headers:{"Content-Type":"application/json","X-WP-Nonce":B()(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){kf(a,r,o,i,s,"next",e)}function s(e){kf(a,r,o,i,s,"throw",e)}i(void 0)}))});return function(e,n){return t.apply(this,arguments)}}();wp.i18n.__;const Of=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(ol,null,n.map((function(t){var n=B()(t,"item.name",B()(t,"name","")),r=B()(t,"item.input",B()(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"},!dn()(n)&&e.createElement(al,null,n),!dn()(r)&&e.createElement(il,null,r))}))))))};var Cf=["data","values","handleOnSubmit","loading"],Pf=["values"];function jf(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 Af(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?jf(Object(n),!0).forEach((function(t){If(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):jf(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function If(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Tf(){return Tf=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},Tf.apply(this,arguments)}function Rf(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 Nf(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var a=e.apply(t,n);function i(e){Rf(a,r,o,i,s,"next",e)}function s(e){Rf(a,r,o,i,s,"throw",e)}i(void 0)}))}}function Mf(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 Ff(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)?Ff(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 Ff(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 Lf(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 Df=wp.i18n.__,zf=function(t){var n=t.data,r=t.values,o=t.handleOnSubmit,a=t.loading,i=Lf(t,Cf),s=wi(Oi().values,"_seopress_redirections_value"),l=Mf((0,e.useState)([]),2),u=l[0],c=l[1],f=Mf((0,e.useState)(!1),2),p=f[0],d=f[1],h=Mf((0,e.useState)(s),2),m=h[0],v=h[1],g=(0,e.useRef)(!0),y=(0,e.useRef)();ul(y,(function(){return d(!1)}));var b=(0,e.useCallback)(Hi()(function(){var e=Nf(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),dn()(m)||m.length<3||b(m))}),[m]),e.createElement(Li,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(Xc,Tf({item:t,values:r},i)),"_seopress_redirections_value"===t.key&&e.createElement(e.Fragment,null,e.createElement(vs,{htmlFor:t.key},t.label),e.createElement(Zi,{name:t.key,id:t.key,type:"text",value:m,placeholder:B()(t,"placeholder",""),onChange:function(e){v(e.target.value)},style:{width:"100%"}}),p&&!dn()(u)&&e.createElement("div",{ref:y},e.createElement(Of,{handleChoiceItem:function(e){v(e),d(!1)},items:u})))))})),e.createElement("div",{className:"sp-fixed"},e.createElement(ws,{blue:!0,loading:a,onClick:function(){return o(r)}},Df("Save","wp-seopress"))))};const Vf=function(t){var n=t.mainBarRef,r=Lr(),o=function(e){var t=e.postId;return Ur(Sf({postId:t}),{suspense:!0})}({postId:r}),a=o.data,i=o.mutate,s=o.abort;(0,e.useEffect)((function(){return function(){s()}}));var l=Mf((0,e.useState)(!1),2),u=l[0],c=l[1],f=(0,e.useContext)(vn).actions,p=function(){var e=Nf(regeneratorRuntime.mark((function e(t){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return c(!0),e.next=3,_f(r,Af(Af({},t),{},{_seopress_redirections_enabled:t._seopress_redirections_enabled?"yes":""}));case 3:e.sent,i(),c(!1),f.setMessage(Df("Your settings have been saved.","wp-seopress"));case 7:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),d=Kl()(Xl()(a,"key"),(function(e){return B()(e,"value",!1)}));return e.createElement("div",{ref:n,tabIndex:"0"},e.createElement(Ii,{enableReinitialize:!0,onSubmit:p,initialValues:d},(function(t){var n=t.values,r=Lf(t,Pf);return e.createElement(zf,Tf({data:a,values:n,handleOnSubmit:p,loading:u},r))})))};var Uf=n(8721),Bf=n.n(Uf);function Wf(){return Wf=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},Wf.apply(this,arguments)}function Hf(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 $f(e){return function(e){if(Array.isArray(e))return Hf(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(e){if("string"==typeof e)return Hf(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)?Hf(e,t):void 0}}(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 Gf(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function qf(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 Yf(e,t,n){return t&&qf(e.prototype,t),n&&qf(e,n),Object.defineProperty(e,"prototype",{writable:!1}),e}function Kf(e,t){return Kf=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},Kf(e,t)}function Qf(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&&Kf(e,t)}var Xf=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}(),Zf=Math.abs,Jf=String.fromCharCode,ep=Object.assign;function tp(e){return e.trim()}function np(e,t,n){return e.replace(t,n)}function rp(e,t){return e.indexOf(t)}function op(e,t){return 0|e.charCodeAt(t)}function ap(e,t,n){return e.slice(t,n)}function ip(e){return e.length}function sp(e){return e.length}function lp(e,t){return t.push(e),e}var up=1,cp=1,fp=0,pp=0,dp=0,hp="";function mp(e,t,n,r,o,a,i){return{value:e,root:t,parent:n,type:r,props:o,children:a,line:up,column:cp,length:i,return:""}}function vp(e,t){return ep(mp("",null,null,"",null,null,0),e,{length:-e.length},t)}function gp(){return dp=pp>0?op(hp,--pp):0,cp--,10===dp&&(cp=1,up--),dp}function yp(){return dp=pp<fp?op(hp,pp++):0,cp++,10===dp&&(cp=1,up++),dp}function bp(){return op(hp,pp)}function xp(){return pp}function Ep(e,t){return ap(hp,e,t)}function Sp(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 kp(e){return up=cp=1,fp=ip(hp=e),pp=0,[]}function _p(e){return hp="",e}function Op(e){return tp(Ep(pp-1,jp(91===e?e+2:40===e?e+1:e)))}function Cp(e){for(;(dp=bp())&&dp<33;)yp();return Sp(e)>2||Sp(dp)>3?"":" "}function Pp(e,t){for(;--t&&yp()&&!(dp<48||dp>102||dp>57&&dp<65||dp>70&&dp<97););return Ep(e,xp()+(t<6&&32==bp()&&32==yp()))}function jp(e){for(;yp();)switch(dp){case e:return pp;case 34:case 39:34!==e&&39!==e&&jp(dp);break;case 40:41===e&&jp(e);break;case 92:yp()}return pp}function Ap(e,t){for(;yp()&&e+dp!==57&&(e+dp!==84||47!==bp()););return"/*"+Ep(t,pp-1)+"*"+Jf(47===e?e:yp())}function Ip(e){for(;!Sp(bp());)yp();return Ep(e,pp)}var Tp="-ms-",Rp="-moz-",Np="-webkit-",Mp="comm",Fp="rule",Lp="decl",Dp="@keyframes";function zp(e,t){for(var n="",r=sp(e),o=0;o<r;o++)n+=t(e[o],o,e,t)||"";return n}function Vp(e,t,n,r){switch(e.type){case"@import":case Lp:return e.return=e.return||e.value;case Mp:return"";case Dp:return e.return=e.value+"{"+zp(e.children,r)+"}";case Fp:e.value=e.props.join(",")}return ip(n=zp(e.children,r))?e.return=e.value+"{"+n+"}":""}function Up(e,t){switch(function(e,t){return(((t<<2^op(e,0))<<2^op(e,1))<<2^op(e,2))<<2^op(e,3)}(e,t)){case 5103:return Np+"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 Np+e+e;case 5349:case 4246:case 4810:case 6968:case 2756:return Np+e+Rp+e+Tp+e+e;case 6828:case 4268:return Np+e+Tp+e+e;case 6165:return Np+e+Tp+"flex-"+e+e;case 5187:return Np+e+np(e,/(\w+).+(:[^]+)/,"-webkit-box-$1$2-ms-flex-$1$2")+e;case 5443:return Np+e+Tp+"flex-item-"+np(e,/flex-|-self/,"")+e;case 4675:return Np+e+Tp+"flex-line-pack"+np(e,/align-content|flex-|-self/,"")+e;case 5548:return Np+e+Tp+np(e,"shrink","negative")+e;case 5292:return Np+e+Tp+np(e,"basis","preferred-size")+e;case 6060:return Np+"box-"+np(e,"-grow","")+Np+e+Tp+np(e,"grow","positive")+e;case 4554:return Np+np(e,/([^-])(transform)/g,"$1-webkit-$2")+e;case 6187:return np(np(np(e,/(zoom-|grab)/,Np+"$1"),/(image-set)/,Np+"$1"),e,"")+e;case 5495:case 3959:return np(e,/(image-set\([^]*)/,Np+"$1$`$1");case 4968:return np(np(e,/(.+:)(flex-)?(.*)/,"-webkit-box-pack:$3-ms-flex-pack:$3"),/s.+-b[^;]+/,"justify")+Np+e+e;case 4095:case 3583:case 4068:case 2532:return np(e,/(.+)-inline(.+)/,Np+"$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(ip(e)-1-t>6)switch(op(e,t+1)){case 109:if(45!==op(e,t+4))break;case 102:return np(e,/(.+:)(.+)-([^]+)/,"$1-webkit-$2-$3$1"+Rp+(108==op(e,t+3)?"$3":"$2-$3"))+e;case 115:return~rp(e,"stretch")?Up(np(e,"stretch","fill-available"),t)+e:e}break;case 4949:if(115!==op(e,t+1))break;case 6444:switch(op(e,ip(e)-3-(~rp(e,"!important")&&10))){case 107:return np(e,":",":"+Np)+e;case 101:return np(e,/(.+:)([^;!]+)(;|!.+)?/,"$1"+Np+(45===op(e,14)?"inline-":"")+"box$3$1"+Np+"$2$3$1"+Tp+"$2box$3")+e}break;case 5936:switch(op(e,t+11)){case 114:return Np+e+Tp+np(e,/[svh]\w+-[tblr]{2}/,"tb")+e;case 108:return Np+e+Tp+np(e,/[svh]\w+-[tblr]{2}/,"tb-rl")+e;case 45:return Np+e+Tp+np(e,/[svh]\w+-[tblr]{2}/,"lr")+e}return Np+e+Tp+e+e}return e}function Bp(e){return _p(Wp("",null,null,null,[""],e=kp(e),0,[0],e))}function Wp(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=yp()){case 40:if(108!=h&&58==S.charCodeAt(f-1)){-1!=rp(S+=np(Op(y),"&","&\f"),"&\f")&&(g=-1);break}case 34:case 39:case 91:S+=Op(y);break;case 9:case 10:case 13:case 32:S+=Cp(h);break;case 92:S+=Pp(xp()-1,7);continue;case 47:switch(bp()){case 42:case 47:lp($p(Ap(yp(),xp()),t,n),l);break;default:S+="/"}break;case 123*m:s[u++]=ip(S)*g;case 125*m:case 59:case 0:switch(y){case 0:case 125:v=0;case 59+c:d>0&&ip(S)-f&&lp(d>32?Gp(S+";",r,n,f-1):Gp(np(S," ","")+";",r,n,f-2),l);break;case 59:S+=";";default:if(lp(E=Hp(S,t,n,u,c,o,s,b,w=[],x=[],f),a),123===y)if(0===c)Wp(S,t,E,E,w,a,f,s,x);else switch(p){case 100:case 109:case 115:Wp(e,E,E,r&&lp(Hp(e,E,E,0,0,o,s,b,o,w=[],f),x),o,x,f,s,r?w:x);break;default:Wp(S,E,E,E,[""],x,0,s,x)}}u=c=d=0,m=g=1,b=S="",f=i;break;case 58:f=1+ip(S),d=h;default:if(m<1)if(123==y)--m;else if(125==y&&0==m++&&125==gp())continue;switch(S+=Jf(y),y*m){case 38:g=c>0?1:(S+="\f",-1);break;case 44:s[u++]=(ip(S)-1)*g,g=1;break;case 64:45===bp()&&(S+=Op(yp())),p=bp(),c=f=ip(b=S+=Ip(xp())),y++;break;case 45:45===h&&2==ip(S)&&(m=0)}}return a}function Hp(e,t,n,r,o,a,i,s,l,u,c){for(var f=o-1,p=0===o?a:[""],d=sp(p),h=0,m=0,v=0;h<r;++h)for(var g=0,y=ap(e,f+1,f=Zf(m=i[h])),b=e;g<d;++g)(b=tp(m>0?p[g]+" "+y:np(y,/&\f/g,p[g])))&&(l[v++]=b);return mp(e,t,n,0===o?Fp:s,l,u,c)}function $p(e,t,n){return mp(e,t,n,Mp,Jf(dp),ap(e,2,-2),0)}function Gp(e,t,n,r){return mp(e,t,n,Lp,ap(e,0,r),ap(e,r+1,-1),r)}var qp=function(e,t,n){for(var r=0,o=0;r=o,o=bp(),38===r&&12===o&&(t[n]=1),!Sp(o);)yp();return Ep(e,pp)},Yp=new WeakMap,Kp=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)||Yp.get(n))&&!r){Yp.set(e,!0);for(var o=[],a=function(e,t){return _p(function(e,t){var n=-1,r=44;do{switch(Sp(r)){case 0:38===r&&12===bp()&&(t[n]=1),e[n]+=qp(pp-1,t,n);break;case 2:e[n]+=Op(r);break;case 4:if(44===r){e[++n]=58===bp()?"&\f":"",t[n]=e[n].length;break}default:e[n]+=Jf(r)}}while(r=yp());return e}(kp(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]}}},Qp=function(e){if("decl"===e.type){var t=e.value;108===t.charCodeAt(0)&&98===t.charCodeAt(2)&&(e.return="",e.value="")}},Xp=[function(e,t,n,r){if(e.length>-1&&!e.return)switch(e.type){case Lp:e.return=Up(e.value,e.length);break;case Dp:return zp([vp(e,{value:np(e.value,"@","@"+Np)})],r);case Fp: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 zp([vp(e,{props:[np(t,/:(read-\w+)/,":-moz-$1")]})],r);case"::placeholder":return zp([vp(e,{props:[np(t,/:(plac\w+)/,":-webkit-input-$1")]}),vp(e,{props:[np(t,/:(plac\w+)/,":-moz-$1")]}),vp(e,{props:[np(t,/:(plac\w+)/,Tp+"input-$1")]})],r)}return""}))}}];const Zp=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||Xp,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=[Vp,(f=function(e){l.insert(e)},function(e){e.root||(e=e.return)&&f(e)})],d=(u=[Kp,Qp].concat(a,p),c=sp(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){zp(Bp(e),d)}(e?e+"{"+t.styles+"}":t.styles),r&&(h.inserted[t.name]=!0)};var h={key:t,sheet:new Xf({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 Jp(e,t,n){var r="";return n.split(" ").forEach((function(n){void 0!==e[n]?t.push(e[n]+";"):r+=n+" "})),r}var ed=function(e,t,n){var r=e.key+"-"+t.name;if(!1===n&&void 0===e.registered[r]&&(e.registered[r]=t.styles),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 td=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 nd=/[A-Z]|^ms/g,rd=/_EMO_([^_]+?)_([^]*?)_EMO_/g,od=function(e){return 45===e.charCodeAt(1)},ad=function(e){return null!=e&&"boolean"!=typeof e},id=function(e){var t=Object.create(null);return function(e){return void 0===t[e]&&(t[e]=od(n=e)?n:n.replace(nd,"-$&").toLowerCase()),t[e];var n}}(),sd=function(e,t){switch(e){case"animation":case"animationName":if("string"==typeof t)return t.replace(rd,(function(e,t,n){return ud={name:t,styles:n,next:ud},t}))}return 1===Y[e]||od(e)||"number"!=typeof t||0===t?t:t+"px"};function ld(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 ud={name:n.name,styles:n.styles,next:ud},n.name;if(void 0!==n.styles){var r=n.next;if(void 0!==r)for(;void 0!==r;)ud={name:r.name,styles:r.styles,next:ud},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+=ld(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]+"}":ad(i)&&(r+=id(a)+":"+sd(a,i)+";");else if(!Array.isArray(i)||"string"!=typeof i[0]||null!=t&&void 0!==t[i[0]]){var s=ld(e,t,i);switch(a){case"animation":case"animationName":r+=id(a)+":"+s+";";break;default:r+=a+"{"+s+"}"}}else for(var l=0;l<i.length;l++)ad(i[l])&&(r+=id(a)+":"+sd(a,i[l])+";")}return r}(e,t,n);case"function":if(void 0!==e){var o=ud,a=n(e);return ud=o,ld(e,t,a)}}if(null==t)return n;var i=t[n];return void 0!==i?i:n}var ud,cd=/label:\s*([^\s;\n{]+)\s*(;|$)/g,fd=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="";ud=void 0;var a=e[0];null==a||void 0===a.raw?(r=!1,o+=ld(n,t,a)):o+=a[0];for(var i=1;i<e.length;i++)o+=ld(n,t,e[i]),r&&(o+=a[i]);cd.lastIndex=0;for(var s,l="";null!==(s=cd.exec(o));)l+="-"+s[1];return{name:td(o)+l,styles:o,next:ud}},pd={}.hasOwnProperty,dd=(0,e.createContext)("undefined"!=typeof HTMLElement?Zp({key:"css"}):null);dd.Provider;var hd=function(t){return(0,e.forwardRef)((function(n,r){var o=(0,e.useContext)(dd);return t(n,o,r)}))},md=(0,e.createContext)({}),vd="__EMOTION_TYPE_PLEASE_DO_NOT_USE__",gd=function(e,t){var n={};for(var r in t)pd.call(t,r)&&(n[r]=t[r]);return n[vd]=e,n},yd=function(){return null},bd=hd((function(t,n,r){var o=t.css;"string"==typeof o&&void 0!==n.registered[o]&&(o=n.registered[o]);var a=t[vd],i=[o],s="";"string"==typeof t.className?s=Jp(n.registered,i,t.className):null!=t.className&&(s=t.className+" ");var l=fd(i,void 0,(0,e.useContext)(md));ed(n,l,"string"==typeof a),s+=n.key+"-"+l.name;var u={};for(var c in t)pd.call(t,c)&&"css"!==c&&c!==vd&&(u[c]=t[c]);u.ref=r,u.className=s;var f=(0,e.createElement)(a,u),p=(0,e.createElement)(yd,null);return(0,e.createElement)(e.Fragment,null,p,f)})),wd=function(t,n){var r=arguments;if(null==n||!pd.call(n,"css"))return e.createElement.apply(void 0,r);var o=r.length,a=new Array(o);a[0]=bd,a[1]=gd(t,n);for(var i=2;i<o;i++)a[i]=r[i];return e.createElement.apply(null,a)};function xd(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return fd(t)}var Ed=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 Sd(e,t,n){var r=[],o=Jp(e,r,n);return r.length<2?n:o+t(r)}var kd=function(){return null},_d=hd((function(t,n){var r=function(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];var o=fd(t,n.registered);return ed(n,o,!1),n.key+"-"+o.name},o={css:r,cx:function(){for(var e=arguments.length,t=new Array(e),o=0;o<e;o++)t[o]=arguments[o];return Sd(n.registered,r,Ed(t))},theme:(0,e.useContext)(md)},a=t.children(o),i=(0,e.createElement)(kd,null);return(0,e.createElement)(e.Fragment,null,i,a)}));function Od(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 Cd(e){return Cd="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},Cd(e)}var Pd=n(7914);function jd(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ad(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Id(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 Td(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Id(Object(n),!0).forEach((function(t){Ad(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Id(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Rd(e){return Rd=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},Rd(e)}function Nd(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 Md(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=Rd(e);if(t){var o=Rd(this).constructor;n=Reflect.construct(r,arguments,o)}else n=r.apply(this,arguments);return Nd(this,n)}}var Fd=function(){};function Ld(e,t){return t?"-"===t[0]?e+t:e+"__"+t:e}function Dd(e,t,n){var r=[n];if(t&&e)for(var o in t)t.hasOwnProperty(o)&&t[o]&&r.push("".concat(Ld(e,o)));return r.filter((function(e){return e})).map((function(e){return String(e).trim()})).join(" ")}var zd=function(e){return Array.isArray(e)?e.filter(Boolean):"object"===Cd(e)&&null!==e?[e]:[]},Vd=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,Td({},Od(e,["className","clearValue","cx","getStyles","getValue","hasValue","isMulti","isRtl","options","selectOption","selectProps","setValue","theme"]))};function Ud(e){return[document.documentElement,document.body,window].indexOf(e)>-1}function Bd(e){return Ud(e)?window.pageYOffset:e.scrollTop}function Wd(e,t){Ud(e)?window.scrollTo(0,t):e.scrollTop=t}function Hd(e,t,n,r){return n*((e=e/r-1)*e*e+1)+t}function $d(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:200,r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:Fd,o=Bd(e),a=t-o,i=10,s=0;function l(){var t=Hd(s+=i,o,a,n);Wd(e,t),s<n?window.requestAnimationFrame(l):r(e)}l()}function Gd(){try{return document.createEvent("TouchEvent"),!0}catch(e){return!1}}var qd=!1,Yd={get passive(){return qd=!0}},Kd="undefined"!=typeof window?window:{};Kd.addEventListener&&Kd.removeEventListener&&(Kd.addEventListener("p",Fd,Yd),Kd.removeEventListener("p",Fd,!1));var Qd=qd;function Xd(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)/,o=document.documentElement;if("fixed"===t.position)return o;for(var a=e;a=a.parentElement;)if(t=getComputedStyle(a),(!n||"static"!==t.position)&&r.test(t.overflow+t.overflowY+t.overflowX))return a;return o}(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=Bd(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&&$d(l,k,O),{placement:"bottom",maxHeight:t};if(!i&&S>=r||i&&x>=r)return a&&$d(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&&Wd(l,k),{placement:"bottom",maxHeight:t};break;case"top":if(w>=d)return{placement:"top",maxHeight:t};if(E>=d&&!i)return a&&$d(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&&$d(l,_,O),{placement:"top",maxHeight:j}}return{placement:"bottom",maxHeight:t};default:throw new Error('Invalid placement provided "'.concat(o,'".'))}return u}var Zd=function(e){return"auto"===e?"bottom":e},Jd=(0,e.createContext)({getPortalPlacement:null}),eh=function(e){Qf(n,e);var t=Md(n);function n(){var e;Gf(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.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=Xd({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||Zd(t);return Td(Td({},e.props),{},{placement:n,maxHeight:e.state.maxHeight})},e}return Yf(n,[{key:"render",value:function(){return(0,this.props.children)({ref:this.getPlacement,placerProps:this.getUpdatedProps()})}}]),n}(e.Component);eh.contextType=Jd;var th=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"}},nh=th,rh=th,oh=function(e){var t=e.children,n=e.className,r=e.cx,o=e.getStyles,a=e.innerProps;return wd("div",Wf({css:o("noOptionsMessage",e),className:r({"menu-notice":!0,"menu-notice--no-options":!0},n)},a),t)};oh.defaultProps={children:"No options"};var ah=function(e){var t=e.children,n=e.className,r=e.cx,o=e.getStyles,a=e.innerProps;return wd("div",Wf({css:o("loadingMessage",e),className:r({"menu-notice":!0,"menu-notice--loading":!0},n)},a),t)};ah.defaultProps={children:"Loading..."};var ih,sh,lh,uh=function(e){Qf(r,e);var n=Md(r);function r(){var e;Gf(this,r);for(var t=arguments.length,o=new Array(t),a=0;a<t;a++)o[a]=arguments[a];return(e=n.call.apply(n,[this].concat(o))).state={placement:null},e.getPortalPlacement=function(t){var n=t.placement;n!==Zd(e.props.menuPlacement)&&e.setState({placement:n})},e}return Yf(r,[{key:"render",value:function(){var e=this.props,n=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(!n&&!f||!a)return null;var p=this.state.placement||Zd(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=wd("div",Wf({css:c("menuPortal",{offset:m,position:u,rect:d}),className:i({"menu-portal":!0},o)},s),r);return wd(Jd.Provider,{value:{getPortalPlacement:this.getPortalPlacement}},n?(0,t.createPortal)(v,n):v)}}]),r}(e.Component),ch={name:"8mmkcg",styles:"display:inline-block;fill:currentColor;line-height:1;stroke:currentColor;stroke-width:0"},fh=function(e){var t=e.size,n=Od(e,["size"]);return wd("svg",Wf({height:t,width:t,viewBox:"0 0 20 20","aria-hidden":"true",focusable:"false",css:ch},n))},ph=function(e){return wd(fh,Wf({size:20},e),wd("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"}))},dh=function(e){return wd(fh,Wf({size:20},e),wd("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"}))},hh=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}}},mh=hh,vh=hh,gh=function(){var e=xd.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_"}}}(ih||(sh=["\n 0%, 80%, 100% { opacity: 0; }\n 40% { opacity: 1; }\n"],lh||(lh=sh.slice(0)),ih=Object.freeze(Object.defineProperties(sh,{raw:{value:Object.freeze(lh)}})))),yh=function(e){var t=e.delay,n=e.offset;return wd("span",{css:xd({animation:"".concat(gh," 1s ease-in-out ").concat(t,"ms infinite;"),backgroundColor:"currentColor",borderRadius:"1em",display:"inline-block",marginLeft:n?"1em":null,height:"1em",verticalAlign:"top",width:"1em"},"","")})},bh=function(e){var t=e.className,n=e.cx,r=e.getStyles,o=e.innerProps,a=e.isRtl;return wd("div",Wf({css:r("loadingIndicator",e),className:n({indicator:!0,"loading-indicator":!0},t)},o),wd(yh,{delay:0,offset:a}),wd(yh,{delay:160,offset:!0}),wd(yh,{delay:320,offset:!a}))};bh.defaultProps={size:4};var wh=function(e){return{label:"input",background:0,border:0,fontSize:"inherit",opacity:e?0:1,outline:0,padding:0,color:"inherit"}},xh=function(e){var t=e.children,n=e.innerProps;return wd("div",n,t)},Eh=xh,Sh=xh,kh=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 wd(_d,null,(function(r){var h=r.css,m=r.cx;return wd(f,{data:a,innerProps:Td({className:m(h(i("multiValue",e)),o({"multi-value":!0,"multi-value--is-disabled":l},n))},s),selectProps:c},wd(p,{data:a,innerProps:{className:m(h(i("multiValueLabel",e)),o({"multi-value__label":!0},n))},selectProps:c},t),wd(d,{data:a,innerProps:Td({className:m(h(i("multiValueRemove",e)),o({"multi-value__remove":!0},n))},u),selectProps:c}))}))};kh.defaultProps={cropWithEllipsis:!0};var _h={ClearIndicator:function(e){var t=e.children,n=e.className,r=e.cx,o=e.getStyles,a=e.innerProps;return wd("div",Wf({css:o("clearIndicator",e),className:r({indicator:!0,"clear-indicator":!0},n)},a),t||wd(ph,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 wd("div",Wf({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 wd("div",Wf({css:o("dropdownIndicator",e),className:r({indicator:!0,"dropdown-indicator":!0},n)},a),t||wd(dh,null))},DownChevron:dh,CrossIcon:ph,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 wd("div",Wf({css:o("group",e),className:r({group:!0},n)},s),wd(a,Wf({},i,{selectProps:c,theme:u,getStyles:o,cx:r}),l),wd("div",null,t))},GroupHeading:function(e){var t=e.getStyles,n=e.cx,r=e.className,o=Vd(e);o.data;var a=Od(o,["data"]);return wd("div",Wf({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 wd("div",Wf({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 wd("span",Wf({},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=Vd(e),a=o.innerRef,i=o.isDisabled,s=o.isHidden,l=Od(o,["innerRef","isDisabled","isHidden"]);return wd("div",{css:r("input",e)},wd(Pd.Z,Wf({className:n({input:!0},t),inputRef:a,inputStyle:wh(s),disabled:i},l)))},LoadingIndicator:bh,Menu:function(e){var t=e.children,n=e.className,r=e.cx,o=e.getStyles,a=e.innerRef,i=e.innerProps;return wd("div",Wf({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 wd("div",Wf({css:o("menuList",e),className:r({"menu-list":!0,"menu-list--is-multi":s},n),ref:i},a),t)},MenuPortal:uh,LoadingMessage:ah,NoOptionsMessage:oh,MultiValue:kh,MultiValueContainer:Eh,MultiValueLabel:Sh,MultiValueRemove:function(e){var t=e.children,n=e.innerProps;return wd("div",n,t||wd(ph,{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 wd("div",Wf({css:o("option",e),className:r({option:!0,"option--is-disabled":a,"option--is-focused":i,"option--is-selected":s},n),ref:l},u),t)},Placeholder:function(e){var t=e.children,n=e.className,r=e.cx,o=e.getStyles,a=e.innerProps;return wd("div",Wf({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 wd("div",Wf({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 wd("div",Wf({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 wd("div",Wf({css:i("valueContainer",e),className:r({"value-container":!0,"value-container--is-multi":a,"value-container--has-value":s},n)},o),t)}},Oh=Number.isNaN||function(e){return"number"==typeof e&&e!=e};function Ch(e,t){return e===t||!(!Oh(e)||!Oh(t))}function Ph(e,t){if(e.length!==t.length)return!1;for(var n=0;n<e.length;n++)if(!Ch(e[n],t[n]))return!1;return!0}for(var jh={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"},Ah=function(e){return wd("span",Wf({css:jh},e))},Ih={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.isDisabled;switch(t){case"deselect-option":case"pop-value":case"remove-value":return"option ".concat(r,", deselected.");case"select-option":return"option ".concat(r,o?" is disabled. Select another option.":", selected.");default:return""}},onFocus:function(e){var t=e.context,n=e.focused,r=void 0===n?{}:n,o=e.options,a=e.label,i=void 0===a?"":a,s=e.selectValue,l=e.isDisabled,u=e.isSelected,c=function(e,t){return e&&e.length?"".concat(e.indexOf(t)+1," of ").concat(e.length):""};if("value"===t&&s)return"value ".concat(i," focused, ").concat(c(s,r),".");if("menu"===t){var f=l?" disabled":"",p="".concat(u?"selected":"focused").concat(f);return"option ".concat(i," ").concat(p,", ").concat(c(o,r),".")}return""},onFilter:function(e){var t=e.inputValue,n=e.resultsMessage;return"".concat(n).concat(t?" for search term "+t:"",".")}},Th=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=l.ariaLiveMessages,c=l.getOptionLabel,f=l.inputValue,p=l.isMulti,d=l.isOptionDisabled,h=l.isSearchable,m=l.menuIsOpen,v=l.options,g=l.screenReaderStatus,y=l.tabSelectsValue,b=l["aria-label"],w=l["aria-live"],x=(0,e.useMemo)((function(){return Td(Td({},Ih),u||{})}),[u]),E=(0,e.useMemo)((function(){var e,t="";if(n&&x.onChange){var r=n.option,o=n.removedValue,a=n.value,i=o||r||(e=a,Array.isArray(e)?null:e),s=Td({isDisabled:i&&d(i),label:i?c(i):""},n);t=x.onChange(s)}return t}),[n,d,c,x]),S=(0,e.useMemo)((function(){var e="",t=r||o,n=!!(r&&s&&s.includes(r));if(t&&x.onFocus){var a={focused:t,label:c(t),isDisabled:d(t),isSelected:n,options:v,context:t===r?"menu":"value",selectValue:s};e=x.onFocus(a)}return e}),[r,o,c,d,x,v,s]),k=(0,e.useMemo)((function(){var e="";if(m&&v.length&&x.onFilter){var t=g({count:a.length});e=x.onFilter({inputValue:f,resultsMessage:t})}return e}),[a,f,m,x,v,g]),_=(0,e.useMemo)((function(){var e="";if(x.guidance){var t=o?"value":m?"menu":"input";e=x.guidance({"aria-label":b,context:t,isDisabled:r&&d(r),isMulti:p,isSearchable:h,tabSelectsValue:y})}return e}),[b,r,o,p,d,h,m,x,y]),O="".concat(S," ").concat(k," ").concat(_);return wd(Ah,{"aria-live":w,"aria-atomic":"false","aria-relevant":"additions text"},i&&wd(e.Fragment,null,wd("span",{id:"aria-selection"},E),wd("span",{id:"aria-context"},O)))},Rh=[{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źẑżžẓẕƶȥɀⱬꝣ"}],Nh=new RegExp("["+Rh.map((function(e){return e.letters})).join("")+"]","g"),Mh={},Fh=0;Fh<Rh.length;Fh++)for(var Lh=Rh[Fh],Dh=0;Dh<Lh.letters.length;Dh++)Mh[Lh.letters[Dh]]=Lh.base;var zh=function(e){return e.replace(Nh,(function(e){return Mh[e]}))},Vh=function(e,t){var n;void 0===t&&(t=Ph);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}}(zh),Uh=function(e){return e.replace(/^\s+|\s+$/g,"")},Bh=function(e){return"".concat(e.label," ").concat(e.value)};function Wh(e){e.in,e.out,e.onExited,e.appear,e.enter,e.exit;var t=e.innerRef;e.emotion;var n=Od(e,["in","out","onExited","appear","enter","exit","innerRef","emotion"]);return wd("input",Wf({ref:t},n,{css:xd({label:"dummyInput",background:0,border:0,fontSize:"inherit",outline:0,padding:0,width:1,color:"transparent",left:-100,opacity:0,position:"relative",transform:"scale(0)"},"","")}))}var Hh=["boxSizing","height","overflow","paddingRight","position"],$h={boxSizing:"border-box",overflow:"hidden",position:"relative",height:"100%"};function Gh(e){e.preventDefault()}function qh(e){e.stopPropagation()}function Yh(){var e=this.scrollTop,t=this.scrollHeight,n=e+this.offsetHeight;0===e?this.scrollTop=1:n===t&&(this.scrollTop=e-1)}function Kh(){return"ontouchstart"in window||navigator.maxTouchPoints}var Qh=!("undefined"==typeof window||!window.document||!window.document.createElement),Xh=0,Zh={capture:!1,passive:!1},Jh=function(){return document.activeElement&&document.activeElement.blur()},em={name:"1kfdb0e",styles:"position:fixed;left:0;bottom:0;right:0;top:0"};function tm(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)}}),[]),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=!!Qd&&{passive:!1};"function"==typeof e.addEventListener&&e.addEventListener("wheel",p,t),"function"==typeof e.addEventListener&&e.addEventListener("touchstart",d,t),"function"==typeof e.addEventListener&&e.addEventListener("touchmove",h,t)}}),[h,d,p]),v=(0,e.useCallback)((function(e){e&&("function"==typeof e.removeEventListener&&e.removeEventListener("wheel",p,!1),"function"==typeof e.removeEventListener&&e.removeEventListener("touchstart",d,!1),"function"==typeof e.removeEventListener&&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(Qh){var t=document.body,n=t&&t.style;if(o&&Hh.forEach((function(e){var t=n&&n[e];a.current[e]=t})),o&&Xh<1){var r=parseInt(a.current.paddingRight,10)||0,i=document.body?document.body.clientWidth:0,s=window.innerWidth-i+r||0;Object.keys($h).forEach((function(e){var t=$h[e];n&&(n[e]=t)})),n&&(n.paddingRight="".concat(s,"px"))}t&&Kh()&&(t.addEventListener("touchmove",Gh,Zh),e&&(e.addEventListener("touchstart",Yh,Zh),e.addEventListener("touchmove",qh,Zh))),Xh+=1}}),[]),l=(0,e.useCallback)((function(e){if(Qh){var t=document.body,n=t&&t.style;Xh=Math.max(Xh-1,0),o&&Xh<1&&Hh.forEach((function(e){var t=a.current[e];n&&(n[e]=t)})),t&&Kh()&&(t.removeEventListener("touchmove",Gh,Zh),e&&(e.removeEventListener("touchstart",Yh,Zh),e.removeEventListener("touchmove",qh,Zh)))}}),[]);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 wd(e.Fragment,null,r&&wd("div",{onClick:Jh,css:em}),n((function(e){a(e),i(e)})))}var nm=function(e){return e.label},rm=function(e){return e.value},om={clearIndicator:vh,container:function(e){var t=e.isDisabled;return{label:"container",direction:e.isRtl?"rtl":null,pointerEvents:t?"none":null,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):null,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:mh,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.theme,r=n.spacing,o=n.colors;return{margin:r.baseUnit/2,paddingBottom:r.baseUnit/2,paddingTop:r.baseUnit/2,visibility:t?"hidden":"visible",color:o.neutral80}},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:rh,menu:function(e){var t,n=e.placement,r=e.theme,o=r.borderRadius,a=r.spacing,i=r.colors;return jd(t={label:"menu"},function(e){return e?{bottom:"top",top:"bottom"}[e]:"bottom"}(n),"100%"),jd(t,"backgroundColor",i.neutral0),jd(t,"borderRadius",o),jd(t,"boxShadow","0 0 0 1px hsla(0, 0%, 0%, 0.1), 0 4px 11px hsla(0, 0%, 0%, 0.1)"),jd(t,"marginBottom",a.menuGutter),jd(t,"marginTop",a.menuGutter),jd(t,"position","absolute"),jd(t,"width","100%"),jd(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?"ellipsis":null,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,display:"flex",paddingLeft:n.baseUnit,paddingRight:n.baseUnit,":hover":{backgroundColor:o.dangerLight,color:o.danger}}},noOptionsMessage:nh,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&&(r?i.primary:i.primary50)}}},placeholder:function(e){var t=e.theme,n=t.spacing;return{label:"placeholder",color:t.colors.neutral50,marginLeft:n.baseUnit/2,marginRight:n.baseUnit/2,position:"absolute",top:"50%",transform:"translateY(-50%)"}},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,marginLeft:r.baseUnit/2,marginRight:r.baseUnit/2,maxWidth:"calc(100% - ".concat(2*r.baseUnit,"px)"),overflow:"hidden",position:"absolute",textOverflow:"ellipsis",whiteSpace:"nowrap",top:"50%",transform:"translateY(-50%)"}},valueContainer:function(e){var t=e.theme.spacing;return{alignItems:"center",display:"flex",flex:1,flexWrap:"wrap",padding:"".concat(t.baseUnit/2,"px ").concat(2*t.baseUnit,"px"),WebkitOverflowScrolling:"touch",position:"relative",overflow:"hidden"}}},am={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}},im={"aria-live":"polite",backspaceRemovesValue:!0,blurInputOnSelect:Gd(),captureMenuScroll:!Gd(),closeMenuOnSelect:!0,closeMenuOnScroll:!1,components:{},controlShouldRenderValue:!0,escapeClearsValue:!1,filterOption:function(e,t){var n=Td({ignoreCase:!0,ignoreAccents:!0,stringify:Bh,trim:!0,matchFrom:"any"},undefined),r=n.ignoreCase,o=n.ignoreAccents,a=n.stringify,i=n.trim,s=n.matchFrom,l=i?Uh(t):t,u=i?Uh(a(e)):a(e);return r&&(l=l.toLowerCase(),u=u.toLowerCase()),o&&(l=Vh(l),u=zh(u)),"start"===s?u.substr(0,l.length)===l:u.indexOf(l)>-1},formatGroupLabel:function(e){return e.label},getOptionLabel:nm,getOptionValue:rm,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 sm(e,t,n,r){return{type:"option",data:t,isDisabled:dm(e,t,n),isSelected:hm(e,t,n),label:fm(e,t),value:pm(e,t),index:r}}function lm(e,t){return e.options.map((function(n,r){if(n.options){var o=n.options.map((function(n,r){return sm(e,n,t,r)})).filter((function(t){return cm(e,t)}));return o.length>0?{type:"group",data:n,options:o,index:r}:void 0}var a=sm(e,n,t,r);return cm(e,a)?a:void 0})).filter((function(e){return!!e}))}function um(e){return e.reduce((function(e,t){return"group"===t.type?e.push.apply(e,$f(t.options.map((function(e){return e.data})))):e.push(t.data),e}),[])}function cm(e,t){var n=e.inputValue,r=void 0===n?"":n,o=t.data,a=t.isSelected,i=t.label,s=t.value;return(!vm(e)||!a)&&mm(e,{label:i,value:s,data:o},r)}var fm=function(e,t){return e.getOptionLabel(t)},pm=function(e,t){return e.getOptionValue(t)};function dm(e,t,n){return"function"==typeof e.isOptionDisabled&&e.isOptionDisabled(t,n)}function hm(e,t,n){if(n.indexOf(t)>-1)return!0;if("function"==typeof e.isOptionSelected)return e.isOptionSelected(t,n);var r=pm(e,t);return n.some((function(t){return pm(e,t)===r}))}function mm(e,t,n){return!e.filterOption||e.filterOption(t,n)}var vm=function(e){var t=e.hideSelectedOptions,n=e.isMulti;return void 0===t?n:t},gm=1,ym=function(t){Qf(r,t);var n=Md(r);function r(e){var t;return Gf(this,r),(t=n.call(this,e)).state={ariaSelection:null,focusedOption:null,focusedValue:null,inputIsHidden:!1,isFocused:!1,selectValue:[],clearFocusValueOnUpdate:!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){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"set-value",r=arguments.length>2?arguments[2]:void 0,o=t.props,a=o.closeMenuOnSelect,i=o.isMulti;t.onInputChange("",{action:"set-value"}),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",name:a});o?t.setValue([].concat($f(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=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(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=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 Dd.apply(void 0,[t.props.classNamePrefix].concat(n))},t.getOptionLabel=function(e){return fm(t.props,e)},t.getOptionValue=function(e){return pm(t.props,e)},t.getStyles=function(e,n){var r=om[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,Td(Td({},_h),e.components);var e},t.buildCategorizedOptions=function(){return lm(t.props,t.state.selectValue)},t.getCategorizedOptions=function(){return t.props.menuIsOpen?t.buildCategorizedOptions():[]},t.buildFocusableOptions=function(){return um(t.buildCategorizedOptions())},t.getFocusableOptions=function(){return t.props.menuIsOpen?t.buildFocusableOptions():[]},t.ariaOnChange=function(e,n){t.setState({ariaSelection:Td({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){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(),e.stopPropagation()}},t.onClearIndicatorMouseDown=function(e){e&&"mousedown"===e.type&&0!==e.button||(t.clearValue(),e.stopPropagation(),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&&Ud(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=e.currentTarget.value;t.setState({inputIsHiddenAfterUpdate:!1}),t.onInputChange(n,{action:"input-change"}),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){t.menuListRef&&t.menuListRef.contains(document.activeElement)?t.inputRef.focus():(t.props.onBlur&&t.props.onBlur(e),t.onInputChange("",{action:"input-blur"}),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 vm(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"}),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||++gm),t.state.selectValue=zd(e.value),t}return Yf(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?Wd(t,Math.min(n.offsetTop+n.clientHeight-t.offsetHeight+a,t.scrollHeight)):o.top-a<r.top&&Wd(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"}),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(am):Td(Td({},am),this.props.theme):am}},{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 dm(this.props,e,t)}},{key:"isOptionSelected",value:function(e,t){return hm(this.props,e,t)}},{key:"filterOption",value:function(e,t){return mm(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=this.getComponents().Input,u=this.state.inputIsHidden,c=this.commonProps,f=o||this.getElementId("input"),p={"aria-autocomplete":"list","aria-label":this.props["aria-label"],"aria-labelledby":this.props["aria-labelledby"]};return r?e.createElement(l,Wf({},c,{autoCapitalize:"none",autoComplete:"off",autoCorrect:"off",id:f,innerRef:this.getInputRef,isDisabled:n,isHidden:u,onBlur:this.onInputBlur,onChange:this.handleInputChange,onFocus:this.onInputFocus,spellCheck:"false",tabIndex:i,form:s,type:"text",value:a},p)):e.createElement(Wh,Wf({id:f,innerRef:this.getInputRef,onBlur:this.onInputBlur,onChange:Fd,onFocus:this.onInputFocus,readOnly:!0,disabled:n,tabIndex:i,form:s,value:""},p))}},{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,Wf({},u,{key:"placeholder",isDisabled:p,isFocused:b}),m);if(d)return g.map((function(n,s){var l=n===y;return e.createElement(r,Wf({},u,{components:{Container:o,Label:a,Remove:i},isFocused:l,isDisabled:p,key:"".concat(t.getOptionValue(n)).concat(s),index:s,removeProps:{onClick:function(){return t.removeValue(n)},onTouchEnd:function(){return t.removeValue(n)},onMouseDown:function(e){e.preventDefault(),e.stopPropagation()}},data:n}),t.formatOptionLabel(n,"value"))}));if(h)return null;var w=g[0];return e.createElement(s,Wf({},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,Wf({},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,Wf({},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,Wf({},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,Wf({},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,Wf({},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,Wf({},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(eh,Wf({},f,R),(function(n){var r=n.ref,o=n.placerProps,s=o.placement,l=o.maxHeight;return e.createElement(a,Wf({},f,R,{innerRef:r,innerProps:{onMouseDown:t.onMenuMouseDown,onMouseMove:t.onMenuMouseMove},isLoading:v,placement:s}),e.createElement(tm,{captureEnabled:h,onTopArrive:C,onBottomArrive:P,lockEnabled:k},(function(n){return e.createElement(i,Wf({},f,{innerRef:function(e){t.getMenuListRef(e),n(e)},isLoading:v,maxHeight:l,focusedOption:p}),j)})))}));return S||"fixed"===E?e.createElement(s,Wf({},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(Th,Wf({},t,{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,Wf({},p,{className:s,innerProps:{id:l,onKeyDown:this.onKeyDown},isDisabled:u,isFocused:f}),this.renderLiveRegion(),e.createElement(n,Wf({},p,{innerRef:this.getControlRef,innerProps:{onMouseDown:this.onControlMouseDown,onTouchEnd:this.onControlTouchEnd},isDisabled:u,isFocused:f,menuIsOpen:c}),e.createElement(a,Wf({},p,{isDisabled:u}),this.renderPlaceholderOrValue(),this.renderInput()),e.createElement(r,Wf({},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=e.options,i=e.value,s=e.menuIsOpen,l=e.inputValue,u={};if(n&&(i!==n.value||a!==n.options||s!==n.menuIsOpen||l!==n.inputValue)){var c=zd(i),f=s?function(e,t){return um(lm(e,t))}(e,c):[],p=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,c):null,d=function(e,t){var n=e.focusedOption;return n&&t.indexOf(n)>-1?n:t[0]}(t,f);u={selectValue:c,focusedOption:d,focusedValue:p,clearFocusValueOnUpdate:!1}}var h=null!=o&&e!==n?{inputIsHidden:o,inputIsHiddenAfterUpdate:void 0}:{};return Td(Td(Td({},u),h),{},{prevProps:e})}}]),r}(e.Component);ym.defaultProps=im;var bm,wm,xm,Em={defaultInputValue:"",defaultMenuIsOpen:!1,defaultValue:null},Sm=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},km=Td({allowCreateWhileLoading:!1,createOptionPosition:"last"},{formatCreateLabel:function(e){return'Create "'.concat(e,'"')},isValidNewOption:function(e,t,n,r){return!(!e||t.some((function(t){return Sm(e,t,r)}))||n.some((function(t){return Sm(e,t,r)})))},getNewOptionData:function(e,t){return{label:t,value:e,__isNew__:!0}},getOptionValue:rm,getOptionLabel:nm}),_m=(bm=ym,xm=wm=function(t){Qf(r,t);var n=Md(r);function r(e){var t;Gf(this,r),(t=n.call(this,e)).select=void 0,t.onChange=function(e,n){var r=t.props,o=r.getNewOptionData,a=r.inputValue,i=r.isMulti,s=r.onChange,l=r.onCreateOption,u=r.value,c=r.name;if("select-option"!==n.action)return s(e,n);var f=t.state.newOption,p=Array.isArray(e)?e:[e];if(p[p.length-1]!==f)s(e,n);else if(l)l(a);else{var d=o(a,a),h={action:"create-option",name:c,option:d};s(i?[].concat($f(zd(u)),[d]):d,h)}};var o=e.options||[];return t.state={newOption:void 0,options:o},t}return Yf(r,[{key:"focus",value:function(){this.select.focus()}},{key:"blur",value:function(){this.select.blur()}},{key:"render",value:function(){var t=this,n=this.state.options;return e.createElement(bm,Wf({},this.props,{ref:function(e){t.select=e},options:n,onChange:this.onChange}))}}],[{key:"getDerivedStateFromProps",value:function(e,t){var n=e.allowCreateWhileLoading,r=e.createOptionPosition,o=e.formatCreateLabel,a=e.getNewOptionData,i=e.inputValue,s=e.isLoading,l=e.isValidNewOption,u=e.value,c=e.getOptionValue,f=e.getOptionLabel,p=e.options||[],d=t.newOption;return{newOption:d=l(i,zd(u),p,{getOptionValue:c,getOptionLabel:f})?a(i,o(i)):void 0,options:!n&&s||!d?p:"first"===r?[d].concat($f(p)):[].concat($f(p),[d])}}}]),r}(e.Component),wm.defaultProps=km,xm),Om=function(t){var n,r;return r=n=function(n){Qf(o,n);var r=Md(o);function o(){var e;Gf(this,o);for(var t=arguments.length,n=new Array(t),a=0;a<t;a++)n[a]=arguments[a];return(e=r.call.apply(r,[this].concat(n))).select=void 0,e.state={inputValue:void 0!==e.props.inputValue?e.props.inputValue:e.props.defaultInputValue,menuIsOpen:void 0!==e.props.menuIsOpen?e.props.menuIsOpen:e.props.defaultMenuIsOpen,value:void 0!==e.props.value?e.props.value:e.props.defaultValue},e.onChange=function(t,n){e.callProp("onChange",t,n),e.setState({value:t})},e.onInputChange=function(t,n){var r=e.callProp("onInputChange",t,n);e.setState({inputValue:void 0!==r?r:t})},e.onMenuOpen=function(){e.callProp("onMenuOpen"),e.setState({menuIsOpen:!0})},e.onMenuClose=function(){e.callProp("onMenuClose"),e.setState({menuIsOpen:!1})},e}return Yf(o,[{key:"focus",value:function(){this.select.focus()}},{key:"blur",value:function(){this.select.blur()}},{key:"getProp",value:function(e){return void 0!==this.props[e]?this.props[e]:this.state[e]}},{key:"callProp",value:function(e){if("function"==typeof this.props[e]){for(var t,n=arguments.length,r=new Array(n>1?n-1:0),o=1;o<n;o++)r[o-1]=arguments[o];return(t=this.props)[e].apply(t,r)}}},{key:"render",value:function(){var n=this,r=this.props;r.defaultInputValue,r.defaultMenuIsOpen,r.defaultValue;var o=Od(r,["defaultInputValue","defaultMenuIsOpen","defaultValue"]);return e.createElement(t,Wf({},o,{ref:function(e){n.select=e},inputValue:this.getProp("inputValue"),menuIsOpen:this.getProp("menuIsOpen"),onChange:this.onChange,onInputChange:this.onInputChange,onMenuClose:this.onMenuClose,onMenuOpen:this.onMenuOpen,value:this.getProp("value")}))}}]),o}(e.Component),n.defaultProps=Em,r}(_m);const Cm=Om;function Pm(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 jm=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)},Am=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(jm({postId:r,targetKeywords:a.replace(/\s/g,"")}),{headers:{"Content-Type":"application/json","X-WP-Nonce":Fr(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){Pm(a,r,o,i,s,"next",e)}function s(e){Pm(a,r,o,i,s,"throw",e)}i(void 0)}))});return function(e,n){return t.apply(this,arguments)}}(),Im=n(7739),Tm=n.n(Im);const Rm=function(t){var n=t.className,r=void 0===n?"":n;return e.createElement("span",{className:"dashicons dashicons-yes ".concat(r)})};var Nm=wp.i18n.__,Mm="canonical",Fm=function(){return e.createElement("p",null,Nm("A canonical URL is required by search engines to handle duplicate content."))},Lm=function(e){return B()(jt()(e,{key:"_seopress_robots_index"}),"value",null)};const Dm={key:Mm,title:Nm("Canonical URL","wp-seopress"),severity:function(e,t){return dn()(B()(e,[Mm,"value"],[]))?Lm(t)?"good":"high":B()(e,[Mm,"value"],[]).length>1?"high":"good"},component:function(t){var n=t.data,r=t.options,o=void 0===r?{}:r;if(dn()(B()(n,[Mm,"value"],[]))){var a=Lm(o);return e.createElement(e.Fragment,null,e.createElement(Fm,null),a&&e.createElement("p",null,e.createElement(Rm,{className:"sp-dashicons-ok"}),Nm("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(qi,{className:"sp-dashicons-not"}),Nm("This page doesn't have any canonical URL.","wp-seopress")))}var i=B()(n,[Mm,"value"],[]);return e.createElement(e.Fragment,null,e.createElement(Fm,null),e.createElement("p",null,Nm("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(qi,{className:"sp-dashicons-not"}),Nm("You must fix this. Canonical URL duplication is bad for SEO.","wp-seopress")))}},zm=[{key:0,name:"good"},{key:1,name:"low"},{key:2,name:"medium"},{key:3,name:"high"}];function Vm(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 Um(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Vm(Object(n),!0).forEach((function(t){Bm(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Vm(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Bm(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Wm=wp.i18n.__,Hm=function(e){return e.charAt(e.length-1)},$m=function(t){var n=t.type,r=Hm(n);return e.createElement(e.Fragment,null,e.createElement("p",null,e.createElement("span",{className:"sp-dashicons-ok dashicons dashicons-yes"}),Wm("Target keywords were found in Heading ".concat(r," (H").concat(r,")."),"wp-seopress")))},Gm=function(t){var n=t.data,r=t.options,o=(void 0===r?{}:r).type,a=B()(n,[o],[]),i=a.value.length,s=Hm(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," (",Wm("Heading","wp-seopress"),s,")"),e.createElement("p",null,e.createElement(qi,{className:"sp-dashicons-not"}),e.createElement("strong",null,Wm("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," (",Wm("Heading","wp-seopress"),s,")"),a.matches.length>0&&e.createElement($m,{type:o}),0===a.matches.length&&e.createElement("p",null,e.createElement(qi,{className:"sp-dashicons-not"}),Wm("None of your target keywords were found in Heading ".concat(Hm(o)," (H").concat(Hm(o),")."),"wp-seopress")),e.createElement("ul",null,a.matches.map((function(t,n){if(!Ct()(t))return 0===t.count?null:e.createElement("li",{key:"matches_heading_".concat(o,"_").concat(n)},e.createElement("span",{className:"dashicons dashicons-minus"}),Wm("".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(qi,{className:"sp-dashicons-not"}),Wm("We found ".concat(i," Heading 1 (H1) in your content."),"wp-seopress")),e.createElement("p",null,Wm("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,Wm("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)})))))},qm=function(t){return{key:t,title:Wm("Heading H".concat(Hm(t)),"wp-seopress"),severity:function(e,n){return function(e,t){var n=t.type,r=B()(e,[n,"matches"],[]),o=B()(e,[n,"value"],[]);return(dn()(r)||dn()(o))&&"h1"===n||o.length>1&&"h1"===n?"high":dn()(r)&&"h3"===n?"low":dn()(r)?"medium":"good"}(e,Um(Um({},n),{},{type:t}))},component:function(n){var r=n.data,o=n.options,a=void 0===o?{}:o;return e.createElement(Gm,{data:r,options:Um(Um({},a),{},{type:t})})}}},Ym=[qm("h1"),qm("h2"),qm("h3")];const Km={key:"heading",title:Wm("Headings","wp-seopress"),severity:function(e,t){var n=0;return Ym.map((function(r){var o=r.severity(e,t),a=jt()(zm,{name:o});a.key>n&&(n=a.key)})),jt()(zm,{key:n}).name},items:Ym};var Qm=n(9995),Xm=n.n(Qm),Zm=wp.i18n.__,Jm="images";const ev={key:Jm,title:Zm("Alternative texts of images","wp-seopress"),severity:function(e,t){var n=B()(e,[Jm,"value"],[]);return dn()(n)?"medium":Xm()(n,(function(e){return!dn()(e.alt)})).true!=n.length?"high":"good"},component:function(t){var n=t.data,r=(t.options,B()(n,[Jm,"value"],[]));return dn()(r)?e.createElement(e.Fragment,null,e.createElement("p",null,e.createElement(qi,{className:"sp-dashicons-not"}),Zm("We could not find any image in your content. Content with media is a plus for your SEO.","wp-seopress"))):Xm()(r,(function(e){return!dn()(e.alt)})).true===r.length?e.createElement(e.Fragment,null,e.createElement("p",null,e.createElement(Rm,{className:"sp-dashicons-ok"}),Zm("All alternative tags are filled in. Good work!","wp-seopress"))):e.createElement(e.Fragment,null,e.createElement("p",null,e.createElement(qi,{className:"sp-dashicons-not"}),Zm("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 dn()(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,Zm("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 tv=wp.i18n.__,nv="internal_links";const rv={key:nv,title:tv("Internal Links","wp-seopress"),severity:function(e,t){var n=B()(e,[nv,"value"],[]);return dn()(n)?"medium":"good"},component:function(t){var n=t.data,r=(t.options,B()(n,[nv,"value"],[]));return e.createElement(e.Fragment,null,e.createElement("p",null,tv("Internal links are important for SEO and user experience. Always try to link your content together, with quality link anchors.")),dn()(r)&&e.createElement("p",null,e.createElement(qi,{className:"sp-dashicons-not"}),tv("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")),!dn()(r)&&e.createElement(e.Fragment,null,e.createElement("p",null,tv("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 ov=wp.i18n.__,av="description",iv=function(e){return jt()(e,{key:av})},sv=function(e){return B()(iv(e),"value","")};const lv={key:av,title:ov("Meta description","wp-seopress"),severity:function(e,t){if(!Ct()(iv(t))&&dn()(sv(t)))return"medium";if(sv(t).length>160)return"medium";var n=B()(e,[av,"matches"],[]);return dn()(n)?"low":"good"},component:function(t){var n=t.data,r=t.options,o=void 0===r?{}:r;if(!Ct()(iv(o))&&dn()(sv(o)))return e.createElement("p",null,e.createElement(qi,{className:"sp-dashicons-not"}),ov("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=sv(o),i=B()(n,"title"),s=B()(i,"matches",[]);return e.createElement(e.Fragment,null," ",!dn()(s)&&e.createElement(e.Fragment,null,e.createElement("p",null,e.createElement(Rm,{className:"sp-dashicons-ok"}),ov("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"}),ov("".concat(t.key," was found ").concat(t.count," times."),"wp-seopress"))})))),dn()(s)&&e.createElement("p",null,e.createElement(qi,{className:"sp-dashicons-not"}),ov("None of your target keywords were found in the Meta description.","wp-seopress")),a.length>160&&e.createElement("p",null,e.createElement(qi,{className:"sp-dashicons-not"}),ov("You custom meta description is too long.","wp-seopress")),a.length<=160&&e.createElement("p",null,e.createElement(Rm,{className:"sp-dashicons-ok"}),ov("The length of your meta description is correct","wp-seopress")))}};var uv=wp.i18n.__,cv="meta_robots",fv=function(){return e.createElement(e.Fragment,null,e.createElement("p",null,e.createElement(Rm,{className:"sp-dashicons-ok"}),e.createElement("strong",null,"noimageindex")," ",uv("is off. Google will index the images on this page.","wp-seopress")),e.createElement("p",null,e.createElement(Rm,{className:"sp-dashicons-ok"}),e.createElement("strong",null,"nositelinkssearchbox")," ",uv("is off. Google will probably display a sitelinks searchbox in search results.","wp-seopress")))};const pv={key:cv,title:uv("Meta robots","wp-seopress"),severity:function(e,t){var n=B()(e,[cv,"value"],[]);if(!dn()(n)&&n.length>1)return"high";if(dn()(n))return"good";var r=L()(n);if(!Ct()(r.match("noindex")))return"high";if(!Ct()(r.match("nofollow")))return"high";if(!Ct()(r.match("noarchive")))return"medium";if(!Ct()(r.match("nosnippet")))return"medium";var o=B()(e,["meta_google","value"],[]);if(dn()(o))return"good";var a=L()(o);return Ct()(a.match("noimageindex"))?Ct()(a.match("nositelinkssearchbox"))?"good":"medium":"high"},component:function(t){var n=t.data,r=(t.options,B()(n,[cv,"value"],[])),o=B()(n,["meta_google","value"],[]);if(dn()(r)&&r.length>1)return e.createElement(e.Fragment,null,e.createElement("p",null,e.createElement(Rm,{className:"sp-dashicons-ok"}),uv("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")),dn()(o)&&e.createElement(fv,null));var a=L()(r),i=a.match("noindex"),s=a.match("nofollow"),l=a.match("noarchive"),u=a.match("nosnippet"),c=null,f=null;if(!dn()(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(qi,{className:"sp-dashicons-not"}),uv("We found ".concat(r.length," meta robots in your page. There is probably something wrong with your theme!"),"wp-seopress")),!Ct()(i)&&e.createElement("p",null,e.createElement(qi,{className:"sp-dashicons-not"}),e.createElement("strong",null,"noindex")," ",uv("is on! Search engines can't index this page.","wp-seopress")),Ct()(i)&&e.createElement("p",null,e.createElement(Rm,{className:"sp-dashicons-ok"}),e.createElement("strong",null,"noindex")," ",uv("is off. Search engines will index this page.","wp-seopress")),!Ct()(s)&&e.createElement("p",null,e.createElement(qi,{className:"sp-dashicons-not"}),e.createElement("strong",null,"nofollow")," ",uv("is on! Search engines can't follow your links on this page.","wp-seopress")),Ct()(s)&&e.createElement("p",null,e.createElement(Rm,{className:"sp-dashicons-ok"}),e.createElement("strong",null,"nofollow")," ",uv("is off. Search engines will follow links on this page.","wp-seopress")),!Ct()(l)&&e.createElement("p",null,e.createElement(qi,{className:"sp-dashicons-not"}),e.createElement("strong",null,"noarchive")," ",uv("is on! Search engines will not cache your page.","wp-seopress")),Ct()(l)&&e.createElement("p",null,e.createElement(Rm,{className:"sp-dashicons-ok"}),e.createElement("strong",null,"noarchive")," ",uv("is off. Search engines will probably cache your page.","wp-seopress")),!Ct()(u)&&e.createElement("p",null,e.createElement(qi,{className:"sp-dashicons-not"}),e.createElement("strong",null,"nosnippet")," ",uv("is on! Search engines will not display a snippet of this page in search results.","wp-seopress")),Ct()(u)&&e.createElement("p",null,e.createElement(Rm,{className:"sp-dashicons-ok"}),e.createElement("strong",null,"nosnippet")," ",uv("is off. Search engines will display a snippet of this page in search results.","wp-seopress")),dn()(o)&&e.createElement(fv,null),!dn()(o)&&e.createElement(e.Fragment,null,!Ct()(c)&&e.createElement("p",null,e.createElement(qi,{className:"sp-dashicons-not"}),e.createElement("strong",null,"noimageindex")," ",uv("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")),Ct()(c)&&e.createElement("p",null,e.createElement(Rm,{className:"sp-dashicons-ok"}),e.createElement("strong",null,"noimageindex")," ",uv("is off. Google will index the images on this page.","wp-seopress")),!Ct()(f)&&e.createElement("p",null,e.createElement(qi,{className:"sp-dashicons-not"}),e.createElement("strong",null,"nositelinkssearchbox")," ",uv("is on! Google will not display a sitelinks searchbox in search results.","wp-seopress")),Ct()(f)&&e.createElement("p",null,e.createElement(Rm,{className:"sp-dashicons-ok"}),e.createElement("strong",null,"nositelinkssearchbox")," ",uv("is off. Google will probably display a sitelinks searchbox in search results.","wp-seopress"))))}};var dv=wp.i18n.__,hv="title",mv=function(e){return jt()(e,{key:hv})},vv=function(e){return B()(mv(e),"value","")};const gv={key:hv,title:dv("Meta title","wp-seopress"),severity:function(e,t){if(!Ct()(mv(t))&&dn()(vv(t)))return"medium";if(vv(t).length>65)return"medium";var n=B()(e,[hv,"matches"],[]);return dn()(n)?"medium":"good"},component:function(t){var n=t.data,r=t.options,o=void 0===r?{}:r;if(!Ct()(mv(o))&&dn()(vv(o)))return e.createElement("p",null,e.createElement(qi,{className:"sp-dashicons-not"}),dv("No custom title is set for this post. If the global meta title suits you, you can ignore this recommendation.","wp-seopress"));var a=vv(o),i=B()(n,"title"),s=B()(i,"matches",[]);return e.createElement(e.Fragment,null,!dn()(s)&&e.createElement(e.Fragment,null,e.createElement("p",null,e.createElement(Rm,{className:"sp-dashicons-ok"}),dv("Target keywords were found in the Meta Title.","wp-seopress")),e.createElement("ul",null,s.map((function(t,n){return e.c
|
1 |
/*! For license information please see metaboxe.js.LICENSE.txt */
|
|