From 9b7ed7e434bd43d4c7fb8322b062fefc8414010f Mon Sep 17 00:00:00 2001 From: poojabhimani12 <82029773+poojabhimani12@users.noreply.github.com> Date: Tue, 23 Jul 2024 15:59:46 +0530 Subject: [PATCH] Upload Version4.6 --- .../js/comenting-block-deactive-free.js | 155 ++++++--- admin/assets/js/commenting-block-admin.js | 294 ++++++++++-------- .../js/dist/activityCentre.build.min.js | 35 +-- admin/assets/js/dist/block.build.min.js | 47 ++- admin/assets/js/dist/editorStyle.js | 1 - admin/assets/js/dist/frontStyle.js | 1 - .../js/dist/styles/editorStyle.build.min.css | 2 +- admin/assets/scss/_comment_activity.scss | 80 +++-- admin/assets/scss/_common.scss | 38 ++- .../scss/_dashboard_activities_table.scss | 10 + admin/assets/scss/_deactivate_popup.scss | 49 ++- .../assets/scss/_email_mentioning_popup.scss | 6 + admin/assets/scss/_floating_button.scss | 3 +- admin/assets/scss/_post_comment.scss | 2 + admin/assets/scss/_segit.scss | 7 + .../classes/class-commenting-block-admin.php | 55 +++- .../commenting-block-admin-deactive-free.php | 77 +++-- .../commenting-block-settings-page.php | 8 +- .../frontend-guest-access-request-page.php | 2 +- commenting-block.php | 4 +- includes/class-commenting-block.php | 3 +- readme.txt | 11 +- 22 files changed, 570 insertions(+), 320 deletions(-) diff --git a/admin/assets/js/comenting-block-deactive-free.js b/admin/assets/js/comenting-block-deactive-free.js index e09e288a..a1855277 100644 --- a/admin/assets/js/comenting-block-deactive-free.js +++ b/admin/assets/js/comenting-block-deactive-free.js @@ -1,15 +1,37 @@ jQuery(function ($) { $(document).ready(function () { - $(document).on('click', '[data-plugin="' + multicollab_plugin_path.plugin_path + '"] .deactivate a', function () { - var snooze_free_deactivate_popup = getCookieDeactive("snooze_free_deactivate_popup"); + $(document).on('click', '[data-plugin="' + multicollab_plugin_path.plugin_path + '"] span.deactivate a', function () { + var snooze_free_deactivate_popup = getCookieName("snooze_free_deactivate_popup"); if( 'yes' !== snooze_free_deactivate_popup ) { - jQuery('#cf_plugin_deacmodal').addClass('cf_plugin_deacmodal cf_plugin_freedeacmodal cf_visible'); + jQuery('.modal-dialog input:radio').prop('checked', false); + jQuery('#cf_plugin_deacmodal').addClass('cf_plugin_deacmodal cf_visible'); return false; } }); + + $('#step-1 input[type=radio][name=fs_deactive_free_plugin_step1]').change(function() { + if (this.value == 'yes') { + const settingsData = { + 'action': 'cf_deactive_plugin_free', + 'first_option_value': 'yes', + }; + $.post(ajaxurl, settingsData, function (success) { // eslint-disable-line + if ( 'success' === success ) { + location.reload(); + } + }); + } + else if (this.value == 'no') { + document.querySelector( '.modal-dialog #step-1' ).style.display = 'none'; + document.querySelector( '.modal-dialog #step-2' ).style.display = 'block'; + document.querySelector( '.modal-dialog .modal-footer' ).style.display = 'block'; + document.querySelector( '.modal-dialog .modal-header .modal-title' ).innerHTML = 'What was the primary reason for deactivating Multicollab?'; + } + }); + $(document).on('click', '.modal-footer .btn-cancel', function () { jQuery('#cf_plugin_deacmodal').removeClass('cf_visible'); jQuery('input[name="fs_deactive_free_plugin"]:checked').prop('checked', false); @@ -18,6 +40,17 @@ jQuery(function ($) { jQuery('.snooze_option_period').hide(); jQuery('.modal-footer .btn-primary').removeClass('btn-active'); jQuery('.modal-footer .btn-primary').text( 'Submit & Deactivate' ); + + document.querySelector( '.modal-dialog #step-1' ).style.display = 'block'; + document.querySelector( '.modal-dialog #step-2' ).style.display = 'none'; + document.querySelector( '.modal-dialog #step-3' ).style.display = 'none'; + document.querySelector( '.modal-dialog .modal-footer' ).style.display = 'none'; + + jQuery('.modal-dialog input:radio').prop('checked', false); + + jQuery( '.fs_feedback_message_1' ).hide(); + jQuery( '.fs_feedback_message_2' ).hide(); + jQuery( '.fs_feedback_message_3' ).hide(); }); $('#snooze_option_checkbox').change(function() { @@ -34,28 +67,45 @@ jQuery(function ($) { }); $('input[name=fs_deactive_free_plugin]').change(function () { - jQuery('.modal-footer .btn-primary').addClass('btn-active'); + //jQuery('.modal-footer .btn-primary').addClass('btn-active'); var subscriptionOption = $('input[name="fs_deactive_free_plugin"]:checked').val(); var fs_feedback_message = ''; - if( 'Missing a few important features.' === subscriptionOption ) { + if( 'Lack of essential features' === subscriptionOption ) { jQuery( '.feedback_message' ).val(''); jQuery( '.feedback_message' ).attr('disabled', true); jQuery( '.fs_feedback_message_1' ).attr('disabled', false); - } else if( "I found a better plugin." === subscriptionOption ) { + jQuery( '.fs_feedback_message_1' ).show(); + jQuery( '.fs_feedback_message_2' ).hide(); + jQuery( '.fs_feedback_message_3' ).hide(); + jQuery('.modal-footer .btn-primary').removeClass('btn-active'); + } else if( "Found a better plugin" === subscriptionOption ) { jQuery( '.feedback_message' ).val(''); jQuery( '.feedback_message' ).attr('disabled', true); jQuery( '.fs_feedback_message_2' ).attr('disabled', false); - } else if( 'Something else.' === subscriptionOption ) { + jQuery( '.fs_feedback_message_2' ).show(); + jQuery( '.fs_feedback_message_1' ).hide(); + jQuery( '.fs_feedback_message_3' ).hide(); + jQuery('.modal-footer .btn-primary').removeClass('btn-active'); + } else if( 'Something else' === subscriptionOption ) { jQuery( '.feedback_message' ).val(''); jQuery( '.feedback_message' ).attr('disabled', true); jQuery( '.fs_feedback_message_3' ).attr('disabled', false); + jQuery( '.fs_feedback_message_3' ).show(); + jQuery( '.fs_feedback_message_1' ).hide(); + jQuery( '.fs_feedback_message_2' ).hide(); + jQuery('.modal-footer .btn-primary').removeClass('btn-active'); } else { jQuery( '.feedback_message' ).val(''); jQuery( '.feedback_message' ).attr('disabled', true); + jQuery( '.fs_feedback_message_1' ).hide(); + jQuery( '.fs_feedback_message_2' ).hide(); + jQuery( '.fs_feedback_message_3' ).hide(); + + jQuery('.modal-footer .btn-primary').addClass('btn-active'); } - if( "It's a temporary deactivation - I'm troubleshooting an issue." === subscriptionOption ) { + if( "It's temporary deactivation - troubleshooting an issue" === subscriptionOption ) { jQuery('.snooze_option_section').show(); } else { jQuery('.snooze_option_section').hide(); @@ -63,41 +113,69 @@ jQuery(function ($) { }); + $('.feedback_message').on('keyup keypress', function(e) { + if($(this).val().length >0) { + jQuery('.modal-footer .btn-primary').addClass('btn-active'); + } else { + jQuery('.modal-footer .btn-primary').removeClass('btn-active'); + } + + }); - $(document).on('click', '.modal-footer .btn-active', function (event) { - event.preventDefault(); - if ( $('.snooze_option_checkbox').is(':checked') ) { - var cookieTime = jQuery('.snooze_option_period').val(); - setCookie( 'snooze_free_deactivate_popup', "yes", parseInt(cookieTime)); - } + $(document).on('click', '.free_plugin_deactivate_step3', function (event) { + + var free_plugin_deactivate_step3 = jQuery(this).attr('data-value'); + if( free_plugin_deactivate_step3 ) { + var subscriptionOption = $('input[name="fs_deactive_free_plugin"]:checked').val(); + var fs_feedback_message = ''; + if( 'Lack of essential features' === subscriptionOption ) { + fs_feedback_message = $('.fs_feedback_message_1').val(); + } else if( "Found a better plugin" === subscriptionOption ) { + fs_feedback_message = $('.fs_feedback_message_2').val(); + } else if( 'Something else' === subscriptionOption ) { + fs_feedback_message = $('.fs_feedback_message_3').val(); + } + + if ( $('.snooze_option_checkbox').is(':checked') ) { + var cookieTime = jQuery('.snooze_option_period').val(); + setCookieName( 'snooze_free_deactivate_popup', "yes", parseInt(cookieTime)); + } + + const settingsData = { + 'action': 'cf_deactive_plugin_free', + 'subscription_option': subscriptionOption, + 'fs_feedback_message': fs_feedback_message, + 'free_plugin_deactivate_step3': free_plugin_deactivate_step3, + }; + $.post(ajaxurl, settingsData, function (success) { // eslint-disable-line + if ( 'success' === success ) { + location.reload(); + } + }); + - var subscriptionOption = $('input[name="fs_deactive_free_plugin"]:checked').val(); - var fs_feedback_message = ''; - if( 'Missing a few important features.' === subscriptionOption ) { - fs_feedback_message = $('.fs_feedback_message_1').val(); - } else if( "I found a better plugin." === subscriptionOption ) { - fs_feedback_message = $('.fs_feedback_message_2').val(); - } else if( 'Something else.' === subscriptionOption ) { - fs_feedback_message = $('.fs_feedback_message_3').val(); } + - const settingsData = { - 'action': 'cf_deactive_plugin_free', - 'subscription_option': subscriptionOption, - 'fs_feedback_message': fs_feedback_message - }; - $.post(ajaxurl, settingsData, function (success) { // eslint-disable-line - if ( 'success' === success ) { - location.reload(); - } - }); + + }); + + $(document).on('click', '.modal-footer .btn-active', function (event) { + event.preventDefault(); + + document.querySelector( '.modal-dialog #step-3' ).style.display = 'block'; + + document.querySelector( '.modal-dialog #step-1' ).style.display = 'none'; + document.querySelector( '.modal-dialog #step-2' ).style.display = 'none'; + document.querySelector( '.modal-dialog .modal-footer' ).style.display = 'none'; + document.querySelector( '.modal-dialog .modal-header .modal-title' ).innerHTML = 'How would you rate your overall experience with Multicollab?'; }); }); }); -function getCookieDeactive(name) { +function getCookieName(name) { var nameEQ = name + "="; var ca = document.cookie.split(';'); for (var i = 0; i < ca.length; i++) { @@ -108,14 +186,7 @@ function getCookieDeactive(name) { return null; } -/** - * Sets a cookie with the given name, value and expiration time in minutes. - * - * @param {string} name - The name of the cookie to set. - * @param {string} value - The value to set for the cookie. - * @param {number} minutes - The expiration time for the cookie in minutes. - */ -function setCookie(name, value, minutes) { +function setCookieName(name, value, minutes) { var expires = ""; if (minutes) { var date = new Date(); @@ -123,4 +194,4 @@ function setCookie(name, value, minutes) { expires = "; expires=" + date.toUTCString(); } document.cookie = name + "=" + (value || "") + expires + "; path=/"; -} +} \ No newline at end of file diff --git a/admin/assets/js/commenting-block-admin.js b/admin/assets/js/commenting-block-admin.js index 76a8390e..6d329e25 100644 --- a/admin/assets/js/commenting-block-admin.js +++ b/admin/assets/js/commenting-block-admin.js @@ -15,6 +15,12 @@ * */ + window.process = { + env: { + NODE_ENV: 'development', + }, + }; + /* Trigger to close sidebar on post editor focus */ window.addEventListener('click', function (e) { if (jQuery('.edit-post-layout').hasClass('is-sidebar-opened')) { @@ -413,134 +419,9 @@ $(document).ready(function () { // Editor layout width changes sidebar multicollab btn click @author: Minal Diwan @since-3.3 - $(document).on('click', '.interface-pinned-items .components-button,.edit-post-header-toolbar__inserter-toggle', function (e) { - setTimeout(function () { - var ediLayot = document.querySelector(".editor-styles-wrapper"); - var cmntLayout = document.querySelector("#cf-comments-suggestions__parent"); - var ediLayotWidth = ediLayot?.offsetWidth; - var cmntLyotWidth = cmntLayout?.offsetWidth; - var calcLyotWidth = ediLayotWidth - cmntLyotWidth; - var editSidebarchck = document.querySelector(".edit-post-layout"); - var blockinsertchck = document.querySelector(".interface-interface-skeleton__body"); - const firstChild = blockinsertchck?.firstElementChild; - const elid = $('#cf-span__comments').find('.cls-board-outer.focus').attr('id'); - let topOfText; - function mdboardOffset() { - setTimeout(function () { - var totalOpenBoardsIds = document.querySelectorAll('.cls-board-outer.is-open'); - if (totalOpenBoardsIds.length >= 2) { - - let topOfTextSingleBoardSuggestion; - let topOfTextSingleBoardComment; - let SuggestionBoardOuterHeight; - let singleBoardIdSuggestion; - let singleBoardIdComment; - let combineBoardId; - let counter = 0; - let FirstsingleBoardIdSuggestion; - let FirstSuggestionBoardOuterHeight; - - for (var i = 0; i < totalOpenBoardsIds.length; ++i) { - var singleBoardId = totalOpenBoardsIds[i].id; - if (undefined !== singleBoardId) { - if (singleBoardId.match(/^el/m) === null) { - topOfTextSingleBoardSuggestion = $('#' + singleBoardId + '').offset().top; - singleBoardIdSuggestion = 'sg' + singleBoardId; - if (counter === 0) { - FirstsingleBoardIdSuggestion = 'sg' + singleBoardId; - } - combineBoardId = 'sg' + singleBoardId; - counter++; - } else { - topOfTextSingleBoardComment = $('[datatext="' + singleBoardId + '"]').offset().top; - singleBoardIdComment = singleBoardId; - combineBoardId = singleBoardId; - } - } - if (FirstsingleBoardIdSuggestion) { - FirstSuggestionBoardOuterHeight = document.querySelector('#' + FirstsingleBoardIdSuggestion)?.offsetHeight; - } - $('#' + combineBoardId).css('opacity', '1'); - $('#' + combineBoardId).addClass('is-open'); - $('#' + combineBoardId).addClass('focus onGoing'); - - } - - if (document.querySelector('#' + singleBoardIdSuggestion)) { - SuggestionBoardOuterHeight = document.querySelector('#' + singleBoardIdSuggestion).offsetHeight; - $('#' + singleBoardIdSuggestion).offset({ top: topOfTextSingleBoardSuggestion }); - - // Add floating board adjustment for multi-suggestion. @author: Rishi Shah @since: 3.4 - if (2 === counter && FirstsingleBoardIdSuggestion) { - $('#' + FirstsingleBoardIdSuggestion).offset({ top: topOfTextSingleBoardSuggestion }); - $('#' + singleBoardIdSuggestion).offset({ top: topOfTextSingleBoardSuggestion + FirstSuggestionBoardOuterHeight + 20 }); - } - if (false === $('#' + singleBoardIdComment + ', .board').hasClass('fresh-board')) { - if (2 === counter && FirstsingleBoardIdSuggestion) { - $('#' + singleBoardIdComment).offset({ top: topOfTextSingleBoardSuggestion + SuggestionBoardOuterHeight + FirstSuggestionBoardOuterHeight + 40 }); - } else { - $('#' + singleBoardIdComment).offset({ top: topOfTextSingleBoardSuggestion + SuggestionBoardOuterHeight + 20 }); - } - } else { - $('#' + singleBoardIdComment).offset({ top: topOfTextSingleBoardSuggestion }); - } - // Adding sg-format-class class on selected text. @author: Minal Diwan @since: 3.4 - //$('#' + singleBoardId).addClass('sg-format-class'); - var underlineAllAttr = document.querySelectorAll('[data-rich-text-format-boundary="true"]'); - if (underlineAllAttr) { - for (var singleElement = 0; singleElement < underlineAllAttr.length; ++singleElement) { - if (underlineAllAttr[singleElement].classList.contains('mdadded') || underlineAllAttr[singleElement].classList.contains('mdremoved')) { - if (singleBoardId !== underlineAllAttr[singleElement].id) { - jQuery('#' + underlineAllAttr[singleElement].id).attr('data-rich-text-format-boundary', false); - } else { - jQuery('#' + underlineAllAttr[singleElement].id).attr('data-rich-text-format-boundary', true); - } - } else if (underlineAllAttr[singleElement].parentNode.classList.contains('mdmodified')) { - if (singleBoardId !== underlineAllAttr[singleElement].parentNode.id) { - jQuery('#' + underlineAllAttr[singleElement].parentNode.id).children().attr('data-rich-text-format-boundary', false); - } else { - jQuery('#' + underlineAllAttr[singleElement].parentNode.id).children().attr('data-rich-text-format-boundary', true); - } - } else if (underlineAllAttr[singleElement].classList.contains('mdspan-comment')) { - var suggestionId = underlineAllAttr[singleElement].getAttribute('datatext'); - if (singleBoardId !== suggestionId) { - jQuery('[datatext="' + suggestionId + '"]').attr('data-rich-text-format-boundary', false); - } else { - jQuery('[datatext="' + suggestionId + '"]').attr('data-rich-text-format-boundary', true); - } - - } - } - } - scrollBoardToPosition(topOfTextSingleBoardSuggestion); - } - } else { - if ($('#cf-span__comments').find('.cls-board-outer').hasClass('focus')) { - if (elid && elid.match(/^el/m) !== null) { - topOfText = $('[datatext="' + elid + '"]').offset().top; - } else { - let sid = $('#' + elid).attr('data-sid'); - topOfText = $('[id="' + sid + '"]').offset()?.top; - if (!topOfText) { - topOfText = $('[suggestion_id="' + sid + '"]').offset()?.top; - } - } - $('#cf-span__comments').find('.cls-board-outer.focus').offset({ top: topOfText }); - scrollBoardToPosition(topOfText); - } - } - - }, 800); - } - if (editSidebarchck?.classList?.contains('is-sidebar-opened') || firstChild) { - mdboardOffset(); - document.querySelector(".is-root-container.block-editor-block-list__layout").style.width = calcLyotWidth + "px"; - } else { - mdboardOffset(); - document.querySelector(".is-root-container.block-editor-block-list__layout").style.width = calcLyotWidth + "px"; - } - }, 100); - }); + $(document).on('click', '.interface-pinned-items .components-button,.edit-post-header-toolbar__inserter-toggle,.editor-document-tools__inserter-toggle', function (e) { + setTimeout(handleEditorLayoutChange, 200); + }); // Add loader on setting page loading. @author: Rishi @since-3.0 $(".cf_settings_loader").delay(100).fadeOut("slow"); @@ -1131,7 +1012,6 @@ caretPos = range.endOffset; }else if (range.commonAncestorContainer.ownerDocument.activeElement === editableDiv) { - console.log('sel', sel.focusOffset); caretPos = sel.focusOffset; } } @@ -1500,6 +1380,18 @@ } }) } + // resolved git issue #920 @author: Nirav Soni / since 4.6. + if (sel.rangeCount > 0) { + var range = sel.getRangeAt(0); + if (range.startContainer.nodeType === Node.TEXT_NODE) { + var parent = range.startContainer.parentElement; + if (parent.tagName.toLowerCase() === 'a' && parent.className === 'js-mentioned') { + while (parent.firstChild) { + parent.removeChild(parent.firstChild); + } + } + } + } } if ((32 === e.which) || (13 === e.which) || (8 === e.which)) { @@ -2967,7 +2859,7 @@ function displaySuggestionBoards() { function createCommentNode() { var parentNode = document.createElement('div'); parentNode.setAttribute("id", 'cf-comments-suggestions__parent'); - var referenceNode = document.querySelector('.block-editor-writing-flow'); + var referenceNode = document.querySelector('.edit-post-visual-editor'); if (null !== referenceNode) { referenceNode.appendChild(parentNode); var commentNode = document.createElement('div'); @@ -3073,6 +2965,7 @@ function fetchBoardsCommonCode() { var singleBoardId = selectedText; let topOfTextSingleBoard; let singleBoardIdWithSg; + if(undefined !== singleBoardId ){ if (singleBoardId.match(/^el/m) === null) { @@ -3091,6 +2984,7 @@ function fetchBoardsCommonCode() { // Add active class on activity bar. @author: Rishi Shah @since: 3.4 jQuery(`#cf-sg${singleBoardId}`).addClass('active'); + } else { topOfTextSingleBoard = jQuery('[datatext="' + singleBoardId + '"]').offset().top; singleBoardIdWithSg = singleBoardId; @@ -3165,4 +3059,144 @@ function nonTextNoticeMsg() { .setAttribute("style", "display:none"); document.getElementById("cf-board__notice").innerHTML = ""; }, 3000); +} + +//Calculated layout width function @ Minal Diwan +function mdboardOffset() { + const elid = jQuery('#cf-span__comments').find('.cls-board-outer.focus').attr('id'); + setTimeout(function () { + + const totalOpenBoardsIds = document.querySelectorAll('.cls-board-outer.focus'); + let counter = 0; + + if (totalOpenBoardsIds.length >= 2 ) { + let topOfTextSingleBoardSuggestion; + let topOfTextSingleBoardComment; + let SuggestionBoardOuterHeight; + let singleBoardIdSuggestion; + let singleBoardIdComment; + let combineBoardId; + let FirstsingleBoardIdSuggestion; + let FirstSuggestionBoardOuterHeight; + + totalOpenBoardsIds.forEach(board => { + const singleBoardId = board.id; + if (singleBoardId) { + if (singleBoardId.match(/^el/m) === null) { + topOfTextSingleBoardSuggestion = jQuery('#' + singleBoardId).offset().top; + singleBoardIdSuggestion = 'sg' + singleBoardId; + if (counter === 0) { + FirstsingleBoardIdSuggestion = 'sg' + singleBoardId; + } + combineBoardId = 'sg' + singleBoardId; + counter++; + } else { + topOfTextSingleBoardComment = jQuery('[datatext="' + singleBoardId + '"]').offset().top; + singleBoardIdComment = singleBoardId; + combineBoardId = singleBoardId; + } + jQuery('#' + combineBoardId).css('opacity', '1').addClass('is-open focus onGoing'); + } + if (FirstsingleBoardIdSuggestion) { + FirstSuggestionBoardOuterHeight = document.querySelector('#' + FirstsingleBoardIdSuggestion)?.offsetHeight; + } + }); + + if (document.querySelector('#' + singleBoardIdSuggestion)) { + SuggestionBoardOuterHeight = document.querySelector('#' + singleBoardIdSuggestion).offsetHeight; + jQuery('#' + singleBoardIdSuggestion).offset({ top: topOfTextSingleBoardSuggestion }); + + // Add floating board adjustment for multi-suggestion. @author: Rishi Shah @since: 3.4 + if (counter === 2 && FirstsingleBoardIdSuggestion) { + jQuery('#' + FirstsingleBoardIdSuggestion).offset({ top: topOfTextSingleBoardSuggestion }); + jQuery('#' + singleBoardIdSuggestion).offset({ top: topOfTextSingleBoardSuggestion + FirstSuggestionBoardOuterHeight + 20 }); + } + + if (!jQuery('#' + singleBoardIdComment + ', .board').hasClass('fresh-board')) { + if (counter === 2 && FirstsingleBoardIdSuggestion) { + jQuery('#' + singleBoardIdComment).offset({ top: topOfTextSingleBoardSuggestion + SuggestionBoardOuterHeight + FirstSuggestionBoardOuterHeight + 40 }); + } else { + jQuery('#' + singleBoardIdComment).offset({ top: topOfTextSingleBoardSuggestion + SuggestionBoardOuterHeight + 20 }); + } + } else { + jQuery('#' + singleBoardIdComment).offset({ top: topOfTextSingleBoardSuggestion }); + } + + document.querySelectorAll('[data-rich-text-format-boundary="true"]').forEach(attr => { + if (attr.classList.contains('mdadded') || attr.classList.contains('mdremoved')) { + const id = attr.id; + if (singleBoardId !== id) { + jQuery('#' + id).attr('data-rich-text-format-boundary', false); + } else { + jQuery('#' + id).attr('data-rich-text-format-boundary', true); + } + } else if (attr.parentNode.classList.contains('mdmodified')) { + const id = attr.parentNode.id; + if (singleBoardId !== id) { + jQuery('#' + id).children().attr('data-rich-text-format-boundary', false); + } else { + jQuery('#' + id).children().attr('data-rich-text-format-boundary', true); + } + } else if (attr.classList.contains('mdspan-comment')) { + const suggestionId = attr.getAttribute('datatext'); + if (singleBoardId !== suggestionId) { + jQuery('[datatext="' + suggestionId + '"]').attr('data-rich-text-format-boundary', false); + } else { + jQuery('[datatext="' + suggestionId + '"]').attr('data-rich-text-format-boundary', true); + } + } + }); + + + scrollBoardToPosition(topOfTextSingleBoardSuggestion); + } + } else if (jQuery('#cf-span__comments').find('.cls-board-outer').hasClass('focus')) { + if (elid && elid.match(/^el/m) !== null) { + topOfText = jQuery('[datatext="' + elid + '"]').offset()?.top; + } else { + const sid = jQuery('#' + elid).attr('data-sid'); + topOfText = jQuery('[id="' + sid + '"]').offset()?.top; + cfgetCustomAttribute().forEach(attrValue => { + if (!topOfText && jQuery(`[${attrValue}="${sid}"]`).length > 0) { + topOfText = jQuery(`[${attrValue}="${sid}"]`).offset()?.top; + } + }); + } + jQuery('#cf-span__comments').find('.cls-board-outer.focus').offset({ top: topOfText }); + scrollBoardToPosition(topOfText); + } + }, 800); +} + +function setContainerDimensions(width, maxWidth) { + const rootContainer = document.querySelector(".is-root-container"); + if (rootContainer) { + rootContainer.style.width = width; + rootContainer.style.maxWidth = maxWidth; + if (window.innerWidth > 680) { + rootContainer.style.minWidth = "440px"; + } + } +} + +// Function to handle layout changes +function handleEditorLayoutChange() { + const notCommentOncls = document.querySelector(".multicollab_body_class"); + var checkCommntAval = !notCommentOncls?.classList?.contains('commentOn'); + const ediLayot = document.querySelector(".editor-styles-wrapper"); + const cmntLayout = document.querySelector("#cf-comments-suggestions__parent"); + const ediLayotWidth = ediLayot?.offsetWidth; + const cmntLyotWidth = cmntLayout?.offsetWidth; + const calcLyotWidth = ediLayotWidth - cmntLyotWidth; + const editSidebarchck = document.querySelector(".edit-post-layout"); + const blockinsertchck = document.querySelector(".interface-interface-skeleton__body"); + const firstChild = blockinsertchck?.firstElementChild; + if (!checkCommntAval) { + if (editSidebarchck?.classList?.contains('is-sidebar-opened') || firstChild) { + mdboardOffset(); + setContainerDimensions(`${calcLyotWidth}px`, "unset"); + } + } else { + setContainerDimensions("auto", `${calcLyotWidth}px`); + } } \ No newline at end of file diff --git a/admin/assets/js/dist/activityCentre.build.min.js b/admin/assets/js/dist/activityCentre.build.min.js index ab112098..653da252 100644 --- a/admin/assets/js/dist/activityCentre.build.min.js +++ b/admin/assets/js/dist/activityCentre.build.min.js @@ -1,39 +1,28 @@ -!function(n){var r={};function o(e){var t;return(r[e]||(t=r[e]={i:e,l:!1,exports:{}},n[e].call(t.exports,t,t.exports,o),t.l=!0,t)).exports}o.m=n,o.c=r,o.d=function(e,t,n){o.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.t=function(t,e){if(1&e&&(t=o(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var n=Object.create(null);if(o.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var r in t)o.d(n,r,function(e){return t[e]}.bind(null,r));return n},o.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(t,"a",t),t},o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},o.p="",o(o.s=118)}([function(e,t,n){"use strict";e.exports=n(54)},function(e,t,n){e.exports=n(89)()},function(e,t,n){"use strict";var r={media:["core/image","core/video","core/audio","core/gallery","core/cover","core/media-text"],text:["core/paragraph","core/heading","core/list","core/list-item","core/quote","core/preformatted","core/verse","core/table","core/pullquote","core/file","core/button","core/code","core/freeform"],excluded:[""]};t.a=r},function(e,t,n){"use strict";var o=n(44),r=Object.prototype.toString;function i(e){return"[object Array]"===r.call(e)}function a(e){return void 0===e}function s(e){return null!==e&&"object"==typeof e}function l(e){return"[object Object]"===r.call(e)&&(null===(e=Object.getPrototypeOf(e))||e===Object.prototype)}function c(e){return"[object Function]"===r.call(e)}function u(e,t){if(null!=e)if(i(e="object"!=typeof e?[e]:e))for(var n=0,r=e.length;n=d.DIGIT_0&&e<=d.DIGIT_9}function x(e){return e>=d.LATIN_CAPITAL_A&&e<=d.LATIN_CAPITAL_Z}function R(e){return e>=d.LATIN_SMALL_A&&e<=d.LATIN_SMALL_Z}function M(e){return R(e)||x(e)}function ke(e,t){return Se(e)||t&&(e>=d.LATIN_CAPITAL_A&&e<=d.LATIN_CAPITAL_F||e>=d.LATIN_SMALL_A&&e<=d.LATIN_SMALL_F)}function L(e){return e<=65535?String.fromCharCode(e):(e-=65536,String.fromCharCode(e>>>10&1023|55296)+String.fromCharCode(56320|1023&e))}function I(e){return String.fromCharCode(e+32)}var P=e.exports=function(){this.preprocessor=new H,this.tokenQueue=[],this.allowCDATA=!1,this.state=o,this.returnState="",this.tempBuff=[],this.additionalAllowedCp=void 0,this.lastStartTagName="",this.consumedAfterSnapshot=-1,this.active=!1,this.currentCharacterToken=null,this.currentToken=null,this.currentAttr=null},e=(P.CHARACTER_TOKEN="CHARACTER_TOKEN",P.NULL_CHARACTER_TOKEN="NULL_CHARACTER_TOKEN",P.WHITESPACE_CHARACTER_TOKEN="WHITESPACE_CHARACTER_TOKEN",P.START_TAG_TOKEN="START_TAG_TOKEN",P.END_TAG_TOKEN="END_TAG_TOKEN",P.COMMENT_TOKEN="COMMENT_TOKEN",P.DOCTYPE_TOKEN="DOCTYPE_TOKEN",P.EOF_TOKEN="EOF_TOKEN",P.HIBERNATION_TOKEN="HIBERNATION_TOKEN",P.MODE={DATA:o,RCDATA:i,RAWTEXT:a,SCRIPT_DATA:s,PLAINTEXT:t},P.getTokenAttr=function(e,t){for(var n=e.attrs.length-1;0<=n;n--)if(e.attrs[n].name===t)return e.attrs[n].value;return null},P.prototype.getNextToken=function(){for(;!this.tokenQueue.length&&this.active;){this._hibernationSnapshot();var e=this._consume();this._ensureHibernation()||this[this.state](e)}return this.tokenQueue.shift()},P.prototype.write=function(e,t){this.active=!0,this.preprocessor.write(e,t)},P.prototype.insertHtmlAtCurrentPos=function(e){this.active=!0,this.preprocessor.insertHtmlAtCurrentPos(e)},P.prototype._hibernationSnapshot=function(){this.consumedAfterSnapshot=0},P.prototype._ensureHibernation=function(){if(this.preprocessor.endOfChunkHit){for(;0>>1,a=u[i];if(a")):e===d.NULL?(this.state=c,this._emitChar(n.REPLACEMENT_CHARACTER)):e===d.EOF?this._reconsumeInState(o):(this.state=c,this._emitCodePoint(e))},e[p]=function(e){e===d.SOLIDUS?(this.tempBuff=[],this.state=te):M(e)?(this.tempBuff=[],this._emitChar("<"),this._reconsumeInState(re)):(this._emitChar("<"),this._reconsumeInState(c))},e[te]=function(e){M(e)?(this._createEndTagToken(),this._reconsumeInState(ne)):(this._emitChar("<"),this._emitChar("/"),this._reconsumeInState(c))},e[ne]=function(e){if(x(e))this.currentToken.tagName+=I(e),this.tempBuff.push(e);else if(R(e))this.currentToken.tagName+=L(e),this.tempBuff.push(e);else{if(this._isAppropriateEndTagToken()){if(O(e))return void(this.state=T);if(e===d.SOLIDUS)return void(this.state=b);if(e===d.GREATER_THAN_SIGN)return this._emitCurrentToken(),void(this.state=o)}this._emitChar("<"),this._emitChar("/"),this._emitSeveralCodePoints(this.tempBuff),this._reconsumeInState(c)}},e[re]=function(e){O(e)||e===d.SOLIDUS||e===d.GREATER_THAN_SIGN?(this.state=this.isTempBufferEqualToScriptString()?m:c,this._emitCodePoint(e)):x(e)?(this.tempBuff.push(e+32),this._emitCodePoint(e)):R(e)?(this.tempBuff.push(e),this._emitCodePoint(e)):this._reconsumeInState(c)},e[m]=function(e){e===d.HYPHEN_MINUS?(this.state=oe,this._emitChar("-")):e===d.LESS_THAN_SIGN?(this.state=h,this._emitChar("<")):e===d.NULL?this._emitChar(n.REPLACEMENT_CHARACTER):e===d.EOF?this._reconsumeInState(o):this._emitCodePoint(e)},e[oe]=function(e){e===d.HYPHEN_MINUS?(this.state=ie,this._emitChar("-")):e===d.LESS_THAN_SIGN?(this.state=h,this._emitChar("<")):e===d.NULL?(this.state=m,this._emitChar(n.REPLACEMENT_CHARACTER)):e===d.EOF?this._reconsumeInState(o):(this.state=m,this._emitCodePoint(e))},e[ie]=function(e){e===d.HYPHEN_MINUS?this._emitChar("-"):e===d.LESS_THAN_SIGN?(this.state=h,this._emitChar("<")):e===d.GREATER_THAN_SIGN?(this.state=s,this._emitChar(">")):e===d.NULL?(this.state=m,this._emitChar(n.REPLACEMENT_CHARACTER)):e===d.EOF?this._reconsumeInState(o):(this.state=m,this._emitCodePoint(e))},e[h]=function(e){e===d.SOLIDUS?(this.tempBuff=[],this.state=ae,this._emitChar("/")):this._reconsumeInState(m)},e[ae]=function(e){O(e)||e===d.SOLIDUS||e===d.GREATER_THAN_SIGN?(this.state=this.isTempBufferEqualToScriptString()?c:m,this._emitCodePoint(e)):x(e)?(this.tempBuff.push(e+32),this._emitCodePoint(e)):R(e)?(this.tempBuff.push(e),this._emitCodePoint(e)):this._reconsumeInState(m)},e[T]=function(e){O(e)||(e===d.SOLIDUS||e===d.GREATER_THAN_SIGN||e===d.EOF?this._reconsumeInState(E):e===d.EQUALS_SIGN?(this._createAttr("="),this.state=g):(this._createAttr(""),this._reconsumeInState(g)))},e[g]=function(e){O(e)||e===d.SOLIDUS||e===d.GREATER_THAN_SIGN||e===d.EOF?(this._leaveAttrName(E),this._unconsume()):e===d.EQUALS_SIGN?this._leaveAttrName(y):x(e)?this.currentAttr.name+=I(e):e!==d.QUOTATION_MARK&&e!==d.APOSTROPHE&&e!==d.LESS_THAN_SIGN&&e===d.NULL?this.currentAttr.name+=n.REPLACEMENT_CHARACTER:this.currentAttr.name+=L(e)},e[E]=function(e){O(e)||(e===d.SOLIDUS?this.state=b:e===d.EQUALS_SIGN?this.state=y:e===d.GREATER_THAN_SIGN?(this.state=o,this._emitCurrentToken()):e===d.EOF?this._reconsumeInState(o):(this._createAttr(""),this._reconsumeInState(g)))},e[y]=function(e){O(e)||(e===d.QUOTATION_MARK?this.state=se:e===d.APOSTROPHE?this.state=le:this._reconsumeInState(ce))},e[se]=function(e){e===d.QUOTATION_MARK?this.state=_:e===d.AMPERSAND?(this.additionalAllowedCp=d.QUOTATION_MARK,this.returnState=this.state,this.state=v):e===d.NULL?this.currentAttr.value+=n.REPLACEMENT_CHARACTER:e===d.EOF?this._reconsumeInState(o):this.currentAttr.value+=L(e)},e[le]=function(e){e===d.APOSTROPHE?this.state=_:e===d.AMPERSAND?(this.additionalAllowedCp=d.APOSTROPHE,this.returnState=this.state,this.state=v):e===d.NULL?this.currentAttr.value+=n.REPLACEMENT_CHARACTER:e===d.EOF?this._reconsumeInState(o):this.currentAttr.value+=L(e)},e[ce]=function(e){O(e)?this._leaveAttrValue(T):e===d.AMPERSAND?(this.additionalAllowedCp=d.GREATER_THAN_SIGN,this.returnState=this.state,this.state=v):e===d.GREATER_THAN_SIGN?(this._leaveAttrValue(o),this._emitCurrentToken()):e===d.NULL?this.currentAttr.value+=n.REPLACEMENT_CHARACTER:e!==d.QUOTATION_MARK&&e!==d.APOSTROPHE&&e!==d.LESS_THAN_SIGN&&e!==d.EQUALS_SIGN&&e!==d.GRAVE_ACCENT&&e===d.EOF?this._reconsumeInState(o):this.currentAttr.value+=L(e)},e[v]=function(e){var t=this._consumeCharacterReference(e,!0);if(!this._ensureHibernation()){if(t)for(var n=0;n/g,"
")}m=d.Component,o(h,m),h.prototype.render=function(){var t=this,e=this.props,n=e.tagName,r=e.html,o=e.innerRef,e=c(e,["tagName","html","innerRef"]);return d.createElement(n||"div",i(i({},e),{ref:"function"==typeof o?function(e){o(e),t.el.current=e}:o||this.el,onInput:this.emitChange,onBlur:this.props.onBlur||this.emitChange,onKeyUp:this.props.onKeyUp||this.emitChange,onKeyDown:this.props.onKeyDown||this.emitChange,contentEditable:!this.props.disabled,dangerouslySetInnerHTML:{__html:r}}),this.props.children)},h.prototype.shouldComponentUpdate=function(e){var t=this.props,n=this.getEl();return!n||p(e.html)!==p(n.innerHTML)||t.disabled!==e.disabled||t.tagName!==e.tagName||t.className!==e.className||t.innerRef!==e.innerRef||t.placeholder!==e.placeholder||!(0,f.default)(t.style,e.style)},h.prototype.componentDidUpdate=function(){var e,t,n,r=this.getEl();r&&(this.props.html!==r.innerHTML&&(r.innerHTML=this.props.html),this.lastHtml=this.props.html,r=r,t=document.createTextNode(""),r.appendChild(t),n=document.activeElement===r,null!==t)&&null!==t.nodeValue&&n&&(null!==(n=window.getSelection())&&((e=document.createRange()).setStart(t,t.nodeValue.length),e.collapse(!0),n.removeAllRanges(),n.addRange(e)),r instanceof HTMLElement)&&r.focus()},h.propTypes={html:u.string.isRequired,onChange:u.func,disabled:u.bool,tagName:u.string,className:u.string,style:u.object,innerRef:u.oneOfType([u.object,u.func])};var m,l=h;function h(){var n=null!==m&&m.apply(this,arguments)||this;return n.lastHtml=n.props.html,n.el="function"==typeof n.props.innerRef?{current:null}:d.createRef(),n.getEl=function(){return(n.props.innerRef&&"function"!=typeof n.props.innerRef?n.props.innerRef:n.el).current},n.emitChange=function(e){var t=n.getEl();t&&(t=t.innerHTML,n.props.onChange&&t!==n.lastHtml&&(e=Object.assign({},e,{target:{value:t}}),n.props.onChange(e)),n.lastHtml=t)},n}t.default=l},function(e,t,n){"use strict";n.d(t,"a",function(){return O});var t=n(0),b=n.n(t),t=n(1),t=n.n(t),r=n(5),l=n.n(r),r=n(13),c=n.n(r),m=n(2);n(17);function o(e){return(o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function i(e,t){for(var n=0;n",editedTime:"",copySuccess:""},t.val=e.value,t;throw new TypeError("Cannot call a class as a function")}return t=o,(e=[{key:"componentDidUpdate",value:function(){var e,t;0!==p('mdspan[data-rich-text-format-boundary="true"]').length&&(e=this.props.timestamp,t=p("#"+e+" textarea").val(),p("#"+e+" textarea").focus().val("").val(t))}},{key:"edit",value:function(){this.setState({editing:!0});var e=this.state.showEditedDraft?this.props.editedDraft:this.props.children,e=removeLinkFromEditableText(e);this.state.contentHtml=e,this.state.attachmentText=this.props.attachmentText,""!==this.state.attachmentText&&this.setState({mediaId:"",mediaName:"",mediaUrl:""})}},{key:"save",value:function(e){var t=e.currentTarget.parentElement.parentElement.parentElement.parentElement.parentElement.id;if(p(e.currentTarget).hasClass("btn-disabled"))return!1;if(0!==p("#".concat(t," .js-cf-edit-comment")).text().trim().length){var n,r,o,e=this.state.contentHtml;if(""===e)return i=f("Please add some comment. ","content-collaboration-inline-commenting"),document.getElementById("cf-board__notice").innerHTML=i,document.getElementById("cf-board__notice").setAttribute("style","display:block"),setTimeout(function(){document.getElementById("cf-board__notice").setAttribute("style","display:none"),document.getElementById("cf-board__notice").innerHTML=""},3e3),!1;!0===this.state.editing&&(n=editedTimezone?editedTimezone.editedTime:"",r=getTimestampWithTimezone(),o=""!==this.state.attachmentText||"undefined"!==this.state.attachmentText||null===p("#cf_thumb_file").html()?this.state.attachmentText:p("#cf_thumb_file").html(),this.state.editedTime=n,this.state.editedTimestamp=r,""!==this.state.attachmentText&&void 0!==this.state.attachmentText||(o=p("#cf_thumb_file").html()),""!==this.props.assignedText)&&void 0!==this.props.assignedText&&null!==this.props.assignedText&&p("#"+this.props.timestamp).find(".commentInnerContainer").children(".commentText").find(".readmoreTxt").after(''+this.props.assignedText+""),e=filterTextBeforeSave(e),this.props.updateCommentFromBoard(e,this.props.index,this.props.timestamp,this.props.dateTime,t,this.state.editedTime,this.state.editedTimestamp,this.props.assignedText,o),this.setState({editing:!1})}else{var i=f("Please add some comment. ","content-collaboration-inline-commenting");document.getElementById("cf-board__notice").innerHTML=i,document.getElementById("cf-board__notice").setAttribute("style","display:block"),setTimeout(function(){document.getElementById("cf-board__notice").setAttribute("style","display:none"),document.getElementById("cf-board__notice").innerHTML=""},3e3)}}},{key:"remove",value:function(e){e=p(e.currentTarget).closest(".cls-board-outer");this.props.removeCommentFromBoard(this.props.index,this.props.timestamp,e[0].id),jQuery(".comment-delete-overlay").removeClass("show")}},{key:"copy",value:function(e){var t=p(e.currentTarget).closest(".cls-board-outer")[0].id,n=window.location.href+"¤t_url="+t,t=(p(".copytext").text(""),p("#"+t).find(".copytext").text(n),p(""));p("body").append(t),t.val(n).select(),document.execCommand("copy"),e.target.focus(),t.remove(),this.setState({copySuccess:f("Link Copied!","content-collaboration-inline-commenting")}),clearInterval(this.resetState()),document.createElement("input").select()}},{key:"resetState",value:function(){var e=this;setTimeout(function(){return e.setState({copySuccess:""})},3e3)}},{key:"resolve",value:function(e){var n=e=p(e.currentTarget).closest(".cls-board-outer")[0].id,e={action:"cf_resolve_thread",currentPostID:wp.data.select("core/editor").getCurrentPostId(),metaId:"_"+e};p.post(ajaxurl,e,function(){setTimeout(function(){p("#"+n).remove()},1e3),p("#history-toggle").attr("data-count",p(".cls-board-outer").length);var e=p('[datatext="'+n+'"]').map(function(){return p(this).attr("data-block")}).get(),t=(p("#cf-span__comments .cls-board-outer").removeClass("focus"),p("#cf-span__comments .cls-board-outer").removeAttr("style"),p('[datatext="'+n+'"].cf-icon-wholeblock__comment').removeClass("cf-icon-wholeblock__comment"),p('[datatext="'+n+'"]').removeClass("commentIcon "),p('[datatext="'+n+'"]').removeClass("cf-onwhole-block__comment"),p('[datatext="'+n+'"]').attr("data-type"));p('[datatext="'+n+'"]').attr("data-block");void 0!==t&&e?e.forEach(function(e){wp.data.dispatch("core/block-editor").updateBlockAttributes(e,{datatext:""})}):jQuery("[datatext="+n+"]").each(function(){removeTag(n),p("#"+n).remove()}),wp.data.dispatch("mdstore").setIsActive(!1),jQuery.event.trigger({type:"editorLayoutUpdate"}),wp.data.dispatch("core/editor").autosave()})}},{key:"cancelEdit",value:function(){this.state.attachmentText=this.props.attachmentText,this.setState({editing:!1})}},{key:"deleteAttachment",value:function(e){e=p(e.currentTarget).closest(".cls-board-outer");this.setState({attachmentText:"",mediaId:"",mediaName:"",mediaUrl:""}),this.props.removeAttachmentFromBoard(this.props.index,this.props.timestamp,e[0].id,this.props.attachmentText)}},{key:"renderNormalMode",value:function(){p(".cls-board-outer.focus .shareCommentContainer").show();var e=this.props.index,t=(this.props.status,this.props.attachmentText),n=timeAgo(this.props.timestamp),r=convertedDatetime(this.props.timestamp),o="";try{o=wp.data.select("core").getCurrentUser().id}catch(e){o=localStorage.getItem("userID")}var i=this.state.showEditedDraft?this.props.editedDraft:this.props.children,a="",s=(i=(i=300]+(>|$)/g,"").length?(a=i).substring(0,300)+"...":i).replace(/contenteditable=\"false\"/gi,'data-edit="false"'),this.props.userRole),s=(8getCommentsLimit()&&(s="none"),""===t&&(this.state.attachmentText=""),b.a.createElement("div",{className:"commentContainer",style:{display:s},id:this.props.timestamp},b.a.createElement("div",{className:"commentInnerContainer"},b.a.createElement("div",{className:"comment-header"},b.a.createElement("div",{className:"comment-details"},"1"===this.props.showAvatars&&b.a.createElement("div",{className:"avatar"},b.a.createElement("img",{src:this.props.profileURL,alt:"avatar"})),b.a.createElement("div",{className:"commenter-name-time"},b.a.createElement("div",{className:"commenter-name"},this.props.userName.charAt(0).toUpperCase()+this.props.userName.slice(1),b.a.createElement("span",{className:"tooltip"},this.props.userRole)),b.a.createElement("div",{className:"comment-time"},b.a.createElement("span",{className:"comment-time-wrapper"},n," ",b.a.createElement("span",{className:"tooltip"},r," ")))),b.a.createElement("div",{className:"comment-actions"},b.a.createElement(b.a.Fragment,null,0===e&&"guest"!==currentUserData.role&&b.a.createElement("div",{className:"comment-resolve"},b.a.createElement("input",{id:"resolve_cb_"+this.props.timestamp+"_"+e,type:"checkbox",className:"resolve-cb",value:"1"}),b.a.createElement("label",{htmlFor:"resolve_cb_"+this.props.timestamp+"_"+e},f("Resolved","content-collaboration-inline-commenting")),b.a.createElement("span",{className:"tooltip"},f("Mark as Resolved","content-collaboration-inline-commenting")))),0===e&&b.a.createElement(b.a.Fragment,null,""!==this.state.copySuccess&&b.a.createElement("p",{className:"comment-copied-tooltip"},this.state.copySuccess),b.a.createElement("div",{className:"buttons-wrapper"},b.a.createElement("span",{className:"tooltip"},f("More Options...","content-collaboration-inline-commenting")),b.a.createElement("div",{className:"more-option-btn"}),b.a.createElement("div",{className:"comment-more-option"},b.a.createElement("ul",{className:"comment-more-option-list"},b.a.createElement("li",{onClick:this.copy.bind(this)},b.a.createElement("i",{className:"dashicons dashicons-share",title:f("Copy Link","content-collaboration-inline-commenting")}),b.a.createElement("span",{className:"more-option-meta"},f("Share","content-collaboration-inline-commenting"))),this.props.userID===o&&b.a.createElement(b.a.Fragment,null,b.a.createElement("li",{onClick:this.edit,className:"js-edit-comment"},b.a.createElement("i",{className:"dashicons dashicons-edit",title:"Edit"}),b.a.createElement("span",{className:"more-option-meta"},f("Edit","content-collaboration-inline-commenting"))),b.a.createElement("li",{className:"js-resolve-comment"},b.a.createElement("i",{className:"dashicons dashicons-trash",title:"Resolve"}),b.a.createElement("span",{className:"more-option-meta"},f("Delete","content-collaboration-inline-commenting")))))))),this.props.userID===o&&0\n
\n
\n ').concat(e.assignedTo.display_name,'\n
\n \n
\n \n "),k("#".concat(f," .cf-board-assigned-to")).length&&k("#".concat(f," .cf-board-assigned-to")).remove(),k(t).insertBefore(DOMPurify.sanitize("#".concat(f," .boardTop")))),p.hasComments=1,wp.data.dispatch("core/editor").editPost({meta:{reflect_comments_changes:1}}),e.arr.thread&&(t=c.length-1,c[t].thread=e.arr.thread),p.setState({comments:c,newcommentText:"",mediaId:"",mediaName:"",mediaUrl:""});var t=wp.data.select("mdstore").getundoData(),e=[],n=Object.assign({},c[0]);null!==t?(t.push({id:r,data:n}),e=t):e.push({id:r,data:n}),wp.data.dispatch("mdstore").setundoData(e),g(),k("#"+o).html("").focus(),k("#cf_thumb_file").html(""),k(".cf-assign-to").remove()}),wp.data.dispatch("core/editor").autosave()}else{if(k(e.currentTarget).hasClass("btn-disabled"))return!1;l=S("Please add some comment. ","content-collaboration-inline-commenting");document.getElementById("cf-board__notice").innerHTML=l,document.getElementById("cf-board__notice").setAttribute("style","display:block"),setTimeout(function(){document.getElementById("cf-board__notice").setAttribute("style","display:none"),document.getElementById("cf-board__notice").innerHTML=""},3e3)}}},{key:"displayComments",value:function(t,e){var n,r,o,i,a,s,l,c,u,d,f,p,m,h,T,g=this.props,E=g.lastVal,y=g.onChanged,g=g.selectedText,v=(Object.keys(t).map(function(e){"userName"===e?n=t[e]:"userRole"===e?r=t[e]:"dtTime"===e?o=t[e]:"thread"===e?i=t[e]:"profileURL"===e?a=t[e]:"userData"===e?s=parseInt(t[e],10):"status"===e?l=t[e]:"timestamp"===e?c=t[e]:"editedDraft"===e?u=t[e]:"updatedTime"===e?d=t[e].toString():"blockType"===e?f=t[e]:"assignedText"===e?p=t[e]:"editedTimestamp"===e?m=t[e]:"attachmentText"===e&&(h=t[e])}),p),_=(null!=(_=v)&&_.includes("Assigned to You")?v=wp.i18n.__("Assigned to You","content-collaboration-inline-commenting"):null!=(_=v)&&_.includes("Reassigned to You")?v=wp.i18n.__("Reassigned to You","content-collaboration-inline-commenting"):null!=(_=v)&&_.includes("Assigned to")?(T=v.split("Assigned to"),v=sprintf(S("Assigned to %s","content-collaboration-inline-commenting"),T[1])):null!=(_=v)&&_.includes("Reassigned to ")&&(T=v.split("Reassigned to"),v=sprintf(S("Reassigned to %s","content-collaboration-inline-commenting"),T[1])),p=v,wp.data.select("core/editor").getCurrentPost());return(null==_?void 0:_.author)===s&&(r="Owner"),b.a.createElement(A,{key:e,index:e,removeCommentFromBoard:this.removeComment,updateCommentFromBoard:this.updateComment,removeAttachmentFromBoard:this.removeAttachment,userName:n,userRole:r,dateTime:o,profileURL:a,userID:s,status:l,lastVal:E,onChanged:y,selectedText:g,timestamp:c,editedDraft:u,editedTime:d,editedTimestamp:m&&m.toString(),blockType:f,assignedText:p,attachmentText:h,showAvatars:localStorage.getItem("showAvatars")},i=i||t)}},{key:"cancelComment",value:function(){wp.data.select("mdstore").getAllCommentCount();k(".cf-icon__addBlocks, .cf-icon__removeBlocks").removeClass("focus");var e=this.props,t=e.datatext,n=e.onChanged,e=e.lastVal,r=k('[datatext="'+this.props.datatext+'"]').attr("data-type"),o=jQuery('[datatext="'+this.props.datatext+'"]').parents("[data-block]").attr("data-type"),i=jQuery('[datatext="'+this.props.datatext+'"]').parents("[data-block]").attr("data-block"),a=wp.data.select("core/block-editor").getBlockAttributes(i),s=k('[datatext="'+this.props.datatext+'"]').attr("data-block");0===k("#"+t+" .boardTop .commentContainer").length&&(void 0!==r?(k('[datatext="'+this.props.datatext+'"]').removeClass("commentIcon "),wp.data.dispatch("mdstore").setIsActive(!1),wp.data.dispatch("core/block-editor").updateBlock(s,{attributes:{datatext:""}})):null!=o&&o.startsWith("acf/")&&void 0!==o?(removeAcfTag(a,i,t),wp.data.dispatch("mdstore").setIsActive(!1)):n(w(e,"multidots/comment")),k("#"+this.props.datatext).remove(),jQuery.event.trigger({type:"editorLayoutUpdate"})),k("#cf-span__comments .cls-board-outer").removeClass("focus"),k(".cf-icon-wholeblock__comment").removeClass("focus"),k(".cf-icon-wholeblock__comment").removeClass("is-selected"),k(".cf-onwhole-block__comment").removeClass("focus"),k("#cf-span__comments .cls-board-outer").removeAttr("style"),k("[data-rich-text-format-boundary]").removeAttr("data-rich-text-format-boundary"),k(".cf-assign-to").remove(),k("#cf-span__comments .comment-delete-overlay").removeClass("show"),k(".commentIcon").removeClass("is-selected"),k("#cf-span__comments .cls-board-outer .buttons-wrapper").removeClass("active"),jQuery("#txt"+t).html(""),k("#cf_thumb_file").html(""),this.setState({newcommentText:"",mediaId:"",mediaName:"",mediaUrl:""}),jQuery.event.trigger({type:"showHideComments"}),k(".js-activity-centre .user-data-row").removeClass("active")}},{key:"deleteAttachment",value:function(){this.setState({attachmentText:"",mediaId:"",mediaName:"",mediaUrl:""}),k("#cf_thumb_file").html("")}},{key:"componentDidMount",value:function(){var e;this.props.freshBoard&&(e=this.props.datatext,setTimeout(function(){k("#txt"+e).focus()},500))}},{key:"render",value:function(){var n=this,e=this.props,t=e.datatext,e=(e.setAttributes,e.attributes,1===this.hasComments?S("Reply","content-collaboration-inline-commenting"):S("Comment","content-collaboration-inline-commenting")),r=1===this.hasComments?S("Reply to this comment","content-collaboration-inline-commenting"):S("Post Comment","content-collaboration-inline-commenting"),o=this.assignedTo,i=1===this.hasComments||void 0===this.hasComments?S("Reply or add others with @","content-collaboration-inline-commenting"):S("Comment or add others with @","content-collaboration-inline-commenting"),a=(this.props.freshBoard&&(i=S("Comment or add others with @","content-collaboration-inline-commenting")),this.state.comments.length),s="none",l=(a>getCommentsLimit()&&(s="block"),this.state.newcommentText),l=""===validateCommentReplyText(l)?"btn-disabled":"";return b.a.createElement("div",{className:"board ".concat(void 0===this.hasComments&&this.currentUserProfile&&"fresh-board")},null!=o&&b.a.createElement("div",{className:"cf-board-assigned-to","data-user-id":o.ID,"data-user-email":o.user_email},b.a.createElement("div",{className:"assigned-user-details"},b.a.createElement("div",{className:"user-avatar"},b.a.createElement("img",{src:o.avatar,alt:o.display_name})),b.a.createElement("div",{className:"user-info"},b.a.createElement("span",{className:"badge"},S("Assigned to","content-collaboration-inline-commenting")),b.a.createElement("p",{className:"display-name"},o.display_name?S(o.display_name.charAt(0).toUpperCase()+o.display_name.slice(1),"content-collaboration-inline-commenting"):S("Unknown User","content-collaboration-inline-commenting"))))),b.a.createElement("div",{className:"boardTop"},this.state.comments&&this.state.comments.map(function(e,t){return n.displayComments(e,t)}),b.a.createElement("div",{className:"show-all-comments",style:{display:s}},sprintf(S("Show all %d replies"),a-1))),void 0===this.hasComments&&this.currentUserProfile&&b.a.createElement("div",{className:"commentContainer"},b.a.createElement("div",{className:"commentInnerContainer"},b.a.createElement("div",{className:"comment-header"},b.a.createElement("div",{className:"comment-details"},b.a.createElement("div",{className:"avatar"},b.a.createElement("img",{src:this.currentUserProfile,alt:"avatar"})),b.a.createElement("div",{className:"commenter-name-time"},b.a.createElement("div",{className:"commenter-name"},this.currentUserName.charAt(0).toUpperCase()+this.currentUserName.slice(1))))))),b.a.createElement("div",{className:"shareCommentContainer"},b.a.createElement("div",{className:"cf-share-comment-wrapper js-cf-share-comment-wrapper"},b.a.createElement(c.a,{innerRef:this.contentEditable,html:this.state.newcommentText,disabled:!1,onChange:function(e){return n.setState({newcommentText:e.target.value})},id:"txt"+t,className:"cf-share-comment js-cf-share-comment",placeholder:i}),b.a.createElement("div",{className:"cf-commentboard-attach-wrap"},null!=this.state.mediaId&&b.a.createElement("div",{id:"cf_thumb_file"},b.a.createElement("a",{href:this.state.mediaUrl,target:"_blank"},this.state.mediaName)),b.a.createElement("div",{className:"btn-wrapper"},b.a.createElement("button",{onClick:this.addNewComment,className:"btn btn-success ".concat(l)},e,b.a.createElement("span",{className:"tooltip"},r)),b.a.createElement("button",{onClick:this.cancelComment,className:"btn btn-cancel"},S("Cancel","content-collaboration-inline-commenting")," ",b.a.createElement("span",{className:"tooltip"},S("Discard Comment","content-collaboration-inline-commenting"))))))))}}])&&y(t.prototype,e),n&&y(t,n),Object.defineProperty(t,"prototype",{writable:!1}),l}(b.a.Component));O.propTypes={lastVal:t.a.object,datatext:t.a.string,onChanged:t.a.func,selectedText:t.a.string,commentedOnText:t.a.string,freshBoard:t.a.number,onLoadFetch:t.a.number}},function(e,t,n){"use strict";t.REPLACEMENT_CHARACTER="�",t.CODE_POINTS={EOF:-1,NULL:0,TABULATION:9,CARRIAGE_RETURN:13,LINE_FEED:10,FORM_FEED:12,SPACE:32,EXCLAMATION_MARK:33,QUOTATION_MARK:34,NUMBER_SIGN:35,AMPERSAND:38,APOSTROPHE:39,HYPHEN_MINUS:45,SOLIDUS:47,DIGIT_0:48,DIGIT_9:57,SEMICOLON:59,LESS_THAN_SIGN:60,EQUALS_SIGN:61,GREATER_THAN_SIGN:62,QUESTION_MARK:63,LATIN_CAPITAL_A:65,LATIN_CAPITAL_F:70,LATIN_CAPITAL_X:88,LATIN_CAPITAL_Z:90,GRAVE_ACCENT:96,LATIN_SMALL_A:97,LATIN_SMALL_F:102,LATIN_SMALL_X:120,LATIN_SMALL_Z:122,REPLACEMENT_CHARACTER:65533},t.CODE_POINT_SEQUENCES={DASH_DASH_STRING:[45,45],DOCTYPE_STRING:[68,79,67,84,89,80,69],CDATA_START_STRING:[91,67,68,65,84,65,91],CDATA_END_STRING:[93,93,62],SCRIPT_STRING:[115,99,114,105,112,116],PUBLIC_STRING:[80,85,66,76,73,67],SYSTEM_STRING:[83,89,83,84,69,77]}},function(e,t,n){function r(e){return Object.prototype.toString.call(e)}t.isArray=function(e){return Array.isArray?Array.isArray(e):"[object Array]"===r(e)},t.isBoolean=function(e){return"boolean"==typeof e},t.isNull=function(e){return null===e},t.isNullOrUndefined=function(e){return null==e},t.isNumber=function(e){return"number"==typeof e},t.isString=function(e){return"string"==typeof e},t.isSymbol=function(e){return"symbol"==typeof e},t.isUndefined=function(e){return void 0===e},t.isRegExp=function(e){return"[object RegExp]"===r(e)},t.isObject=function(e){return"object"==typeof e&&null!==e},t.isDate=function(e){return"[object Date]"===r(e)},t.isError=function(e){return"[object Error]"===r(e)||e instanceof Error},t.isFunction=function(e){return"function"==typeof e},t.isPrimitive=function(e){return null===e||"boolean"==typeof e||"number"==typeof e||"string"==typeof e||"symbol"==typeof e||void 0===e},t.isBuffer=n(27).Buffer.isBuffer},function(e,t,n){"use strict";var r={};r.multicollab=React.createElement("svg",{id:"cf-multicollab-svg",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 437.6 512"},React.createElement("path",{d:"M394 87.5C321.6-9.1 184.2-28.7 87.6 43.7s-116.3 209.8-44 306.4c32.1 42.9 78.8 72.4 131.3 83.1l17.5 3.6 0 75.3L350 393.8C446.6 321.4 466.3 184 394 87.5zM295.3 320.8l-91.9 68.8 0-43.9 -10.2-2.1c-30.6-6.2-57.8-23.4-76.5-48.4C74.6 239 86 158.9 142.3 116.7S278.7 86 320.9 142.3C363 198.5 351.5 278.6 295.3 320.8z"}),React.createElement("circle",{cx:"161.3",cy:"221",r:"14.2"}),React.createElement("circle",{cx:"218.8",cy:"221",r:"14.2"}),React.createElement("circle",{cx:"276.3",cy:"221",r:"14.2"})),r.attachment=React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"6",height:"11.44",viewBox:"0 0 6 11.44"},React.createElement("g",{id:"Group_1161","data-name":"Group 1161",transform:"translate(-816 -736)"},React.createElement("path",{id:"Path_10433","data-name":"Path 10433",d:"M275.406,174.916a3,3,0,0,1-3-3v-6.3a2.143,2.143,0,1,1,4.286,0V171.2a1.286,1.286,0,0,1-2.571,0v-4.154a.429.429,0,0,1,.857,0V171.2a.429.429,0,1,0,.857,0v-5.583a1.286,1.286,0,1,0-2.571,0v6.3a2.143,2.143,0,1,0,4.286,0v-6.583a.429.429,0,0,1,.857,0v6.583a3,3,0,0,1-3,3Z",transform:"translate(543.594 572.524)",fill:"#949494"}))),r.attachment_delete=React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"11.074",height:"12",viewBox:"0 0 11.074 12"},React.createElement("g",{id:"Group_1168","data-name":"Group 1168",transform:"translate(521.024 -234.452)"},React.createElement("path",{id:"Path_10434","data-name":"Path 10434",d:"M-517.044,234.452h3.115a.99.99,0,0,1,.752,1.136c-.015.233,0,.467,0,.711h.174q1.3,0,2.6,0a.454.454,0,0,1,.461.453.454.454,0,0,1-.46.468c-.086,0-.173,0-.259,0h-.664v.192q0,3.8,0,7.6a1.377,1.377,0,0,1-1.44,1.44H-518.2A1.379,1.379,0,0,1-519.639,245q0-3.8,0-7.6v-.181c-.279,0-.543-.012-.805,0a.531.531,0,0,1-.58-.349v-.231a.541.541,0,0,1,.579-.35c.831.012,1.662,0,2.493,0h.147a.359.359,0,0,0,.01-.049c0-.293,0-.586,0-.879a.92.92,0,0,1,.576-.854C-517.16,234.493-517.1,234.473-517.044,234.452Zm-1.673,2.774v.158q0,3.792,0,7.584c0,.387.175.561.565.561h5.334c.389,0,.563-.174.563-.563q0-3.792,0-7.584v-.156Zm1.849-.94h2.757v-.9h-2.757Z"}),React.createElement("path",{id:"Path_10435","data-name":"Path 10435",d:"M-376.469,396.3c0,.61,0,1.22,0,1.829a.454.454,0,0,1-.456.472.454.454,0,0,1-.465-.463q0-1.844,0-3.687a.462.462,0,0,1,.376-.461.463.463,0,0,1,.525.325.663.663,0,0,1,.019.184Q-376.467,395.4-376.469,396.3Z",transform:"translate(-139.48 -154.919)"}),React.createElement("path",{id:"Path_10436","data-name":"Path 10436",d:"M-312.63,396.3q0,.893,0,1.786a.463.463,0,0,1-.457.514.462.462,0,0,1-.465-.507q0-1.822,0-3.644a.462.462,0,0,1,.377-.46.463.463,0,0,1,.525.326.664.664,0,0,1,.018.185Q-312.629,395.4-312.63,396.3Z",transform:"translate(-201.472 -154.921)"}))),t.a=r},function(e,t,n){"use strict";(e.exports=function(t){var n={},r=this._getOverriddenMethods(this,n);Object.keys(r).forEach(function(e){"function"==typeof r[e]&&(n[e]=t[e],t[e]=r[e])})}).prototype._getOverriddenMethods=function(){throw new Error("Not implemented")}},function(e,t,n){e.exports=r;var u=n(24).EventEmitter;function r(){u.call(this)}n(12)(r,u),r.Readable=n(25),r.Writable=n(77),r.Duplex=n(78),r.Transform=n(79),r.PassThrough=n(80),(r.Stream=r).prototype.pipe=function(t,e){var n=this;function r(e){t.writable&&!1===t.write(e)&&n.pause&&n.pause()}function o(){n.readable&&n.resume&&n.resume()}n.on("data",r),t.on("drain",o),t._isStdio||e&&!1===e.end||(n.on("end",a),n.on("close",s));var i=!1;function a(){i||(i=!0,t.end())}function s(){i||(i=!0,"function"==typeof t.destroy&&t.destroy())}function l(e){if(c(),0===u.listenerCount(this,"error"))throw e}function c(){n.removeListener("data",r),t.removeListener("drain",o),n.removeListener("end",a),n.removeListener("close",s),n.removeListener("error",l),t.removeListener("error",l),n.removeListener("end",c),n.removeListener("close",c),t.removeListener("close",c)}return n.on("error",l),t.on("error",l),n.on("end",c),n.on("close",c),t.on("close",c),t.emit("pipe",n),t}},function(e,t,n){"use strict";!function(s){void 0===s||!s.version||0===s.version.indexOf("v0.")||0===s.version.indexOf("v1.")&&0!==s.version.indexOf("v1.8.")?e.exports={nextTick:function(e,t,n,r){if("function"!=typeof e)throw new TypeError('"callback" argument must be a function');var o,i,a=arguments.length;switch(a){case 0:case 1:return s.nextTick(e);case 2:return s.nextTick(function(){e.call(null,t)});case 3:return s.nextTick(function(){e.call(null,t,n)});case 4:return s.nextTick(function(){e.call(null,t,n,r)});default:for(o=new Array(a-1),i=0;io&&!i.warned&&(i.warned=!0,(r=new Error("Possible EventEmitter memory leak detected. "+i.length+" "+String(t)+" listeners added. Use emitter.setMaxListeners() to increase limit")).name="MaxListenersExceededWarning",r.emitter=e,r.type=t,r.count=i.length,n=r,console)&&console.warn&&console.warn(n)),e}function f(e,t,n){e={fired:!1,wrapFn:void 0,target:e,type:t,listener:n},t=function(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,0===arguments.length?this.listener.call(this.target):this.listener.apply(this.target,arguments)}.bind(e);return t.listener=n,e.wrapFn=t}function p(e,t,n){e=e._events;if(void 0===e)return[];e=e[t];if(void 0===e)return[];if("function"==typeof e)return n?[e.listener||e]:[e];if(n){for(var r=e,o=new Array(r.length),i=0;i - * @license MIT - */ -var N=L(66),i=L(67),s=L(68);function n(){return d.TYPED_ARRAY_SUPPORT?2147483647:1073741823}function l(e,t){if(n()=n())throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+n().toString(16)+" bytes");return 0|e}function f(e,t){if(d.isBuffer(e))return e.length;if("undefined"!=typeof ArrayBuffer&&"function"==typeof ArrayBuffer.isView&&(ArrayBuffer.isView(e)||e instanceof ArrayBuffer))return e.byteLength;var n=(e="string"!=typeof e?""+e:e).length;if(0===n)return 0;for(var r=!1;;)switch(t){case"ascii":case"latin1":case"binary":return n;case"utf8":case"utf-8":case void 0:return O(e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*n;case"hex":return n>>>1;case"base64":return x(e).length;default:if(r)return O(e).length;t=(""+t).toLowerCase(),r=!0}}function t(e,t,n){var r,o=!1;if((t=void 0===t||t<0?0:t)>this.length)return"";if((n=void 0===n||n>this.length?this.length:n)<=0)return"";if((n>>>=0)<=(t>>>=0))return"";for(e=e||"utf8";;)switch(e){case"hex":var i=this,a=t,s=n,l=i.length;(!s||s<0||l=e.length){if(o)return-1;n=e.length-1}else if(n<0){if(!o)return-1;n=0}if("string"==typeof t&&(t=d.from(t,r)),d.isBuffer(t))return 0===t.length?-1:h(e,t,n,r,o);if("number"==typeof t)return t&=255,d.TYPED_ARRAY_SUPPORT&&"function"==typeof Uint8Array.prototype.indexOf?(o?Uint8Array.prototype.indexOf:Uint8Array.prototype.lastIndexOf).call(e,t,n):h(e,[t],n,r,o);throw new TypeError("val must be string, number or Buffer")}function h(e,t,n,r,o){var i=1,a=e.length,s=t.length;if(void 0!==r&&("ucs2"===(r=String(r).toLowerCase())||"ucs-2"===r||"utf16le"===r||"utf-16le"===r)){if(e.length<2||t.length<2)return-1;a/=i=2,s/=2,n/=2}function l(e,t){return 1===i?e[t]:e.readUInt16BE(t*i)}if(o)for(var c=-1,u=n;u>8,o.push(n%256),o.push(r);return o}(t,e.length-n),e,n,r)}function C(e,t,n){n=Math.min(e.length,n);for(var r=[],o=t;o>>10&1023|55296),u=56320|1023&u),r.push(u),o+=d}var f=r,p=f.length;if(p<=E)return String.fromCharCode.apply(String,f);for(var m="",h=0;ht)&&(e+=" ... "),""},d.prototype.compare=function(e,t,n,r,o){if(!d.isBuffer(e))throw new TypeError("Argument must be a Buffer");if(void 0===n&&(n=e?e.length:0),void 0===r&&(r=0),void 0===o&&(o=this.length),(t=void 0===t?0:t)<0||n>e.length||r<0||o>this.length)throw new RangeError("out of range index");if(o<=r&&n<=t)return 0;if(o<=r)return-1;if(n<=t)return 1;if(this===e)return 0;for(var i=(o>>>=0)-(r>>>=0),a=(n>>>=0)-(t>>>=0),s=Math.min(i,a),l=this.slice(r,o),c=e.slice(t,n),u=0;uthis.length)throw new RangeError("Attempt to write outside buffer bounds");r=r||"utf8";for(var i,a,s,l=!1;;)switch(r){case"hex":var c=this,u=e,d=t,f=n,p=(d=Number(d)||0,c.length-d);if((!f||p<(f=Number(f)))&&(f=p),(p=u.length)%2!=0)throw new TypeError("Invalid hex string");p/2e.length)throw new RangeError("Index out of range")}function _(e,t,n,r){t<0&&(t=65535+t+1);for(var o=0,i=Math.min(e.length-n,2);o>>8*(r?o:1-o)}function b(e,t,n,r){t<0&&(t=4294967295+t+1);for(var o=0,i=Math.min(e.length-n,4);o>>8*(r?o:3-o)&255}function A(e,t,n,r){if(n+r>e.length)throw new RangeError("Index out of range");if(n<0)throw new RangeError("Index out of range")}function S(e,t,n,r,o){return o||A(e,0,n,4),i.write(e,t,n,r,23,4),n+4}function k(e,t,n,r,o){return o||A(e,0,n,8),i.write(e,t,n,r,52,8),n+8}d.prototype.slice=function(e,t){var n=this.length;if((e=~~e)<0?(e+=n)<0&&(e=0):n>>8):_(this,e,t,!0),t+2},d.prototype.writeUInt16BE=function(e,t,n){return e=+e,t|=0,n||v(this,e,t,2,65535,0),d.TYPED_ARRAY_SUPPORT?(this[t]=e>>>8,this[t+1]=255&e):_(this,e,t,!1),t+2},d.prototype.writeUInt32LE=function(e,t,n){return e=+e,t|=0,n||v(this,e,t,4,4294967295,0),d.TYPED_ARRAY_SUPPORT?(this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e):b(this,e,t,!0),t+4},d.prototype.writeUInt32BE=function(e,t,n){return e=+e,t|=0,n||v(this,e,t,4,4294967295,0),d.TYPED_ARRAY_SUPPORT?(this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e):b(this,e,t,!1),t+4},d.prototype.writeIntLE=function(e,t,n,r){e=+e,t|=0,r||v(this,e,t,n,(r=Math.pow(2,8*n-1))-1,-r);var o=0,i=1,a=0;for(this[t]=255&e;++o>0)-a&255;return t+n},d.prototype.writeIntBE=function(e,t,n,r){e=+e,t|=0,r||v(this,e,t,n,(r=Math.pow(2,8*n-1))-1,-r);var o=n-1,i=1,a=0;for(this[t+o]=255&e;0<=--o&&(i*=256);)e<0&&0===a&&0!==this[t+o+1]&&(a=1),this[t+o]=(e/i>>0)-a&255;return t+n},d.prototype.writeInt8=function(e,t,n){return e=+e,t|=0,n||v(this,e,t,1,127,-128),d.TYPED_ARRAY_SUPPORT||(e=Math.floor(e)),this[t]=255&(e=e<0?255+e+1:e),t+1},d.prototype.writeInt16LE=function(e,t,n){return e=+e,t|=0,n||v(this,e,t,2,32767,-32768),d.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8):_(this,e,t,!0),t+2},d.prototype.writeInt16BE=function(e,t,n){return e=+e,t|=0,n||v(this,e,t,2,32767,-32768),d.TYPED_ARRAY_SUPPORT?(this[t]=e>>>8,this[t+1]=255&e):_(this,e,t,!1),t+2},d.prototype.writeInt32LE=function(e,t,n){return e=+e,t|=0,n||v(this,e,t,4,2147483647,-2147483648),d.TYPED_ARRAY_SUPPORT?(this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24):b(this,e,t,!0),t+4},d.prototype.writeInt32BE=function(e,t,n){return e=+e,t|=0,n||v(this,e,t,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),d.TYPED_ARRAY_SUPPORT?(this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e):b(this,e,t,!1),t+4},d.prototype.writeFloatLE=function(e,t,n){return S(this,e,t,!0,n)},d.prototype.writeFloatBE=function(e,t,n){return S(this,e,t,!1,n)},d.prototype.writeDoubleLE=function(e,t,n){return k(this,e,t,!0,n)},d.prototype.writeDoubleBE=function(e,t,n){return k(this,e,t,!1,n)},d.prototype.copy=function(e,t,n,r){if(n=n||0,r||0===r||(r=this.length),t>=e.length&&(t=e.length),(r=0=this.length)throw new RangeError("sourceStart out of bounds");if(r<0)throw new RangeError("sourceEnd out of bounds");r>this.length&&(r=this.length);var o,i=(r=e.length-t>>=0,n=void 0===n?this.length:n>>>0,"number"==typeof(e=e||0))for(s=t;s>6|192,63&n|128)}else if(n<65536){if((t-=3)<0)break;i.push(n>>12|224,n>>6&63|128,63&n|128)}else{if(!(n<1114112))throw new Error("Invalid code point");if((t-=4)<0)break;i.push(n>>18|240,n>>12&63|128,n>>6&63|128,63&n|128)}}return i}function x(e){return N.toByteArray(function(e){var t;if((e=((t=e).trim?t.trim():t.replace(/^\s+|\s+$/g,"")).replace(w,"")).length<2)return"";for(;e.length%4!=0;)e+="=";return e}(e))}function R(e,t,n,r){for(var o=0;o=t.length||o>=e.length);++o)t[o+n]=e[o];return o}}.call(this,L(7))},function(c,e,b){"use strict";!function(e,t,n){var p=b(20);function d(i){var a=this;this.next=null,this.entry=null,this.finish=function(){var e=a,t=i,n=void 0,r=e.entry;for(e.entry=null;r;){var o=r.callback;t.pendingcb--,o(n),r=r.next}t.corkedRequestsFree.next=e}}c.exports=s;var i,f=!e.browser&&-1<["v0.10","v0.9."].indexOf(e.version.slice(0,5))?t:p.nextTick,e=(s.WritableState=a,Object.create(b(16))),t=(e.inherits=b(12),{deprecate:b(74)}),r=b(40),m=b(26).Buffer,h=(void 0!==n?n:"undefined"!=typeof window?window:"undefined"!=typeof self?self:{}).Uint8Array||function(){};var o,n=b(41);function T(){}function a(e,u){i=i||b(8),e=e||{};var t=u instanceof i,n=(this.objectMode=!!e.objectMode,t&&(this.objectMode=this.objectMode||!!e.writableObjectMode),e.highWaterMark),r=e.writableHighWaterMark,o=this.objectMode?16:16384,n=(this.highWaterMark=n||0===n?n:t&&(r||0===r)?r:o,this.highWaterMark=Math.floor(this.highWaterMark),this.finalCalled=!1,this.needDrain=!1,this.ending=!1,this.ended=!1,this.finished=!1,(this.destroyed=!1)===e.decodeStrings);this.decodeStrings=!n,this.defaultEncoding=e.defaultEncoding||"utf8",this.length=0,this.writing=!1,this.corked=0,this.sync=!0,this.bufferProcessing=!1,this.onwrite=function(e){e=e,n=(t=u)._writableState,r=n.sync,o=n.writecb;var t,n,r,o,i=n;{var a,s,l,c;(i.writing=!1,i.writecb=null,i.length-=i.writelen,i.writelen=0,e)?(i=t,s=r,l=e,c=o,--(a=n).pendingcb,s?(p.nextTick(c,l),p.nextTick(_,i,a),i._writableState.errorEmitted=!0,i.emit("error",l)):(c(l),i._writableState.errorEmitted=!0,i.emit("error",l),_(i,a))):((e=v(n))||n.corked||n.bufferProcessing||!n.bufferedRequest||y(t,n),r?f(E,t,n,e,o):E(t,n,e,o))}},this.writecb=null,this.writelen=0,this.bufferedRequest=null,this.lastBufferedRequest=null,this.pendingcb=0,this.prefinished=!1,this.errorEmitted=!1,this.bufferedRequestCount=0,this.corkedRequestsFree=new d(this)}e.inherits(s,r),a.prototype.getBuffer=function(){for(var e=this.bufferedRequest,t=[];e;)t.push(e),e=e.next;return t};try{Object.defineProperty(a.prototype,"buffer",{get:t.deprecate(function(){return this.getBuffer()},"_writableState.buffer is deprecated. Use _writableState.getBuffer instead.","DEP0003")})}catch(e){}function s(e){if(i=i||b(8),!(o.call(s,this)||this instanceof i))return new s(e);this._writableState=new a(e,this),this.writable=!0,e&&("function"==typeof e.write&&(this._write=e.write),"function"==typeof e.writev&&(this._writev=e.writev),"function"==typeof e.destroy&&(this._destroy=e.destroy),"function"==typeof e.final)&&(this._final=e.final),r.call(this)}function g(e,t,n,r,o,i,a){t.writelen=r,t.writecb=a,t.writing=!0,t.sync=!0,n?e._writev(o,t.onwrite):e._write(o,i,t.onwrite),t.sync=!1}function E(e,t,n,r){var o;n||(n=e,0===(o=t).length&&o.needDrain&&(o.needDrain=!1,n.emit("drain"))),t.pendingcb--,r(),_(e,t)}function y(e,t){t.bufferProcessing=!0;var n=t.bufferedRequest;if(e._writev&&n&&n.next){for(var r=t.bufferedRequestCount,o=new Array(r),r=t.corkedRequestsFree,i=(r.entry=n,0),a=!0;n;)(o[i]=n).isBuf||(a=!1),n=n.next,i+=1;o.allBuffers=a,g(e,t,!0,t.length,o,"",r.finish),t.pendingcb++,t.lastBufferedRequest=null,r.next?(t.corkedRequestsFree=r.next,r.next=null):t.corkedRequestsFree=new d(t),t.bufferedRequestCount=0}else{for(;n;){var s=n.chunk,l=n.encoding,c=n.callback;if(g(e,t,!1,t.objectMode?1:s.length,s,l,c),n=n.next,t.bufferedRequestCount--,t.writing)break}null===n&&(t.lastBufferedRequest=null)}t.bufferedRequest=n,t.bufferProcessing=!1}function v(e){return e.ending&&0===e.length&&null===e.bufferedRequest&&!e.finished&&!e.writing}function l(t,n){t._final(function(e){n.pendingcb--,e&&t.emit("error",e),n.prefinished=!0,t.emit("prefinish"),_(t,n)})}function _(e,t){var n,r,o=v(t);return o&&(n=e,(r=t).prefinished||r.finalCalled||("function"==typeof n._final?(r.pendingcb++,r.finalCalled=!0,p.nextTick(l,n,r)):(r.prefinished=!0,n.emit("prefinish"))),0===t.pendingcb)&&(t.finished=!0,e.emit("finish")),o}"function"==typeof Symbol&&Symbol.hasInstance&&"function"==typeof Function.prototype[Symbol.hasInstance]?(o=Function.prototype[Symbol.hasInstance],Object.defineProperty(s,Symbol.hasInstance,{value:function(e){return!!o.call(this,e)||this===s&&e&&e._writableState instanceof a}})):o=function(e){return e instanceof this},s.prototype.pipe=function(){this.emit("error",new Error("Cannot pipe, not readable"))},s.prototype.write=function(e,t,n){var r,o,i,a,s,l,c,u=this._writableState,d=!1,f=!u.objectMode&&(f=e,m.isBuffer(f)||f instanceof h);return f&&!m.isBuffer(e)&&(s=e,e=m.from(s)),"function"==typeof t&&(n=t,t=null),t=f?"buffer":t||u.defaultEncoding,"function"!=typeof n&&(n=T),u.ended?(s=this,l=n,c=new Error("write after end"),s.emit("error",c),p.nextTick(l,c)):(f||(l=this,c=u,o=n,a=!(i=!0),null===(r=e)?a=new TypeError("May not write null values to stream"):"string"==typeof r||void 0===r||c.objectMode||(a=new TypeError("Invalid non-string/buffer chunk")),a&&(l.emit("error",a),p.nextTick(o,a),i=!1),i))&&(u.pendingcb++,d=function(e,t,n,r,o,i){n||(a=function(e,t,n){e.objectMode||!1===e.decodeStrings||"string"!=typeof t||(t=m.from(t,n));return t}(t,r,o),r!==a&&(n=!0,o="buffer",r=a));var a=t.objectMode?1:r.length,s=(t.length+=a,t.length/g,m=e.exports=function(e,t){this.options=o(l,t),this.treeAdapter=this.options.treeAdapter,this.html="",this.startNode=e};m.escapeString=function(e,t){return e=e.replace(c,"&").replace(u," "),e=t?e.replace(d,"""):e.replace(f,"<").replace(p,">")},m.prototype.serialize=function(){return this._serializeChildNodes(this.startNode),this.html},m.prototype._serializeChildNodes=function(e){var t=this.treeAdapter.getChildNodes(e);if(t)for(var n=0,r=t.length;n",t!==a.AREA&&t!==a.BASE&&t!==a.BASEFONT&&t!==a.BGSOUND&&t!==a.BR&&t!==a.BR&&t!==a.COL&&t!==a.EMBED&&t!==a.FRAME&&t!==a.HR&&t!==a.IMG&&t!==a.INPUT&&t!==a.KEYGEN&&t!==a.LINK&&t!==a.MENUITEM&&t!==a.META&&t!==a.PARAM&&t!==a.SOURCE&&t!==a.TRACK&&t!==a.WBR&&(n=t===a.TEMPLATE&&n===s.HTML?this.treeAdapter.getTemplateContent(e):e,this._serializeChildNodes(n),this.html+="")},m.prototype._serializeAttributes=function(e){for(var t=this.treeAdapter.getAttrList(e),n=0,r=t.length;n"}},function(e,t,n){"use strict";var r=n(19).Writable,o=n(6).inherits,i=n(33),n=e.exports=function(e){r.call(this),this.parser=new i(e),this.lastChunkWritten=!1,this.writeCallback=null,this.pausedByScript=!1,this.document=this.parser.treeAdapter.createDocument(),this.pendingHtmlInsertions=[],this._resume=this._resume.bind(this),this._documentWrite=this._documentWrite.bind(this),this._scriptHandler=this._scriptHandler.bind(this),this.parser._bootstrap(this.document,null)};o(n,r),n.prototype._write=function(e,t,n){this.writeCallback=n,this.parser.tokenizer.write(e.toString("utf8"),this.lastChunkWritten),this._runParsingLoop()},n.prototype.end=function(e,t,n){this.lastChunkWritten=!0,r.prototype.end.call(this,e||"",t,n)},n.prototype._runParsingLoop=function(){this.parser.runParsingLoopForCurrentChunk(this.writeCallback,this._scriptHandler)},n.prototype._resume=function(){if(!this.pausedByScript)throw new Error("Parser was already resumed");for(;this.pendingHtmlInsertions.length;){var e=this.pendingHtmlInsertions.pop();this.parser.tokenizer.insertHtmlAtCurrentPos(e)}this.pausedByScript=!1,this.parser.tokenizer.active&&this._runParsingLoop()},n.prototype._documentWrite=function(e){this.parser.stopped||this.pendingHtmlInsertions.push(e)},n.prototype._scriptHandler=function(e){this.listeners("script").length?(this.pausedByScript=!0,this.emit("script",e,this._documentWrite,this._resume)):this._runParsingLoop()}},function(R,e,M){"use strict";!function(e,h){function T(e,t){return e.listeners(t).length}var i,g=M(20),E=(R.exports=o,M(65)),n=(o.ReadableState=r,M(24).EventEmitter,M(40)),u=M(26).Buffer,d=(void 0!==e?e:"undefined"!=typeof window?window:"undefined"!=typeof self?self:{}).Uint8Array||function(){};var a,e=Object.create(M(16)),t=(e.inherits=M(12),M(69)),y=void 0,y=t&&t.debuglog?t.debuglog("stream"):function(){},s=M(70),t=M(41),l=(e.inherits(o,n),["error","close","destroy","pause","resume"]);function r(e,t){e=e||{};var t=t instanceof(i=i||M(8)),n=(this.objectMode=!!e.objectMode,t&&(this.objectMode=this.objectMode||!!e.readableObjectMode),e.highWaterMark),r=e.readableHighWaterMark,o=this.objectMode?16:16384;this.highWaterMark=n||0===n?n:t&&(r||0===r)?r:o,this.highWaterMark=Math.floor(this.highWaterMark),this.buffer=new s,this.length=0,this.pipes=null,this.pipesCount=0,this.flowing=null,this.ended=!1,this.endEmitted=!1,this.reading=!1,this.sync=!0,this.needReadable=!1,this.emittedReadable=!1,this.readableListening=!1,this.resumeScheduled=!1,this.destroyed=!1,this.defaultEncoding=e.defaultEncoding||"utf8",this.awaitDrain=0,this.readingMore=!1,this.decoder=null,this.encoding=null,e.encoding&&(a=a||M(42).StringDecoder,this.decoder=new a(e.encoding),this.encoding=e.encoding)}function o(e){if(i=i||M(8),!(this instanceof o))return new o(e);this._readableState=new r(e,this),this.readable=!0,e&&("function"==typeof e.read&&(this._read=e.read),"function"==typeof e.destroy)&&(this._destroy=e.destroy),n.call(this)}function c(e,t,n,r,o){var i,a,s,l,c=e._readableState;return null===t?(c.reading=!1,a=e,(l=c).ended||(l.decoder&&(s=l.decoder.end())&&s.length&&(l.buffer.push(s),l.length+=l.objectMode?1:s.length),l.ended=!0,v(a))):(i=o?i:function(e,t){var n;!function(e){return u.isBuffer(e)||e instanceof d}(t)&&"string"!=typeof t&&void 0!==t&&!e.objectMode&&(n=new TypeError("Invalid non-string/buffer chunk"));return n}(c,t))?e.emit("error",i):c.objectMode||t&&0t.highWaterMark&&(t.highWaterMark=(p<=(n=e)?n=p:(n--,n=(n=(n=(n=(n|=n>>>1)|n>>>2)|n>>>4)|n>>>8)|n>>>16,n++),n)),e<=t.length?e:t.ended?t.length:(t.needReadable=!0,0))}function v(e){var t=e._readableState;t.needReadable=!1,t.emittedReadable||(y("emitReadable",t.flowing),t.emittedReadable=!0,t.sync?g.nextTick(_,e):_(e))}function _(e){y("emit readable"),e.emit("readable"),S(e)}function b(e,t){t.readingMore||(t.readingMore=!0,g.nextTick(A,e,t))}function A(e,t){for(var n=t.length;!t.reading&&!t.flowing&&!t.ended&&t.length=t.length?(n=t.decoder?t.buffer.join(""):1===t.buffer.length?t.buffer.head.data:t.buffer.concat(t.length),t.buffer.clear()):n=function(e,t,n){var r;ei.length?i.length:e;if(a===i.length?o+=i:o+=i.slice(0,e),0===(e-=a)){a===i.length?(++r,n.next?t.head=n.next:t.head=t.tail=null):(t.head=n).data=i.slice(a);break}++r}return t.length-=r,o}:function(e,t){var n=u.allocUnsafe(e),r=t.head,o=1;r.data.copy(n),e-=r.data.length;for(;r=r.next;){var i=r.data,a=e>i.length?i.length:e;if(i.copy(n,n.length-e,0,a),0===(e-=a)){a===i.length?(++o,r.next?t.head=r.next:t.head=t.tail=null):(t.head=r).data=i.slice(a);break}++o}return t.length-=o,n})(e,t);return r}(e,t.buffer,t.decoder),n)}function w(e){var t=e._readableState;if(0=n.highWaterMark||n.ended)?(y("read: emitReadable",n.length,n.ended),(0===n.length&&n.ended?w:v)(this),null):0===(e=m(e,n))&&n.ended?(0===n.length&&w(this),null):(t=n.needReadable,y("need readable",t),(0===n.length||n.length-e>5==6?2:e>>4==14?3:e>>3==30?4:e>>6==2?-1:-2}function l(e){var t,n=this.lastTotal-this.lastNeed,r=(t=this,128!=(192&(r=e)[0])?(t.lastNeed=0,"�"):1{var n={8075:(e,t,n)=>{"use strict";var r=n(453),o=n(487),a=o(r("String.prototype.indexOf"));e.exports=function(e,t){t=r(e,!!t);return"function"==typeof t&&-1{"use strict";function r(){return u(o,l,arguments)}var o=n(6743),a=n(453),i=n(6897),s=n(9675),l=a("%Function.prototype.apply%"),c=a("%Function.prototype.call%"),u=a("%Reflect.apply%",!0)||o.call(c,l),n=n(655),d=a("%Math.max%");e.exports=function(e){if("function"!=typeof e)throw new s("a function is required");var t=u(o,c,arguments);return i(t,1+d(0,e.length-(arguments.length-1)),!0)};n?n(e.exports,"apply",{value:r}):e.exports.apply=r},41:(e,t,n)=>{"use strict";var l=n(655),c=n(8068),u=n(9675),d=n(5795);e.exports=function(e,t,n){if(!e||"object"!=typeof e&&"function"!=typeof e)throw new u("`obj` must be an object or a function`");if("string"!=typeof t&&"symbol"!=typeof t)throw new u("`property` must be a string or a symbol`");if(3{function r(e){if(e){var t,n=e;for(t in r.prototype)n[t]=r.prototype[t];return n}}(e.exports=r).prototype.on=r.prototype.addEventListener=function(e,t){return this._callbacks=this._callbacks||{},(this._callbacks[e]=this._callbacks[e]||[]).push(t),this},r.prototype.once=function(e,t){var n=this;function r(){n.off(e,r),t.apply(this,arguments)}return this._callbacks=this._callbacks||{},r.fn=t,this.on(e,r),this},r.prototype.off=r.prototype.removeListener=r.prototype.removeAllListeners=r.prototype.removeEventListener=function(e,t){if(this._callbacks=this._callbacks||{},0==arguments.length)this._callbacks={};else{var n=this._callbacks[e];if(n)if(1==arguments.length)delete this._callbacks[e];else for(var r,o=0;o{"use strict";n=n(453)("%Object.defineProperty%",!0)||!1;if(n)try{n({},"a",{value:1})}catch(e){n=!1}e.exports=n},1237:e=>{"use strict";e.exports=EvalError},9383:e=>{"use strict";e.exports=Error},9290:e=>{"use strict";e.exports=RangeError},9538:e=>{"use strict";e.exports=ReferenceError},8068:e=>{"use strict";e.exports=SyntaxError},9675:e=>{"use strict";e.exports=TypeError},5345:e=>{"use strict";e.exports=URIError},2017:e=>{"use strict";e.exports=function e(t,n){if(t===n)return!0;if(t&&n&&"object"==typeof t&&"object"==typeof n){if(t.constructor!==n.constructor)return!1;var r,o,a;if(Array.isArray(t)){if((r=t.length)!=n.length)return!1;for(o=r;0!=o--;)if(!e(t[o],n[o]))return!1}else{if(t.constructor===RegExp)return t.source===n.source&&t.flags===n.flags;if(t.valueOf!==Object.prototype.valueOf)return t.valueOf()===n.valueOf();if(t.toString!==Object.prototype.toString)return t.toString()===n.toString();if((r=(a=Object.keys(t)).length)!==Object.keys(n).length)return!1;for(o=r;0!=o--;)if(!Object.prototype.hasOwnProperty.call(n,a[o]))return!1;for(o=r;0!=o--;){var i=a[o];if(!e(t[i],n[i]))return!1}}return!0}return t!=t&&n!=n}},2682:(e,t,n)=>{"use strict";var E=n(9600),y=Object.prototype.toString,v=Object.prototype.hasOwnProperty;e.exports=function(e,t,n){if(!E(t))throw new TypeError("iterator must be a function");var r;if(3<=arguments.length&&(r=n),"[object Array]"===y.call(e))for(var o=e,a=t,i=r,s=0,l=o.length;s{"use strict";function l(e,t){for(var n=[],r=0;r{"use strict";n=n(9353);e.exports=Function.prototype.bind||n},453:(e,t,n)=>{"use strict";var r,o=n(9383),a=n(1237),i=n(9290),s=n(9538),p=n(8068),m=n(9675),l=n(5345),c=Function,u=function(e){try{return c('"use strict"; return ('+e+").constructor;")()}catch(e){}},f=Object.getOwnPropertyDescriptor;if(f)try{f({},"")}catch(e){f=null}function d(){throw new m}var h=f?function(){try{return d}catch(e){try{return f(arguments,"callee").get}catch(e){return d}}}():d,g=n(4039)(),T=n(24)(),E=Object.getPrototypeOf||(T?function(e){return e.__proto__}:null),y={},T="undefined"!=typeof Uint8Array&&E?E(Uint8Array):r,v={__proto__:null,"%AggregateError%":"undefined"==typeof AggregateError?r:AggregateError,"%Array%":Array,"%ArrayBuffer%":"undefined"==typeof ArrayBuffer?r:ArrayBuffer,"%ArrayIteratorPrototype%":g&&E?E([][Symbol.iterator]()):r,"%AsyncFromSyncIteratorPrototype%":r,"%AsyncFunction%":y,"%AsyncGenerator%":y,"%AsyncGeneratorFunction%":y,"%AsyncIteratorPrototype%":y,"%Atomics%":"undefined"==typeof Atomics?r:Atomics,"%BigInt%":"undefined"==typeof BigInt?r:BigInt,"%BigInt64Array%":"undefined"==typeof BigInt64Array?r:BigInt64Array,"%BigUint64Array%":"undefined"==typeof BigUint64Array?r:BigUint64Array,"%Boolean%":Boolean,"%DataView%":"undefined"==typeof DataView?r:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":o,"%eval%":eval,"%EvalError%":a,"%Float32Array%":"undefined"==typeof Float32Array?r:Float32Array,"%Float64Array%":"undefined"==typeof Float64Array?r:Float64Array,"%FinalizationRegistry%":"undefined"==typeof FinalizationRegistry?r:FinalizationRegistry,"%Function%":c,"%GeneratorFunction%":y,"%Int8Array%":"undefined"==typeof Int8Array?r:Int8Array,"%Int16Array%":"undefined"==typeof Int16Array?r:Int16Array,"%Int32Array%":"undefined"==typeof Int32Array?r:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":g&&E?E(E([][Symbol.iterator]())):r,"%JSON%":"object"==typeof JSON?JSON:r,"%Map%":"undefined"==typeof Map?r:Map,"%MapIteratorPrototype%":"undefined"!=typeof Map&&g&&E?E((new Map)[Symbol.iterator]()):r,"%Math%":Math,"%Number%":Number,"%Object%":Object,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":"undefined"==typeof Promise?r:Promise,"%Proxy%":"undefined"==typeof Proxy?r:Proxy,"%RangeError%":i,"%ReferenceError%":s,"%Reflect%":"undefined"==typeof Reflect?r:Reflect,"%RegExp%":RegExp,"%Set%":"undefined"==typeof Set?r:Set,"%SetIteratorPrototype%":"undefined"!=typeof Set&&g&&E?E((new Set)[Symbol.iterator]()):r,"%SharedArrayBuffer%":"undefined"==typeof SharedArrayBuffer?r:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":g&&E?E(""[Symbol.iterator]()):r,"%Symbol%":g?Symbol:r,"%SyntaxError%":p,"%ThrowTypeError%":h,"%TypedArray%":T,"%TypeError%":m,"%Uint8Array%":"undefined"==typeof Uint8Array?r:Uint8Array,"%Uint8ClampedArray%":"undefined"==typeof Uint8ClampedArray?r:Uint8ClampedArray,"%Uint16Array%":"undefined"==typeof Uint16Array?r:Uint16Array,"%Uint32Array%":"undefined"==typeof Uint32Array?r:Uint32Array,"%URIError%":l,"%WeakMap%":"undefined"==typeof WeakMap?r:WeakMap,"%WeakRef%":"undefined"==typeof WeakRef?r:WeakRef,"%WeakSet%":"undefined"==typeof WeakSet?r:WeakSet};if(E)try{null.error}catch(e){o=E(E(e));v["%Error.prototype%"]=o}function _(e){var t,n;return"%AsyncFunction%"===e?t=u("async function () {}"):"%GeneratorFunction%"===e?t=u("function* () {}"):"%AsyncGeneratorFunction%"===e?t=u("async function* () {}"):"%AsyncGenerator%"===e?(n=_("%AsyncGeneratorFunction%"))&&(t=n.prototype):"%AsyncIteratorPrototype%"===e&&(n=_("%AsyncGenerator%"))&&E&&(t=E(n.prototype)),v[e]=t}var b={__proto__:null,"%ArrayBufferPrototype%":["ArrayBuffer","prototype"],"%ArrayPrototype%":["Array","prototype"],"%ArrayProto_entries%":["Array","prototype","entries"],"%ArrayProto_forEach%":["Array","prototype","forEach"],"%ArrayProto_keys%":["Array","prototype","keys"],"%ArrayProto_values%":["Array","prototype","values"],"%AsyncFunctionPrototype%":["AsyncFunction","prototype"],"%AsyncGenerator%":["AsyncGeneratorFunction","prototype"],"%AsyncGeneratorPrototype%":["AsyncGeneratorFunction","prototype","prototype"],"%BooleanPrototype%":["Boolean","prototype"],"%DataViewPrototype%":["DataView","prototype"],"%DatePrototype%":["Date","prototype"],"%ErrorPrototype%":["Error","prototype"],"%EvalErrorPrototype%":["EvalError","prototype"],"%Float32ArrayPrototype%":["Float32Array","prototype"],"%Float64ArrayPrototype%":["Float64Array","prototype"],"%FunctionPrototype%":["Function","prototype"],"%Generator%":["GeneratorFunction","prototype"],"%GeneratorPrototype%":["GeneratorFunction","prototype","prototype"],"%Int8ArrayPrototype%":["Int8Array","prototype"],"%Int16ArrayPrototype%":["Int16Array","prototype"],"%Int32ArrayPrototype%":["Int32Array","prototype"],"%JSONParse%":["JSON","parse"],"%JSONStringify%":["JSON","stringify"],"%MapPrototype%":["Map","prototype"],"%NumberPrototype%":["Number","prototype"],"%ObjectPrototype%":["Object","prototype"],"%ObjProto_toString%":["Object","prototype","toString"],"%ObjProto_valueOf%":["Object","prototype","valueOf"],"%PromisePrototype%":["Promise","prototype"],"%PromiseProto_then%":["Promise","prototype","then"],"%Promise_all%":["Promise","all"],"%Promise_reject%":["Promise","reject"],"%Promise_resolve%":["Promise","resolve"],"%RangeErrorPrototype%":["RangeError","prototype"],"%ReferenceErrorPrototype%":["ReferenceError","prototype"],"%RegExpPrototype%":["RegExp","prototype"],"%SetPrototype%":["Set","prototype"],"%SharedArrayBufferPrototype%":["SharedArrayBuffer","prototype"],"%StringPrototype%":["String","prototype"],"%SymbolPrototype%":["Symbol","prototype"],"%SyntaxErrorPrototype%":["SyntaxError","prototype"],"%TypedArrayPrototype%":["TypedArray","prototype"],"%TypeErrorPrototype%":["TypeError","prototype"],"%Uint8ArrayPrototype%":["Uint8Array","prototype"],"%Uint8ClampedArrayPrototype%":["Uint8ClampedArray","prototype"],"%Uint16ArrayPrototype%":["Uint16Array","prototype"],"%Uint32ArrayPrototype%":["Uint32Array","prototype"],"%URIErrorPrototype%":["URIError","prototype"],"%WeakMapPrototype%":["WeakMap","prototype"],"%WeakSetPrototype%":["WeakSet","prototype"]},a=n(6743),A=n(2338),N=a.call(Function.call,Array.prototype.concat),S=a.call(Function.apply,Array.prototype.splice),C=a.call(Function.call,String.prototype.replace),k=a.call(Function.call,String.prototype.slice),O=a.call(Function.call,RegExp.prototype.exec),w=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,R=/\\(\\)?/g;e.exports=function(e,t){if("string"!=typeof e||0===e.length)throw new m("intrinsic name must be a non-empty string");if(1=n.length?(l=!!(d=f(a,c)))&&"get"in d&&!("originalValue"in d.get)?d.get:a[c]:(l=A(a,c),a[c]),l&&!i&&(v[u]=a)}}return a}},5795:(e,t,n)=>{"use strict";n=n(453)("%Object.getOwnPropertyDescriptor%",!0);if(n)try{n([],"length")}catch(e){n=null}e.exports=n},592:(e,t,n)=>{"use strict";function r(){return!!o}var o=n(655);r.hasArrayLengthDefineBug=function(){if(!o)return null;try{return 1!==o([],"length",{value:1}).length}catch(e){return!0}},e.exports=r},24:e=>{"use strict";var t={__proto__:null,foo:{}},n=Object;e.exports=function(){return{__proto__:t}.foo===t.foo&&!(t instanceof n)}},4039:(e,t,n)=>{"use strict";var r="undefined"!=typeof Symbol&&Symbol,o=n(1333);e.exports=function(){return"function"==typeof r&&"function"==typeof Symbol&&"symbol"==typeof r("foo")&&"symbol"==typeof Symbol("bar")&&o()}},1333:e=>{"use strict";e.exports=function(){if("function"!=typeof Symbol||"function"!=typeof Object.getOwnPropertySymbols)return!1;if("symbol"!=typeof Symbol.iterator){var e={},t=Symbol("test"),n=Object(t);if("string"==typeof t)return!1;if("[object Symbol]"!==Object.prototype.toString.call(t))return!1;if("[object Symbol]"!==Object.prototype.toString.call(n))return!1;for(t in e[t]=42,e)return!1;if("function"==typeof Object.keys&&0!==Object.keys(e).length)return!1;if("function"==typeof Object.getOwnPropertyNames&&0!==Object.getOwnPropertyNames(e).length)return!1;n=Object.getOwnPropertySymbols(e);if(1!==n.length||n[0]!==t)return!1;if(!Object.prototype.propertyIsEnumerable.call(e,t))return!1;if("function"==typeof Object.getOwnPropertyDescriptor){n=Object.getOwnPropertyDescriptor(e,t);if(42!==n.value||!0!==n.enumerable)return!1}}return!0}},9092:(e,t,n)=>{"use strict";var r=n(1333);e.exports=function(){return r()&&!!Symbol.toStringTag}},2338:(e,t,n)=>{"use strict";var r=Function.prototype.call,o=Object.prototype.hasOwnProperty,n=n(6743);e.exports=n.call(r,o)},6698:e=>{"function"==typeof Object.create?e.exports=function(e,t){t&&(e.super_=t,e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}))}:e.exports=function(e,t){var n;t&&(e.super_=t,(n=function(){}).prototype=t.prototype,e.prototype=new n,e.prototype.constructor=e)}},7244:(e,t,n)=>{"use strict";function r(e){return!(a&&e&&"object"==typeof e&&Symbol.toStringTag in e)&&"[object Arguments]"===i(e)}function o(e){return!!r(e)||null!==e&&"object"==typeof e&&"number"==typeof e.length&&0<=e.length&&"[object Array]"!==i(e)&&"[object Function]"===i(e.callee)}var a=n(9092)(),i=n(8075)("Object.prototype.toString"),n=function(){return r(arguments)}();r.isLegacyArguments=o,e.exports=n?r:o},9600:e=>{"use strict";var t,n,r=Function.prototype.toString,o="object"==typeof Reflect&&null!==Reflect&&Reflect.apply;if("function"==typeof o&&"function"==typeof Object.defineProperty)try{t=Object.defineProperty({},"length",{get:function(){throw n}}),n={},o(function(){throw 42},null,t)}catch(e){e!==n&&(o=null)}else o=null;function a(e){try{var t=r.call(e);return s.test(t)}catch(e){return}}function i(e){try{return a(e)?!1:(r.call(e),!0)}catch(e){return!1}}var s=/^\s*class\b/,l=Object.prototype.toString,c="function"==typeof Symbol&&!!Symbol.toStringTag,u=!(0 in[,]),d=function(){return!1};"object"==typeof document&&l.call(document.all)===l.call(document.all)&&(d=function(e){if(!(!u&&e||void 0!==e&&"object"!=typeof e))try{var t=l.call(e);return("[object HTMLAllCollection]"===t||"[object HTML document.all class]"===t||"[object HTMLCollection]"===t||"[object Object]"===t)&&null==e("")}catch(e){}return!1}),e.exports=o?function(e){if(d(e))return!0;if(!e)return!1;if("function"!=typeof e&&"object"!=typeof e)return!1;try{o(e,null,t)}catch(e){if(e!==n)return!1}return!a(e)&&i(e)}:function(e){var t;return!!d(e)||!!e&&!("function"!=typeof e&&"object"!=typeof e||!c&&(a(e)||"[object Function]"!==(t=l.call(e))&&"[object GeneratorFunction]"!==t&&!/^\[object HTML/.test(t)))&&i(e)}},8184:(e,t,n)=>{"use strict";var r,o=Object.prototype.toString,a=Function.prototype.toString,i=/^\s*(?:function)?\*/,s=n(9092)(),l=Object.getPrototypeOf;e.exports=function(e){var t;return!("function"!=typeof e||!i.test(a.call(e))&&(s?!l||(void 0===r&&(t=function(){if(!s)return!1;try{return Function("return function*() {}")()}catch(e){}}(),r=!!t&&l(t)),l(e)!==r):"[object GeneratorFunction]"!==o.call(e)))}},5680:(e,t,n)=>{"use strict";var r=n(5767);e.exports=function(e){return!!r(e)}},182:(e,t,n)=>{e=n.nmd(e);var D="__lodash_hash_undefined__",H=9007199254740991,U="[object Arguments]",F="[object AsyncFunction]",B="[object Function]",j="[object GeneratorFunction]",z="[object Null]",G="[object Object]",K="[object Proxy]",W="[object Undefined]",V=/^\[object .+?Constructor\]$/,Y=/^(?:0|[1-9]\d*)$/,r={},n=(r["[object Float32Array]"]=r["[object Float64Array]"]=r["[object Int8Array]"]=r["[object Int16Array]"]=r["[object Int32Array]"]=r["[object Uint8Array]"]=r["[object Uint8ClampedArray]"]=r["[object Uint16Array]"]=r["[object Uint32Array]"]=!0,r[U]=r["[object Array]"]=r["[object ArrayBuffer]"]=r["[object Boolean]"]=r["[object DataView]"]=r["[object Date]"]=r["[object Error]"]=r[B]=r["[object Map]"]=r["[object Number]"]=r[G]=r["[object RegExp]"]=r["[object Set]"]=r["[object String]"]=r["[object WeakMap]"]=!1,"object"==typeof n.g&&n.g&&n.g.Object===Object&&n.g),o="object"==typeof self&&self&&self.Object===Object&&self,o=n||o||Function("return this")(),t=t&&!t.nodeType&&t,a=t&&e&&!e.nodeType&&e,t=a&&a.exports===t,i=t&&n.process,n=function(){try{var e=a&&a.require&&a.require("util").types;return e?e:i&&i.binding&&i.binding("util")}catch(e){}}(),n=n&&n.isTypedArray;var Q,q,X=Array.prototype,s=Function.prototype,l=Object.prototype,c=o["__core-js_shared__"],v=s.toString,_=l.hasOwnProperty,$=(s=/[^.]+$/.exec(c&&c.keys&&c.keys.IE_PROTO||""))?"Symbol(src)_1."+s:"",J=l.toString,Z=v.call(Object),ee=RegExp("^"+v.call(_).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),c=t?o.Buffer:void 0,s=o.Symbol,te=o.Uint8Array,ne=c?c.allocUnsafe:void 0,re=(Q=Object.getPrototypeOf,q=Object,function(e){return Q(q(e))}),oe=Object.create,ae=l.propertyIsEnumerable,ie=X.splice,u=s?s.toStringTag:void 0,d=function(){try{var e=y(Object,"defineProperty");return e({},"",{}),e}catch(e){}}(),t=c?c.isBuffer:void 0,se=Math.max,le=Date.now,ce=y(o,"Map"),p=y(Object,"create"),ue=function(e){if(!P(e))return{};if(oe)return oe(e);m.prototype=e;e=new m;return m.prototype=void 0,e};function m(){}function f(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t{"use strict";e.exports=["Float32Array","Float64Array","Int8Array","Int16Array","Int32Array","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","BigInt64Array","BigUint64Array"]},2694:(e,t,n)=>{"use strict";var i=n(6925);function r(){}function o(){}o.resetWarningCache=r,e.exports=function(){function e(e,t,n,r,o,a){if(a!==i)throw(a=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")).name="Invariant Violation",a}function t(){return e}var n={array:e.isRequired=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:o,resetWarningCache:r};return n.PropTypes=n}},5556:(e,t,n)=>{e.exports=n(2694)()},6925:e=>{"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},4473:e=>{"use strict";function t(e){var t;return!/^(data-|aria-)/.test(e)&&(t=e.replace(r,"").toLowerCase(),n[t])||e}var n={for:"htmlFor",class:"className",accept:"accept",acceptcharset:"acceptCharset",accesskey:"accessKey",action:"action",allowfullscreen:"allowFullScreen",allowtransparency:"allowTransparency",alt:"alt",async:"async",autocomplete:"autoComplete",autofocus:"autoFocus",autoplay:"autoPlay",capture:"capture",cellpadding:"cellPadding",cellspacing:"cellSpacing",challenge:"challenge",charset:"charSet",checked:"checked",cite:"cite",classid:"classID",classname:"className",colspan:"colSpan",cols:"cols",content:"content",contenteditable:"contentEditable",contextmenu:"contextMenu",controls:"controls",coords:"coords",crossorigin:"crossOrigin",data:"data",datetime:"dateTime",default:"default",defer:"defer",dir:"dir",disabled:"disabled",download:"download",draggable:"draggable",enctype:"encType",form:"form",formaction:"formAction",formenctype:"formEncType",formmethod:"formMethod",formnovalidate:"formNoValidate",formtarget:"formTarget",frameborder:"frameBorder",headers:"headers",height:"height",hidden:"hidden",high:"high",href:"href",hreflang:"hrefLang",htmlfor:"htmlFor",httpequiv:"httpEquiv",icon:"icon",id:"id",inputmode:"inputMode",integrity:"integrity",is:"is",keyparams:"keyParams",keytype:"keyType",kind:"kind",label:"label",lang:"lang",list:"list",loop:"loop",low:"low",manifest:"manifest",marginheight:"marginHeight",marginwidth:"marginWidth",max:"max",maxlength:"maxLength",media:"media",mediagroup:"mediaGroup",method:"method",min:"min",minlength:"minLength",multiple:"multiple",muted:"muted",name:"name",novalidate:"noValidate",nonce:"nonce",open:"open",optimum:"optimum",pattern:"pattern",placeholder:"placeholder",poster:"poster",preload:"preload",profile:"profile",radiogroup:"radioGroup",readonly:"readOnly",rel:"rel",required:"required",reversed:"reversed",role:"role",rowspan:"rowSpan",rows:"rows",sandbox:"sandbox",scope:"scope",scoped:"scoped",scrolling:"scrolling",seamless:"seamless",selected:"selected",shape:"shape",size:"size",sizes:"sizes",span:"span",spellcheck:"spellCheck",src:"src",srcdoc:"srcDoc",srclang:"srcLang",srcset:"srcSet",start:"start",step:"step",style:"style",summary:"summary",tabindex:"tabIndex",target:"target",title:"title",type:"type",usemap:"useMap",value:"value",width:"width",wmode:"wmode",wrap:"wrap",accentheight:"accentHeight",accumulate:"accumulate",additive:"additive",alignmentbaseline:"alignmentBaseline",allowreorder:"allowReorder",alphabetic:"alphabetic",amplitude:"amplitude",arabicform:"arabicForm",ascent:"ascent",attributename:"attributeName",attributetype:"attributeType",autoreverse:"autoReverse",azimuth:"azimuth",basefrequency:"baseFrequency",baseprofile:"baseProfile",baselineshift:"baselineShift",bbox:"bbox",begin:"begin",bias:"bias",by:"by",calcmode:"calcMode",capheight:"capHeight",clip:"clip",clippath:"clipPath",clippathunits:"clipPathUnits",cliprule:"clipRule",colorinterpolation:"colorInterpolation",colorinterpolationfilters:"colorInterpolationFilters",colorprofile:"colorProfile",colorrendering:"colorRendering",contentscripttype:"contentScriptType",contentstyletype:"contentStyleType",cursor:"cursor",cx:"cx",cy:"cy",d:"d",decelerate:"decelerate",descent:"descent",diffuseconstant:"diffuseConstant",direction:"direction",display:"display",divisor:"divisor",dominantbaseline:"dominantBaseline",dur:"dur",dx:"dx",dy:"dy",edgemode:"edgeMode",elevation:"elevation",enablebackground:"enableBackground",end:"end",exponent:"exponent",externalresourcesrequired:"externalResourcesRequired",fill:"fill",fillopacity:"fillOpacity",fillrule:"fillRule",filter:"filter",filterres:"filterRes",filterunits:"filterUnits",floodcolor:"floodColor",floodopacity:"floodOpacity",focusable:"focusable",fontfamily:"fontFamily",fontsize:"fontSize",fontsizeadjust:"fontSizeAdjust",fontstretch:"fontStretch",fontstyle:"fontStyle",fontvariant:"fontVariant",fontweight:"fontWeight",format:"format",from:"from",fx:"fx",fy:"fy",g1:"g1",g2:"g2",glyphname:"glyphName",glyphorientationhorizontal:"glyphOrientationHorizontal",glyphorientationvertical:"glyphOrientationVertical",glyphref:"glyphRef",gradienttransform:"gradientTransform",gradientunits:"gradientUnits",hanging:"hanging",horizadvx:"horizAdvX",horizoriginx:"horizOriginX",ideographic:"ideographic",imagerendering:"imageRendering",in:"in",in2:"in2",intercept:"intercept",k:"k",k1:"k1",k2:"k2",k3:"k3",k4:"k4",kernelmatrix:"kernelMatrix",kernelunitlength:"kernelUnitLength",kerning:"kerning",keypoints:"keyPoints",keysplines:"keySplines",keytimes:"keyTimes",lengthadjust:"lengthAdjust",letterspacing:"letterSpacing",lightingcolor:"lightingColor",limitingconeangle:"limitingConeAngle",local:"local",markerend:"markerEnd",markerheight:"markerHeight",markermid:"markerMid",markerstart:"markerStart",markerunits:"markerUnits",markerwidth:"markerWidth",mask:"mask",maskcontentunits:"maskContentUnits",maskunits:"maskUnits",mathematical:"mathematical",mode:"mode",numoctaves:"numOctaves",offset:"offset",opacity:"opacity",operator:"operator",order:"order",orient:"orient",orientation:"orientation",origin:"origin",overflow:"overflow",overlineposition:"overlinePosition",overlinethickness:"overlineThickness",paintorder:"paintOrder",panose1:"panose1",pathlength:"pathLength",patterncontentunits:"patternContentUnits",patterntransform:"patternTransform",patternunits:"patternUnits",pointerevents:"pointerEvents",points:"points",pointsatx:"pointsAtX",pointsaty:"pointsAtY",pointsatz:"pointsAtZ",preservealpha:"preserveAlpha",preserveaspectratio:"preserveAspectRatio",primitiveunits:"primitiveUnits",r:"r",radius:"radius",refx:"refX",refy:"refY",renderingintent:"renderingIntent",repeatcount:"repeatCount",repeatdur:"repeatDur",requiredextensions:"requiredExtensions",requiredfeatures:"requiredFeatures",restart:"restart",result:"result",rotate:"rotate",rx:"rx",ry:"ry",scale:"scale",seed:"seed",shaperendering:"shapeRendering",slope:"slope",spacing:"spacing",specularconstant:"specularConstant",specularexponent:"specularExponent",speed:"speed",spreadmethod:"spreadMethod",startoffset:"startOffset",stddeviation:"stdDeviation",stemh:"stemh",stemv:"stemv",stitchtiles:"stitchTiles",stopcolor:"stopColor",stopopacity:"stopOpacity",strikethroughposition:"strikethroughPosition",strikethroughthickness:"strikethroughThickness",string:"string",stroke:"stroke",strokedasharray:"strokeDasharray",strokedashoffset:"strokeDashoffset",strokelinecap:"strokeLinecap",strokelinejoin:"strokeLinejoin",strokemiterlimit:"strokeMiterlimit",strokeopacity:"strokeOpacity",strokewidth:"strokeWidth",surfacescale:"surfaceScale",systemlanguage:"systemLanguage",tablevalues:"tableValues",targetx:"targetX",targety:"targetY",textanchor:"textAnchor",textdecoration:"textDecoration",textlength:"textLength",textrendering:"textRendering",to:"to",transform:"transform",u1:"u1",u2:"u2",underlineposition:"underlinePosition",underlinethickness:"underlineThickness",unicode:"unicode",unicodebidi:"unicodeBidi",unicoderange:"unicodeRange",unitsperem:"unitsPerEm",valphabetic:"vAlphabetic",vhanging:"vHanging",videographic:"vIdeographic",vmathematical:"vMathematical",values:"values",vectoreffect:"vectorEffect",version:"version",vertadvy:"vertAdvY",vertoriginx:"vertOriginX",vertoriginy:"vertOriginY",viewbox:"viewBox",viewtarget:"viewTarget",visibility:"visibility",widths:"widths",wordspacing:"wordSpacing",writingmode:"writingMode",x:"x",x1:"x1",x2:"x2",xchannelselector:"xChannelSelector",xheight:"xHeight",xlinkactuate:"xlinkActuate",xlinkarcrole:"xlinkArcrole",xlinkhref:"xlinkHref",xlinkrole:"xlinkRole",xlinkshow:"xlinkShow",xlinktitle:"xlinkTitle",xlinktype:"xlinkType",xmlns:"xmlns",xmlnsxlink:"xmlnsXlink",xmlbase:"xmlBase",xmllang:"xmlLang",xmlspace:"xmlSpace",y:"y",y1:"y1",y2:"y2",ychannelselector:"yChannelSelector",z:"z",zoomandpan:"zoomAndPan",onabort:"onAbort",onanimationend:"onAnimationEnd",onanimationiteration:"onAnimationIteration",onanimationstart:"onAnimationStart",onblur:"onBlur",oncanplay:"onCanPlay",oncanplaythrough:"onCanPlayThrough",onchange:"onChange",onclick:"onClick",oncompositionend:"onCompositionEnd",oncompositionstart:"onCompositionStart",oncompositionupdate:"onCompositionUpdate",oncontextmenu:"onContextMenu",oncopy:"onCopy",oncut:"onCut",ondoubleclick:"onDoubleClick",ondrag:"onDrag",ondragend:"onDragEnd",ondragenter:"onDragEnter",ondragexit:"onDragExit",ondragleave:"onDragLeave",ondragover:"onDragOver",ondragstart:"onDragStart",ondrop:"onDrop",ondurationchange:"onDurationChange",onemptied:"onEmptied",onencrypted:"onEncrypted",onended:"onEnded",onerror:"onError",onfocus:"onFocus",oninput:"onInput",onkeydown:"onKeyDown",onkeypress:"onKeyPress",onkeyup:"onKeyUp",onload:"onLoad",onloadeddata:"onLoadedData",onloadedmetadata:"onLoadedMetadata",onloadstart:"onLoadStart",onmousedown:"onMouseDown",onmouseenter:"onMouseEnter",onmouseleave:"onMouseLeave",onmousemove:"onMouseMove",onmouseout:"onMouseOut",onmouseover:"onMouseOver",onmouseup:"onMouseUp",onpaste:"onPaste",onpause:"onPause",onplay:"onPlay",onplaying:"onPlaying",onprogress:"onProgress",onratechange:"onRateChange",onscroll:"onScroll",onseeked:"onSeeked",onseeking:"onSeeking",onselect:"onSelect",onstalled:"onStalled",onsubmit:"onSubmit",onsuspend:"onSuspend",ontimeupdate:"onTimeUpdate",ontouchcancel:"onTouchCancel",ontouchend:"onTouchEnd",ontouchmove:"onTouchMove",ontouchstart:"onTouchStart",ontransitionend:"onTransitionEnd",onvolumechange:"onVolumeChange",onwaiting:"onWaiting",onwheel:"onWheel"},r=/[-:]/g;e.exports=t,e.exports.convert=t},7123:function(e,t,n){"use strict";var r,o=this&&this.__extends||(r=function(e,t){return(r=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)},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}r(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}),a=this&&this.__assign||function(){return(a=Object.assign||function(e){for(var t,n=1,r=arguments.length;n/g,"
")}f=d.Component,o(h,f),h.prototype.render=function(){var t=this,e=this.props,n=e.tagName,r=e.html,o=e.innerRef,e=c(e,["tagName","html","innerRef"]);return d.createElement(n||"div",a(a({},e),{ref:"function"==typeof o?function(e){o(e),t.el.current=e}:o||this.el,onInput:this.emitChange,onBlur:this.props.onBlur||this.emitChange,onKeyUp:this.props.onKeyUp||this.emitChange,onKeyDown:this.props.onKeyDown||this.emitChange,contentEditable:!this.props.disabled,dangerouslySetInnerHTML:{__html:r}}),this.props.children)},h.prototype.shouldComponentUpdate=function(e){var t=this.props,n=this.getEl();return!n||m(e.html)!==m(n.innerHTML)||t.disabled!==e.disabled||t.tagName!==e.tagName||t.className!==e.className||t.innerRef!==e.innerRef||t.placeholder!==e.placeholder||!(0,p.default)(t.style,e.style)},h.prototype.componentDidUpdate=function(){var e,t,n,r=this.getEl();r&&(this.props.html!==r.innerHTML&&(r.innerHTML=this.props.html),this.lastHtml=this.props.html,r=r,t=document.createTextNode(""),r.appendChild(t),n=document.activeElement===r,null!==t)&&null!==t.nodeValue&&n&&(null!==(n=window.getSelection())&&((e=document.createRange()).setStart(t,t.nodeValue.length),e.collapse(!0),n.removeAllRanges(),n.addRange(e)),r instanceof HTMLElement)&&r.focus()},h.propTypes={html:u.string.isRequired,onChange:u.func,disabled:u.bool,tagName:u.string,className:u.string,style:u.object,innerRef:u.oneOfType([u.object,u.func])};var f,l=h;function h(){var n=null!==f&&f.apply(this,arguments)||this;return n.lastHtml=n.props.html,n.el="function"==typeof n.props.innerRef?{current:null}:d.createRef(),n.getEl=function(){return(n.props.innerRef&&"function"!=typeof n.props.innerRef?n.props.innerRef:n.el).current},n.emitChange=function(e){var t=n.getEl();t&&(t=t.innerHTML,n.props.onChange&&t!==n.lastHtml&&(e=Object.assign({},e,{target:{value:t}}),n.props.onChange(e)),n.lastHtml=t)},n}t.default=l},2551:(a,l,D)=>{"use strict"; +/** + * @license React + * react-dom.production.min.js * * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. - */var u=t(32),t="function"==typeof Symbol&&Symbol.for,d=t?Symbol.for("react.element"):60103,c=t?Symbol.for("react.portal"):60106,n=t?Symbol.for("react.fragment"):60107,r=t?Symbol.for("react.strict_mode"):60108,o=t?Symbol.for("react.profiler"):60114,i=t?Symbol.for("react.provider"):60109,a=t?Symbol.for("react.context"):60110,s=t?Symbol.for("react.forward_ref"):60112,l=t?Symbol.for("react.suspense"):60113,f=t?Symbol.for("react.memo"):60115,p=t?Symbol.for("react.lazy"):60116,m="function"==typeof Symbol&&Symbol.iterator;function h(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;nthis.bufferWaterline&&(this.lastCharPos-=this.pos,this.html=this.html.substring(this.pos),this.pos=0,this.lastGapPos=-1,this.gapStack=[])},n.prototype._addGap=function(){this.gapStack.push(this.lastGapPos),this.lastGapPos=this.pos},n.prototype._processHighRangeCodePoint=function(e){if(this.pos!==this.lastCharPos){var t=this.html.charCodeAt(this.pos+1);r=t,55296<=(n=e)&&n<=56319&&56320<=r&&r<=57343&&(this.pos++,e=1024*(e-55296)+9216+t,this._addGap())}else if(!this.lastChunkWritten)return this.endOfChunkHit=!0,o.EOF;var n,r;return e},n.prototype.write=function(e,t){this.html?this.html+=e:this.html=e,this.lastCharPos=this.html.length-1,this.endOfChunkHit=!1,this.lastChunkWritten=t},n.prototype.insertHtmlAtCurrentPos=function(e){this.html=this.html.substring(0,this.pos+1)+e+this.html.substring(this.pos+1,this.html.length),this.lastCharPos=this.html.length-1,this.endOfChunkHit=!1},n.prototype.advance=function(){var e;return this.pos++,this.pos>this.lastCharPos?(this.lastChunkWritten||(this.endOfChunkHit=!0),o.EOF):(e=this.html.charCodeAt(this.pos),this.skipNextNewLine&&e===o.LINE_FEED?(this.skipNextNewLine=!1,this._addGap(),this.advance()):e===o.CARRIAGE_RETURN?(this.skipNextNewLine=!0,o.LINE_FEED):(this.skipNextNewLine=!1,55296<=e?this._processHighRangeCodePoint(e):e))},n.prototype.retreat=function(){this.pos===this.lastGapPos&&(this.lastGapPos=this.gapStack.pop(),this.pos--),this.pos--}},function(e,t,n){"use strict";e.exports=new Uint16Array([4,52,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,106,303,412,810,1432,1701,1796,1987,2114,2360,2420,2484,3170,3251,4140,4393,4575,4610,5106,5512,5728,6117,6274,6315,6345,6427,6516,7002,7910,8733,9323,9870,10170,10631,10893,11318,11386,11467,12773,13092,14474,14922,15448,15542,16419,17666,18166,18611,19004,19095,19298,19397,4,16,69,77,97,98,99,102,103,108,109,110,111,112,114,115,116,117,140,150,158,169,176,194,199,210,216,222,226,242,256,266,283,294,108,105,103,5,198,1,59,148,1,198,80,5,38,1,59,156,1,38,99,117,116,101,5,193,1,59,167,1,193,114,101,118,101,59,1,258,4,2,105,121,182,191,114,99,5,194,1,59,189,1,194,59,1,1040,114,59,3,55349,56580,114,97,118,101,5,192,1,59,208,1,192,112,104,97,59,1,913,97,99,114,59,1,256,100,59,1,10835,4,2,103,112,232,237,111,110,59,1,260,102,59,3,55349,56632,112,108,121,70,117,110,99,116,105,111,110,59,1,8289,105,110,103,5,197,1,59,264,1,197,4,2,99,115,272,277,114,59,3,55349,56476,105,103,110,59,1,8788,105,108,100,101,5,195,1,59,292,1,195,109,108,5,196,1,59,301,1,196,4,8,97,99,101,102,111,114,115,117,321,350,354,383,388,394,400,405,4,2,99,114,327,336,107,115,108,97,115,104,59,1,8726,4,2,118,119,342,345,59,1,10983,101,100,59,1,8966,121,59,1,1041,4,3,99,114,116,362,369,379,97,117,115,101,59,1,8757,110,111,117,108,108,105,115,59,1,8492,97,59,1,914,114,59,3,55349,56581,112,102,59,3,55349,56633,101,118,101,59,1,728,99,114,59,1,8492,109,112,101,113,59,1,8782,4,14,72,79,97,99,100,101,102,104,105,108,111,114,115,117,442,447,456,504,542,547,569,573,577,616,678,784,790,796,99,121,59,1,1063,80,89,5,169,1,59,454,1,169,4,3,99,112,121,464,470,497,117,116,101,59,1,262,4,2,59,105,476,478,1,8914,116,97,108,68,105,102,102,101,114,101,110,116,105,97,108,68,59,1,8517,108,101,121,115,59,1,8493,4,4,97,101,105,111,514,520,530,535,114,111,110,59,1,268,100,105,108,5,199,1,59,528,1,199,114,99,59,1,264,110,105,110,116,59,1,8752,111,116,59,1,266,4,2,100,110,553,560,105,108,108,97,59,1,184,116,101,114,68,111,116,59,1,183,114,59,1,8493,105,59,1,935,114,99,108,101,4,4,68,77,80,84,591,596,603,609,111,116,59,1,8857,105,110,117,115,59,1,8854,108,117,115,59,1,8853,105,109,101,115,59,1,8855,111,4,2,99,115,623,646,107,119,105,115,101,67,111,110,116,111,117,114,73,110,116,101,103,114,97,108,59,1,8754,101,67,117,114,108,121,4,2,68,81,658,671,111,117,98,108,101,81,117,111,116,101,59,1,8221,117,111,116,101,59,1,8217,4,4,108,110,112,117,688,701,736,753,111,110,4,2,59,101,696,698,1,8759,59,1,10868,4,3,103,105,116,709,717,722,114,117,101,110,116,59,1,8801,110,116,59,1,8751,111,117,114,73,110,116,101,103,114,97,108,59,1,8750,4,2,102,114,742,745,59,1,8450,111,100,117,99,116,59,1,8720,110,116,101,114,67,108,111,99,107,119,105,115,101,67,111,110,116,111,117,114,73,110,116,101,103,114,97,108,59,1,8755,111,115,115,59,1,10799,99,114,59,3,55349,56478,112,4,2,59,67,803,805,1,8915,97,112,59,1,8781,4,11,68,74,83,90,97,99,101,102,105,111,115,834,850,855,860,865,888,903,916,921,1011,1415,4,2,59,111,840,842,1,8517,116,114,97,104,100,59,1,10513,99,121,59,1,1026,99,121,59,1,1029,99,121,59,1,1039,4,3,103,114,115,873,879,883,103,101,114,59,1,8225,114,59,1,8609,104,118,59,1,10980,4,2,97,121,894,900,114,111,110,59,1,270,59,1,1044,108,4,2,59,116,910,912,1,8711,97,59,1,916,114,59,3,55349,56583,4,2,97,102,927,998,4,2,99,109,933,992,114,105,116,105,99,97,108,4,4,65,68,71,84,950,957,978,985,99,117,116,101,59,1,180,111,4,2,116,117,964,967,59,1,729,98,108,101,65,99,117,116,101,59,1,733,114,97,118,101,59,1,96,105,108,100,101,59,1,732,111,110,100,59,1,8900,102,101,114,101,110,116,105,97,108,68,59,1,8518,4,4,112,116,117,119,1021,1026,1048,1249,102,59,3,55349,56635,4,3,59,68,69,1034,1036,1041,1,168,111,116,59,1,8412,113,117,97,108,59,1,8784,98,108,101,4,6,67,68,76,82,85,86,1065,1082,1101,1189,1211,1236,111,110,116,111,117,114,73,110,116,101,103,114,97,108,59,1,8751,111,4,2,116,119,1089,1092,59,1,168,110,65,114,114,111,119,59,1,8659,4,2,101,111,1107,1141,102,116,4,3,65,82,84,1117,1124,1136,114,114,111,119,59,1,8656,105,103,104,116,65,114,114,111,119,59,1,8660,101,101,59,1,10980,110,103,4,2,76,82,1149,1177,101,102,116,4,2,65,82,1158,1165,114,114,111,119,59,1,10232,105,103,104,116,65,114,114,111,119,59,1,10234,105,103,104,116,65,114,114,111,119,59,1,10233,105,103,104,116,4,2,65,84,1199,1206,114,114,111,119,59,1,8658,101,101,59,1,8872,112,4,2,65,68,1218,1225,114,114,111,119,59,1,8657,111,119,110,65,114,114,111,119,59,1,8661,101,114,116,105,99,97,108,66,97,114,59,1,8741,110,4,6,65,66,76,82,84,97,1264,1292,1299,1352,1391,1408,114,114,111,119,4,3,59,66,85,1276,1278,1283,1,8595,97,114,59,1,10515,112,65,114,114,111,119,59,1,8693,114,101,118,101,59,1,785,101,102,116,4,3,82,84,86,1310,1323,1334,105,103,104,116,86,101,99,116,111,114,59,1,10576,101,101,86,101,99,116,111,114,59,1,10590,101,99,116,111,114,4,2,59,66,1345,1347,1,8637,97,114,59,1,10582,105,103,104,116,4,2,84,86,1362,1373,101,101,86,101,99,116,111,114,59,1,10591,101,99,116,111,114,4,2,59,66,1384,1386,1,8641,97,114,59,1,10583,101,101,4,2,59,65,1399,1401,1,8868,114,114,111,119,59,1,8615,114,114,111,119,59,1,8659,4,2,99,116,1421,1426,114,59,3,55349,56479,114,111,107,59,1,272,4,16,78,84,97,99,100,102,103,108,109,111,112,113,115,116,117,120,1466,1470,1478,1489,1515,1520,1525,1536,1544,1593,1609,1617,1650,1664,1668,1677,71,59,1,330,72,5,208,1,59,1476,1,208,99,117,116,101,5,201,1,59,1487,1,201,4,3,97,105,121,1497,1503,1512,114,111,110,59,1,282,114,99,5,202,1,59,1510,1,202,59,1,1069,111,116,59,1,278,114,59,3,55349,56584,114,97,118,101,5,200,1,59,1534,1,200,101,109,101,110,116,59,1,8712,4,2,97,112,1550,1555,99,114,59,1,274,116,121,4,2,83,86,1563,1576,109,97,108,108,83,113,117,97,114,101,59,1,9723,101,114,121,83,109,97,108,108,83,113,117,97,114,101,59,1,9643,4,2,103,112,1599,1604,111,110,59,1,280,102,59,3,55349,56636,115,105,108,111,110,59,1,917,117,4,2,97,105,1624,1640,108,4,2,59,84,1631,1633,1,10869,105,108,100,101,59,1,8770,108,105,98,114,105,117,109,59,1,8652,4,2,99,105,1656,1660,114,59,1,8496,109,59,1,10867,97,59,1,919,109,108,5,203,1,59,1675,1,203,4,2,105,112,1683,1689,115,116,115,59,1,8707,111,110,101,110,116,105,97,108,69,59,1,8519,4,5,99,102,105,111,115,1713,1717,1722,1762,1791,121,59,1,1060,114,59,3,55349,56585,108,108,101,100,4,2,83,86,1732,1745,109,97,108,108,83,113,117,97,114,101,59,1,9724,101,114,121,83,109,97,108,108,83,113,117,97,114,101,59,1,9642,4,3,112,114,117,1770,1775,1781,102,59,3,55349,56637,65,108,108,59,1,8704,114,105,101,114,116,114,102,59,1,8497,99,114,59,1,8497,4,12,74,84,97,98,99,100,102,103,111,114,115,116,1822,1827,1834,1848,1855,1877,1882,1887,1890,1896,1978,1984,99,121,59,1,1027,5,62,1,59,1832,1,62,109,109,97,4,2,59,100,1843,1845,1,915,59,1,988,114,101,118,101,59,1,286,4,3,101,105,121,1863,1869,1874,100,105,108,59,1,290,114,99,59,1,284,59,1,1043,111,116,59,1,288,114,59,3,55349,56586,59,1,8921,112,102,59,3,55349,56638,101,97,116,101,114,4,6,69,70,71,76,83,84,1915,1933,1944,1953,1959,1971,113,117,97,108,4,2,59,76,1925,1927,1,8805,101,115,115,59,1,8923,117,108,108,69,113,117,97,108,59,1,8807,114,101,97,116,101,114,59,1,10914,101,115,115,59,1,8823,108,97,110,116,69,113,117,97,108,59,1,10878,105,108,100,101,59,1,8819,99,114,59,3,55349,56482,59,1,8811,4,8,65,97,99,102,105,111,115,117,2005,2012,2026,2032,2036,2049,2073,2089,82,68,99,121,59,1,1066,4,2,99,116,2018,2023,101,107,59,1,711,59,1,94,105,114,99,59,1,292,114,59,1,8460,108,98,101,114,116,83,112,97,99,101,59,1,8459,4,2,112,114,2055,2059,102,59,1,8461,105,122,111,110,116,97,108,76,105,110,101,59,1,9472,4,2,99,116,2079,2083,114,59,1,8459,114,111,107,59,1,294,109,112,4,2,68,69,2097,2107,111,119,110,72,117,109,112,59,1,8782,113,117,97,108,59,1,8783,4,14,69,74,79,97,99,100,102,103,109,110,111,115,116,117,2144,2149,2155,2160,2171,2189,2194,2198,2209,2245,2307,2329,2334,2341,99,121,59,1,1045,108,105,103,59,1,306,99,121,59,1,1025,99,117,116,101,5,205,1,59,2169,1,205,4,2,105,121,2177,2186,114,99,5,206,1,59,2184,1,206,59,1,1048,111,116,59,1,304,114,59,1,8465,114,97,118,101,5,204,1,59,2207,1,204,4,3,59,97,112,2217,2219,2238,1,8465,4,2,99,103,2225,2229,114,59,1,298,105,110,97,114,121,73,59,1,8520,108,105,101,115,59,1,8658,4,2,116,118,2251,2281,4,2,59,101,2257,2259,1,8748,4,2,103,114,2265,2271,114,97,108,59,1,8747,115,101,99,116,105,111,110,59,1,8898,105,115,105,98,108,101,4,2,67,84,2293,2300,111,109,109,97,59,1,8291,105,109,101,115,59,1,8290,4,3,103,112,116,2315,2320,2325,111,110,59,1,302,102,59,3,55349,56640,97,59,1,921,99,114,59,1,8464,105,108,100,101,59,1,296,4,2,107,109,2347,2352,99,121,59,1,1030,108,5,207,1,59,2358,1,207,4,5,99,102,111,115,117,2372,2386,2391,2397,2414,4,2,105,121,2378,2383,114,99,59,1,308,59,1,1049,114,59,3,55349,56589,112,102,59,3,55349,56641,4,2,99,101,2403,2408,114,59,3,55349,56485,114,99,121,59,1,1032,107,99,121,59,1,1028,4,7,72,74,97,99,102,111,115,2436,2441,2446,2452,2467,2472,2478,99,121,59,1,1061,99,121,59,1,1036,112,112,97,59,1,922,4,2,101,121,2458,2464,100,105,108,59,1,310,59,1,1050,114,59,3,55349,56590,112,102,59,3,55349,56642,99,114,59,3,55349,56486,4,11,74,84,97,99,101,102,108,109,111,115,116,2508,2513,2520,2562,2585,2981,2986,3004,3011,3146,3167,99,121,59,1,1033,5,60,1,59,2518,1,60,4,5,99,109,110,112,114,2532,2538,2544,2548,2558,117,116,101,59,1,313,98,100,97,59,1,923,103,59,1,10218,108,97,99,101,116,114,102,59,1,8466,114,59,1,8606,4,3,97,101,121,2570,2576,2582,114,111,110,59,1,317,100,105,108,59,1,315,59,1,1051,4,2,102,115,2591,2907,116,4,10,65,67,68,70,82,84,85,86,97,114,2614,2663,2672,2728,2735,2760,2820,2870,2888,2895,4,2,110,114,2620,2633,103,108,101,66,114,97,99,107,101,116,59,1,10216,114,111,119,4,3,59,66,82,2644,2646,2651,1,8592,97,114,59,1,8676,105,103,104,116,65,114,114,111,119,59,1,8646,101,105,108,105,110,103,59,1,8968,111,4,2,117,119,2679,2692,98,108,101,66,114,97,99,107,101,116,59,1,10214,110,4,2,84,86,2699,2710,101,101,86,101,99,116,111,114,59,1,10593,101,99,116,111,114,4,2,59,66,2721,2723,1,8643,97,114,59,1,10585,108,111,111,114,59,1,8970,105,103,104,116,4,2,65,86,2745,2752,114,114,111,119,59,1,8596,101,99,116,111,114,59,1,10574,4,2,101,114,2766,2792,101,4,3,59,65,86,2775,2777,2784,1,8867,114,114,111,119,59,1,8612,101,99,116,111,114,59,1,10586,105,97,110,103,108,101,4,3,59,66,69,2806,2808,2813,1,8882,97,114,59,1,10703,113,117,97,108,59,1,8884,112,4,3,68,84,86,2829,2841,2852,111,119,110,86,101,99,116,111,114,59,1,10577,101,101,86,101,99,116,111,114,59,1,10592,101,99,116,111,114,4,2,59,66,2863,2865,1,8639,97,114,59,1,10584,101,99,116,111,114,4,2,59,66,2881,2883,1,8636,97,114,59,1,10578,114,114,111,119,59,1,8656,105,103,104,116,97,114,114,111,119,59,1,8660,115,4,6,69,70,71,76,83,84,2922,2936,2947,2956,2962,2974,113,117,97,108,71,114,101,97,116,101,114,59,1,8922,117,108,108,69,113,117,97,108,59,1,8806,114,101,97,116,101,114,59,1,8822,101,115,115,59,1,10913,108,97,110,116,69,113,117,97,108,59,1,10877,105,108,100,101,59,1,8818,114,59,3,55349,56591,4,2,59,101,2992,2994,1,8920,102,116,97,114,114,111,119,59,1,8666,105,100,111,116,59,1,319,4,3,110,112,119,3019,3110,3115,103,4,4,76,82,108,114,3030,3058,3070,3098,101,102,116,4,2,65,82,3039,3046,114,114,111,119,59,1,10229,105,103,104,116,65,114,114,111,119,59,1,10231,105,103,104,116,65,114,114,111,119,59,1,10230,101,102,116,4,2,97,114,3079,3086,114,114,111,119,59,1,10232,105,103,104,116,97,114,114,111,119,59,1,10234,105,103,104,116,97,114,114,111,119,59,1,10233,102,59,3,55349,56643,101,114,4,2,76,82,3123,3134,101,102,116,65,114,114,111,119,59,1,8601,105,103,104,116,65,114,114,111,119,59,1,8600,4,3,99,104,116,3154,3158,3161,114,59,1,8466,59,1,8624,114,111,107,59,1,321,59,1,8810,4,8,97,99,101,102,105,111,115,117,3188,3192,3196,3222,3227,3237,3243,3248,112,59,1,10501,121,59,1,1052,4,2,100,108,3202,3213,105,117,109,83,112,97,99,101,59,1,8287,108,105,110,116,114,102,59,1,8499,114,59,3,55349,56592,110,117,115,80,108,117,115,59,1,8723,112,102,59,3,55349,56644,99,114,59,1,8499,59,1,924,4,9,74,97,99,101,102,111,115,116,117,3271,3276,3283,3306,3422,3427,4120,4126,4137,99,121,59,1,1034,99,117,116,101,59,1,323,4,3,97,101,121,3291,3297,3303,114,111,110,59,1,327,100,105,108,59,1,325,59,1,1053,4,3,103,115,119,3314,3380,3415,97,116,105,118,101,4,3,77,84,86,3327,3340,3365,101,100,105,117,109,83,112,97,99,101,59,1,8203,104,105,4,2,99,110,3348,3357,107,83,112,97,99,101,59,1,8203,83,112,97,99,101,59,1,8203,101,114,121,84,104,105,110,83,112,97,99,101,59,1,8203,116,101,100,4,2,71,76,3389,3405,114,101,97,116,101,114,71,114,101,97,116,101,114,59,1,8811,101,115,115,76,101,115,115,59,1,8810,76,105,110,101,59,1,10,114,59,3,55349,56593,4,4,66,110,112,116,3437,3444,3460,3464,114,101,97,107,59,1,8288,66,114,101,97,107,105,110,103,83,112,97,99,101,59,1,160,102,59,1,8469,4,13,59,67,68,69,71,72,76,78,80,82,83,84,86,3492,3494,3517,3536,3578,3657,3685,3784,3823,3860,3915,4066,4107,1,10988,4,2,111,117,3500,3510,110,103,114,117,101,110,116,59,1,8802,112,67,97,112,59,1,8813,111,117,98,108,101,86,101,114,116,105,99,97,108,66,97,114,59,1,8742,4,3,108,113,120,3544,3552,3571,101,109,101,110,116,59,1,8713,117,97,108,4,2,59,84,3561,3563,1,8800,105,108,100,101,59,3,8770,824,105,115,116,115,59,1,8708,114,101,97,116,101,114,4,7,59,69,70,71,76,83,84,3600,3602,3609,3621,3631,3637,3650,1,8815,113,117,97,108,59,1,8817,117,108,108,69,113,117,97,108,59,3,8807,824,114,101,97,116,101,114,59,3,8811,824,101,115,115,59,1,8825,108,97,110,116,69,113,117,97,108,59,3,10878,824,105,108,100,101,59,1,8821,117,109,112,4,2,68,69,3666,3677,111,119,110,72,117,109,112,59,3,8782,824,113,117,97,108,59,3,8783,824,101,4,2,102,115,3692,3724,116,84,114,105,97,110,103,108,101,4,3,59,66,69,3709,3711,3717,1,8938,97,114,59,3,10703,824,113,117,97,108,59,1,8940,115,4,6,59,69,71,76,83,84,3739,3741,3748,3757,3764,3777,1,8814,113,117,97,108,59,1,8816,114,101,97,116,101,114,59,1,8824,101,115,115,59,3,8810,824,108,97,110,116,69,113,117,97,108,59,3,10877,824,105,108,100,101,59,1,8820,101,115,116,101,100,4,2,71,76,3795,3812,114,101,97,116,101,114,71,114,101,97,116,101,114,59,3,10914,824,101,115,115,76,101,115,115,59,3,10913,824,114,101,99,101,100,101,115,4,3,59,69,83,3838,3840,3848,1,8832,113,117,97,108,59,3,10927,824,108,97,110,116,69,113,117,97,108,59,1,8928,4,2,101,105,3866,3881,118,101,114,115,101,69,108,101,109,101,110,116,59,1,8716,103,104,116,84,114,105,97,110,103,108,101,4,3,59,66,69,3900,3902,3908,1,8939,97,114,59,3,10704,824,113,117,97,108,59,1,8941,4,2,113,117,3921,3973,117,97,114,101,83,117,4,2,98,112,3933,3952,115,101,116,4,2,59,69,3942,3945,3,8847,824,113,117,97,108,59,1,8930,101,114,115,101,116,4,2,59,69,3963,3966,3,8848,824,113,117,97,108,59,1,8931,4,3,98,99,112,3981,4e3,4045,115,101,116,4,2,59,69,3990,3993,3,8834,8402,113,117,97,108,59,1,8840,99,101,101,100,115,4,4,59,69,83,84,4015,4017,4025,4037,1,8833,113,117,97,108,59,3,10928,824,108,97,110,116,69,113,117,97,108,59,1,8929,105,108,100,101,59,3,8831,824,101,114,115,101,116,4,2,59,69,4056,4059,3,8835,8402,113,117,97,108,59,1,8841,105,108,100,101,4,4,59,69,70,84,4080,4082,4089,4100,1,8769,113,117,97,108,59,1,8772,117,108,108,69,113,117,97,108,59,1,8775,105,108,100,101,59,1,8777,101,114,116,105,99,97,108,66,97,114,59,1,8740,99,114,59,3,55349,56489,105,108,100,101,5,209,1,59,4135,1,209,59,1,925,4,14,69,97,99,100,102,103,109,111,112,114,115,116,117,118,4170,4176,4187,4205,4212,4217,4228,4253,4259,4292,4295,4316,4337,4346,108,105,103,59,1,338,99,117,116,101,5,211,1,59,4185,1,211,4,2,105,121,4193,4202,114,99,5,212,1,59,4200,1,212,59,1,1054,98,108,97,99,59,1,336,114,59,3,55349,56594,114,97,118,101,5,210,1,59,4226,1,210,4,3,97,101,105,4236,4241,4246,99,114,59,1,332,103,97,59,1,937,99,114,111,110,59,1,927,112,102,59,3,55349,56646,101,110,67,117,114,108,121,4,2,68,81,4272,4285,111,117,98,108,101,81,117,111,116,101,59,1,8220,117,111,116,101,59,1,8216,59,1,10836,4,2,99,108,4301,4306,114,59,3,55349,56490,97,115,104,5,216,1,59,4314,1,216,105,4,2,108,109,4323,4332,100,101,5,213,1,59,4330,1,213,101,115,59,1,10807,109,108,5,214,1,59,4344,1,214,101,114,4,2,66,80,4354,4380,4,2,97,114,4360,4364,114,59,1,8254,97,99,4,2,101,107,4372,4375,59,1,9182,101,116,59,1,9140,97,114,101,110,116,104,101,115,105,115,59,1,9180,4,9,97,99,102,104,105,108,111,114,115,4413,4422,4426,4431,4435,4438,4448,4471,4561,114,116,105,97,108,68,59,1,8706,121,59,1,1055,114,59,3,55349,56595,105,59,1,934,59,1,928,117,115,77,105,110,117,115,59,1,177,4,2,105,112,4454,4467,110,99,97,114,101,112,108,97,110,101,59,1,8460,102,59,1,8473,4,4,59,101,105,111,4481,4483,4526,4531,1,10939,99,101,100,101,115,4,4,59,69,83,84,4498,4500,4507,4519,1,8826,113,117,97,108,59,1,10927,108,97,110,116,69,113,117,97,108,59,1,8828,105,108,100,101,59,1,8830,109,101,59,1,8243,4,2,100,112,4537,4543,117,99,116,59,1,8719,111,114,116,105,111,110,4,2,59,97,4555,4557,1,8759,108,59,1,8733,4,2,99,105,4567,4572,114,59,3,55349,56491,59,1,936,4,4,85,102,111,115,4585,4594,4599,4604,79,84,5,34,1,59,4592,1,34,114,59,3,55349,56596,112,102,59,1,8474,99,114,59,3,55349,56492,4,12,66,69,97,99,101,102,104,105,111,114,115,117,4636,4642,4650,4681,4704,4763,4767,4771,5047,5069,5081,5094,97,114,114,59,1,10512,71,5,174,1,59,4648,1,174,4,3,99,110,114,4658,4664,4668,117,116,101,59,1,340,103,59,1,10219,114,4,2,59,116,4675,4677,1,8608,108,59,1,10518,4,3,97,101,121,4689,4695,4701,114,111,110,59,1,344,100,105,108,59,1,342,59,1,1056,4,2,59,118,4710,4712,1,8476,101,114,115,101,4,2,69,85,4722,4748,4,2,108,113,4728,4736,101,109,101,110,116,59,1,8715,117,105,108,105,98,114,105,117,109,59,1,8651,112,69,113,117,105,108,105,98,114,105,117,109,59,1,10607,114,59,1,8476,111,59,1,929,103,104,116,4,8,65,67,68,70,84,85,86,97,4792,4840,4849,4905,4912,4972,5022,5040,4,2,110,114,4798,4811,103,108,101,66,114,97,99,107,101,116,59,1,10217,114,111,119,4,3,59,66,76,4822,4824,4829,1,8594,97,114,59,1,8677,101,102,116,65,114,114,111,119,59,1,8644,101,105,108,105,110,103,59,1,8969,111,4,2,117,119,4856,4869,98,108,101,66,114,97,99,107,101,116,59,1,10215,110,4,2,84,86,4876,4887,101,101,86,101,99,116,111,114,59,1,10589,101,99,116,111,114,4,2,59,66,4898,4900,1,8642,97,114,59,1,10581,108,111,111,114,59,1,8971,4,2,101,114,4918,4944,101,4,3,59,65,86,4927,4929,4936,1,8866,114,114,111,119,59,1,8614,101,99,116,111,114,59,1,10587,105,97,110,103,108,101,4,3,59,66,69,4958,4960,4965,1,8883,97,114,59,1,10704,113,117,97,108,59,1,8885,112,4,3,68,84,86,4981,4993,5004,111,119,110,86,101,99,116,111,114,59,1,10575,101,101,86,101,99,116,111,114,59,1,10588,101,99,116,111,114,4,2,59,66,5015,5017,1,8638,97,114,59,1,10580,101,99,116,111,114,4,2,59,66,5033,5035,1,8640,97,114,59,1,10579,114,114,111,119,59,1,8658,4,2,112,117,5053,5057,102,59,1,8477,110,100,73,109,112,108,105,101,115,59,1,10608,105,103,104,116,97,114,114,111,119,59,1,8667,4,2,99,104,5087,5091,114,59,1,8475,59,1,8625,108,101,68,101,108,97,121,101,100,59,1,10740,4,13,72,79,97,99,102,104,105,109,111,113,115,116,117,5134,5150,5157,5164,5198,5203,5259,5265,5277,5283,5374,5380,5385,4,2,67,99,5140,5146,72,99,121,59,1,1065,121,59,1,1064,70,84,99,121,59,1,1068,99,117,116,101,59,1,346,4,5,59,97,101,105,121,5176,5178,5184,5190,5195,1,10940,114,111,110,59,1,352,100,105,108,59,1,350,114,99,59,1,348,59,1,1057,114,59,3,55349,56598,111,114,116,4,4,68,76,82,85,5216,5227,5238,5250,111,119,110,65,114,114,111,119,59,1,8595,101,102,116,65,114,114,111,119,59,1,8592,105,103,104,116,65,114,114,111,119,59,1,8594,112,65,114,114,111,119,59,1,8593,103,109,97,59,1,931,97,108,108,67,105,114,99,108,101,59,1,8728,112,102,59,3,55349,56650,4,2,114,117,5289,5293,116,59,1,8730,97,114,101,4,4,59,73,83,85,5306,5308,5322,5367,1,9633,110,116,101,114,115,101,99,116,105,111,110,59,1,8851,117,4,2,98,112,5329,5347,115,101,116,4,2,59,69,5338,5340,1,8847,113,117,97,108,59,1,8849,101,114,115,101,116,4,2,59,69,5358,5360,1,8848,113,117,97,108,59,1,8850,110,105,111,110,59,1,8852,99,114,59,3,55349,56494,97,114,59,1,8902,4,4,98,99,109,112,5395,5420,5475,5478,4,2,59,115,5401,5403,1,8912,101,116,4,2,59,69,5411,5413,1,8912,113,117,97,108,59,1,8838,4,2,99,104,5426,5468,101,101,100,115,4,4,59,69,83,84,5440,5442,5449,5461,1,8827,113,117,97,108,59,1,10928,108,97,110,116,69,113,117,97,108,59,1,8829,105,108,100,101,59,1,8831,84,104,97,116,59,1,8715,59,1,8721,4,3,59,101,115,5486,5488,5507,1,8913,114,115,101,116,4,2,59,69,5498,5500,1,8835,113,117,97,108,59,1,8839,101,116,59,1,8913,4,11,72,82,83,97,99,102,104,105,111,114,115,5536,5546,5552,5567,5579,5602,5607,5655,5695,5701,5711,79,82,78,5,222,1,59,5544,1,222,65,68,69,59,1,8482,4,2,72,99,5558,5563,99,121,59,1,1035,121,59,1,1062,4,2,98,117,5573,5576,59,1,9,59,1,932,4,3,97,101,121,5587,5593,5599,114,111,110,59,1,356,100,105,108,59,1,354,59,1,1058,114,59,3,55349,56599,4,2,101,105,5613,5631,4,2,114,116,5619,5627,101,102,111,114,101,59,1,8756,97,59,1,920,4,2,99,110,5637,5647,107,83,112,97,99,101,59,3,8287,8202,83,112,97,99,101,59,1,8201,108,100,101,4,4,59,69,70,84,5668,5670,5677,5688,1,8764,113,117,97,108,59,1,8771,117,108,108,69,113,117,97,108,59,1,8773,105,108,100,101,59,1,8776,112,102,59,3,55349,56651,105,112,108,101,68,111,116,59,1,8411,4,2,99,116,5717,5722,114,59,3,55349,56495,114,111,107,59,1,358,4,14,97,98,99,100,102,103,109,110,111,112,114,115,116,117,5758,5789,5805,5823,5830,5835,5846,5852,5921,5937,6089,6095,6101,6108,4,2,99,114,5764,5774,117,116,101,5,218,1,59,5772,1,218,114,4,2,59,111,5781,5783,1,8607,99,105,114,59,1,10569,114,4,2,99,101,5796,5800,121,59,1,1038,118,101,59,1,364,4,2,105,121,5811,5820,114,99,5,219,1,59,5818,1,219,59,1,1059,98,108,97,99,59,1,368,114,59,3,55349,56600,114,97,118,101,5,217,1,59,5844,1,217,97,99,114,59,1,362,4,2,100,105,5858,5905,101,114,4,2,66,80,5866,5892,4,2,97,114,5872,5876,114,59,1,95,97,99,4,2,101,107,5884,5887,59,1,9183,101,116,59,1,9141,97,114,101,110,116,104,101,115,105,115,59,1,9181,111,110,4,2,59,80,5913,5915,1,8899,108,117,115,59,1,8846,4,2,103,112,5927,5932,111,110,59,1,370,102,59,3,55349,56652,4,8,65,68,69,84,97,100,112,115,5955,5985,5996,6009,6026,6033,6044,6075,114,114,111,119,4,3,59,66,68,5967,5969,5974,1,8593,97,114,59,1,10514,111,119,110,65,114,114,111,119,59,1,8645,111,119,110,65,114,114,111,119,59,1,8597,113,117,105,108,105,98,114,105,117,109,59,1,10606,101,101,4,2,59,65,6017,6019,1,8869,114,114,111,119,59,1,8613,114,114,111,119,59,1,8657,111,119,110,97,114,114,111,119,59,1,8661,101,114,4,2,76,82,6052,6063,101,102,116,65,114,114,111,119,59,1,8598,105,103,104,116,65,114,114,111,119,59,1,8599,105,4,2,59,108,6082,6084,1,978,111,110,59,1,933,105,110,103,59,1,366,99,114,59,3,55349,56496,105,108,100,101,59,1,360,109,108,5,220,1,59,6115,1,220,4,9,68,98,99,100,101,102,111,115,118,6137,6143,6148,6152,6166,6250,6255,6261,6267,97,115,104,59,1,8875,97,114,59,1,10987,121,59,1,1042,97,115,104,4,2,59,108,6161,6163,1,8873,59,1,10982,4,2,101,114,6172,6175,59,1,8897,4,3,98,116,121,6183,6188,6238,97,114,59,1,8214,4,2,59,105,6194,6196,1,8214,99,97,108,4,4,66,76,83,84,6209,6214,6220,6231,97,114,59,1,8739,105,110,101,59,1,124,101,112,97,114,97,116,111,114,59,1,10072,105,108,100,101,59,1,8768,84,104,105,110,83,112,97,99,101,59,1,8202,114,59,3,55349,56601,112,102,59,3,55349,56653,99,114,59,3,55349,56497,100,97,115,104,59,1,8874,4,5,99,101,102,111,115,6286,6292,6298,6303,6309,105,114,99,59,1,372,100,103,101,59,1,8896,114,59,3,55349,56602,112,102,59,3,55349,56654,99,114,59,3,55349,56498,4,4,102,105,111,115,6325,6330,6333,6339,114,59,3,55349,56603,59,1,926,112,102,59,3,55349,56655,99,114,59,3,55349,56499,4,9,65,73,85,97,99,102,111,115,117,6365,6370,6375,6380,6391,6405,6410,6416,6422,99,121,59,1,1071,99,121,59,1,1031,99,121,59,1,1070,99,117,116,101,5,221,1,59,6389,1,221,4,2,105,121,6397,6402,114,99,59,1,374,59,1,1067,114,59,3,55349,56604,112,102,59,3,55349,56656,99,114,59,3,55349,56500,109,108,59,1,376,4,8,72,97,99,100,101,102,111,115,6445,6450,6457,6472,6477,6501,6505,6510,99,121,59,1,1046,99,117,116,101,59,1,377,4,2,97,121,6463,6469,114,111,110,59,1,381,59,1,1047,111,116,59,1,379,4,2,114,116,6483,6497,111,87,105,100,116,104,83,112,97,99,101,59,1,8203,97,59,1,918,114,59,1,8488,112,102,59,1,8484,99,114,59,3,55349,56501,4,16,97,98,99,101,102,103,108,109,110,111,112,114,115,116,117,119,6550,6561,6568,6612,6622,6634,6645,6672,6699,6854,6870,6923,6933,6963,6974,6983,99,117,116,101,5,225,1,59,6559,1,225,114,101,118,101,59,1,259,4,6,59,69,100,105,117,121,6582,6584,6588,6591,6600,6609,1,8766,59,3,8766,819,59,1,8767,114,99,5,226,1,59,6598,1,226,116,101,5,180,1,59,6607,1,180,59,1,1072,108,105,103,5,230,1,59,6620,1,230,4,2,59,114,6628,6630,1,8289,59,3,55349,56606,114,97,118,101,5,224,1,59,6643,1,224,4,2,101,112,6651,6667,4,2,102,112,6657,6663,115,121,109,59,1,8501,104,59,1,8501,104,97,59,1,945,4,2,97,112,6678,6692,4,2,99,108,6684,6688,114,59,1,257,103,59,1,10815,5,38,1,59,6697,1,38,4,2,100,103,6705,6737,4,5,59,97,100,115,118,6717,6719,6724,6727,6734,1,8743,110,100,59,1,10837,59,1,10844,108,111,112,101,59,1,10840,59,1,10842,4,7,59,101,108,109,114,115,122,6753,6755,6758,6762,6814,6835,6848,1,8736,59,1,10660,101,59,1,8736,115,100,4,2,59,97,6770,6772,1,8737,4,8,97,98,99,100,101,102,103,104,6790,6793,6796,6799,6802,6805,6808,6811,59,1,10664,59,1,10665,59,1,10666,59,1,10667,59,1,10668,59,1,10669,59,1,10670,59,1,10671,116,4,2,59,118,6821,6823,1,8735,98,4,2,59,100,6830,6832,1,8894,59,1,10653,4,2,112,116,6841,6845,104,59,1,8738,59,1,197,97,114,114,59,1,9084,4,2,103,112,6860,6865,111,110,59,1,261,102,59,3,55349,56658,4,7,59,69,97,101,105,111,112,6886,6888,6891,6897,6900,6904,6908,1,8776,59,1,10864,99,105,114,59,1,10863,59,1,8778,100,59,1,8779,115,59,1,39,114,111,120,4,2,59,101,6917,6919,1,8776,113,59,1,8778,105,110,103,5,229,1,59,6931,1,229,4,3,99,116,121,6941,6946,6949,114,59,3,55349,56502,59,1,42,109,112,4,2,59,101,6957,6959,1,8776,113,59,1,8781,105,108,100,101,5,227,1,59,6972,1,227,109,108,5,228,1,59,6981,1,228,4,2,99,105,6989,6997,111,110,105,110,116,59,1,8755,110,116,59,1,10769,4,16,78,97,98,99,100,101,102,105,107,108,110,111,112,114,115,117,7036,7041,7119,7135,7149,7155,7219,7224,7347,7354,7463,7489,7786,7793,7814,7866,111,116,59,1,10989,4,2,99,114,7047,7094,107,4,4,99,101,112,115,7058,7064,7073,7080,111,110,103,59,1,8780,112,115,105,108,111,110,59,1,1014,114,105,109,101,59,1,8245,105,109,4,2,59,101,7088,7090,1,8765,113,59,1,8909,4,2,118,119,7100,7105,101,101,59,1,8893,101,100,4,2,59,103,7113,7115,1,8965,101,59,1,8965,114,107,4,2,59,116,7127,7129,1,9141,98,114,107,59,1,9142,4,2,111,121,7141,7146,110,103,59,1,8780,59,1,1073,113,117,111,59,1,8222,4,5,99,109,112,114,116,7167,7181,7188,7193,7199,97,117,115,4,2,59,101,7176,7178,1,8757,59,1,8757,112,116,121,118,59,1,10672,115,105,59,1,1014,110,111,117,59,1,8492,4,3,97,104,119,7207,7210,7213,59,1,946,59,1,8502,101,101,110,59,1,8812,114,59,3,55349,56607,103,4,7,99,111,115,116,117,118,119,7241,7262,7288,7305,7328,7335,7340,4,3,97,105,117,7249,7253,7258,112,59,1,8898,114,99,59,1,9711,112,59,1,8899,4,3,100,112,116,7270,7275,7281,111,116,59,1,10752,108,117,115,59,1,10753,105,109,101,115,59,1,10754,4,2,113,116,7294,7300,99,117,112,59,1,10758,97,114,59,1,9733,114,105,97,110,103,108,101,4,2,100,117,7318,7324,111,119,110,59,1,9661,112,59,1,9651,112,108,117,115,59,1,10756,101,101,59,1,8897,101,100,103,101,59,1,8896,97,114,111,119,59,1,10509,4,3,97,107,111,7362,7436,7458,4,2,99,110,7368,7432,107,4,3,108,115,116,7377,7386,7394,111,122,101,110,103,101,59,1,10731,113,117,97,114,101,59,1,9642,114,105,97,110,103,108,101,4,4,59,100,108,114,7411,7413,7419,7425,1,9652,111,119,110,59,1,9662,101,102,116,59,1,9666,105,103,104,116,59,1,9656,107,59,1,9251,4,2,49,51,7442,7454,4,2,50,52,7448,7451,59,1,9618,59,1,9617,52,59,1,9619,99,107,59,1,9608,4,2,101,111,7469,7485,4,2,59,113,7475,7478,3,61,8421,117,105,118,59,3,8801,8421,116,59,1,8976,4,4,112,116,119,120,7499,7504,7517,7523,102,59,3,55349,56659,4,2,59,116,7510,7512,1,8869,111,109,59,1,8869,116,105,101,59,1,8904,4,12,68,72,85,86,98,100,104,109,112,116,117,118,7549,7571,7597,7619,7655,7660,7682,7708,7715,7721,7728,7750,4,4,76,82,108,114,7559,7562,7565,7568,59,1,9559,59,1,9556,59,1,9558,59,1,9555,4,5,59,68,85,100,117,7583,7585,7588,7591,7594,1,9552,59,1,9574,59,1,9577,59,1,9572,59,1,9575,4,4,76,82,108,114,7607,7610,7613,7616,59,1,9565,59,1,9562,59,1,9564,59,1,9561,4,7,59,72,76,82,104,108,114,7635,7637,7640,7643,7646,7649,7652,1,9553,59,1,9580,59,1,9571,59,1,9568,59,1,9579,59,1,9570,59,1,9567,111,120,59,1,10697,4,4,76,82,108,114,7670,7673,7676,7679,59,1,9557,59,1,9554,59,1,9488,59,1,9484,4,5,59,68,85,100,117,7694,7696,7699,7702,7705,1,9472,59,1,9573,59,1,9576,59,1,9516,59,1,9524,105,110,117,115,59,1,8863,108,117,115,59,1,8862,105,109,101,115,59,1,8864,4,4,76,82,108,114,7738,7741,7744,7747,59,1,9563,59,1,9560,59,1,9496,59,1,9492,4,7,59,72,76,82,104,108,114,7766,7768,7771,7774,7777,7780,7783,1,9474,59,1,9578,59,1,9569,59,1,9566,59,1,9532,59,1,9508,59,1,9500,114,105,109,101,59,1,8245,4,2,101,118,7799,7804,118,101,59,1,728,98,97,114,5,166,1,59,7812,1,166,4,4,99,101,105,111,7824,7829,7834,7846,114,59,3,55349,56503,109,105,59,1,8271,109,4,2,59,101,7841,7843,1,8765,59,1,8909,108,4,3,59,98,104,7855,7857,7860,1,92,59,1,10693,115,117,98,59,1,10184,4,2,108,109,7872,7885,108,4,2,59,101,7879,7881,1,8226,116,59,1,8226,112,4,3,59,69,101,7894,7896,7899,1,8782,59,1,10926,4,2,59,113,7905,7907,1,8783,59,1,8783,4,15,97,99,100,101,102,104,105,108,111,114,115,116,117,119,121,7942,8021,8075,8080,8121,8126,8157,8279,8295,8430,8446,8485,8491,8707,8726,4,3,99,112,114,7950,7956,8007,117,116,101,59,1,263,4,6,59,97,98,99,100,115,7970,7972,7977,7984,7998,8003,1,8745,110,100,59,1,10820,114,99,117,112,59,1,10825,4,2,97,117,7990,7994,112,59,1,10827,112,59,1,10823,111,116,59,1,10816,59,3,8745,65024,4,2,101,111,8013,8017,116,59,1,8257,110,59,1,711,4,4,97,101,105,117,8031,8046,8056,8061,4,2,112,114,8037,8041,115,59,1,10829,111,110,59,1,269,100,105,108,5,231,1,59,8054,1,231,114,99,59,1,265,112,115,4,2,59,115,8069,8071,1,10828,109,59,1,10832,111,116,59,1,267,4,3,100,109,110,8088,8097,8104,105,108,5,184,1,59,8095,1,184,112,116,121,118,59,1,10674,116,5,162,2,59,101,8112,8114,1,162,114,100,111,116,59,1,183,114,59,3,55349,56608,4,3,99,101,105,8134,8138,8154,121,59,1,1095,99,107,4,2,59,109,8146,8148,1,10003,97,114,107,59,1,10003,59,1,967,114,4,7,59,69,99,101,102,109,115,8174,8176,8179,8258,8261,8268,8273,1,9675,59,1,10691,4,3,59,101,108,8187,8189,8193,1,710,113,59,1,8791,101,4,2,97,100,8200,8223,114,114,111,119,4,2,108,114,8210,8216,101,102,116,59,1,8634,105,103,104,116,59,1,8635,4,5,82,83,97,99,100,8235,8238,8241,8246,8252,59,1,174,59,1,9416,115,116,59,1,8859,105,114,99,59,1,8858,97,115,104,59,1,8861,59,1,8791,110,105,110,116,59,1,10768,105,100,59,1,10991,99,105,114,59,1,10690,117,98,115,4,2,59,117,8288,8290,1,9827,105,116,59,1,9827,4,4,108,109,110,112,8305,8326,8376,8400,111,110,4,2,59,101,8313,8315,1,58,4,2,59,113,8321,8323,1,8788,59,1,8788,4,2,109,112,8332,8344,97,4,2,59,116,8339,8341,1,44,59,1,64,4,3,59,102,108,8352,8354,8358,1,8705,110,59,1,8728,101,4,2,109,120,8365,8371,101,110,116,59,1,8705,101,115,59,1,8450,4,2,103,105,8382,8395,4,2,59,100,8388,8390,1,8773,111,116,59,1,10861,110,116,59,1,8750,4,3,102,114,121,8408,8412,8417,59,3,55349,56660,111,100,59,1,8720,5,169,2,59,115,8424,8426,1,169,114,59,1,8471,4,2,97,111,8436,8441,114,114,59,1,8629,115,115,59,1,10007,4,2,99,117,8452,8457,114,59,3,55349,56504,4,2,98,112,8463,8474,4,2,59,101,8469,8471,1,10959,59,1,10961,4,2,59,101,8480,8482,1,10960,59,1,10962,100,111,116,59,1,8943,4,7,100,101,108,112,114,118,119,8507,8522,8536,8550,8600,8697,8702,97,114,114,4,2,108,114,8516,8519,59,1,10552,59,1,10549,4,2,112,115,8528,8532,114,59,1,8926,99,59,1,8927,97,114,114,4,2,59,112,8545,8547,1,8630,59,1,10557,4,6,59,98,99,100,111,115,8564,8566,8573,8587,8592,8596,1,8746,114,99,97,112,59,1,10824,4,2,97,117,8579,8583,112,59,1,10822,112,59,1,10826,111,116,59,1,8845,114,59,1,10821,59,3,8746,65024,4,4,97,108,114,118,8610,8623,8663,8672,114,114,4,2,59,109,8618,8620,1,8631,59,1,10556,121,4,3,101,118,119,8632,8651,8656,113,4,2,112,115,8639,8645,114,101,99,59,1,8926,117,99,99,59,1,8927,101,101,59,1,8910,101,100,103,101,59,1,8911,101,110,5,164,1,59,8670,1,164,101,97,114,114,111,119,4,2,108,114,8684,8690,101,102,116,59,1,8630,105,103,104,116,59,1,8631,101,101,59,1,8910,101,100,59,1,8911,4,2,99,105,8713,8721,111,110,105,110,116,59,1,8754,110,116,59,1,8753,108,99,116,121,59,1,9005,4,19,65,72,97,98,99,100,101,102,104,105,106,108,111,114,115,116,117,119,122,8773,8778,8783,8821,8839,8854,8887,8914,8930,8944,9036,9041,9058,9197,9227,9258,9281,9297,9305,114,114,59,1,8659,97,114,59,1,10597,4,4,103,108,114,115,8793,8799,8805,8809,103,101,114,59,1,8224,101,116,104,59,1,8504,114,59,1,8595,104,4,2,59,118,8816,8818,1,8208,59,1,8867,4,2,107,108,8827,8834,97,114,111,119,59,1,10511,97,99,59,1,733,4,2,97,121,8845,8851,114,111,110,59,1,271,59,1,1076,4,3,59,97,111,8862,8864,8880,1,8518,4,2,103,114,8870,8876,103,101,114,59,1,8225,114,59,1,8650,116,115,101,113,59,1,10871,4,3,103,108,109,8895,8902,8907,5,176,1,59,8900,1,176,116,97,59,1,948,112,116,121,118,59,1,10673,4,2,105,114,8920,8926,115,104,116,59,1,10623,59,3,55349,56609,97,114,4,2,108,114,8938,8941,59,1,8643,59,1,8642,4,5,97,101,103,115,118,8956,8986,8989,8996,9001,109,4,3,59,111,115,8965,8967,8983,1,8900,110,100,4,2,59,115,8975,8977,1,8900,117,105,116,59,1,9830,59,1,9830,59,1,168,97,109,109,97,59,1,989,105,110,59,1,8946,4,3,59,105,111,9009,9011,9031,1,247,100,101,5,247,2,59,111,9020,9022,1,247,110,116,105,109,101,115,59,1,8903,110,120,59,1,8903,99,121,59,1,1106,99,4,2,111,114,9048,9053,114,110,59,1,8990,111,112,59,1,8973,4,5,108,112,116,117,119,9070,9076,9081,9130,9144,108,97,114,59,1,36,102,59,3,55349,56661,4,5,59,101,109,112,115,9093,9095,9109,9116,9122,1,729,113,4,2,59,100,9102,9104,1,8784,111,116,59,1,8785,105,110,117,115,59,1,8760,108,117,115,59,1,8724,113,117,97,114,101,59,1,8865,98,108,101,98,97,114,119,101,100,103,101,59,1,8966,110,4,3,97,100,104,9153,9160,9172,114,114,111,119,59,1,8595,111,119,110,97,114,114,111,119,115,59,1,8650,97,114,112,111,111,110,4,2,108,114,9184,9190,101,102,116,59,1,8643,105,103,104,116,59,1,8642,4,2,98,99,9203,9211,107,97,114,111,119,59,1,10512,4,2,111,114,9217,9222,114,110,59,1,8991,111,112,59,1,8972,4,3,99,111,116,9235,9248,9252,4,2,114,121,9241,9245,59,3,55349,56505,59,1,1109,108,59,1,10742,114,111,107,59,1,273,4,2,100,114,9264,9269,111,116,59,1,8945,105,4,2,59,102,9276,9278,1,9663,59,1,9662,4,2,97,104,9287,9292,114,114,59,1,8693,97,114,59,1,10607,97,110,103,108,101,59,1,10662,4,2,99,105,9311,9315,121,59,1,1119,103,114,97,114,114,59,1,10239,4,18,68,97,99,100,101,102,103,108,109,110,111,112,113,114,115,116,117,120,9361,9376,9398,9439,9444,9447,9462,9495,9531,9585,9598,9614,9659,9755,9771,9792,9808,9826,4,2,68,111,9367,9372,111,116,59,1,10871,116,59,1,8785,4,2,99,115,9382,9392,117,116,101,5,233,1,59,9390,1,233,116,101,114,59,1,10862,4,4,97,105,111,121,9408,9414,9430,9436,114,111,110,59,1,283,114,4,2,59,99,9421,9423,1,8790,5,234,1,59,9428,1,234,108,111,110,59,1,8789,59,1,1101,111,116,59,1,279,59,1,8519,4,2,68,114,9453,9458,111,116,59,1,8786,59,3,55349,56610,4,3,59,114,115,9470,9472,9482,1,10906,97,118,101,5,232,1,59,9480,1,232,4,2,59,100,9488,9490,1,10902,111,116,59,1,10904,4,4,59,105,108,115,9505,9507,9515,9518,1,10905,110,116,101,114,115,59,1,9191,59,1,8467,4,2,59,100,9524,9526,1,10901,111,116,59,1,10903,4,3,97,112,115,9539,9544,9564,99,114,59,1,275,116,121,4,3,59,115,118,9554,9556,9561,1,8709,101,116,59,1,8709,59,1,8709,112,4,2,49,59,9571,9583,4,2,51,52,9577,9580,59,1,8196,59,1,8197,1,8195,4,2,103,115,9591,9594,59,1,331,112,59,1,8194,4,2,103,112,9604,9609,111,110,59,1,281,102,59,3,55349,56662,4,3,97,108,115,9622,9635,9640,114,4,2,59,115,9629,9631,1,8917,108,59,1,10723,117,115,59,1,10865,105,4,3,59,108,118,9649,9651,9656,1,949,111,110,59,1,949,59,1,1013,4,4,99,115,117,118,9669,9686,9716,9747,4,2,105,111,9675,9680,114,99,59,1,8790,108,111,110,59,1,8789,4,2,105,108,9692,9696,109,59,1,8770,97,110,116,4,2,103,108,9705,9710,116,114,59,1,10902,101,115,115,59,1,10901,4,3,97,101,105,9724,9729,9734,108,115,59,1,61,115,116,59,1,8799,118,4,2,59,68,9741,9743,1,8801,68,59,1,10872,112,97,114,115,108,59,1,10725,4,2,68,97,9761,9766,111,116,59,1,8787,114,114,59,1,10609,4,3,99,100,105,9779,9783,9788,114,59,1,8495,111,116,59,1,8784,109,59,1,8770,4,2,97,104,9798,9801,59,1,951,5,240,1,59,9806,1,240,4,2,109,114,9814,9822,108,5,235,1,59,9820,1,235,111,59,1,8364,4,3,99,105,112,9834,9838,9843,108,59,1,33,115,116,59,1,8707,4,2,101,111,9849,9859,99,116,97,116,105,111,110,59,1,8496,110,101,110,116,105,97,108,101,59,1,8519,4,12,97,99,101,102,105,106,108,110,111,112,114,115,9896,9910,9914,9921,9954,9960,9967,9989,9994,10027,10036,10164,108,108,105,110,103,100,111,116,115,101,113,59,1,8786,121,59,1,1092,109,97,108,101,59,1,9792,4,3,105,108,114,9929,9935,9950,108,105,103,59,1,64259,4,2,105,108,9941,9945,103,59,1,64256,105,103,59,1,64260,59,3,55349,56611,108,105,103,59,1,64257,108,105,103,59,3,102,106,4,3,97,108,116,9975,9979,9984,116,59,1,9837,105,103,59,1,64258,110,115,59,1,9649,111,102,59,1,402,4,2,112,114,1e4,10005,102,59,3,55349,56663,4,2,97,107,10011,10016,108,108,59,1,8704,4,2,59,118,10022,10024,1,8916,59,1,10969,97,114,116,105,110,116,59,1,10765,4,2,97,111,10042,10159,4,2,99,115,10048,10155,4,6,49,50,51,52,53,55,10062,10102,10114,10135,10139,10151,4,6,50,51,52,53,54,56,10076,10083,10086,10093,10096,10099,5,189,1,59,10081,1,189,59,1,8531,5,188,1,59,10091,1,188,59,1,8533,59,1,8537,59,1,8539,4,2,51,53,10108,10111,59,1,8532,59,1,8534,4,3,52,53,56,10122,10129,10132,5,190,1,59,10127,1,190,59,1,8535,59,1,8540,53,59,1,8536,4,2,54,56,10145,10148,59,1,8538,59,1,8541,56,59,1,8542,108,59,1,8260,119,110,59,1,8994,99,114,59,3,55349,56507,4,17,69,97,98,99,100,101,102,103,105,106,108,110,111,114,115,116,118,10206,10217,10247,10254,10268,10273,10358,10363,10374,10380,10385,10406,10458,10464,10470,10497,10610,4,2,59,108,10212,10214,1,8807,59,1,10892,4,3,99,109,112,10225,10231,10244,117,116,101,59,1,501,109,97,4,2,59,100,10239,10241,1,947,59,1,989,59,1,10886,114,101,118,101,59,1,287,4,2,105,121,10260,10265,114,99,59,1,285,59,1,1075,111,116,59,1,289,4,4,59,108,113,115,10283,10285,10288,10308,1,8805,59,1,8923,4,3,59,113,115,10296,10298,10301,1,8805,59,1,8807,108,97,110,116,59,1,10878,4,4,59,99,100,108,10318,10320,10324,10345,1,10878,99,59,1,10921,111,116,4,2,59,111,10332,10334,1,10880,4,2,59,108,10340,10342,1,10882,59,1,10884,4,2,59,101,10351,10354,3,8923,65024,115,59,1,10900,114,59,3,55349,56612,4,2,59,103,10369,10371,1,8811,59,1,8921,109,101,108,59,1,8503,99,121,59,1,1107,4,4,59,69,97,106,10395,10397,10400,10403,1,8823,59,1,10898,59,1,10917,59,1,10916,4,4,69,97,101,115,10416,10419,10434,10453,59,1,8809,112,4,2,59,112,10426,10428,1,10890,114,111,120,59,1,10890,4,2,59,113,10440,10442,1,10888,4,2,59,113,10448,10450,1,10888,59,1,8809,105,109,59,1,8935,112,102,59,3,55349,56664,97,118,101,59,1,96,4,2,99,105,10476,10480,114,59,1,8458,109,4,3,59,101,108,10489,10491,10494,1,8819,59,1,10894,59,1,10896,5,62,6,59,99,100,108,113,114,10512,10514,10527,10532,10538,10545,1,62,4,2,99,105,10520,10523,59,1,10919,114,59,1,10874,111,116,59,1,8919,80,97,114,59,1,10645,117,101,115,116,59,1,10876,4,5,97,100,101,108,115,10557,10574,10579,10599,10605,4,2,112,114,10563,10570,112,114,111,120,59,1,10886,114,59,1,10616,111,116,59,1,8919,113,4,2,108,113,10586,10592,101,115,115,59,1,8923,108,101,115,115,59,1,10892,101,115,115,59,1,8823,105,109,59,1,8819,4,2,101,110,10616,10626,114,116,110,101,113,113,59,3,8809,65024,69,59,3,8809,65024,4,10,65,97,98,99,101,102,107,111,115,121,10653,10658,10713,10718,10724,10760,10765,10786,10850,10875,114,114,59,1,8660,4,4,105,108,109,114,10668,10674,10678,10684,114,115,112,59,1,8202,102,59,1,189,105,108,116,59,1,8459,4,2,100,114,10690,10695,99,121,59,1,1098,4,3,59,99,119,10703,10705,10710,1,8596,105,114,59,1,10568,59,1,8621,97,114,59,1,8463,105,114,99,59,1,293,4,3,97,108,114,10732,10748,10754,114,116,115,4,2,59,117,10741,10743,1,9829,105,116,59,1,9829,108,105,112,59,1,8230,99,111,110,59,1,8889,114,59,3,55349,56613,115,4,2,101,119,10772,10779,97,114,111,119,59,1,10533,97,114,111,119,59,1,10534,4,5,97,109,111,112,114,10798,10803,10809,10839,10844,114,114,59,1,8703,116,104,116,59,1,8763,107,4,2,108,114,10816,10827,101,102,116,97,114,114,111,119,59,1,8617,105,103,104,116,97,114,114,111,119,59,1,8618,102,59,3,55349,56665,98,97,114,59,1,8213,4,3,99,108,116,10858,10863,10869,114,59,3,55349,56509,97,115,104,59,1,8463,114,111,107,59,1,295,4,2,98,112,10881,10887,117,108,108,59,1,8259,104,101,110,59,1,8208,4,15,97,99,101,102,103,105,106,109,110,111,112,113,115,116,117,10925,10936,10958,10977,10990,11001,11039,11045,11101,11192,11220,11226,11237,11285,11299,99,117,116,101,5,237,1,59,10934,1,237,4,3,59,105,121,10944,10946,10955,1,8291,114,99,5,238,1,59,10953,1,238,59,1,1080,4,2,99,120,10964,10968,121,59,1,1077,99,108,5,161,1,59,10975,1,161,4,2,102,114,10983,10986,59,1,8660,59,3,55349,56614,114,97,118,101,5,236,1,59,10999,1,236,4,4,59,105,110,111,11011,11013,11028,11034,1,8520,4,2,105,110,11019,11024,110,116,59,1,10764,116,59,1,8749,102,105,110,59,1,10716,116,97,59,1,8489,108,105,103,59,1,307,4,3,97,111,112,11053,11092,11096,4,3,99,103,116,11061,11065,11088,114,59,1,299,4,3,101,108,112,11073,11076,11082,59,1,8465,105,110,101,59,1,8464,97,114,116,59,1,8465,104,59,1,305,102,59,1,8887,101,100,59,1,437,4,5,59,99,102,111,116,11113,11115,11121,11136,11142,1,8712,97,114,101,59,1,8453,105,110,4,2,59,116,11129,11131,1,8734,105,101,59,1,10717,100,111,116,59,1,305,4,5,59,99,101,108,112,11154,11156,11161,11179,11186,1,8747,97,108,59,1,8890,4,2,103,114,11167,11173,101,114,115,59,1,8484,99,97,108,59,1,8890,97,114,104,107,59,1,10775,114,111,100,59,1,10812,4,4,99,103,112,116,11202,11206,11211,11216,121,59,1,1105,111,110,59,1,303,102,59,3,55349,56666,97,59,1,953,114,111,100,59,1,10812,117,101,115,116,5,191,1,59,11235,1,191,4,2,99,105,11243,11248,114,59,3,55349,56510,110,4,5,59,69,100,115,118,11261,11263,11266,11271,11282,1,8712,59,1,8953,111,116,59,1,8949,4,2,59,118,11277,11279,1,8948,59,1,8947,59,1,8712,4,2,59,105,11291,11293,1,8290,108,100,101,59,1,297,4,2,107,109,11305,11310,99,121,59,1,1110,108,5,239,1,59,11316,1,239,4,6,99,102,109,111,115,117,11332,11346,11351,11357,11363,11380,4,2,105,121,11338,11343,114,99,59,1,309,59,1,1081,114,59,3,55349,56615,97,116,104,59,1,567,112,102,59,3,55349,56667,4,2,99,101,11369,11374,114,59,3,55349,56511,114,99,121,59,1,1112,107,99,121,59,1,1108,4,8,97,99,102,103,104,106,111,115,11404,11418,11433,11438,11445,11450,11455,11461,112,112,97,4,2,59,118,11413,11415,1,954,59,1,1008,4,2,101,121,11424,11430,100,105,108,59,1,311,59,1,1082,114,59,3,55349,56616,114,101,101,110,59,1,312,99,121,59,1,1093,99,121,59,1,1116,112,102,59,3,55349,56668,99,114,59,3,55349,56512,4,23,65,66,69,72,97,98,99,100,101,102,103,104,106,108,109,110,111,112,114,115,116,117,118,11515,11538,11544,11555,11560,11721,11780,11818,11868,12136,12160,12171,12203,12208,12246,12275,12327,12509,12523,12569,12641,12732,12752,4,3,97,114,116,11523,11528,11532,114,114,59,1,8666,114,59,1,8656,97,105,108,59,1,10523,97,114,114,59,1,10510,4,2,59,103,11550,11552,1,8806,59,1,10891,97,114,59,1,10594,4,9,99,101,103,109,110,112,113,114,116,11580,11586,11594,11600,11606,11624,11627,11636,11694,117,116,101,59,1,314,109,112,116,121,118,59,1,10676,114,97,110,59,1,8466,98,100,97,59,1,955,103,4,3,59,100,108,11615,11617,11620,1,10216,59,1,10641,101,59,1,10216,59,1,10885,117,111,5,171,1,59,11634,1,171,114,4,8,59,98,102,104,108,112,115,116,11655,11657,11669,11673,11677,11681,11685,11690,1,8592,4,2,59,102,11663,11665,1,8676,115,59,1,10527,115,59,1,10525,107,59,1,8617,112,59,1,8619,108,59,1,10553,105,109,59,1,10611,108,59,1,8610,4,3,59,97,101,11702,11704,11709,1,10923,105,108,59,1,10521,4,2,59,115,11715,11717,1,10925,59,3,10925,65024,4,3,97,98,114,11729,11734,11739,114,114,59,1,10508,114,107,59,1,10098,4,2,97,107,11745,11758,99,4,2,101,107,11752,11755,59,1,123,59,1,91,4,2,101,115,11764,11767,59,1,10635,108,4,2,100,117,11774,11777,59,1,10639,59,1,10637,4,4,97,101,117,121,11790,11796,11811,11815,114,111,110,59,1,318,4,2,100,105,11802,11807,105,108,59,1,316,108,59,1,8968,98,59,1,123,59,1,1083,4,4,99,113,114,115,11828,11832,11845,11864,97,59,1,10550,117,111,4,2,59,114,11840,11842,1,8220,59,1,8222,4,2,100,117,11851,11857,104,97,114,59,1,10599,115,104,97,114,59,1,10571,104,59,1,8626,4,5,59,102,103,113,115,11880,11882,12008,12011,12031,1,8804,116,4,5,97,104,108,114,116,11895,11913,11935,11947,11996,114,114,111,119,4,2,59,116,11905,11907,1,8592,97,105,108,59,1,8610,97,114,112,111,111,110,4,2,100,117,11925,11931,111,119,110,59,1,8637,112,59,1,8636,101,102,116,97,114,114,111,119,115,59,1,8647,105,103,104,116,4,3,97,104,115,11959,11974,11984,114,114,111,119,4,2,59,115,11969,11971,1,8596,59,1,8646,97,114,112,111,111,110,115,59,1,8651,113,117,105,103,97,114,114,111,119,59,1,8621,104,114,101,101,116,105,109,101,115,59,1,8907,59,1,8922,4,3,59,113,115,12019,12021,12024,1,8804,59,1,8806,108,97,110,116,59,1,10877,4,5,59,99,100,103,115,12043,12045,12049,12070,12083,1,10877,99,59,1,10920,111,116,4,2,59,111,12057,12059,1,10879,4,2,59,114,12065,12067,1,10881,59,1,10883,4,2,59,101,12076,12079,3,8922,65024,115,59,1,10899,4,5,97,100,101,103,115,12095,12103,12108,12126,12131,112,112,114,111,120,59,1,10885,111,116,59,1,8918,113,4,2,103,113,12115,12120,116,114,59,1,8922,103,116,114,59,1,10891,116,114,59,1,8822,105,109,59,1,8818,4,3,105,108,114,12144,12150,12156,115,104,116,59,1,10620,111,111,114,59,1,8970,59,3,55349,56617,4,2,59,69,12166,12168,1,8822,59,1,10897,4,2,97,98,12177,12198,114,4,2,100,117,12184,12187,59,1,8637,4,2,59,108,12193,12195,1,8636,59,1,10602,108,107,59,1,9604,99,121,59,1,1113,4,5,59,97,99,104,116,12220,12222,12227,12235,12241,1,8810,114,114,59,1,8647,111,114,110,101,114,59,1,8990,97,114,100,59,1,10603,114,105,59,1,9722,4,2,105,111,12252,12258,100,111,116,59,1,320,117,115,116,4,2,59,97,12267,12269,1,9136,99,104,101,59,1,9136,4,4,69,97,101,115,12285,12288,12303,12322,59,1,8808,112,4,2,59,112,12295,12297,1,10889,114,111,120,59,1,10889,4,2,59,113,12309,12311,1,10887,4,2,59,113,12317,12319,1,10887,59,1,8808,105,109,59,1,8934,4,8,97,98,110,111,112,116,119,122,12345,12359,12364,12421,12446,12467,12474,12490,4,2,110,114,12351,12355,103,59,1,10220,114,59,1,8701,114,107,59,1,10214,103,4,3,108,109,114,12373,12401,12409,101,102,116,4,2,97,114,12382,12389,114,114,111,119,59,1,10229,105,103,104,116,97,114,114,111,119,59,1,10231,97,112,115,116,111,59,1,10236,105,103,104,116,97,114,114,111,119,59,1,10230,112,97,114,114,111,119,4,2,108,114,12433,12439,101,102,116,59,1,8619,105,103,104,116,59,1,8620,4,3,97,102,108,12454,12458,12462,114,59,1,10629,59,3,55349,56669,117,115,59,1,10797,105,109,101,115,59,1,10804,4,2,97,98,12480,12485,115,116,59,1,8727,97,114,59,1,95,4,3,59,101,102,12498,12500,12506,1,9674,110,103,101,59,1,9674,59,1,10731,97,114,4,2,59,108,12517,12519,1,40,116,59,1,10643,4,5,97,99,104,109,116,12535,12540,12548,12561,12564,114,114,59,1,8646,111,114,110,101,114,59,1,8991,97,114,4,2,59,100,12556,12558,1,8651,59,1,10605,59,1,8206,114,105,59,1,8895,4,6,97,99,104,105,113,116,12583,12589,12594,12597,12614,12635,113,117,111,59,1,8249,114,59,3,55349,56513,59,1,8624,109,4,3,59,101,103,12606,12608,12611,1,8818,59,1,10893,59,1,10895,4,2,98,117,12620,12623,59,1,91,111,4,2,59,114,12630,12632,1,8216,59,1,8218,114,111,107,59,1,322,5,60,8,59,99,100,104,105,108,113,114,12660,12662,12675,12680,12686,12692,12698,12705,1,60,4,2,99,105,12668,12671,59,1,10918,114,59,1,10873,111,116,59,1,8918,114,101,101,59,1,8907,109,101,115,59,1,8905,97,114,114,59,1,10614,117,101,115,116,59,1,10875,4,2,80,105,12711,12716,97,114,59,1,10646,4,3,59,101,102,12724,12726,12729,1,9667,59,1,8884,59,1,9666,114,4,2,100,117,12739,12746,115,104,97,114,59,1,10570,104,97,114,59,1,10598,4,2,101,110,12758,12768,114,116,110,101,113,113,59,3,8808,65024,69,59,3,8808,65024,4,14,68,97,99,100,101,102,104,105,108,110,111,112,115,117,12803,12809,12893,12908,12914,12928,12933,12937,13011,13025,13032,13049,13052,13069,68,111,116,59,1,8762,4,4,99,108,112,114,12819,12827,12849,12887,114,5,175,1,59,12825,1,175,4,2,101,116,12833,12836,59,1,9794,4,2,59,101,12842,12844,1,10016,115,101,59,1,10016,4,2,59,115,12855,12857,1,8614,116,111,4,4,59,100,108,117,12869,12871,12877,12883,1,8614,111,119,110,59,1,8615,101,102,116,59,1,8612,112,59,1,8613,107,101,114,59,1,9646,4,2,111,121,12899,12905,109,109,97,59,1,10793,59,1,1084,97,115,104,59,1,8212,97,115,117,114,101,100,97,110,103,108,101,59,1,8737,114,59,3,55349,56618,111,59,1,8487,4,3,99,100,110,12945,12954,12985,114,111,5,181,1,59,12952,1,181,4,4,59,97,99,100,12964,12966,12971,12976,1,8739,115,116,59,1,42,105,114,59,1,10992,111,116,5,183,1,59,12983,1,183,117,115,4,3,59,98,100,12995,12997,13e3,1,8722,59,1,8863,4,2,59,117,13006,13008,1,8760,59,1,10794,4,2,99,100,13017,13021,112,59,1,10971,114,59,1,8230,112,108,117,115,59,1,8723,4,2,100,112,13038,13044,101,108,115,59,1,8871,102,59,3,55349,56670,59,1,8723,4,2,99,116,13058,13063,114,59,3,55349,56514,112,111,115,59,1,8766,4,3,59,108,109,13077,13079,13087,1,956,116,105,109,97,112,59,1,8888,97,112,59,1,8888,4,24,71,76,82,86,97,98,99,100,101,102,103,104,105,106,108,109,111,112,114,115,116,117,118,119,13142,13165,13217,13229,13247,13330,13359,13414,13420,13508,13513,13579,13602,13626,13631,13762,13767,13855,13936,13995,14214,14285,14312,14432,4,2,103,116,13148,13152,59,3,8921,824,4,2,59,118,13158,13161,3,8811,8402,59,3,8811,824,4,3,101,108,116,13173,13200,13204,102,116,4,2,97,114,13181,13188,114,114,111,119,59,1,8653,105,103,104,116,97,114,114,111,119,59,1,8654,59,3,8920,824,4,2,59,118,13210,13213,3,8810,8402,59,3,8810,824,105,103,104,116,97,114,114,111,119,59,1,8655,4,2,68,100,13235,13241,97,115,104,59,1,8879,97,115,104,59,1,8878,4,5,98,99,110,112,116,13259,13264,13270,13275,13308,108,97,59,1,8711,117,116,101,59,1,324,103,59,3,8736,8402,4,5,59,69,105,111,112,13287,13289,13293,13298,13302,1,8777,59,3,10864,824,100,59,3,8779,824,115,59,1,329,114,111,120,59,1,8777,117,114,4,2,59,97,13316,13318,1,9838,108,4,2,59,115,13325,13327,1,9838,59,1,8469,4,2,115,117,13336,13344,112,5,160,1,59,13342,1,160,109,112,4,2,59,101,13352,13355,3,8782,824,59,3,8783,824,4,5,97,101,111,117,121,13371,13385,13391,13407,13411,4,2,112,114,13377,13380,59,1,10819,111,110,59,1,328,100,105,108,59,1,326,110,103,4,2,59,100,13399,13401,1,8775,111,116,59,3,10861,824,112,59,1,10818,59,1,1085,97,115,104,59,1,8211,4,7,59,65,97,100,113,115,120,13436,13438,13443,13466,13472,13478,13494,1,8800,114,114,59,1,8663,114,4,2,104,114,13450,13454,107,59,1,10532,4,2,59,111,13460,13462,1,8599,119,59,1,8599,111,116,59,3,8784,824,117,105,118,59,1,8802,4,2,101,105,13484,13489,97,114,59,1,10536,109,59,3,8770,824,105,115,116,4,2,59,115,13503,13505,1,8708,59,1,8708,114,59,3,55349,56619,4,4,69,101,115,116,13523,13527,13563,13568,59,3,8807,824,4,3,59,113,115,13535,13537,13559,1,8817,4,3,59,113,115,13545,13547,13551,1,8817,59,3,8807,824,108,97,110,116,59,3,10878,824,59,3,10878,824,105,109,59,1,8821,4,2,59,114,13574,13576,1,8815,59,1,8815,4,3,65,97,112,13587,13592,13597,114,114,59,1,8654,114,114,59,1,8622,97,114,59,1,10994,4,3,59,115,118,13610,13612,13623,1,8715,4,2,59,100,13618,13620,1,8956,59,1,8954,59,1,8715,99,121,59,1,1114,4,7,65,69,97,100,101,115,116,13647,13652,13656,13661,13665,13737,13742,114,114,59,1,8653,59,3,8806,824,114,114,59,1,8602,114,59,1,8229,4,4,59,102,113,115,13675,13677,13703,13725,1,8816,116,4,2,97,114,13684,13691,114,114,111,119,59,1,8602,105,103,104,116,97,114,114,111,119,59,1,8622,4,3,59,113,115,13711,13713,13717,1,8816,59,3,8806,824,108,97,110,116,59,3,10877,824,4,2,59,115,13731,13734,3,10877,824,59,1,8814,105,109,59,1,8820,4,2,59,114,13748,13750,1,8814,105,4,2,59,101,13757,13759,1,8938,59,1,8940,105,100,59,1,8740,4,2,112,116,13773,13778,102,59,3,55349,56671,5,172,3,59,105,110,13787,13789,13829,1,172,110,4,4,59,69,100,118,13800,13802,13806,13812,1,8713,59,3,8953,824,111,116,59,3,8949,824,4,3,97,98,99,13820,13823,13826,59,1,8713,59,1,8951,59,1,8950,105,4,2,59,118,13836,13838,1,8716,4,3,97,98,99,13846,13849,13852,59,1,8716,59,1,8958,59,1,8957,4,3,97,111,114,13863,13892,13899,114,4,4,59,97,115,116,13874,13876,13883,13888,1,8742,108,108,101,108,59,1,8742,108,59,3,11005,8421,59,3,8706,824,108,105,110,116,59,1,10772,4,3,59,99,101,13907,13909,13914,1,8832,117,101,59,1,8928,4,2,59,99,13920,13923,3,10927,824,4,2,59,101,13929,13931,1,8832,113,59,3,10927,824,4,4,65,97,105,116,13946,13951,13971,13982,114,114,59,1,8655,114,114,4,3,59,99,119,13961,13963,13967,1,8603,59,3,10547,824,59,3,8605,824,103,104,116,97,114,114,111,119,59,1,8603,114,105,4,2,59,101,13990,13992,1,8939,59,1,8941,4,7,99,104,105,109,112,113,117,14011,14036,14060,14080,14085,14090,14106,4,4,59,99,101,114,14021,14023,14028,14032,1,8833,117,101,59,1,8929,59,3,10928,824,59,3,55349,56515,111,114,116,4,2,109,112,14045,14050,105,100,59,1,8740,97,114,97,108,108,101,108,59,1,8742,109,4,2,59,101,14067,14069,1,8769,4,2,59,113,14075,14077,1,8772,59,1,8772,105,100,59,1,8740,97,114,59,1,8742,115,117,4,2,98,112,14098,14102,101,59,1,8930,101,59,1,8931,4,3,98,99,112,14114,14157,14171,4,4,59,69,101,115,14124,14126,14130,14133,1,8836,59,3,10949,824,59,1,8840,101,116,4,2,59,101,14141,14144,3,8834,8402,113,4,2,59,113,14151,14153,1,8840,59,3,10949,824,99,4,2,59,101,14164,14166,1,8833,113,59,3,10928,824,4,4,59,69,101,115,14181,14183,14187,14190,1,8837,59,3,10950,824,59,1,8841,101,116,4,2,59,101,14198,14201,3,8835,8402,113,4,2,59,113,14208,14210,1,8841,59,3,10950,824,4,4,103,105,108,114,14224,14228,14238,14242,108,59,1,8825,108,100,101,5,241,1,59,14236,1,241,103,59,1,8824,105,97,110,103,108,101,4,2,108,114,14254,14269,101,102,116,4,2,59,101,14263,14265,1,8938,113,59,1,8940,105,103,104,116,4,2,59,101,14279,14281,1,8939,113,59,1,8941,4,2,59,109,14291,14293,1,957,4,3,59,101,115,14301,14303,14308,1,35,114,111,59,1,8470,112,59,1,8199,4,9,68,72,97,100,103,105,108,114,115,14332,14338,14344,14349,14355,14369,14376,14408,14426,97,115,104,59,1,8877,97,114,114,59,1,10500,112,59,3,8781,8402,97,115,104,59,1,8876,4,2,101,116,14361,14365,59,3,8805,8402,59,3,62,8402,110,102,105,110,59,1,10718,4,3,65,101,116,14384,14389,14393,114,114,59,1,10498,59,3,8804,8402,4,2,59,114,14399,14402,3,60,8402,105,101,59,3,8884,8402,4,2,65,116,14414,14419,114,114,59,1,10499,114,105,101,59,3,8885,8402,105,109,59,3,8764,8402,4,3,65,97,110,14440,14445,14468,114,114,59,1,8662,114,4,2,104,114,14452,14456,107,59,1,10531,4,2,59,111,14462,14464,1,8598,119,59,1,8598,101,97,114,59,1,10535,4,18,83,97,99,100,101,102,103,104,105,108,109,111,112,114,115,116,117,118,14512,14515,14535,14560,14597,14603,14618,14643,14657,14662,14701,14741,14747,14769,14851,14877,14907,14916,59,1,9416,4,2,99,115,14521,14531,117,116,101,5,243,1,59,14529,1,243,116,59,1,8859,4,2,105,121,14541,14557,114,4,2,59,99,14548,14550,1,8858,5,244,1,59,14555,1,244,59,1,1086,4,5,97,98,105,111,115,14572,14577,14583,14587,14591,115,104,59,1,8861,108,97,99,59,1,337,118,59,1,10808,116,59,1,8857,111,108,100,59,1,10684,108,105,103,59,1,339,4,2,99,114,14609,14614,105,114,59,1,10687,59,3,55349,56620,4,3,111,114,116,14626,14630,14640,110,59,1,731,97,118,101,5,242,1,59,14638,1,242,59,1,10689,4,2,98,109,14649,14654,97,114,59,1,10677,59,1,937,110,116,59,1,8750,4,4,97,99,105,116,14672,14677,14693,14698,114,114,59,1,8634,4,2,105,114,14683,14687,114,59,1,10686,111,115,115,59,1,10683,110,101,59,1,8254,59,1,10688,4,3,97,101,105,14709,14714,14719,99,114,59,1,333,103,97,59,1,969,4,3,99,100,110,14727,14733,14736,114,111,110,59,1,959,59,1,10678,117,115,59,1,8854,112,102,59,3,55349,56672,4,3,97,101,108,14755,14759,14764,114,59,1,10679,114,112,59,1,10681,117,115,59,1,8853,4,7,59,97,100,105,111,115,118,14785,14787,14792,14831,14837,14841,14848,1,8744,114,114,59,1,8635,4,4,59,101,102,109,14802,14804,14817,14824,1,10845,114,4,2,59,111,14811,14813,1,8500,102,59,1,8500,5,170,1,59,14822,1,170,5,186,1,59,14829,1,186,103,111,102,59,1,8886,114,59,1,10838,108,111,112,101,59,1,10839,59,1,10843,4,3,99,108,111,14859,14863,14873,114,59,1,8500,97,115,104,5,248,1,59,14871,1,248,108,59,1,8856,105,4,2,108,109,14884,14893,100,101,5,245,1,59,14891,1,245,101,115,4,2,59,97,14901,14903,1,8855,115,59,1,10806,109,108,5,246,1,59,14914,1,246,98,97,114,59,1,9021,4,12,97,99,101,102,104,105,108,109,111,114,115,117,14948,14992,14996,15033,15038,15068,15090,15189,15192,15222,15427,15441,114,4,4,59,97,115,116,14959,14961,14976,14989,1,8741,5,182,2,59,108,14968,14970,1,182,108,101,108,59,1,8741,4,2,105,108,14982,14986,109,59,1,10995,59,1,11005,59,1,8706,121,59,1,1087,114,4,5,99,105,109,112,116,15009,15014,15019,15024,15027,110,116,59,1,37,111,100,59,1,46,105,108,59,1,8240,59,1,8869,101,110,107,59,1,8241,114,59,3,55349,56621,4,3,105,109,111,15046,15057,15063,4,2,59,118,15052,15054,1,966,59,1,981,109,97,116,59,1,8499,110,101,59,1,9742,4,3,59,116,118,15076,15078,15087,1,960,99,104,102,111,114,107,59,1,8916,59,1,982,4,2,97,117,15096,15119,110,4,2,99,107,15103,15115,107,4,2,59,104,15110,15112,1,8463,59,1,8462,118,59,1,8463,115,4,9,59,97,98,99,100,101,109,115,116,15140,15142,15148,15151,15156,15168,15171,15179,15184,1,43,99,105,114,59,1,10787,59,1,8862,105,114,59,1,10786,4,2,111,117,15162,15165,59,1,8724,59,1,10789,59,1,10866,110,5,177,1,59,15177,1,177,105,109,59,1,10790,119,111,59,1,10791,59,1,177,4,3,105,112,117,15200,15208,15213,110,116,105,110,116,59,1,10773,102,59,3,55349,56673,110,100,5,163,1,59,15220,1,163,4,10,59,69,97,99,101,105,110,111,115,117,15244,15246,15249,15253,15258,15334,15347,15367,15416,15421,1,8826,59,1,10931,112,59,1,10935,117,101,59,1,8828,4,2,59,99,15264,15266,1,10927,4,6,59,97,99,101,110,115,15280,15282,15290,15299,15303,15329,1,8826,112,112,114,111,120,59,1,10935,117,114,108,121,101,113,59,1,8828,113,59,1,10927,4,3,97,101,115,15311,15319,15324,112,112,114,111,120,59,1,10937,113,113,59,1,10933,105,109,59,1,8936,105,109,59,1,8830,109,101,4,2,59,115,15342,15344,1,8242,59,1,8473,4,3,69,97,115,15355,15358,15362,59,1,10933,112,59,1,10937,105,109,59,1,8936,4,3,100,102,112,15375,15378,15404,59,1,8719,4,3,97,108,115,15386,15392,15398,108,97,114,59,1,9006,105,110,101,59,1,8978,117,114,102,59,1,8979,4,2,59,116,15410,15412,1,8733,111,59,1,8733,105,109,59,1,8830,114,101,108,59,1,8880,4,2,99,105,15433,15438,114,59,3,55349,56517,59,1,968,110,99,115,112,59,1,8200,4,6,102,105,111,112,115,117,15462,15467,15472,15478,15485,15491,114,59,3,55349,56622,110,116,59,1,10764,112,102,59,3,55349,56674,114,105,109,101,59,1,8279,99,114,59,3,55349,56518,4,3,97,101,111,15499,15520,15534,116,4,2,101,105,15506,15515,114,110,105,111,110,115,59,1,8461,110,116,59,1,10774,115,116,4,2,59,101,15528,15530,1,63,113,59,1,8799,116,5,34,1,59,15540,1,34,4,21,65,66,72,97,98,99,100,101,102,104,105,108,109,110,111,112,114,115,116,117,120,15586,15609,15615,15620,15796,15855,15893,15931,15977,16001,16039,16183,16204,16222,16228,16285,16312,16318,16363,16408,16416,4,3,97,114,116,15594,15599,15603,114,114,59,1,8667,114,59,1,8658,97,105,108,59,1,10524,97,114,114,59,1,10511,97,114,59,1,10596,4,7,99,100,101,110,113,114,116,15636,15651,15656,15664,15687,15696,15770,4,2,101,117,15642,15646,59,3,8765,817,116,101,59,1,341,105,99,59,1,8730,109,112,116,121,118,59,1,10675,103,4,4,59,100,101,108,15675,15677,15680,15683,1,10217,59,1,10642,59,1,10661,101,59,1,10217,117,111,5,187,1,59,15694,1,187,114,4,11,59,97,98,99,102,104,108,112,115,116,119,15721,15723,15727,15739,15742,15746,15750,15754,15758,15763,15767,1,8594,112,59,1,10613,4,2,59,102,15733,15735,1,8677,115,59,1,10528,59,1,10547,115,59,1,10526,107,59,1,8618,112,59,1,8620,108,59,1,10565,105,109,59,1,10612,108,59,1,8611,59,1,8605,4,2,97,105,15776,15781,105,108,59,1,10522,111,4,2,59,110,15788,15790,1,8758,97,108,115,59,1,8474,4,3,97,98,114,15804,15809,15814,114,114,59,1,10509,114,107,59,1,10099,4,2,97,107,15820,15833,99,4,2,101,107,15827,15830,59,1,125,59,1,93,4,2,101,115,15839,15842,59,1,10636,108,4,2,100,117,15849,15852,59,1,10638,59,1,10640,4,4,97,101,117,121,15865,15871,15886,15890,114,111,110,59,1,345,4,2,100,105,15877,15882,105,108,59,1,343,108,59,1,8969,98,59,1,125,59,1,1088,4,4,99,108,113,115,15903,15907,15914,15927,97,59,1,10551,100,104,97,114,59,1,10601,117,111,4,2,59,114,15922,15924,1,8221,59,1,8221,104,59,1,8627,4,3,97,99,103,15939,15966,15970,108,4,4,59,105,112,115,15950,15952,15957,15963,1,8476,110,101,59,1,8475,97,114,116,59,1,8476,59,1,8477,116,59,1,9645,5,174,1,59,15975,1,174,4,3,105,108,114,15985,15991,15997,115,104,116,59,1,10621,111,111,114,59,1,8971,59,3,55349,56623,4,2,97,111,16007,16028,114,4,2,100,117,16014,16017,59,1,8641,4,2,59,108,16023,16025,1,8640,59,1,10604,4,2,59,118,16034,16036,1,961,59,1,1009,4,3,103,110,115,16047,16167,16171,104,116,4,6,97,104,108,114,115,116,16063,16081,16103,16130,16143,16155,114,114,111,119,4,2,59,116,16073,16075,1,8594,97,105,108,59,1,8611,97,114,112,111,111,110,4,2,100,117,16093,16099,111,119,110,59,1,8641,112,59,1,8640,101,102,116,4,2,97,104,16112,16120,114,114,111,119,115,59,1,8644,97,114,112,111,111,110,115,59,1,8652,105,103,104,116,97,114,114,111,119,115,59,1,8649,113,117,105,103,97,114,114,111,119,59,1,8605,104,114,101,101,116,105,109,101,115,59,1,8908,103,59,1,730,105,110,103,100,111,116,115,101,113,59,1,8787,4,3,97,104,109,16191,16196,16201,114,114,59,1,8644,97,114,59,1,8652,59,1,8207,111,117,115,116,4,2,59,97,16214,16216,1,9137,99,104,101,59,1,9137,109,105,100,59,1,10990,4,4,97,98,112,116,16238,16252,16257,16278,4,2,110,114,16244,16248,103,59,1,10221,114,59,1,8702,114,107,59,1,10215,4,3,97,102,108,16265,16269,16273,114,59,1,10630,59,3,55349,56675,117,115,59,1,10798,105,109,101,115,59,1,10805,4,2,97,112,16291,16304,114,4,2,59,103,16298,16300,1,41,116,59,1,10644,111,108,105,110,116,59,1,10770,97,114,114,59,1,8649,4,4,97,99,104,113,16328,16334,16339,16342,113,117,111,59,1,8250,114,59,3,55349,56519,59,1,8625,4,2,98,117,16348,16351,59,1,93,111,4,2,59,114,16358,16360,1,8217,59,1,8217,4,3,104,105,114,16371,16377,16383,114,101,101,59,1,8908,109,101,115,59,1,8906,105,4,4,59,101,102,108,16394,16396,16399,16402,1,9657,59,1,8885,59,1,9656,116,114,105,59,1,10702,108,117,104,97,114,59,1,10600,59,1,8478,4,19,97,98,99,100,101,102,104,105,108,109,111,112,113,114,115,116,117,119,122,16459,16466,16472,16572,16590,16672,16687,16746,16844,16850,16924,16963,16988,17115,17121,17154,17206,17614,17656,99,117,116,101,59,1,347,113,117,111,59,1,8218,4,10,59,69,97,99,101,105,110,112,115,121,16494,16496,16499,16513,16518,16531,16536,16556,16564,16569,1,8827,59,1,10932,4,2,112,114,16505,16508,59,1,10936,111,110,59,1,353,117,101,59,1,8829,4,2,59,100,16524,16526,1,10928,105,108,59,1,351,114,99,59,1,349,4,3,69,97,115,16544,16547,16551,59,1,10934,112,59,1,10938,105,109,59,1,8937,111,108,105,110,116,59,1,10771,105,109,59,1,8831,59,1,1089,111,116,4,3,59,98,101,16582,16584,16587,1,8901,59,1,8865,59,1,10854,4,7,65,97,99,109,115,116,120,16606,16611,16634,16642,16646,16652,16668,114,114,59,1,8664,114,4,2,104,114,16618,16622,107,59,1,10533,4,2,59,111,16628,16630,1,8600,119,59,1,8600,116,5,167,1,59,16640,1,167,105,59,1,59,119,97,114,59,1,10537,109,4,2,105,110,16659,16665,110,117,115,59,1,8726,59,1,8726,116,59,1,10038,114,4,2,59,111,16679,16682,3,55349,56624,119,110,59,1,8994,4,4,97,99,111,121,16697,16702,16716,16739,114,112,59,1,9839,4,2,104,121,16708,16713,99,121,59,1,1097,59,1,1096,114,116,4,2,109,112,16724,16729,105,100,59,1,8739,97,114,97,108,108,101,108,59,1,8741,5,173,1,59,16744,1,173,4,2,103,109,16752,16770,109,97,4,3,59,102,118,16762,16764,16767,1,963,59,1,962,59,1,962,4,8,59,100,101,103,108,110,112,114,16788,16790,16795,16806,16817,16828,16832,16838,1,8764,111,116,59,1,10858,4,2,59,113,16801,16803,1,8771,59,1,8771,4,2,59,69,16812,16814,1,10910,59,1,10912,4,2,59,69,16823,16825,1,10909,59,1,10911,101,59,1,8774,108,117,115,59,1,10788,97,114,114,59,1,10610,97,114,114,59,1,8592,4,4,97,101,105,116,16860,16883,16891,16904,4,2,108,115,16866,16878,108,115,101,116,109,105,110,117,115,59,1,8726,104,112,59,1,10803,112,97,114,115,108,59,1,10724,4,2,100,108,16897,16900,59,1,8739,101,59,1,8995,4,2,59,101,16910,16912,1,10922,4,2,59,115,16918,16920,1,10924,59,3,10924,65024,4,3,102,108,112,16932,16938,16958,116,99,121,59,1,1100,4,2,59,98,16944,16946,1,47,4,2,59,97,16952,16954,1,10692,114,59,1,9023,102,59,3,55349,56676,97,4,2,100,114,16970,16985,101,115,4,2,59,117,16978,16980,1,9824,105,116,59,1,9824,59,1,8741,4,3,99,115,117,16996,17028,17089,4,2,97,117,17002,17015,112,4,2,59,115,17009,17011,1,8851,59,3,8851,65024,112,4,2,59,115,17022,17024,1,8852,59,3,8852,65024,117,4,2,98,112,17035,17062,4,3,59,101,115,17043,17045,17048,1,8847,59,1,8849,101,116,4,2,59,101,17056,17058,1,8847,113,59,1,8849,4,3,59,101,115,17070,17072,17075,1,8848,59,1,8850,101,116,4,2,59,101,17083,17085,1,8848,113,59,1,8850,4,3,59,97,102,17097,17099,17112,1,9633,114,4,2,101,102,17106,17109,59,1,9633,59,1,9642,59,1,9642,97,114,114,59,1,8594,4,4,99,101,109,116,17131,17136,17142,17148,114,59,3,55349,56520,116,109,110,59,1,8726,105,108,101,59,1,8995,97,114,102,59,1,8902,4,2,97,114,17160,17172,114,4,2,59,102,17167,17169,1,9734,59,1,9733,4,2,97,110,17178,17202,105,103,104,116,4,2,101,112,17188,17197,112,115,105,108,111,110,59,1,1013,104,105,59,1,981,115,59,1,175,4,5,98,99,109,110,112,17218,17351,17420,17423,17427,4,9,59,69,100,101,109,110,112,114,115,17238,17240,17243,17248,17261,17267,17279,17285,17291,1,8834,59,1,10949,111,116,59,1,10941,4,2,59,100,17254,17256,1,8838,111,116,59,1,10947,117,108,116,59,1,10945,4,2,69,101,17273,17276,59,1,10955,59,1,8842,108,117,115,59,1,10943,97,114,114,59,1,10617,4,3,101,105,117,17299,17335,17339,116,4,3,59,101,110,17308,17310,17322,1,8834,113,4,2,59,113,17317,17319,1,8838,59,1,10949,101,113,4,2,59,113,17330,17332,1,8842,59,1,10955,109,59,1,10951,4,2,98,112,17345,17348,59,1,10965,59,1,10963,99,4,6,59,97,99,101,110,115,17366,17368,17376,17385,17389,17415,1,8827,112,112,114,111,120,59,1,10936,117,114,108,121,101,113,59,1,8829,113,59,1,10928,4,3,97,101,115,17397,17405,17410,112,112,114,111,120,59,1,10938,113,113,59,1,10934,105,109,59,1,8937,105,109,59,1,8831,59,1,8721,103,59,1,9834,4,13,49,50,51,59,69,100,101,104,108,109,110,112,115,17455,17462,17469,17476,17478,17481,17496,17509,17524,17530,17536,17548,17554,5,185,1,59,17460,1,185,5,178,1,59,17467,1,178,5,179,1,59,17474,1,179,1,8835,59,1,10950,4,2,111,115,17487,17491,116,59,1,10942,117,98,59,1,10968,4,2,59,100,17502,17504,1,8839,111,116,59,1,10948,115,4,2,111,117,17516,17520,108,59,1,10185,98,59,1,10967,97,114,114,59,1,10619,117,108,116,59,1,10946,4,2,69,101,17542,17545,59,1,10956,59,1,8843,108,117,115,59,1,10944,4,3,101,105,117,17562,17598,17602,116,4,3,59,101,110,17571,17573,17585,1,8835,113,4,2,59,113,17580,17582,1,8839,59,1,10950,101,113,4,2,59,113,17593,17595,1,8843,59,1,10956,109,59,1,10952,4,2,98,112,17608,17611,59,1,10964,59,1,10966,4,3,65,97,110,17622,17627,17650,114,114,59,1,8665,114,4,2,104,114,17634,17638,107,59,1,10534,4,2,59,111,17644,17646,1,8601,119,59,1,8601,119,97,114,59,1,10538,108,105,103,5,223,1,59,17664,1,223,4,13,97,98,99,100,101,102,104,105,111,112,114,115,119,17694,17709,17714,17737,17742,17749,17754,17860,17905,17957,17964,18090,18122,4,2,114,117,17700,17706,103,101,116,59,1,8982,59,1,964,114,107,59,1,9140,4,3,97,101,121,17722,17728,17734,114,111,110,59,1,357,100,105,108,59,1,355,59,1,1090,111,116,59,1,8411,108,114,101,99,59,1,8981,114,59,3,55349,56625,4,4,101,105,107,111,17764,17805,17836,17851,4,2,114,116,17770,17786,101,4,2,52,102,17777,17780,59,1,8756,111,114,101,59,1,8756,97,4,3,59,115,118,17795,17797,17802,1,952,121,109,59,1,977,59,1,977,4,2,99,110,17811,17831,107,4,2,97,115,17818,17826,112,112,114,111,120,59,1,8776,105,109,59,1,8764,115,112,59,1,8201,4,2,97,115,17842,17846,112,59,1,8776,105,109,59,1,8764,114,110,5,254,1,59,17858,1,254,4,3,108,109,110,17868,17873,17901,100,101,59,1,732,101,115,5,215,3,59,98,100,17884,17886,17898,1,215,4,2,59,97,17892,17894,1,8864,114,59,1,10801,59,1,10800,116,59,1,8749,4,3,101,112,115,17913,17917,17953,97,59,1,10536,4,4,59,98,99,102,17927,17929,17934,17939,1,8868,111,116,59,1,9014,105,114,59,1,10993,4,2,59,111,17945,17948,3,55349,56677,114,107,59,1,10970,97,59,1,10537,114,105,109,101,59,1,8244,4,3,97,105,112,17972,17977,18082,100,101,59,1,8482,4,7,97,100,101,109,112,115,116,17993,18051,18056,18059,18066,18072,18076,110,103,108,101,4,5,59,100,108,113,114,18009,18011,18017,18032,18035,1,9653,111,119,110,59,1,9663,101,102,116,4,2,59,101,18026,18028,1,9667,113,59,1,8884,59,1,8796,105,103,104,116,4,2,59,101,18045,18047,1,9657,113,59,1,8885,111,116,59,1,9708,59,1,8796,105,110,117,115,59,1,10810,108,117,115,59,1,10809,98,59,1,10701,105,109,101,59,1,10811,101,122,105,117,109,59,1,9186,4,3,99,104,116,18098,18111,18116,4,2,114,121,18104,18108,59,3,55349,56521,59,1,1094,99,121,59,1,1115,114,111,107,59,1,359,4,2,105,111,18128,18133,120,116,59,1,8812,104,101,97,100,4,2,108,114,18143,18154,101,102,116,97,114,114,111,119,59,1,8606,105,103,104,116,97,114,114,111,119,59,1,8608,4,18,65,72,97,98,99,100,102,103,104,108,109,111,112,114,115,116,117,119,18204,18209,18214,18234,18250,18268,18292,18308,18319,18343,18379,18397,18413,18504,18547,18553,18584,18603,114,114,59,1,8657,97,114,59,1,10595,4,2,99,114,18220,18230,117,116,101,5,250,1,59,18228,1,250,114,59,1,8593,114,4,2,99,101,18241,18245,121,59,1,1118,118,101,59,1,365,4,2,105,121,18256,18265,114,99,5,251,1,59,18263,1,251,59,1,1091,4,3,97,98,104,18276,18281,18287,114,114,59,1,8645,108,97,99,59,1,369,97,114,59,1,10606,4,2,105,114,18298,18304,115,104,116,59,1,10622,59,3,55349,56626,114,97,118,101,5,249,1,59,18317,1,249,4,2,97,98,18325,18338,114,4,2,108,114,18332,18335,59,1,8639,59,1,8638,108,107,59,1,9600,4,2,99,116,18349,18374,4,2,111,114,18355,18369,114,110,4,2,59,101,18363,18365,1,8988,114,59,1,8988,111,112,59,1,8975,114,105,59,1,9720,4,2,97,108,18385,18390,99,114,59,1,363,5,168,1,59,18395,1,168,4,2,103,112,18403,18408,111,110,59,1,371,102,59,3,55349,56678,4,6,97,100,104,108,115,117,18427,18434,18445,18470,18475,18494,114,114,111,119,59,1,8593,111,119,110,97,114,114,111,119,59,1,8597,97,114,112,111,111,110,4,2,108,114,18457,18463,101,102,116,59,1,8639,105,103,104,116,59,1,8638,117,115,59,1,8846,105,4,3,59,104,108,18484,18486,18489,1,965,59,1,978,111,110,59,1,965,112,97,114,114,111,119,115,59,1,8648,4,3,99,105,116,18512,18537,18542,4,2,111,114,18518,18532,114,110,4,2,59,101,18526,18528,1,8989,114,59,1,8989,111,112,59,1,8974,110,103,59,1,367,114,105,59,1,9721,99,114,59,3,55349,56522,4,3,100,105,114,18561,18566,18572,111,116,59,1,8944,108,100,101,59,1,361,105,4,2,59,102,18579,18581,1,9653,59,1,9652,4,2,97,109,18590,18595,114,114,59,1,8648,108,5,252,1,59,18601,1,252,97,110,103,108,101,59,1,10663,4,15,65,66,68,97,99,100,101,102,108,110,111,112,114,115,122,18643,18648,18661,18667,18847,18851,18857,18904,18909,18915,18931,18937,18943,18949,18996,114,114,59,1,8661,97,114,4,2,59,118,18656,18658,1,10984,59,1,10985,97,115,104,59,1,8872,4,2,110,114,18673,18679,103,114,116,59,1,10652,4,7,101,107,110,112,114,115,116,18695,18704,18711,18720,18742,18754,18810,112,115,105,108,111,110,59,1,1013,97,112,112,97,59,1,1008,111,116,104,105,110,103,59,1,8709,4,3,104,105,114,18728,18732,18735,105,59,1,981,59,1,982,111,112,116,111,59,1,8733,4,2,59,104,18748,18750,1,8597,111,59,1,1009,4,2,105,117,18760,18766,103,109,97,59,1,962,4,2,98,112,18772,18791,115,101,116,110,101,113,4,2,59,113,18784,18787,3,8842,65024,59,3,10955,65024,115,101,116,110,101,113,4,2,59,113,18803,18806,3,8843,65024,59,3,10956,65024,4,2,104,114,18816,18822,101,116,97,59,1,977,105,97,110,103,108,101,4,2,108,114,18834,18840,101,102,116,59,1,8882,105,103,104,116,59,1,8883,121,59,1,1074,97,115,104,59,1,8866,4,3,101,108,114,18865,18884,18890,4,3,59,98,101,18873,18875,18880,1,8744,97,114,59,1,8891,113,59,1,8794,108,105,112,59,1,8942,4,2,98,116,18896,18901,97,114,59,1,124,59,1,124,114,59,3,55349,56627,116,114,105,59,1,8882,115,117,4,2,98,112,18923,18927,59,3,8834,8402,59,3,8835,8402,112,102,59,3,55349,56679,114,111,112,59,1,8733,116,114,105,59,1,8883,4,2,99,117,18955,18960,114,59,3,55349,56523,4,2,98,112,18966,18981,110,4,2,69,101,18973,18977,59,3,10955,65024,59,3,8842,65024,110,4,2,69,101,18988,18992,59,3,10956,65024,59,3,8843,65024,105,103,122,97,103,59,1,10650,4,7,99,101,102,111,112,114,115,19020,19026,19061,19066,19072,19075,19089,105,114,99,59,1,373,4,2,100,105,19032,19055,4,2,98,103,19038,19043,97,114,59,1,10847,101,4,2,59,113,19050,19052,1,8743,59,1,8793,101,114,112,59,1,8472,114,59,3,55349,56628,112,102,59,3,55349,56680,59,1,8472,4,2,59,101,19081,19083,1,8768,97,116,104,59,1,8768,99,114,59,3,55349,56524,4,14,99,100,102,104,105,108,109,110,111,114,115,117,118,119,19125,19146,19152,19157,19173,19176,19192,19197,19202,19236,19252,19269,19286,19291,4,3,97,105,117,19133,19137,19142,112,59,1,8898,114,99,59,1,9711,112,59,1,8899,116,114,105,59,1,9661,114,59,3,55349,56629,4,2,65,97,19163,19168,114,114,59,1,10234,114,114,59,1,10231,59,1,958,4,2,65,97,19182,19187,114,114,59,1,10232,114,114,59,1,10229,97,112,59,1,10236,105,115,59,1,8955,4,3,100,112,116,19210,19215,19230,111,116,59,1,10752,4,2,102,108,19221,19225,59,3,55349,56681,117,115,59,1,10753,105,109,101,59,1,10754,4,2,65,97,19242,19247,114,114,59,1,10233,114,114,59,1,10230,4,2,99,113,19258,19263,114,59,3,55349,56525,99,117,112,59,1,10758,4,2,112,116,19275,19281,108,117,115,59,1,10756,114,105,59,1,9651,101,101,59,1,8897,101,100,103,101,59,1,8896,4,8,97,99,101,102,105,111,115,117,19316,19335,19349,19357,19362,19367,19373,19379,99,4,2,117,121,19323,19332,116,101,5,253,1,59,19330,1,253,59,1,1103,4,2,105,121,19341,19346,114,99,59,1,375,59,1,1099,110,5,165,1,59,19355,1,165,114,59,3,55349,56630,99,121,59,1,1111,112,102,59,3,55349,56682,99,114,59,3,55349,56526,4,2,99,109,19385,19389,121,59,1,1102,108,5,255,1,59,19395,1,255,4,10,97,99,100,101,102,104,105,111,115,119,19419,19426,19441,19446,19462,19467,19472,19480,19486,19492,99,117,116,101,59,1,378,4,2,97,121,19432,19438,114,111,110,59,1,382,59,1,1079,111,116,59,1,380,4,2,101,116,19452,19458,116,114,102,59,1,8488,97,59,1,950,114,59,3,55349,56631,99,121,59,1,1078,103,114,97,114,114,59,1,8669,112,102,59,3,55349,56683,99,114,59,3,55349,56527,4,2,106,110,19498,19501,59,1,8205,106,59,1,8204])},function(e,t,n){"use strict";var n=n(4),o=n.TAG_NAMES,i=n.NAMESPACES;function r(e){switch(e.length){case 1:return e===o.P;case 2:return e===o.RB||e===o.RP||e===o.RT||e===o.DD||e===o.DT||e===o.LI;case 3:return e===o.RTC;case 6:return e===o.OPTION;case 8:return e===o.OPTGROUP||e===o.MENUITEM}}function a(e,t){switch(e.length){case 2:if(e===o.TD||e===o.TH)return t===i.HTML;if(e===o.MI||e===o.MO||e===o.MN||e===o.MS)return t===i.MATHML;break;case 4:if(e===o.HTML)return t===i.HTML;if(e===o.DESC)return t===i.SVG;break;case 5:if(e===o.TABLE)return t===i.HTML;if(e===o.MTEXT)return t===i.MATHML;if(e===o.TITLE)return t===i.SVG;break;case 6:return(e===o.APPLET||e===o.OBJECT)&&t===i.HTML;case 7:return(e===o.CAPTION||e===o.MARQUEE)&&t===i.HTML;case 8:return e===o.TEMPLATE&&t===i.HTML;case 13:return e===o.FOREIGN_OBJECT&&t===i.SVG;case 14:return e===o.ANNOTATION_XML&&t===i.MATHML}}n=e.exports=function(e,t){this.stackTop=-1,this.items=[],this.current=e,this.currentTagName=null,this.currentTmplContent=null,this.tmplCount=0,this.treeAdapter=t};n.prototype._indexOf=function(e){for(var t=-1,n=this.stackTop;0<=n;n--)if(this.items[n]===e){t=n;break}return t},n.prototype._isInTemplate=function(){return this.currentTagName===o.TEMPLATE&&this.treeAdapter.getNamespaceURI(this.current)===i.HTML},n.prototype._updateCurrentElement=function(){this.current=this.items[this.stackTop],this.currentTagName=this.current&&this.treeAdapter.getTagName(this.current),this.currentTmplContent=this._isInTemplate()?this.treeAdapter.getTemplateContent(this.current):null},n.prototype.push=function(e){this.items[++this.stackTop]=e,this._updateCurrentElement(),this._isInTemplate()&&this.tmplCount++},n.prototype.pop=function(){this.stackTop--,0>16&255,i[a++]=t>>8&255,i[a++]=255&t;2===r&&(t=l[e.charCodeAt(n)]<<2|l[e.charCodeAt(n+1)]>>4,i[a++]=255&t);1===r&&(t=l[e.charCodeAt(n)]<<10|l[e.charCodeAt(n+1)]<<4|l[e.charCodeAt(n+2)]>>2,i[a++]=t>>8&255,i[a++]=255&t);return i},t.fromByteArray=function(e){for(var t,n=e.length,r=n%3,o=[],i=0,a=n-r;i>18&63]+s[e>>12&63]+s[e>>6&63]+s[63&e]}(r));return o.join("")}(e,i,a>2]+s[t<<4&63]+"==")):2==r&&(t=(e[n-2]<<8)+e[n-1],o.push(s[t>>10]+s[t>>4&63]+s[t<<2&63]+"="));return o.join("")};for(var s=[],l=[],c="undefined"!=typeof Uint8Array?Uint8Array:Array,r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",o=0,i=r.length;o */ -t.read=function(e,t,n,r,o){var i,a,s=8*o-r-1,l=(1<>1,u=-7,d=n?o-1:0,f=n?-1:1,o=e[t+d];for(d+=f,i=o&(1<<-u)-1,o>>=-u,u+=s;0>=-u,u+=r;0>1,d=23===o?Math.pow(2,-24)-Math.pow(2,-77):0,f=r?0:i-1,p=r?1:-1,i=t<0||0===t&&1/t<0?1:0;for(t=Math.abs(t),isNaN(t)||t===1/0?(s=isNaN(t)?1:0,a=c):(a=Math.floor(Math.log(t)/Math.LN2),t*(r=Math.pow(2,-a))<1&&(a--,r*=2),2<=(t+=1<=a+u?d/r:d*Math.pow(2,1-u))*r&&(a++,r/=2),c<=a+u?(s=0,a=c):1<=a+u?(s=(t*r-1)*Math.pow(2,o),a+=u):(s=t*Math.pow(2,u-1)*Math.pow(2,o),a=0));8<=o;e[n+f]=255&s,f+=p,s/=256,o-=8);for(a=a<>>0),o=this.head,i=0;o;)t=o.data,n=i,t.copy(r,n),i+=o.data.length,o=o.next;return r},o),r&&r.inspect&&r.inspect.custom&&(e.exports.prototype[r.inspect.custom]=function(){var e=r.inspect({length:this.length});return this.constructor.name+" "+e})},function(e,t){},function(e,o,i){!function(e){var t=void 0!==e&&e||"undefined"!=typeof self&&self||window,n=Function.prototype.apply;function r(e,t){this._id=e,this._clearFn=t}o.setTimeout=function(){return new r(n.call(setTimeout,t,arguments),clearTimeout)},o.setInterval=function(){return new r(n.call(setInterval,t,arguments),clearInterval)},o.clearTimeout=o.clearInterval=function(e){e&&e.close()},r.prototype.unref=r.prototype.ref=function(){},r.prototype.close=function(){this._clearFn.call(t,this._id)},o.enroll=function(e,t){clearTimeout(e._idleTimeoutId),e._idleTimeout=t},o.unenroll=function(e){clearTimeout(e._idleTimeoutId),e._idleTimeout=-1},o._unrefActive=o.active=function(e){clearTimeout(e._idleTimeoutId);var t=e._idleTimeout;0<=t&&(e._idleTimeoutId=setTimeout(function(){e._onTimeout&&e._onTimeout()},t))},i(73),o.setImmediate="undefined"!=typeof self&&self.setImmediate||void 0!==e&&e.setImmediate||this&&this.setImmediate,o.clearImmediate="undefined"!=typeof self&&self.clearImmediate||void 0!==e&&e.clearImmediate||this&&this.clearImmediate}.call(this,i(7))},function(e,t,n){!function(e,p){!function(n,i){"use strict";var r,a,s,o,l,c,t,e;function u(e){delete a[e]}function d(e){if(s)setTimeout(d,0,e);else{var t=a[e];if(t){s=!0;try{var n=t,r=n.callback,o=n.args;switch(o.length){case 0:r();break;case 1:r(o[0]);break;case 2:r(o[0],o[1]);break;case 3:r(o[0],o[1],o[2]);break;default:r.apply(i,o)}}finally{u(e),s=!1}}}}function f(){function e(e){e.source===n&&"string"==typeof e.data&&0===e.data.indexOf(t)&&d(+e.data.slice(t.length))}var t="setImmediate$"+Math.random()+"$";n.addEventListener?n.addEventListener("message",e,!1):n.attachEvent("onmessage",e),l=function(e){n.postMessage(t+e,"*")}}n.setImmediate||(r=1,s=!(a={}),o=n.document,e=(e=Object.getPrototypeOf&&Object.getPrototypeOf(n))&&e.setTimeout?e:n,"[object process]"==={}.toString.call(n.process)?l=function(e){p.nextTick(function(){d(e)})}:!function(){var e,t;if(n.postMessage&&!n.importScripts)return e=!0,t=n.onmessage,n.onmessage=function(){e=!1},n.postMessage("","*"),n.onmessage=t,e}()?l=n.MessageChannel?((t=new MessageChannel).port1.onmessage=function(e){d(e.data)},function(e){t.port2.postMessage(e)}):o&&"onreadystatechange"in o.createElement("script")?(c=o.documentElement,function(e){var t=o.createElement("script");t.onreadystatechange=function(){d(e),t.onreadystatechange=null,c.removeChild(t),t=null},c.appendChild(t)}):function(e){setTimeout(d,0,e)}:f(),e.setImmediate=function(e){"function"!=typeof e&&(e=new Function(""+e));for(var t=new Array(arguments.length-1),n=0;n