re621 - e621 Reimagined

Subscription manager, mass downloader, thumbnail enhancer, and more for e621

// ==UserScript==
// @name            re621 - e621 Reimagined
// @namespace       re621.app
// @version         1.5.68
// @description     Subscription manager, mass downloader, thumbnail enhancer, and more for e621
// @author          bitWolfy
// @license         GPL-3.0-only
// @supportURL      https://github.com/re621/re621.Legacy/issues
// @homepageURL     https://e621.net/forum_topics/25872
// @contributionURL https://ko-fi.com/bitwolfy
// @match           https://e621.net/*
// @match           https://e926.net/*
// @require         https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js
// @require         https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js
// @require         https://cdnjs.cloudflare.com/ajax/libs/jquery.hotkeys/0.2.0/jquery.hotkeys.min.js
// @require         https://cdnjs.cloudflare.com/ajax/libs/jszip/3.5.0/jszip.min.js
// @grant           GM.info
// @grant           GM.setValue
// @grant           GM.getValue
// @grant           GM.deleteValue
// @grant           GM.openInTab
// @grant           GM.setClipboard
// @grant           GM.getResourceUrl
// @grant           GM_getResourceURL
// @grant           GM_getResourceText
// @grant           GM.xmlHttpRequest
// @grant           GM_xmlhttpRequest
// @grant           GM_download
// @grant           GM_addValueChangeListener
// @grant           GM_removeValueChangeListener
// @grant           unsafeWindow
// @icon            https://cdn.jsdelivr.net/gh/re621/re621.Legacy@master/assets/icon64.png
// @icon64          https://cdn.jsdelivr.net/gh/re621/re621.Legacy@master/assets/icon64.png
// @connect         api.github.com
// @connect         static1.e621.net
// @connect         re621.app
// @connect         *
// @run-at          document-body
// ==/UserScript==


window.re621 = new function() {
    this.name = "re621";
    this.displayName = "re621 - e621 Reimagined";
    this.version = "1.5.68";
    this.build = "240301:1940";
    this.type = "script";
    this.links = {
        website: "https://e621.net/forum_topics/25872",
        repository: "https://github.com/re621/re621.Legacy",
        issues: "https://github.com/re621/re621.Legacy/issues/",
        releases: "https://github.com/re621/re621.Legacy/releases",
        forum: "https://e621.net/forum_topics/25872",
    };
    this.useragent = "re621/1.5.68";
    this.privacy = false;
    this.debug = true;
};

/* This is a minified build. To see the source, visit the project's github page. */

const attachedStylesheet = `"/* Styling for the re621 Project */\n/* Common Mixins */\n/* Helper Classes */\n@media (min-width: 800px) {\n  .mobile-only {\n    display: none !important;\n  }\n}\n@media (max-width: 800px) {\n  .desktop-only {\n    display: none !important;\n  }\n\n  #maintoggle-on {\n    display: none !important;\n  }\n}\na {\n  cursor: pointer;\n}\n\n.float-left {\n  float: left;\n}\n\n.float-right {\n  float: right;\n}\n\n.text-left {\n  text-align: left;\n}\n\n.text-center {\n  text-align: center;\n}\n\n.text-right {\n  text-align: right;\n}\n\n.align-middle {\n  align-self: center;\n}\n\n.display-none {\n  display: none;\n}\n\n.display-none-important {\n  display: none !important;\n}\n\n.display-inline {\n  display: inline;\n}\n\n.display-block {\n  display: block;\n}\n\n.vis-hidden {\n  visibility: hidden;\n}\n\n.vis-shown {\n  visibility: visible;\n}\n\n.border-left {\n  border-width: 0px !important;\n  border-left-width: 1px !important;\n}\n\n.text-bold {\n  font-weight: bold;\n}\n\n/* Animated loading spinner, from https://loading.io/css/ */\n.lds-ellipsis {\n  display: inline-block;\n  position: relative;\n  width: 80px;\n  height: 80px;\n}\n.lds-ellipsis div {\n  position: absolute;\n  top: 33px;\n  width: 13px;\n  height: 13px;\n  border-radius: 50%;\n  background: #fff;\n  -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 0);\n          animation-timing-function: cubic-bezier(0, 1, 1, 0);\n}\n.lds-ellipsis div:nth-child(1) {\n  left: 8px;\n  -webkit-animation: lds-ellipsis1 0.6s infinite;\n          animation: lds-ellipsis1 0.6s infinite;\n}\n.lds-ellipsis div:nth-child(2) {\n  left: 8px;\n  -webkit-animation: lds-ellipsis2 0.6s infinite;\n          animation: lds-ellipsis2 0.6s infinite;\n}\n.lds-ellipsis div:nth-child(3) {\n  left: 32px;\n  -webkit-animation: lds-ellipsis2 0.6s infinite;\n          animation: lds-ellipsis2 0.6s infinite;\n}\n.lds-ellipsis div:nth-child(4) {\n  left: 56px;\n  -webkit-animation: lds-ellipsis3 0.6s infinite;\n          animation: lds-ellipsis3 0.6s infinite;\n}\n\n@-webkit-keyframes lds-ellipsis1 {\n  0% {\n    transform: scale(0);\n  }\n  100% {\n    transform: scale(1);\n  }\n}\n\n@keyframes lds-ellipsis1 {\n  0% {\n    transform: scale(0);\n  }\n  100% {\n    transform: scale(1);\n  }\n}\n@-webkit-keyframes lds-ellipsis3 {\n  0% {\n    transform: scale(1);\n  }\n  100% {\n    transform: scale(0);\n  }\n}\n@keyframes lds-ellipsis3 {\n  0% {\n    transform: scale(1);\n  }\n  100% {\n    transform: scale(0);\n  }\n}\n@-webkit-keyframes lds-ellipsis2 {\n  0% {\n    transform: translate(0, 0);\n  }\n  100% {\n    transform: translate(24px, 0);\n  }\n}\n@keyframes lds-ellipsis2 {\n  0% {\n    transform: translate(0, 0);\n  }\n  100% {\n    transform: translate(24px, 0);\n  }\n}\n/* Generated Form Styles */\nform.form-section,\nform-section {\n  display: grid;\n  grid-column-gap: 0.5rem;\n  grid-row-gap: 0.5rem;\n}\nform.form-section[labeled][colspan=\"2\"],\nform-section[labeled][colspan=\"2\"] {\n  grid-column: span 3;\n}\nform.form-section[labeled][colspan=\"3\"],\nform-section[labeled][colspan=\"3\"] {\n  grid-column: span 5;\n}\nform.form-section:not([labeled]):not([colspan]), form.form-section:not([labeled])[colspan=\"1\"],\nform-section:not([labeled]):not([colspan]),\nform-section:not([labeled])[colspan=\"1\"] {\n  grid-column: span 2;\n}\nform.form-section:not([labeled])[colspan=\"2\"],\nform-section:not([labeled])[colspan=\"2\"] {\n  grid-column: span 4;\n}\nform.form-section:not([labeled])[colspan=\"3\"],\nform-section:not([labeled])[colspan=\"3\"] {\n  grid-column: span 6;\n}\nform.form-section:not([columns]), form.form-section[columns=\"1\"],\nform-section:not([columns]),\nform-section[columns=\"1\"] {\n  grid-template-columns: 5rem 10rem;\n}\nform.form-section[columns=\"2\"],\nform-section[columns=\"2\"] {\n  grid-template-columns: 5rem 10rem 5rem 10rem;\n}\nform.form-section[columns=\"3\"],\nform-section[columns=\"3\"] {\n  grid-template-columns: 5rem 10rem 5rem 10rem 5rem 10rem;\n}\n\nform.form-section:not([formspan]), form.form-section[formspan=\"1\"] {\n  width: 15.5rem;\n}\nform.form-section[formspan=\"2\"] {\n  width: 31.5rem;\n}\nform.form-section[formspan=\"3\"] {\n  width: 47.5rem;\n}\n\nform.form-section > label,\nform-section > label {\n  font-weight: 500;\n  align-self: center;\n}\n\nform.form-section > form-input,\nform-section > form-input {\n  display: flex;\n  justify-content: space-between;\n  align-items: center;\n}\nform.form-section > form-input[labeled][colspan=\"2\"],\nform-section > form-input[labeled][colspan=\"2\"] {\n  grid-column: span 3;\n}\nform.form-section > form-input[labeled][colspan=\"3\"],\nform-section > form-input[labeled][colspan=\"3\"] {\n  grid-column: span 5;\n}\nform.form-section > form-input:not([labeled]):not([colspan]), form.form-section > form-input:not([labeled])[colspan=\"1\"],\nform-section > form-input:not([labeled]):not([colspan]),\nform-section > form-input:not([labeled])[colspan=\"1\"] {\n  grid-column: span 2;\n}\nform.form-section > form-input:not([labeled])[colspan=\"2\"],\nform-section > form-input:not([labeled])[colspan=\"2\"] {\n  grid-column: span 4;\n}\nform.form-section > form-input:not([labeled])[colspan=\"3\"],\nform-section > form-input:not([labeled])[colspan=\"3\"] {\n  grid-column: span 6;\n}\nform.form-section > form-input > input, form.form-section > form-input > select, form.form-section > form-input > textarea,\nform-section > form-input > input,\nform-section > form-input > select,\nform-section > form-input > textarea {\n  width: 100%;\n  height: 100%;\n  padding: 0 0.25rem;\n  border-radius: 4px;\n  border: 1px solid transparent;\n  border-left-width: 5px;\n  min-height: 1.25rem;\n  overflow: hidden;\n}\nform.form-section > form-input > input:required, form.form-section > form-input > select:required, form.form-section > form-input > textarea:required,\nform-section > form-input > input:required,\nform-section > form-input > select:required,\nform-section > form-input > textarea:required {\n  border-left: 5px solid grey;\n}\nform.form-section > form-input > input:invalid, form.form-section > form-input > select:invalid, form.form-section > form-input > textarea:invalid,\nform-section > form-input > input:invalid,\nform-section > form-input > select:invalid,\nform-section > form-input > textarea:invalid {\n  border-left: 5px solid orange;\n}\nform.form-section > form-input > input:valid, form.form-section > form-input > select:valid, form.form-section > form-input > textarea:valid,\nform-section > form-input > input:valid,\nform-section > form-input > select:valid,\nform-section > form-input > textarea:valid {\n  border-left: 5px solid transparent;\n}\nform.form-section > form-input > button.button,\nform-section > form-input > button.button {\n  width: 100%;\n  height: 100%;\n  min-height: 1.25rem;\n  padding: 0 0.25rem;\n  border-radius: 4px;\n}\nform.form-section > form-input.copybox, form.form-section > form-input.keyinput,\nform-section > form-input.copybox,\nform-section > form-input.keyinput {\n  display: inline-grid;\n  grid-template-columns: 80% 20%;\n  overflow: hidden;\n  position: relative;\n}\nform.form-section > form-input.copybox input[type=text], form.form-section > form-input.keyinput input[type=text],\nform-section > form-input.copybox input[type=text],\nform-section > form-input.keyinput input[type=text] {\n  width: unset;\n  border-radius: 4px 0 0 4px;\n  text-align: center;\n  outline: 0;\n  box-shadow: none;\n  transition: box-shadow 0.25s linear;\n}\nform.form-section > form-input.copybox input[type=text].input-info, form.form-section > form-input.keyinput input[type=text].input-info,\nform-section > form-input.copybox input[type=text].input-info,\nform-section > form-input.keyinput input[type=text].input-info {\n  color: orange;\n}\nform.form-section > form-input.copybox input[type=text].highlight, form.form-section > form-input.keyinput input[type=text].highlight,\nform-section > form-input.copybox input[type=text].highlight,\nform-section > form-input.keyinput input[type=text].highlight {\n  box-shadow: inset 0px 0px 0px 2px #ffffff60;\n}\nform.form-section > form-input.copybox span.keyinput-warning, form.form-section > form-input.keyinput span.keyinput-warning,\nform-section > form-input.copybox span.keyinput-warning,\nform-section > form-input.keyinput span.keyinput-warning {\n  position: absolute;\n  width: 0;\n  right: calc(20% + 1.25rem);\n}\nform.form-section > form-input.copybox span.keyinput-warning:before, form.form-section > form-input.keyinput span.keyinput-warning:before,\nform-section > form-input.copybox span.keyinput-warning:before,\nform-section > form-input.keyinput span.keyinput-warning:before {\n  content: \"\\f12a\";\n  font-family: \"Font Awesome 6 Free\";\n  font-weight: 900;\n  color: coral;\n}\nform.form-section > form-input.copybox button[type=button], form.form-section > form-input.keyinput button[type=button],\nform-section > form-input.copybox button[type=button],\nform-section > form-input.keyinput button[type=button] {\n  width: unset;\n  border-radius: 0 4px 4px 0;\n  outline: 0;\n}\nform.form-section > form-input.keyinput input[type=text],\nform-section > form-input.keyinput input[type=text] {\n  text-transform: uppercase;\n  font-family: monospace;\n  font-size: 1.3em;\n}\nform.form-section > form-input.fileinput input[type=file],\nform-section > form-input.fileinput input[type=file] {\n  width: -webkit-fill-available;\n  width: -moz-available;\n  width: stretch;\n}\nform.form-section > form-input div.icon-picker,\nform-section > form-input div.icon-picker {\n  display: grid;\n  grid-template-columns: repeat(auto-fit, 23px);\n  grid-column-gap: 0.29rem;\n  grid-row-gap: 0.3rem;\n  width: 100%;\n}\nform.form-section > form-input div.icon-picker a,\nform-section > form-input div.icon-picker a {\n  display: inline-flex;\n  justify-content: space-around;\n  padding: 0.125rem 0.25rem;\n  outline: 0;\n  font-family: \"Font Awesome 6 Free\";\n  font-weight: 900;\n  border: 1px dashed #666666;\n}\nform.form-section > form-input div.icon-picker a.active,\nform-section > form-input div.icon-picker a.active {\n  background: #ffffff30;\n}\nform.form-section > form-input.checkbox-switch,\nform-section > form-input.checkbox-switch {\n  justify-content: unset;\n  /* to hide the checkbox itself */\n}\nform.form-section > form-input.checkbox-switch input[type=checkbox],\nform-section > form-input.checkbox-switch input[type=checkbox] {\n  display: none;\n}\nform.form-section > form-input.checkbox-switch input[type=checkbox] + label:before,\nform-section > form-input.checkbox-switch input[type=checkbox] + label:before {\n  content: \"\\f0c8\";\n  font-family: \"Font Awesome 6 Free\";\n  display: inline-block;\n  letter-spacing: 10px;\n  cursor: pointer;\n}\nform.form-section > form-input.checkbox-switch input[type=checkbox]:checked + label:before,\nform-section > form-input.checkbox-switch input[type=checkbox]:checked + label:before {\n  content: \"\\f14a\";\n}\nform.form-section > form-input.checkbox-switch label,\nform-section > form-input.checkbox-switch label {\n  cursor: pointer;\n  font-weight: 500;\n}\nform.form-section > form-input.radio-switch,\nform-section > form-input.radio-switch {\n  justify-content: unset;\n}\nform.form-section > form-input.radio-switch div.radio-element,\nform-section > form-input.radio-switch div.radio-element {\n  display: inline-flex;\n  margin-right: 0.25rem;\n  border-radius: 4px;\n}\nform.form-section > form-input.radio-switch div.radio-element:last-child,\nform-section > form-input.radio-switch div.radio-element:last-child {\n  margin-right: 0;\n}\nform.form-section > form-input.radio-switch div.radio-element input[type=radio],\nform-section > form-input.radio-switch div.radio-element input[type=radio] {\n  display: none;\n}\nform.form-section > form-input.radio-switch div.radio-element label,\nform-section > form-input.radio-switch div.radio-element label {\n  padding: 0.25rem 0.5rem;\n  min-width: 3rem;\n  text-align: center;\n  cursor: pointer;\n}\nform.form-section > form-input.text-div,\nform-section > form-input.text-div {\n  display: block;\n  width: 100%;\n  line-height: 1.25rem;\n}\nform.form-section > form-input.text-div div.notice,\nform-section > form-input.text-div div.notice {\n  font-size: smaller;\n}\nform.form-section > form-input.text-div div.unmargin,\nform-section > form-input.text-div div.unmargin {\n  margin: -0.5rem 0;\n}\nform.form-section > form-input.text-div pre,\nform-section > form-input.text-div pre {\n  display: inline;\n  background: #ffffff15;\n  padding: 0 0.25rem;\n  border-radius: 0.25rem;\n}\nform.form-section > form-input.text-div.subheader,\nform-section > form-input.text-div.subheader {\n  padding-left: 1.5rem;\n}\nform.form-section > form-input > spacer,\nform-section > form-input > spacer {\n  display: block;\n  height: 1em;\n}\nform.form-section > form-input > spacer.unmargin,\nform-section > form-input > spacer.unmargin {\n  height: 0;\n}\nform.form-section > form-input > hr,\nform-section > form-input > hr {\n  width: 100%;\n  border: 0;\n  border-top: 1px solid #ffffff33;\n}\nform.form-section > form-input.input-disabled,\nform-section > form-input.input-disabled {\n  color: #666666 !important;\n}\nform.form-section > form-input.input-disabled > select, form.form-section > form-input.input-disabled > input,\nform-section > form-input.input-disabled > select,\nform-section > form-input.input-disabled > input {\n  color: #666666 !important;\n}\n\n/* Collapsible section */\nform.form-section > form-collapse,\nform-section > form-collapse {\n  display: block;\n  justify-content: space-between;\n  align-items: center;\n  margin: 0 -0.75rem 0 -0.75rem !important;\n  width: -webkit-fill-available;\n  width: -moz-available;\n  width: stretch;\n}\nform.form-section > form-collapse[labeled][colspan=\"2\"],\nform-section > form-collapse[labeled][colspan=\"2\"] {\n  grid-column: span 3;\n}\nform.form-section > form-collapse[labeled][colspan=\"3\"],\nform-section > form-collapse[labeled][colspan=\"3\"] {\n  grid-column: span 5;\n}\nform.form-section > form-collapse:not([labeled]):not([colspan]), form.form-section > form-collapse:not([labeled])[colspan=\"1\"],\nform-section > form-collapse:not([labeled]):not([colspan]),\nform-section > form-collapse:not([labeled])[colspan=\"1\"] {\n  grid-column: span 2;\n}\nform.form-section > form-collapse:not([labeled])[colspan=\"2\"],\nform-section > form-collapse:not([labeled])[colspan=\"2\"] {\n  grid-column: span 4;\n}\nform.form-section > form-collapse:not([labeled])[colspan=\"3\"],\nform-section > form-collapse:not([labeled])[colspan=\"3\"] {\n  grid-column: span 6;\n}\nform.form-section > form-collapse > h3.collapse-header,\nform-section > form-collapse > h3.collapse-header {\n  border: unset !important;\n  background: #ffffff08 !important;\n  color: unset !important;\n  font-weight: unset !important;\n  outline: 0;\n  padding: 0.25rem 0.5rem;\n  cursor: pointer;\n}\nform.form-section > form-collapse > h3.collapse-header span.form-collapse-badge,\nform-section > form-collapse > h3.collapse-header span.form-collapse-badge {\n  float: right;\n  width: 2rem;\n  padding: 0 0.5rem;\n  margin-right: 0.25rem;\n  border-radius: 0.5rem;\n  background: #00000030;\n  box-shadow: inset 0 0 5px 0px #00000050;\n  font-weight: bold;\n  text-align: center;\n}\nform.form-section > form-collapse > form-section.collapse-content,\nform-section > form-collapse > form-section.collapse-content {\n  height: unset !important;\n  background: #ffffff05;\n  color: unset;\n  border: 0;\n  padding: 0.25rem 0.75rem;\n}\n\n/* Accordion */\nform-accordion {\n  display: block;\n  justify-content: space-between;\n  align-items: center;\n  margin: 0 -0.75rem 0 -0.75rem !important;\n  width: -webkit-fill-available;\n  width: -moz-available;\n  width: stretch;\n}\nform-accordion[labeled][colspan=\"2\"] {\n  grid-column: span 3;\n}\nform-accordion[labeled][colspan=\"3\"] {\n  grid-column: span 5;\n}\nform-accordion:not([labeled]):not([colspan]), form-accordion:not([labeled])[colspan=\"1\"] {\n  grid-column: span 2;\n}\nform-accordion:not([labeled])[colspan=\"2\"] {\n  grid-column: span 4;\n}\nform-accordion:not([labeled])[colspan=\"3\"] {\n  grid-column: span 6;\n}\nform-accordion > form-header {\n  display: block;\n  border: unset !important;\n  border-bottom: 1px solid #ffffff11 !important;\n  background: #ffffff08 !important;\n  color: unset !important;\n  font-weight: unset !important;\n  font-size: 1.16667em;\n  outline: 0;\n  padding: 0.25rem 0.5rem;\n  cursor: pointer;\n}\nform-accordion > form-header span.form-collapse-subheader {\n  float: right;\n  font-size: 70%;\n  padding: 0.25rem;\n}\nform-accordion > form-header span.form-collapse-badge {\n  float: right;\n  width: 2rem;\n  padding: 0 0.5rem;\n  margin-right: 0.25rem;\n  border-radius: 0.5rem;\n  background: #00000030;\n  box-shadow: inset 0 0 5px 0px #00000050;\n  font-weight: bold;\n  text-align: center;\n}\nform-accordion > form-section.collapse-content {\n  height: unset !important;\n  background: #ffffff05;\n  border-bottom: 1px solid #ffffff11 !important;\n  color: unset;\n  border: 0;\n  padding: 1rem 0.75rem;\n}\n\n/* Modal Helper Styles */\ndiv#modal-container {\n  position: absolute;\n  height: 100%;\n  left: 0;\n  right: 0;\n  z-index: 500;\n  pointer-events: none;\n  box-sizing: border-box;\n  margin-top: -8px;\n  /* Modal Styling Overrides */\n}\ndiv#modal-container div.re621-ui-dialog {\n  position: absolute !important;\n  pointer-events: auto;\n  border-radius: 6px;\n  min-width: -webkit-max-content;\n  min-width: -moz-max-content;\n  min-width: max-content;\n  max-width: -webkit-fit-content;\n  max-width: -moz-fit-content;\n  max-width: fit-content;\n  box-shadow: 0 5px 15px -5px black;\n  outline: 0;\n  background-image: url(\"/packs/media/src/styles/images/extras/hex-6029a8f11b7ec7b1f0638e3d8f18b6cb.png\");\n  background-position: left 2rem;\n  background-repeat: repeat-x;\n}\ndiv#modal-container div.re621-ui-dialog.modal-fixed {\n  position: fixed !important;\n}\ndiv#modal-container div.re621-ui-dialog.modal-reserve-height div.ui-dialog-content {\n  height: 80vh !important;\n}\ndiv#modal-container div.re621-ui-dialog div.ui-dialog-titlebar {\n  position: relative;\n  padding: 0;\n  border: unset !important;\n  border-radius: 6px 6px 0 0;\n  color: inherit !important;\n  background-color: #00000066;\n  cursor: -webkit-grab;\n  cursor: grab;\n  height: 2rem;\n}\ndiv#modal-container div.re621-ui-dialog div.ui-dialog-titlebar span.ui-dialog-title {\n  float: left;\n  padding: 0.4em 1em;\n  margin: 0.1em 0;\n  white-space: nowrap;\n  overflow: hidden;\n  text-overflow: ellipsis;\n}\ndiv#modal-container div.re621-ui-dialog div.ui-dialog-titlebar button.ui-dialog-titlebar-close {\n  position: absolute;\n  height: 100%;\n  margin: 0;\n  right: 0;\n  top: 0;\n  padding: 0;\n  width: 3em;\n  outline: 0;\n  border: 0;\n  border-left: 1px solid #66666666;\n  border-width: 0 0 0 1px !important;\n  background: unset;\n  box-shadow: unset;\n}\ndiv#modal-container div.re621-ui-dialog div.ui-dialog-titlebar button.ui-dialog-titlebar-close:hover, div#modal-container div.re621-ui-dialog div.ui-dialog-titlebar button.ui-dialog-titlebar-close:active {\n  background: #ffffff10;\n}\ndiv#modal-container div.re621-ui-dialog div.ui-dialog-titlebar button.ui-dialog-titlebar-close:hover span.ui-icon, div#modal-container div.re621-ui-dialog div.ui-dialog-titlebar button.ui-dialog-titlebar-close:active span.ui-icon {\n  background-image: url(/packs/media/images/ui-icons_ffffff_256x240-bf27228a.png);\n  background-position: -96px -128px;\n}\ndiv#modal-container div.re621-ui-dialog.ui-draggable-dragging div.ui-dialog-titlebar {\n  cursor: -webkit-grabbing;\n  cursor: grabbing;\n}\ndiv#modal-container div.re621-ui-dialog div.ui-dialog-content {\n  position: relative;\n  padding: 1em 1em;\n  min-width: -webkit-fit-content;\n  min-width: -moz-fit-content;\n  min-width: fit-content;\n  height: 90% !important;\n  overflow: hidden scroll;\n  padding-left: 0.75rem;\n  padding-right: 0.5rem;\n  border: unset !important;\n  background-color: unset !important;\n  color: unset !important;\n}\ndiv#modal-container div.re621-ui-dialog div.ui-dialog-content .ui-tabs {\n  margin-top: -1em;\n}\ndiv#modal-container div.re621-ui-dialog div.ui-dialog-content::-webkit-scrollbar {\n  width: 6px;\n  height: 6px;\n}\ndiv#modal-container div.re621-ui-dialog div.ui-dialog-content::-webkit-scrollbar-thumb {\n  height: 6px;\n  background-color: #ffffff55;\n}\ndiv#modal-container div.re621-ui-dialog div.ui-dialog-content::-webkit-scrollbar-button {\n  width: 0;\n  height: 0;\n  display: none;\n}\ndiv#modal-container div.re621-ui-dialog div.ui-dialog-content::-webkit-scrollbar-track, div#modal-container div.re621-ui-dialog div.ui-dialog-content::-webkit-scrollbar-corner {\n  background-color: transparent;\n}\ndiv#modal-container div.re621-ui-dialog div.ui-dialog-content {\n  scrollbar-width: thin;\n  scrollbar-color: #ffffff55 transparent;\n}\n\n/* Prompt Styles */\nform.prompt-input {\n  display: inline-flex;\n  justify-content: center;\n  width: 100%;\n}\nform.prompt-input input {\n  width: 100%;\n  border-radius: 4px 0 0 4px;\n}\nform.prompt-input button {\n  padding: 0.25rem;\n  border-radius: 0 4px 4px 0;\n}\n\n/* Tab Group Styles */\ntabbed {\n  display: block;\n  border: unset !important;\n  background-color: unset !important;\n  color: unset !important;\n}\ntabbed ul.ui-tabs-nav {\n  border: unset !important;\n  background-color: unset !important;\n  color: unset !important;\n  margin-left: 0;\n  margin-bottom: 0.5rem;\n}\ntabbed ul.ui-tabs-nav li.ui-tabs-tab {\n  display: inline-block;\n  border: unset;\n  background: unset;\n  padding: 0.25rem 0.5rem;\n  margin-right: 0.5rem;\n  outline: 0;\n  border-radius: 0 0 4px 4px;\n  font-weight: normal;\n  background-color: transparent;\n}\ntabbed ul.ui-tabs-nav li.ui-tabs-tab:hover, tabbed ul.ui-tabs-nav li.ui-tabs-tab.ui-tabs-active {\n  background-color: #00000033;\n}\ntabbed ul.ui-tabs-nav li.ui-tabs-tab a,\ntabbed ul.ui-tabs-nav li.ui-tabs-tab a:link,\ntabbed ul.ui-tabs-nav li.ui-tabs-tab a:visited {\n  outline: 0;\n  color: inherit;\n}\ntabbed ul.ui-tabs-nav li.ui-tabs-tab.ui-state-hover, tabbed ul.ui-tabs-nav li.ui-tabs-tab.ui-state-default {\n  color: inherit;\n}\ntabbed div.ui-tabs-panel {\n  border: unset !important;\n  background-color: unset !important;\n  color: unset !important;\n}\n\n/* Moves the report button to the far right, to avoid accidental clicks */\n#subnav-reportcommend {\n  float: right;\n}\n\n/* Override to make the fit-height mode more reasonable */\n#image.fit-window-vertical {\n  max-height: calc(100vh - 5rem);\n}\n\n#wiki-page-copy-tag {\n  margin-left: 0.5rem;\n}\n\n.deletion-diff {\n  background: #ffffff10;\n  padding: 0.5rem;\n  margin: 0.25rem 0;\n  border-radius: 0.25rem;\n  border: 1px solid #ffffff20;\n  max-width: 60vw;\n  max-height: 5rem;\n  overflow-y: auto;\n}\n.deletion-diff::-webkit-scrollbar {\n  width: 6px;\n  height: 6px;\n}\n.deletion-diff::-webkit-scrollbar-thumb {\n  height: 6px;\n  background-color: #ffffff55;\n}\n.deletion-diff::-webkit-scrollbar-button {\n  width: 0;\n  height: 0;\n  display: none;\n}\n.deletion-diff::-webkit-scrollbar-track, .deletion-diff::-webkit-scrollbar-corner {\n  background-color: transparent;\n}\n.deletion-diff {\n  scrollbar-width: thin;\n  scrollbar-color: #ffffff55 transparent;\n}\n.deletion-diff:before {\n  content: \"Added Tags\";\n  display: block;\n  font-weight: bold;\n  padding: 0 0.25rem;\n}\n.deletion-diff span {\n  display: inline-block;\n  padding: 0.25rem;\n  color: green;\n}\n.deletion-diff span:before {\n  content: \"+\";\n  -webkit-touch-callout: none;\n  /* iOS Safari */\n  -webkit-user-select: none;\n  /* Safari */\n  /* Konqueror HTML */\n  -moz-user-select: none;\n  /* Old versions of Firefox */\n  -ms-user-select: none;\n  /* Internet Explorer/Edge */\n  user-select: none;\n  /* Chrome, Edge, Opera and Firefox */\n}\n\n/* Styles for the revamped search page */\nsection#content search-loading {\n  display: flex;\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  justify-content: center;\n  align-items: center;\n}\nsection#content search-content {\n  display: grid;\n  grid-template-columns: repeat(auto-fill, var(--img-width, 150px));\n  grid-auto-rows: minmax(-webkit-min-content, -webkit-max-content);\n  grid-auto-rows: minmax(min-content, max-content);\n  grid-column-gap: 0.25rem;\n  grid-row-gap: 0.5rem;\n  justify-content: space-between;\n  height: -webkit-min-content;\n  height: -moz-min-content;\n  height: min-content;\n  min-height: 80vh;\n  margin-top: 0.5rem;\n}\nsection#content search-content search-stats {\n  position: absolute;\n  right: 0;\n  margin-top: -1rem;\n  font-family: monospace;\n  color: #ffffffaa;\n}\nsection#content search-content search-stats > span {\n  cursor: help;\n}\nsection#content search-content search-stats > span:not(:last-child)::after {\n  content: \" | \";\n}\nsection#content search-content search-stats span#search-stats-graph {\n  display: inline-flex;\n  align-items: center;\n  vertical-align: middle;\n}\nsection#content search-content search-stats span#search-stats-graph span {\n  display: inline-block;\n  width: 0.5rem;\n  margin-right: 1px;\n  height: 0;\n  min-height: 2px;\n  background: #ffffff66;\n}\nsection#content search-content[posts=\"0\"]::before {\n  content: \"Nobody here but us chickens!\";\n  display: flex;\n  height: 150px;\n  width: 100%;\n  justify-content: center;\n  align-items: center;\n  grid-column: 1/-1;\n  font-family: monospace;\n  font-size: 1.1rem;\n  color: #aaa;\n}\nsection#content search-content post-break {\n  grid-column: 1/-1;\n  display: flex;\n  justify-content: center;\n  height: 1rem;\n  font-family: monospace;\n  text-transform: uppercase;\n  color: #666;\n  line-height: 1rem;\n  font-size: 1rem;\n}\nsection#content search-content post-break::after, section#content search-content post-break::before {\n  content: \" \";\n  display: inline-flex;\n  width: 100%;\n  position: relative;\n  bottom: 0.5rem;\n  border-bottom: 1px solid #666;\n}\nsection#content search-content post-break::before {\n  margin-right: 0.5rem;\n}\nsection#content search-content post-break::after {\n  margin-left: 0.5rem;\n}\nsection#content search-content[hide-page-breaks=true] post-break {\n  display: none;\n}\nsection#content[loading=true] div#posts {\n  display: none;\n}\nsection#content[loading=true] search-content {\n  display: none;\n}\nsection#content:not([loading=true]) search-loading {\n  display: none;\n}\nsection#content paginator-container {\n  display: block;\n  justify-content: center;\n  align-items: center;\n  padding-top: 1rem;\n  height: 5rem;\n  width: 100%;\n}\nsection#content paginator-container > span.paginator-loading {\n  display: flex;\n  justify-content: center;\n}\nsection#content paginator-container > paginator {\n  display: grid;\n  grid-template-columns: auto auto auto;\n  width: 100%;\n  text-align: center;\n}\nsection#content paginator-container .paginator-prev,\nsection#content paginator-container .paginator-next {\n  grid-row: span 2;\n  align-self: center;\n}\nsection#content paginator-container span.infscroll-next-wrap {\n  display: flex;\n  justify-content: center;\n  height: 2.25rem;\n}\nsection#content paginator-container span.infscroll-next-wrap::before, section#content paginator-container span.infscroll-next-wrap::after {\n  content: \" \";\n  display: inline-flex;\n  position: relative;\n  bottom: -0.5rem;\n  width: 5rem;\n  height: 1px;\n  border-bottom: 1px solid #666;\n}\nsection#content paginator-container span.infscroll-next-wrap::before {\n  margin-right: 0.5rem;\n}\nsection#content paginator-container span.infscroll-next-wrap::after {\n  margin-left: 0.5rem;\n}\nsection#content paginator-container span.infscroll-next-wrap span.infscroll-next-cont {\n  text-align: center;\n}\nsection#content paginator-container span.infscroll-next-wrap span.infscroll-manual {\n  display: block;\n  font-family: monospace;\n  text-transform: uppercase;\n  color: #999;\n}\nsection#content paginator-container div.paginator-numbers {\n  grid-row: 2;\n  grid-column: 2;\n}\nsection#content paginator-container div.paginator-numbers a, section#content paginator-container div.paginator-numbers span {\n  margin: 0.5rem 0.5rem;\n  display: inline-block;\n}\nsection#content[loading=true] paginator-container {\n  display: none;\n}\nsection#content[infscroll=loading] paginator-container > paginator {\n  display: none;\n}\nsection#content[infscroll=ready] paginator-container > span {\n  display: none;\n}\n\nsearch-content > post {\n  display: flex;\n  justify-content: center;\n  align-self: self-start;\n  flex-flow: column;\n  background: #00000040;\n  border-radius: 6px;\n  position: relative;\n  transition: box-shadow 0.25s linear;\n}\nsearch-content > post[blacklisted=true] {\n  display: none;\n}\nsearch-content > post[blacklisted=maybe] post-info {\n  background: #ff000025 !important;\n}\nsearch-content > post[filtered=true] {\n  display: none;\n}\nsearch-content > post > a {\n  display: flex;\n  justify-content: center;\n  width: 100%;\n  position: relative;\n  outline: 0 !important;\n}\nsearch-content > post > a img {\n  align-self: flex-end;\n  border-radius: 6px 6px 0 0;\n}\nsearch-content > post > a canvas {\n  height: 100%;\n  width: 100%;\n  -o-object-fit: cover;\n     object-fit: cover;\n}\nsearch-content > post > a .ff-container .ff-overlay {\n  max-width: 2.5rem;\n  max-height: 2.5rem;\n}\nsearch-content > post > a > post-loading {\n  display: none;\n  align-items: center;\n  justify-content: center;\n  pointer-events: none;\n  position: absolute;\n  top: 0;\n  bottom: 0;\n  left: 0;\n  right: 0;\n  z-index: 100;\n  color: white;\n  text-shadow: 0 0 10px black;\n}\nsearch-content > post > a > post-loading::before {\n  content: \"\\f1ce\";\n  font-family: \"Font Awesome 6 Free\";\n  font-weight: 900;\n  width: 2rem;\n  height: 2rem;\n  font-size: 2rem;\n  line-height: 2rem;\n}\nsearch-content > post[loading=true] post-loading {\n  display: flex;\n}\nsearch-content > post[loading=true] post-loading::before {\n  -webkit-animation: fa-spin 2s infinite linear;\n          animation: fa-spin 2s infinite linear;\n}\nsearch-content > post.highlight {\n  box-shadow: 0px 0px 0px 5px #ffffff60;\n}\nsearch-content > post post-info {\n  display: flex;\n  width: 100%;\n  height: 1rem;\n  padding: 0 0.5rem;\n  justify-content: center;\n  box-sizing: border-box;\n  z-index: 10;\n  background: #ffffff25;\n  font-size: 90%;\n  color: #bbb;\n  border-radius: 0 0 6px 6px;\n}\nsearch-content > post post-info > span:not(:last-child) {\n  margin-right: 0.5rem;\n}\nsearch-content > post post-info span::before {\n  content: \" \";\n  font-family: \"Font Awesome 6 Free\";\n  font-weight: 900;\n}\nsearch-content > post post-info span.post-info-score.score-positive::before {\n  content: \"\\f30c\";\n}\nsearch-content > post post-info span.post-info-score.score-negative::before {\n  content: \"\\f309\";\n}\nsearch-content > post post-info span.post-info-score.score-neutral::before {\n  content: \"\\f338\";\n}\nsearch-content > post post-info span.post-info-favorites::before {\n  content: \"\\f004\";\n}\nsearch-content > post post-info span.post-info-comments::before {\n  content: \"C\";\n  font-family: unset;\n}\n\nspan.post-score-faves {\n  color: #c3a816;\n}\n\nspan.post-info-rating {\n  text-transform: uppercase;\n}\nspan.post-info-rating.rating-e {\n  color: #e45f5f;\n}\nspan.post-info-rating.rating-q {\n  color: #ffe666;\n}\nspan.post-info-rating.rating-s {\n  color: #3e9e49;\n}\n\n/* Un-rendered Post */\nsearch-content > post[rendered=false] {\n  width: var(--img-width, 150px);\n  height: calc(var(--img-width, 150px) * var(--img-ratio, 1));\n  max-height: var(--img-maxheight, 50vh);\n  align-items: center;\n  border-bottom: 1rem solid #ffffff25;\n  font-size: 2em;\n  font-family: monospace;\n  color: #ffffff10;\n}\n\nsearch-content > post[rendered=false],\nsearch-content > post[filetype=swf],\nsearch-content > post[deleted=true] {\n  background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 304 304' width='304' height='304'%3E%3Cpath fill='%23ffffff06' fill-opacity='0.4' d='M44.1 224a5 5 0 1 1 0 2H0v-2h44.1zm160 48a5 5 0 1 1 0 2H82v-2h122.1zm57.8-46a5 5 0 1 1 0-2H304v2h-42.1zm0 16a5 5 0 1 1 0-2H304v2h-42.1zm6.2-114a5 5 0 1 1 0 2h-86.2a5 5 0 1 1 0-2h86.2zm-256-48a5 5 0 1 1 0 2H0v-2h12.1zm185.8 34a5 5 0 1 1 0-2h86.2a5 5 0 1 1 0 2h-86.2zM258 12.1a5 5 0 1 1-2 0V0h2v12.1zm-64 208a5 5 0 1 1-2 0v-54.2a5 5 0 1 1 2 0v54.2zm48-198.2V80h62v2h-64V21.9a5 5 0 1 1 2 0zm16 16V64h46v2h-48V37.9a5 5 0 1 1 2 0zm-128 96V208h16v12.1a5 5 0 1 1-2 0V210h-16v-76.1a5 5 0 1 1 2 0zm-5.9-21.9a5 5 0 1 1 0 2H114v48H85.9a5 5 0 1 1 0-2H112v-48h12.1zm-6.2 130a5 5 0 1 1 0-2H176v-74.1a5 5 0 1 1 2 0V242h-60.1zm-16-64a5 5 0 1 1 0-2H114v48h10.1a5 5 0 1 1 0 2H112v-48h-10.1zM66 284.1a5 5 0 1 1-2 0V274H50v30h-2v-32h18v12.1zM236.1 176a5 5 0 1 1 0 2H226v94h48v32h-2v-30h-48v-98h12.1zm25.8-30a5 5 0 1 1 0-2H274v44.1a5 5 0 1 1-2 0V146h-10.1zm-64 96a5 5 0 1 1 0-2H208v-80h16v-14h-42.1a5 5 0 1 1 0-2H226v18h-16v80h-12.1zm86.2-210a5 5 0 1 1 0 2H272V0h2v32h10.1zM98 101.9V146H53.9a5 5 0 1 1 0-2H96v-42.1a5 5 0 1 1 2 0zM53.9 34a5 5 0 1 1 0-2H80V0h2v34H53.9zm60.1 3.9V66H82v64H69.9a5 5 0 1 1 0-2H80V64h32V37.9a5 5 0 1 1 2 0zM101.9 82a5 5 0 1 1 0-2H128V37.9a5 5 0 1 1 2 0V82h-28.1zm16-64a5 5 0 1 1 0-2H146v44.1a5 5 0 1 1-2 0V18h-26.1zm102.2 270a5 5 0 1 1 0 2H98v14h-2v-16h124.1zM242 149.9V160h16v34h-16v62h48v48h-2v-46h-48v-66h16v-30h-16v-12.1a5 5 0 1 1 2 0zM53.9 18a5 5 0 1 1 0-2H64V2H48V0h18v18H53.9zm112 32a5 5 0 1 1 0-2H192V0h50v2h-48v48h-28.1zm-48-48a5 5 0 0 1-9.8-2h2.07a3 3 0 1 0 5.66 0H178v34h-18V21.9a5 5 0 1 1 2 0V32h14V2h-58.1zm0 96a5 5 0 1 1 0-2H137l32-32h39V21.9a5 5 0 1 1 2 0V66h-40.17l-32 32H117.9zm28.1 90.1a5 5 0 1 1-2 0v-76.51L175.59 80H224V21.9a5 5 0 1 1 2 0V82h-49.59L146 112.41v75.69zm16 32a5 5 0 1 1-2 0v-99.51L184.59 96H300.1a5 5 0 0 1 3.9-3.9v2.07a3 3 0 0 0 0 5.66v2.07a5 5 0 0 1-3.9-3.9H185.41L162 121.41v98.69zm-144-64a5 5 0 1 1-2 0v-3.51l48-48V48h32V0h2v50H66v55.41l-48 48v2.69zM50 53.9v43.51l-48 48V208h26.1a5 5 0 1 1 0 2H0v-65.41l48-48V53.9a5 5 0 1 1 2 0zm-16 16V89.41l-34 34v-2.82l32-32V69.9a5 5 0 1 1 2 0zM12.1 32a5 5 0 1 1 0 2H9.41L0 43.41V40.6L8.59 32h3.51zm265.8 18a5 5 0 1 1 0-2h18.69l7.41-7.41v2.82L297.41 50H277.9zm-16 160a5 5 0 1 1 0-2H288v-71.41l16-16v2.82l-14 14V210h-28.1zm-208 32a5 5 0 1 1 0-2H64v-22.59L40.59 194H21.9a5 5 0 1 1 0-2H41.41L66 216.59V242H53.9zm150.2 14a5 5 0 1 1 0 2H96v-56.6L56.6 162H37.9a5 5 0 1 1 0-2h19.5L98 200.6V256h106.1zm-150.2 2a5 5 0 1 1 0-2H80v-46.59L48.59 178H21.9a5 5 0 1 1 0-2H49.41L82 208.59V258H53.9zM34 39.8v1.61L9.41 66H0v-2h8.59L32 40.59V0h2v39.8zM2 300.1a5 5 0 0 1 3.9 3.9H3.83A3 3 0 0 0 0 302.17V256h18v48h-2v-46H2v42.1zM34 241v63h-2v-62H0v-2h34v1zM17 18H0v-2h16V0h2v18h-1zm273-2h14v2h-16V0h2v16zm-32 273v15h-2v-14h-14v14h-2v-16h18v1zM0 92.1A5.02 5.02 0 0 1 6 97a5 5 0 0 1-6 4.9v-2.07a3 3 0 1 0 0-5.66V92.1zM80 272h2v32h-2v-32zm37.9 32h-2.07a3 3 0 0 0-5.66 0h-2.07a5 5 0 0 1 9.8 0zM5.9 0A5.02 5.02 0 0 1 0 5.9V3.83A3 3 0 0 0 3.83 0H5.9zm294.2 0h2.07A3 3 0 0 0 304 3.83V5.9a5 5 0 0 1-3.9-5.9zm3.9 300.1v2.07a3 3 0 0 0-1.83 1.83h-2.07a5 5 0 0 1 3.9-3.9zM97 100a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-48 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 48a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 96a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-144a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-96 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm96 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-32 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM49 36a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-32 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM33 68a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-48a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 240a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm80-176a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 48a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm112 176a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM17 180a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM17 84a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6z'%3E%3C/path%3E%3C/svg%3E\");\n}\n\n/* Placeholder Images */\nsearch-content > post[error=true] > a:after,\nsearch-content > post[filetype=swf] > a:after,\nsearch-content > post[deleted=true] > a:after {\n  content: \"PLACEHOLDER\";\n  position: absolute;\n  top: 0;\n  bottom: 0;\n  left: 0;\n  right: 0;\n  display: flex;\n  justify-content: center;\n  align-items: center;\n  font-family: \"Courier New\";\n  letter-spacing: 3px;\n  font-size: 1.5rem;\n  color: #999;\n  text-shadow: 1px 1px 0px #000000, 1px 0px 0px #000000, 0px 1px 0px #000, -1px -1px 0px #000;\n}\n\nsearch-content > post[error=true] > a:after {\n  content: \"ERROR\";\n}\n\nsearch-content > post[filetype=swf] > a:after {\n  content: \"FLASH\";\n}\n\nsearch-content > post[deleted=true] > a:after {\n  content: \"DELETED\";\n}\n\n/* Visited Highlights */\nsearch-content[highlight-visited=true] > post > a {\n  border-bottom: 0.05rem solid #444;\n}\n\nsearch-content[highlight-visited=true] > post > a:visited {\n  border-bottom-color: #d2a109;\n}\n\nsearch-content[highlight-visited=true] > post[rendered=false] {\n  border-bottom: 1.05rem solid #ffffff25;\n}\n\n/* Hiding the info bar */\nsearch-content[hide-info-bar=true] > post post-info {\n  display: none;\n}\nsearch-content[hide-info-bar=true] > post[rendered=false] {\n  border-bottom: 0;\n}\nsearch-content[hide-info-bar=true] > post a img {\n  border-radius: 6px;\n}\nsearch-content[hide-info-bar=true] > post post-voting {\n  bottom: 0;\n}\nsearch-content[hide-info-bar=true] > post post-voting button.fav {\n  border-bottom-left-radius: 0.25rem;\n}\n\nsearch-content[highlight-visited=true][hide-info-bar=true] > post > a {\n  border-radius: 0.75rem;\n}\n\n/* Coloring the favorites counter */\nsearch-content[color-fav-count=true] > post > post-info span.post-info-favorites {\n  color: #c3a816;\n}\n\n/* Thumbnail Resizing */\nsearch-content > post img {\n  -o-object-fit: cover;\n     object-fit: cover;\n  min-width: var(--img-fit, 100%);\n  height: calc(var(--img-width, 150px) * var(--img-ratio, 1));\n  min-height: 2rem;\n  max-height: var(--img-maxheight, 50vh);\n}\n\n/* Animation Badges */\nsearch-content > post[animated=true] > a::before {\n  content: \"ANIM\";\n  background-color: #222222aa;\n  border: 1px solid #66666655;\n  border-left: 0;\n  color: #fff;\n  position: absolute;\n  left: 0rem;\n  top: 1.125rem;\n  text-align: center;\n  border-radius: 0 0.25rem 0.25rem 0;\n  padding: 0 0.125rem;\n  font-size: 0.6em;\n  font-weight: 700;\n  z-index: 10;\n}\nsearch-content > post[animated=true][filetype=webm] > a::before {\n  content: \"WEBM\";\n}\nsearch-content > post[animated=true][filetype=gif] > a::before {\n  content: \"GIF\";\n}\nsearch-content > post[animated=true][filetype=swf] > a::before {\n  content: \"SWF\";\n}\n\n/* Duration Badges */\nsearch-content > post[filetype=webm] span.video-duration,\nsearch-content > post[filetype=swf] span.video-duration {\n  position: absolute;\n  left: 0;\n  bottom: 0;\n  font-family: monospace;\n  color: white;\n  background: #00000080;\n  line-height: 0.85rem;\n  padding: 0.05rem 0.125rem;\n  border-radius: 0 0.25rem 0 0;\n}\n\nsearch-content > post[sound=true] span.post-sound {\n  position: absolute;\n  left: 0;\n  bottom: 1rem;\n  font-family: monospace;\n  color: white;\n  background: #00000080;\n  line-height: 0.85rem;\n  font-size: 0.75rem;\n  padding: 0.05rem 0.125rem;\n  border-radius: 0 0.25rem 0.25rem 0;\n}\nsearch-content > post[sound=true] span.post-sound[warning=true] {\n  color: goldenrod;\n}\nsearch-content > post[sound=true] span.post-sound::before {\n  content: \"\\f027\";\n  font-family: \"Font Awesome 6 Free\";\n  font-weight: 900;\n}\n\n/* Image Ribbons */\npicture.picture-container {\n  display: block;\n  position: relative;\n  width: -webkit-min-content;\n  width: -moz-min-content;\n  width: min-content;\n  height: -webkit-min-content;\n  height: -moz-min-content;\n  height: min-content;\n}\npicture.picture-container > img {\n  border: 0 !important;\n}\n\nsearch-content img-ribbons,\npicture.picture-container img-ribbons {\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  height: 0;\n  z-index: 10;\n}\nsearch-content ribbon,\npicture.picture-container ribbon {\n  position: absolute;\n  width: 1rem;\n  height: 1rem;\n  overflow: hidden;\n  display: block;\n}\nsearch-content ribbon > span,\npicture.picture-container ribbon > span {\n  display: block;\n  position: absolute;\n  top: -0.6rem;\n  height: 1.25rem;\n  width: 2rem;\n  background: white;\n  transform-origin: bottom;\n  cursor: pointer;\n  box-shadow: 0 0 10px -4px black;\n}\nsearch-content ribbon.right,\npicture.picture-container ribbon.right {\n  right: 0;\n  border-top-right-radius: 6px;\n}\nsearch-content ribbon.right span,\npicture.picture-container ribbon.right span {\n  transform: rotate(45deg);\n  right: -0.6rem;\n}\nsearch-content ribbon.left,\npicture.picture-container ribbon.left {\n  left: 0;\n  border-top-left-radius: 6px;\n}\nsearch-content ribbon.left span,\npicture.picture-container ribbon.left span {\n  transform: rotate(-45deg);\n  left: -0.6rem;\n}\nsearch-content ribbon.has-children span,\npicture.picture-container ribbon.has-children span {\n  background: forestgreen;\n}\nsearch-content ribbon.has-parent span,\npicture.picture-container ribbon.has-parent span {\n  background: goldenrod;\n}\nsearch-content ribbon.has-children.has-parent span,\npicture.picture-container ribbon.has-children.has-parent span {\n  background: linear-gradient(90deg, goldenrod 50%, forestgreen 50%);\n}\nsearch-content ribbon.is-flagged span,\npicture.picture-container ribbon.is-flagged span {\n  background: orangered;\n}\nsearch-content ribbon.is-pending span,\npicture.picture-container ribbon.is-pending span {\n  background: #4343d9;\n}\nsearch-content ribbon.is-flagged.is-pending span,\npicture.picture-container ribbon.is-flagged.is-pending span {\n  background: linear-gradient(90deg, orangered 50%, #4343d9 50%);\n}\nsearch-content[ribbons-alt=true] img-ribbons,\npicture.picture-container[ribbons-alt=true] img-ribbons {\n  top: unset;\n  bottom: 1rem;\n}\nsearch-content[ribbons-alt=true] ribbon.left,\npicture.picture-container[ribbons-alt=true] ribbon.left {\n  transform: rotate(270deg);\n}\nsearch-content[ribbons-alt=true] ribbon.right,\npicture.picture-container[ribbons-alt=true] ribbon.right {\n  transform: rotate(90deg);\n}\n\n/* Voting Buttons */\nsearch-content post-voting {\n  display: flex;\n  position: absolute;\n  justify-content: center;\n  align-items: flex-end;\n  bottom: 1rem;\n  left: 0;\n  right: 0;\n  height: 0;\n  z-index: 10;\n}\nsearch-content button.button.voteButton {\n  font-size: 0.9rem;\n  padding: 0.125rem 0.75rem;\n  border-radius: 0;\n}\nsearch-content button.button.voteButton.vote {\n  display: none;\n  padding: 0.125rem 1rem;\n}\nsearch-content button.button.voteButton.vote::before {\n  font-family: \"Font Awesome 6 Free\";\n  font-weight: 500;\n  position: relative;\n}\nsearch-content button.button.voteButton.vote[action=up] {\n  border-right: 1px solid #666;\n  border-top-left-radius: 0.75rem;\n  margin-right: -0.5px;\n  padding-right: 0.7rem;\n  box-shadow: -1px -3px 5px #00000060;\n}\nsearch-content button.button.voteButton.vote[action=up]::before {\n  content: \"\\f164\";\n  bottom: -1px;\n}\nsearch-content button.button.voteButton.vote[action=down] {\n  border-left: 1px solid #666;\n  border-top-right-radius: 0.75rem;\n  margin-left: -0.5px;\n  padding-left: 0.7rem;\n  box-shadow: 1px -3px 5px #00000060;\n}\nsearch-content button.button.voteButton.vote[action=down]::before {\n  content: \"\\f165\";\n  top: 2px;\n  left: 2px;\n}\nsearch-content button.button.voteButton.fav {\n  display: none;\n  position: absolute;\n  left: 0;\n  bottom: 0;\n  padding: 0.125rem 0.375rem;\n  border-top-right-radius: 0.75rem;\n  box-shadow: 1px -3px 5px #00000060;\n}\nsearch-content button.button.voteButton.fav::before {\n  content: \"\\f005\";\n  font-family: \"Font Awesome 6 Free\";\n  font-weight: 500;\n  position: relative;\n  top: 1px;\n  right: 1px;\n}\nsearch-content post[vote=\"1\"] button.button.voteButton.vote[action=up] {\n  color: #3e9e49;\n}\nsearch-content post[vote=\"-1\"] button.button.voteButton.vote[action=down] {\n  color: #e45f5f;\n}\nsearch-content post[fav=true] button.button.voteButton.fav {\n  color: #c3a816;\n}\nsearch-content post:hover button.button.voteButton.vote {\n  display: block;\n}\nsearch-content post:hover button.button.voteButton.fav,\nsearch-content post[fav=true] button.button.voteButton.fav {\n  display: block;\n}\nsearch-content post[fav=true]:not(:hover) button.button.voteButton.fav {\n  background: #00000090;\n}\nsearch-content post[fav=true]:not(:hover) button.button.voteButton.fav::before {\n  font-weight: 600;\n}\n\n/* Hover Zoom */\nzoom-container {\n  position: fixed;\n  top: 100vh;\n  z-index: 10000;\n  pointer-events: none;\n}\nzoom-container > img {\n  max-width: calc(50vw - 50px);\n  max-height: 80vh;\n  background: #00000090;\n  background-position: center center;\n  background-size: contain;\n  /*\n  &::before {\n      content: var(--image-info, \"??? x ???, ???MB\");\n  }\n  */\n}\nzoom-container > video {\n  max-width: calc(50vw - 50px);\n  max-height: 80vh;\n  background: #00000090;\n  background-position: center center;\n  background-size: contain;\n}\nzoom-container > div {\n  max-width: -webkit-fit-content;\n  max-width: -moz-fit-content;\n  max-width: fit-content;\n  max-height: 4rem;\n  overflow: hidden;\n  padding: 0 4px;\n  background: #000000aa;\n  font-family: monospace;\n  line-height: 1rem;\n  box-sizing: border-box;\n}\nzoom-container > #zoom-info {\n  color: white;\n  padding-right: 0.35rem;\n}\nzoom-container > #zoom-info > span:not(:last-child)::after {\n  content: \" | \";\n  color: white;\n}\nzoom-container > #zoom-tags {\n  color: white;\n}\nzoom-container[status=waiting] {\n  display: none;\n}\nzoom-container[status=loading]::after {\n  content: \"\\f1ce\";\n  font-family: \"Font Awesome 6 Free\";\n  font-weight: 900;\n  font-size: 3rem;\n  line-height: 3rem;\n  text-shadow: 0 0 3px black;\n  -webkit-animation: fa-spin 2s infinite linear;\n          animation: fa-spin 2s infinite linear;\n  display: flex;\n  justify-content: center;\n  align-items: center;\n  position: absolute;\n  top: 0;\n  bottom: 0;\n  left: 0;\n  right: 0;\n}\n\n/* Quick Tags Form */\nsection#content > form#re621-quick-tags {\n  display: none;\n  box-sizing: border-box;\n  top: 0;\n  width: 100%;\n  padding: 0.375rem 0.25rem 0.25rem;\n  margin-bottom: 1.25rem;\n  z-index: 100;\n  position: relative;\n}\nsection#content > form#re621-quick-tags div.quick-tags-toolbar {\n  display: grid;\n  grid-template-columns: 5rem 5rem auto 5rem 7rem 5.5rem;\n  grid-column-gap: 0.5rem;\n  margin-bottom: 0.5rem;\n}\nsection#content > form#re621-quick-tags div.quick-tags-info {\n  position: absolute;\n  bottom: -1rem;\n  font-family: monospace;\n}\nsection#content > form#re621-quick-tags div.quick-tags-info span, section#content > form#re621-quick-tags div.quick-tags-info a {\n  display: inline-block;\n  background: #00000080;\n  line-height: 1rem;\n  padding: 0 0.5rem;\n  border-radius: 0 0 0.25rem 0.25rem;\n  outline: 0 !important;\n}\nsection#content > form#re621-quick-tags div.quick-tags-container {\n  display: grid;\n  grid-template-columns: -webkit-min-content auto;\n  grid-template-columns: min-content auto;\n  grid-column-gap: 0.5rem;\n}\nsection#content > form#re621-quick-tags div.quick-tags-container #quick-tags-image {\n  max-height: 150px;\n  max-width: 150px;\n}\nsection#content > form#re621-quick-tags div.quick-tags-container textarea {\n  max-width: -webkit-fill-available;\n  max-width: -moz-available;\n  max-width: stretch;\n  width: 100%;\n  min-height: 6rem;\n  margin: 0 !important;\n  box-sizing: border-box;\n}\n\nsection#content[hide-smart-alias-output=true] > form#re621-quick-tags smart-alias {\n  display: none;\n}\n\nbody[data-sticky-editbox=true] section#content > form#re621-quick-tags {\n  position: -webkit-sticky;\n  position: sticky;\n}\n\ndiv#page.mode-edit section#content > form#re621-quick-tags {\n  display: block;\n}\n\ndiv.site-notice {\n  margin-bottom: 0.5rem;\n}\n\n/** Replacement Blacklist Filtering Styles */\nsection#blacklist-box {\n  display: block;\n}\n\nsection#blacklist-box[count=\"0\"][discount=\"0\"] {\n  display: none;\n}\n\nblacklist-header {\n  display: block;\n  font-size: 1.16667em;\n  font-weight: bold;\n  margin-bottom: 0.25rem;\n  cursor: pointer;\n}\n\nsection#blacklist-box > blacklist-header::before {\n  content: \"\\f0d7\";\n  display: inline-block;\n  margin-right: 0.5rem;\n  font-family: \"Font Awesome 6 Free\";\n  font-weight: 700;\n  transition: transform 0.25s ease;\n}\n\nsection#blacklist-box[collapsed=true] > blacklist-header::before {\n  transform: rotate(-90deg);\n}\n\nblacklist-content {\n  display: block;\n  max-height: 50vh;\n  overflow: visible scroll;\n  margin-left: -0.125rem;\n}\nblacklist-content > filter {\n  display: list-item;\n  list-style: none;\n  margin-left: 1rem;\n  margin-top: 0.125rem;\n  color: #bbb;\n}\nblacklist-content > filter::before {\n  content: \"\\f14a\";\n  display: inline-block;\n  margin-right: 0.435rem;\n  margin-left: -1rem;\n  margin-top: 0.125rem;\n  font-family: \"Font Awesome 6 Free\";\n  font-weight: 500;\n  cursor: pointer;\n}\nblacklist-content > filter > a {\n  outline: 0 !important;\n}\nblacklist-content > filter > span {\n  margin-left: 0.5rem;\n}\nblacklist-content > filter[enabled=false]::before {\n  content: \"\\f0c8\";\n}\nblacklist-content > filter[enabled=false] > a {\n  color: #ccc !important;\n}\n\nsection#blacklist-box[collapsed=true] > blacklist-content {\n  display: none;\n}\n\nsection#blacklist-box:not([collapsed=true]) > blacklist-content::-webkit-scrollbar {\n  width: 6px;\n  height: 6px;\n}\nsection#blacklist-box:not([collapsed=true]) > blacklist-content::-webkit-scrollbar-thumb {\n  height: 6px;\n  background-color: #ffffff55;\n}\nsection#blacklist-box:not([collapsed=true]) > blacklist-content::-webkit-scrollbar-button {\n  width: 0;\n  height: 0;\n  display: none;\n}\nsection#blacklist-box:not([collapsed=true]) > blacklist-content::-webkit-scrollbar-track, section#blacklist-box:not([collapsed=true]) > blacklist-content::-webkit-scrollbar-corner {\n  background-color: transparent;\n}\nsection#blacklist-box:not([collapsed=true]) > blacklist-content {\n  scrollbar-width: thin;\n  scrollbar-color: #ffffff55 transparent;\n}\n\nblacklist-toggle {\n  display: block;\n  margin-top: 0.25rem;\n}\n\n.comment-blacklisted {\n  display: none !important;\n}\n\ntextarea#comblacklist-container {\n  min-height: 14vh;\n  font-family: monospace;\n  font-size: 1.2em;\n  overflow: hidden auto;\n}\n\n/** Settings textarea **/\ntextarea#settings-flags-defs {\n  height: 20rem;\n  white-space: pre;\n  font-family: monospace;\n  font-size: 1.1em;\n}\n\n.flag-defs-inputs {\n  display: grid;\n  grid-template-columns: 1rem 1fr auto 5fr 2rem;\n  grid-column-gap: 0.5rem;\n  margin-bottom: 0.5rem;\n  align-items: center;\n}\n.flag-defs-inputs input {\n  box-sizing: border-box;\n  border-radius: 0;\n}\n\n/** Post page view **/\ndiv.custom-flag {\n  font-family: monospace;\n  font-size: 1.2em;\n  margin: 0.25rem 0;\n  padding-left: 0.6rem;\n}\ndiv.custom-flag span.custom-flag-title {\n  position: relative;\n  background-color: var(--flag-color, #666666);\n  padding: 0.125rem 0.6rem 0.125rem 0.3rem;\n}\ndiv.custom-flag span.custom-flag-title:before {\n  content: \"\";\n  position: absolute;\n  left: -0.6rem;\n  bottom: 0;\n  border-left: 0.6rem solid transparent;\n  border-top: 0.6rem solid var(--flag-color, #666666);\n  border-bottom: 0.6rem solid var(--flag-color, #666666);\n}\n\n/** Search page view **/\npost-flags {\n  display: flex;\n  flex-direction: column;\n  align-items: flex-end;\n  justify-content: flex-end;\n  position: absolute;\n  left: 0;\n  right: 0;\n  top: 0;\n  bottom: 1rem;\n  overflow: hidden;\n  pointer-events: none;\n}\npost-flags span.custom-flag-thumb {\n  display: block;\n  height: 1rem;\n  margin: 0.125rem 0;\n  padding: 0 0.125rem;\n  position: relative;\n  pointer-events: all;\n  cursor: help;\n  background-color: var(--flag-color, #666666);\n  font-size: 0.75em;\n  max-width: 0.75rem;\n  transition: max-width 0.75s ease-out;\n  color: #ffffff;\n}\npost-flags span.custom-flag-thumb:before {\n  content: \"\";\n  position: absolute;\n  left: -0.5rem;\n  border-left: 0.5rem solid transparent;\n  border-top: 0.5rem solid var(--flag-color, #666666);\n  border-bottom: 0.5rem solid var(--flag-color, #666666);\n}\npost-flags span.custom-flag-thumb:hover, post-flags span.custom-flag-thumb.expanded {\n  max-width: 100%;\n}\n\n/** Fixes the padding on non-<post> elements **/\narticle post-flags {\n  bottom: 0;\n}\n\n.dtext-formatter-buttons a {\n  -moz-osx-font-smoothing: grayscale;\n  -webkit-font-smoothing: antialiased;\n  display: inline-block;\n  font-style: normal;\n  font-variant: normal;\n  text-rendering: auto;\n  line-height: 1;\n  font-weight: 900;\n  font-family: \"Font Awesome 6 Free\";\n}\n\ndiv.dtext-formatter[data-drawer] {\n  grid-template-columns: -webkit-min-content auto -webkit-min-content;\n  grid-template-columns: min-content auto min-content;\n}\ndiv.dtext-formatter[data-drawer] .dtext-formatter-customizer {\n  display: flex;\n  align-items: center;\n  justify-content: center;\n  padding-top: 0.5rem;\n}\ndiv.dtext-formatter[data-drawer] .dtext-formatter-customizer a {\n  box-sizing: border-box;\n  padding: 0.5rem 0.625rem;\n  border-radius: 6px 6px 0 0;\n  margin-right: 0.25rem;\n  cursor: pointer;\n  -moz-osx-font-smoothing: grayscale;\n  -webkit-font-smoothing: antialiased;\n  display: inline-block;\n  font-style: normal;\n  font-variant: normal;\n  text-rendering: auto;\n  line-height: 1;\n  font-weight: 900;\n  font-family: \"Font Awesome 6 Free\";\n  -webkit-touch-callout: none;\n  /* iOS Safari */\n  -webkit-user-select: none;\n  /* Safari */\n  /* Konqueror HTML */\n  -moz-user-select: none;\n  /* Old versions of Firefox */\n  -ms-user-select: none;\n  /* Internet Explorer/Edge */\n  user-select: none;\n  /* Chrome, Edge, Opera and Firefox */\n}\ndiv.dtext-formatter[data-drawer] .dtext-formatter-customizer a:hover {\n  background: #ffffff15;\n}\ndiv.dtext-formatter[data-drawer] .dtext-formatter-buttons a {\n  border: 1px solid transparent;\n}\ndiv.dtext-formatter[data-drawer] .dtext-formatter-drawer {\n  display: flex;\n  flex-flow: wrap;\n  align-content: flex-start;\n  justify-content: center;\n  width: 10vw;\n  padding: 0.25rem;\n}\ndiv.dtext-formatter[data-drawer] .dtext-formatter-drawer a {\n  display: inline-block;\n  box-sizing: border-box;\n  padding: 0.5rem 0.625rem;\n  border-radius: 6px;\n  margin: 0.25rem;\n  cursor: pointer;\n  -moz-osx-font-smoothing: grayscale;\n  -webkit-font-smoothing: antialiased;\n  display: inline-block;\n  font-style: normal;\n  font-variant: normal;\n  text-rendering: auto;\n  line-height: 1;\n  font-weight: 900;\n  font-family: \"Font Awesome 6 Free\";\n  -webkit-touch-callout: none;\n  /* iOS Safari */\n  -webkit-user-select: none;\n  /* Safari */\n  /* Konqueror HTML */\n  -moz-user-select: none;\n  /* Old versions of Firefox */\n  -ms-user-select: none;\n  /* Internet Explorer/Edge */\n  user-select: none;\n  /* Chrome, Edge, Opera and Firefox */\n}\ndiv.dtext-formatter[data-drawer] .dtext-formatter-drawer a:hover {\n  background: #ffffff15;\n}\ndiv.dtext-formatter[data-drawer] .dtext-formatter-drawer span {\n  width: 2.125em;\n  height: 2.125em;\n  margin: 0.25rem;\n  border-radius: 6px;\n}\ndiv.dtext-formatter[data-drawer] .dtext-formatter-buttons.ui-sortable-placeholder,\ndiv.dtext-formatter[data-drawer] .dtext-formatter-drawer.ui-sortable-placeholder {\n  display: inline-block;\n  height: 1px;\n}\ndiv.dtext-formatter[data-drawer]:not([data-drawer=true]) .dtext-formatter-input,\ndiv.dtext-formatter[data-drawer]:not([data-drawer=true]) .dtext-formatter-preview {\n  grid-area: 2/1/2/4;\n}\ndiv.dtext-formatter[data-drawer]:not([data-drawer=true]) .dtext-formatter-drawer {\n  display: none;\n}\ndiv.dtext-formatter[data-drawer]:not([data-drawer=true]) a.dtext-formatter-addbutton {\n  display: none;\n}\ndiv.dtext-formatter[data-drawer][data-drawer=true] .dtext-formatter-drawer,\ndiv.dtext-formatter[data-drawer][data-drawer=true] .dtext-formatter-buttons {\n  overflow: auto;\n}\ndiv.dtext-formatter[data-drawer][data-drawer=true] .dtext-formatter-drawer a, div.dtext-formatter[data-drawer][data-drawer=true] .dtext-formatter-drawer span,\ndiv.dtext-formatter[data-drawer][data-drawer=true] .dtext-formatter-buttons a,\ndiv.dtext-formatter[data-drawer][data-drawer=true] .dtext-formatter-buttons span {\n  border: 1px dashed #eee;\n  cursor: -webkit-grab;\n  cursor: grab;\n}\ndiv.dtext-formatter[data-drawer][data-drawer=true] .dtext-formatter-drawer span,\ndiv.dtext-formatter[data-drawer][data-drawer=true] .dtext-formatter-buttons span {\n  margin-right: 0.25rem;\n}\n\n/* Header Customizer Styles */\nheader#top nav#nav menu.main.custom {\n  padding: 0;\n  align-self: center;\n  display: inline-flex;\n}\nheader#top nav#nav menu.main.custom li {\n  position: relative;\n  display: inline-block;\n  padding: 0.125rem 0;\n  margin: 0 0.25rem;\n  height: auto !important;\n}\nheader#top nav#nav menu.main.custom li > a {\n  padding: 0 0.5rem;\n  outline: 0;\n}\nheader#top nav#nav menu.main.custom[data-editing=true] li[align=true] {\n  background-color: #ffaf9940;\n}\nheader#top nav#nav menu.main.custom:not([data-editing=true]) li:not([align=true]) {\n  order: 10;\n}\nheader#top nav#nav menu.main.custom:not([data-editing=true]) li[align=true] {\n  order: 20;\n}\nheader#top nav#nav menu.main.custom:not([data-editing=true]) li[align=true].margined {\n  margin-left: auto;\n}\nheader#top nav#nav menu.main.custom[data-forumdot=true] li > a.tab-has-updates::after {\n  content: \"\\f111\";\n  font-family: \"Font Awesome 6 Free\";\n  font-weight: 900;\n  font-size: 0.5em;\n  color: red;\n  position: absolute;\n  top: -3px;\n}\nheader#top nav#nav menu.main.custom a.tab-login {\n  font-weight: 700;\n  color: red;\n}\nheader#top nav#nav menu.main.custom[data-editing=true] li {\n  background-color: #ffffff40;\n}\nheader#top nav#nav menu.main.custom:not([data-editing=true]) li[data-right=true] {\n  float: right;\n}\nheader#top nav#nav menu:last-child li.float-right #subnav-button-increase {\n  padding-right: 0.24rem;\n}\nheader#top nav#nav menu:last-child li.float-right .resize-disabled {\n  pointer-events: none;\n  cursor: default;\n}\nheader#top nav#nav menu:last-child li.float-right .resize-disabled i {\n  color: #666666;\n}\nheader#top nav#nav menu:last-child li.float-right[hide-resize-buttons=true] {\n  display: none;\n}\n\n/* Image Scaler Styles */\nsection#image-container.loading {\n  position: relative;\n}\nsection#image-container.loading::after {\n  content: \"\\f1ce\";\n  font-family: \"Font Awesome 6 Free\";\n  font-weight: 900;\n  font-size: 3rem;\n  position: absolute;\n  left: 50%;\n  top: 50%;\n  -webkit-animation: loading-rotation 2s infinite linear;\n          animation: loading-rotation 2s infinite linear;\n}\nsection#image-container img#image.re621-fit-horizontal {\n  max-width: 100%;\n}\nsection#image-container img#image.re621-fit-vertical {\n  max-height: 95vh;\n  max-width: 100%;\n}\nsection#image-container.click-scale img#image {\n  cursor: pointer;\n}\n\ndiv#image-resize-notice {\n  display: none;\n}\n\n@-webkit-keyframes loading-rotation {\n  from {\n    transform: rotate(0deg);\n  }\n  to {\n    transform: rotate(359deg);\n  }\n}\n\n@keyframes loading-rotation {\n  from {\n    transform: rotate(0deg);\n  }\n  to {\n    transform: rotate(359deg);\n  }\n}\ndiv#note-preview {\n  z-index: 10;\n}\n\ndiv.deletion-reason-suggestions {\n  padding: 1rem 0;\n}\ndiv.deletion-reason-suggestions::before {\n  content: \"Reason\";\n  font-weight: 900;\n}\ndiv.deletion-reason-suggestions > a {\n  display: table;\n}\n\ninput.deletion-reason-input {\n  width: 100%;\n  font-size: 1.1rem;\n  padding: 0.25rem;\n  font-family: monospace;\n}\n\n.post-uploader-artist {\n  font-weight: bold;\n  color: #e45f5f;\n}\n\nsearch-content post[new=true] post-info {\n  background: #ffb00025;\n}\n\nbutton#tag-script-all {\n  margin-top: 0.5em;\n  float: right;\n}\n\n#tag-script-field[style*=\"display: none\"] ~ #tag-script-all {\n  display: none;\n}\n\n/* Mass Downloader Styles */\nsection#downloader-box {\n  display: grid;\n  grid-template-columns: 1fr 1fr;\n  grid-column-gap: 0.5rem;\n  grid-row-gap: 0.5rem;\n  top: 10rem;\n}\nsection#downloader-box h1 {\n  grid-column: span 2;\n}\nsection#downloader-box a#download-select-all {\n  grid-column: span 2;\n  font-family: monospace;\n  text-align: center;\n}\nsection#downloader-box a.button {\n  text-align: center;\n}\nsection#downloader-box div.download-info {\n  grid-column: span 2;\n}\nsection#downloader-box div.download-info[data-state] {\n  padding-left: 1.125rem;\n  position: relative;\n}\nsection#downloader-box div.download-info[data-state]::before {\n  content: \"\";\n  display: block;\n  line-height: 1;\n  font-family: \"Font Awesome 6 Free\";\n  font-weight: 400;\n  position: absolute;\n  left: 0;\n  top: 0.125rem;\n}\nsection#downloader-box div.download-info[data-state][data-state=done]::before {\n  content: \"\\f058\";\n}\nsection#downloader-box div.download-info[data-state][data-state=error]::before {\n  content: \"\\f057\";\n}\nsection#downloader-box div.download-info[data-state][data-state=loading]::before {\n  content: \"\\f1ce\";\n  font-weight: 700;\n  -webkit-animation: fa-spin 2s infinite linear;\n          animation: fa-spin 2s infinite linear;\n}\nsection#downloader-box div.download-info div.download-notice {\n  font-weight: bold;\n  margin-top: 0.5rem;\n  margin-left: -1.125rem;\n}\nsection#downloader-box div.download-file {\n  grid-column: span 2;\n  font-family: monospace;\n  word-break: break-word;\n  counter-reset: number;\n}\nsection#downloader-box div.download-file span {\n  position: relative;\n  display: block;\n  word-break: keep-all;\n  overflow: hidden;\n  padding-left: 1.125rem;\n  margin: 0 -0.25rem 1px -0.125rem;\n  font-size: 85%;\n  counter-increment: number;\n  background: linear-gradient(90deg, #ffffff40 var(--progress), transparent 0%);\n}\nsection#downloader-box div.download-file span::before {\n  content: \"[\" counter(number) \"]\";\n  position: absolute;\n  left: 0;\n}\nsection#downloader-box:not([data-interface=true]) a#download-act,\nsection#downloader-box:not([data-interface=true]) a#download-select-all,\nsection#downloader-box:not([data-interface=true]) div.download-info,\nsection#downloader-box:not([data-interface=true]) div.download-file {\n  display: none;\n}\n\nsearch-content[data-downloading=true] post.download-item::before {\n  content: \"\";\n  display: block;\n  line-height: 1;\n  position: absolute;\n  top: 0.5rem;\n  right: 0.5rem;\n  z-index: 50;\n  font-family: \"Font Awesome 6 Free\";\n  font-weight: 500;\n  font-size: 3rem;\n  text-shadow: 0 0 3px black;\n  pointer-events: none;\n}\nsearch-content[data-downloading=true] post.download-item[data-state=ready]::before {\n  content: \"\\f358\";\n  color: goldenrod;\n}\nsearch-content[data-downloading=true] post.download-item[data-state=preparing]::before {\n  content: \"\\f111\";\n  color: goldenrod;\n}\nsearch-content[data-downloading=true] post.download-item[data-state=loading]::before {\n  content: \"\\f1ce\";\n  font-weight: 700;\n  -webkit-animation: fa-spin 2s infinite linear;\n          animation: fa-spin 2s infinite linear;\n  color: goldenrod;\n}\nsearch-content[data-downloading=true] post.download-item[data-state=error]::before {\n  content: \"\\f057\";\n  color: orangered;\n}\nsearch-content[data-downloading=true] post.download-item[data-state=done]::before {\n  content: \"\\f058\";\n  color: limegreen;\n}\nsearch-content[data-downloading=true] post.ui-selecting::after {\n  content: \"\";\n  position: absolute;\n  top: 0;\n  bottom: 0;\n  left: 0;\n  right: 0;\n  background: #ffffff44;\n}\n\n/* Pool Downloader Styles */\ndiv.pool-container {\n  display: grid;\n  grid-template-columns: auto -webkit-min-content;\n  grid-template-columns: auto min-content;\n}\ndiv.pool-container div.pool-overview {\n  display: block;\n}\ndiv.pool-container div.pool-overview button.pool-download-button {\n  float: right;\n  margin-right: 0.5rem;\n  outline: none;\n}\ndiv.pool-container div.pool-overview[processing] button.pool-download-act {\n  display: none;\n}\ndiv.pool-container div.pool-overview:not([processing=true]) button.pool-download-cancel {\n  display: none;\n}\ndiv.pool-container aside.pool-sidebar {\n  display: none;\n  width: 15em;\n  padding-left: 1rem;\n}\ndiv.pool-container aside.pool-sidebar section.pool-downloader-box {\n  display: block;\n  position: -webkit-sticky;\n  position: sticky;\n  top: 0;\n}\ndiv.pool-container aside.pool-sidebar h1 {\n  font-size: 1.16667em;\n}\ndiv.pool-container aside.pool-sidebar a.button {\n  text-align: center;\n  margin: 0.5rem 0;\n}\ndiv.pool-container aside.pool-sidebar div.download-info[data-state] {\n  padding-left: 1.125rem;\n  position: relative;\n}\ndiv.pool-container aside.pool-sidebar div.download-info[data-state]::before {\n  content: \"\";\n  display: block;\n  line-height: 1;\n  font-family: \"Font Awesome 6 Free\";\n  font-weight: 400;\n  position: absolute;\n  left: 0;\n  top: 0.125rem;\n}\ndiv.pool-container aside.pool-sidebar div.download-info[data-state][data-state=done]::before {\n  content: \"\\f058\";\n}\ndiv.pool-container aside.pool-sidebar div.download-info[data-state][data-state=error]::before {\n  content: \"\\f057\";\n}\ndiv.pool-container aside.pool-sidebar div.download-info[data-state][data-state=loading]::before {\n  content: \"\\f1ce\";\n  font-weight: 700;\n  -webkit-animation: fa-spin 2s infinite linear;\n          animation: fa-spin 2s infinite linear;\n}\ndiv.pool-container aside.pool-sidebar div.download-info div.download-notice {\n  font-weight: bold;\n  margin-top: 0.5rem;\n  margin-left: -1.125rem;\n}\ndiv.pool-container aside.pool-sidebar div.download-file {\n  font-family: monospace;\n  word-break: break-word;\n  counter-reset: number;\n}\ndiv.pool-container aside.pool-sidebar div.download-file span {\n  position: relative;\n  display: block;\n  word-break: keep-all;\n  overflow: hidden;\n  padding-left: 1.125rem;\n  font-size: 85%;\n  counter-increment: number;\n  background: linear-gradient(90deg, #ffffff40 var(--progress), transparent 0%);\n}\ndiv.pool-container aside.pool-sidebar div.download-file span::before {\n  content: \"[\" counter(number) \"]\";\n  position: absolute;\n  left: 0;\n}\ndiv.pool-container[data-interface=true] aside.pool-sidebar {\n  display: block;\n}\n\n/* Mass Downloader Styles */\nsection#fav-downloader-box {\n  display: grid;\n  grid-template-columns: 1fr;\n  grid-column-gap: 0.5rem;\n  grid-row-gap: 0.5rem;\n  top: 10rem;\n}\nsection#fav-downloader-box h1 {\n  grid-column: span 2;\n}\nsection#fav-downloader-box a.button {\n  text-align: center;\n}\nsection#fav-downloader-box div.download-info {\n  grid-column: span 2;\n}\nsection#fav-downloader-box div.download-info[data-state] {\n  padding-left: 1.125rem;\n  position: relative;\n}\nsection#fav-downloader-box div.download-info[data-state]::before {\n  content: \"\";\n  display: block;\n  line-height: 1;\n  font-family: \"Font Awesome 6 Free\";\n  font-weight: 400;\n  position: absolute;\n  left: 0;\n  top: 0.125rem;\n}\nsection#fav-downloader-box div.download-info[data-state][data-state=done]::before {\n  content: \"\\f058\";\n}\nsection#fav-downloader-box div.download-info[data-state][data-state=error]::before {\n  content: \"\\f057\";\n}\nsection#fav-downloader-box div.download-info[data-state][data-state=loading]::before {\n  content: \"\\f1ce\";\n  font-weight: 700;\n  -webkit-animation: fa-spin 2s infinite linear;\n          animation: fa-spin 2s infinite linear;\n}\nsection#fav-downloader-box div.download-info div.download-notice {\n  font-weight: bold;\n  margin-top: 0.5rem;\n  margin-left: -1.125rem;\n}\nsection#fav-downloader-box div.download-file {\n  grid-column: span 2;\n  font-family: monospace;\n  word-break: break-word;\n  counter-reset: number;\n}\nsection#fav-downloader-box div.download-file span {\n  position: relative;\n  display: block;\n  word-break: keep-all;\n  overflow: hidden;\n  padding-left: 1.125rem;\n  margin: 0 -0.25rem 1px -0.125rem;\n  font-size: 85%;\n  counter-increment: number;\n  background: linear-gradient(90deg, #ffffff40 var(--progress), transparent 0%);\n}\nsection#fav-downloader-box div.download-file span::before {\n  content: \"[\" counter(number) \"]\";\n  position: absolute;\n  left: 0;\n}\n\n/* Pool Navigator Styles */\ndiv#nav-links li.post-nav,\ndiv#nav-links-left li.post-nav,\ndiv#nav-links-top li.post-nav,\ndiv#nav-links-bottom li.post-nav {\n  position: relative;\n}\ndiv#nav-links li.post-nav div.post-nav-switch-box input[type=radio],\ndiv#nav-links-left li.post-nav div.post-nav-switch-box input[type=radio],\ndiv#nav-links-top li.post-nav div.post-nav-switch-box input[type=radio],\ndiv#nav-links-bottom li.post-nav div.post-nav-switch-box input[type=radio] {\n  display: none;\n}\ndiv#nav-links li.post-nav div.post-nav-switch-box input[type=radio] + label:before,\ndiv#nav-links-left li.post-nav div.post-nav-switch-box input[type=radio] + label:before,\ndiv#nav-links-top li.post-nav div.post-nav-switch-box input[type=radio] + label:before,\ndiv#nav-links-bottom li.post-nav div.post-nav-switch-box input[type=radio] + label:before {\n  content: \"\\f0c8\";\n  font-family: \"Font Awesome 6 Free\";\n  display: inline-block;\n  letter-spacing: 10px;\n  cursor: pointer;\n}\ndiv#nav-links li.post-nav div.post-nav-switch-box input[type=radio]:checked + label:before,\ndiv#nav-links-left li.post-nav div.post-nav-switch-box input[type=radio]:checked + label:before,\ndiv#nav-links-top li.post-nav div.post-nav-switch-box input[type=radio]:checked + label:before,\ndiv#nav-links-bottom li.post-nav div.post-nav-switch-box input[type=radio]:checked + label:before {\n  content: \"\\f14a\";\n}\ndiv#nav-links li.post-nav div.post-nav-switch-box,\ndiv#nav-links li.post-nav div.post-nav-spacer,\ndiv#nav-links-left li.post-nav div.post-nav-switch-box,\ndiv#nav-links-left li.post-nav div.post-nav-spacer,\ndiv#nav-links-top li.post-nav div.post-nav-switch-box,\ndiv#nav-links-top li.post-nav div.post-nav-spacer,\ndiv#nav-links-bottom li.post-nav div.post-nav-switch-box,\ndiv#nav-links-bottom li.post-nav div.post-nav-spacer {\n  width: 25px;\n  text-align: right;\n  margin: 0 0.5rem;\n}\ndiv#nav-links li.post-nav span.search-name,\ndiv#nav-links-left li.post-nav span.search-name,\ndiv#nav-links-top li.post-nav span.search-name,\ndiv#nav-links-bottom li.post-nav span.search-name {\n  overflow: hidden;\n  white-space: nowrap;\n  text-overflow: ellipsis;\n  width: 0;\n}\ndiv#nav-links .first,\ndiv#nav-links-left .first,\ndiv#nav-links-top .first,\ndiv#nav-links-bottom .first {\n  margin-right: 1rem;\n}\ndiv#nav-links .last,\ndiv#nav-links-left .last,\ndiv#nav-links-top .last,\ndiv#nav-links-bottom .last {\n  margin-left: 1rem;\n}\n\ndiv#nav-links-left li.post-nav div.post-nav-switch-box {\n  margin: 0;\n}\n\ndiv.set-nav span.set-name a.remove-from-set-button {\n  margin-left: 1rem;\n}\n\n/* Post Suggester Styles */\ndiv.post-suggester {\n  width: 30rem;\n  height: 30rem;\n  margin: -1em;\n  display: grid;\n  grid-template-rows: 5rem auto;\n}\ndiv.post-suggester div.post-suggester-status {\n  font-family: monospace;\n  justify-self: center;\n  align-self: center;\n}\ndiv.post-suggester div.post-suggester-status a.post-suggester-search {\n  font-family: initial;\n}\ndiv.post-suggester div.post-suggester-content {\n  display: grid;\n  grid-template-columns: 1fr 1fr;\n  grid-template-rows: repeat(auto-fit, 1rem);\n}\ndiv.post-suggester div.post-suggester-content > span {\n  display: inline-grid;\n  grid-template-columns: 1rem auto -webkit-min-content -webkit-min-content;\n  grid-template-columns: 1rem auto min-content min-content;\n  grid-column-gap: 0.5rem;\n  align-items: end;\n  margin: 0 0.5rem;\n}\ndiv.post-suggester div.post-suggester-content > span label {\n  display: inline-block;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  font-weight: normal;\n}\n\n/* Post Viewer Styles */\ndiv#image-and-nav {\n  width: -webkit-fit-content;\n  width: -moz-fit-content;\n  width: fit-content;\n}\ndiv#image-and-nav div.nav-notice {\n  margin-bottom: 0;\n}\n\nsection#image-extra-controls {\n  display: flex;\n  flex-wrap: wrap;\n  margin: 0.25rem 0;\n}\nsection#image-extra-controls > div {\n  margin: 0.25rem 0.5rem 0.25rem 0;\n}\nsection#image-extra-controls > div:last-child {\n  margin-right: 0;\n}\nsection#image-extra-controls > div > a, section#image-extra-controls > div > button, section#image-extra-controls > div > select {\n  outline: 0;\n  -webkit-touch-callout: none;\n  /* iOS Safari */\n  -webkit-user-select: none;\n  /* Safari */\n  /* Konqueror HTML */\n  -moz-user-select: none;\n  /* Old versions of Firefox */\n  -ms-user-select: none;\n  /* Internet Explorer/Edge */\n  user-select: none;\n  /* Chrome, Edge, Opera and Firefox */\n}\nsection#image-extra-controls div.image-vote-buttons > a > span {\n  font-size: 1rem;\n  padding: 0.25rem 0.5rem;\n}\nsection#image-extra-controls div#image-download-link > a {\n  width: 6rem;\n  text-align: center;\n  position: relative;\n}\nsection#image-extra-controls div#image-add-links > a,\nsection#image-extra-controls div#image-toggle-notes > a,\nsection#image-extra-controls div#image-custom-download-links > a {\n  margin-right: 0.5rem;\n}\nsection#image-extra-controls div#image-add-links > a:last-child,\nsection#image-extra-controls div#image-toggle-notes > a:last-child,\nsection#image-extra-controls div#image-custom-download-links > a:last-child {\n  margin-right: 0;\n}\nsection#image-extra-controls div#image-resize-cycle select {\n  height: 1.75rem;\n  vertical-align: unset;\n  cursor: pointer;\n}\nsection#image-extra-controls div#image-custom-download-links > a {\n  text-align: center;\n  position: relative;\n}\nsection#image-extra-controls div#image-custom-download-links > a[loading=true] {\n  color: transparent;\n}\nsection#image-extra-controls div#image-custom-download-links > a[loading=true]:before {\n  content: \"\\f1ce\";\n  font-family: \"Font Awesome 6 Free\";\n  font-weight: 900;\n  -webkit-animation: fa-spin 2s infinite linear;\n          animation: fa-spin 2s infinite linear;\n  color: #aaa;\n  line-height: 1.3rem;\n  position: absolute;\n  left: 0;\n  right: 0;\n}\n\ndiv#c-posts div.parent-children.children-moved {\n  display: block;\n}\ndiv#c-posts div.parent-children.children-moved #has-children-relationship-preview, div#c-posts div.parent-children.children-moved #has-parent-relationship-preview {\n  display: grid;\n  justify-items: center;\n  max-height: 50vh;\n}\ndiv#c-posts div.parent-children.children-moved #has-children-relationship-preview::-webkit-scrollbar, div#c-posts div.parent-children.children-moved #has-parent-relationship-preview::-webkit-scrollbar {\n  width: 6px;\n  height: 6px;\n}\ndiv#c-posts div.parent-children.children-moved #has-children-relationship-preview::-webkit-scrollbar-thumb, div#c-posts div.parent-children.children-moved #has-parent-relationship-preview::-webkit-scrollbar-thumb {\n  height: 6px;\n  background-color: #ffffff55;\n}\ndiv#c-posts div.parent-children.children-moved #has-children-relationship-preview::-webkit-scrollbar-button, div#c-posts div.parent-children.children-moved #has-parent-relationship-preview::-webkit-scrollbar-button {\n  width: 0;\n  height: 0;\n  display: none;\n}\ndiv#c-posts div.parent-children.children-moved #has-children-relationship-preview::-webkit-scrollbar-track, div#c-posts div.parent-children.children-moved #has-children-relationship-preview::-webkit-scrollbar-corner, div#c-posts div.parent-children.children-moved #has-parent-relationship-preview::-webkit-scrollbar-track, div#c-posts div.parent-children.children-moved #has-parent-relationship-preview::-webkit-scrollbar-corner {\n  background-color: transparent;\n}\ndiv#c-posts div.parent-children.children-moved #has-children-relationship-preview, div#c-posts div.parent-children.children-moved #has-parent-relationship-preview {\n  scrollbar-width: thin;\n  scrollbar-color: #ffffff55 transparent;\n}\n\n#tag-list.tags-boldened {\n  font-weight: bold;\n}\n#tag-list.tags-boldened .general-tag-list, #tag-list.tags-boldened .meta-tag-list {\n  font-weight: normal;\n}\n\n#post-rating-text {\n  font-weight: bold;\n}\n\ndiv#note-container {\n  visibility: visible !important;\n}\ndiv#note-container[data-hidden=true] {\n  display: none !important;\n}\n\n/* Special, left-positioned navbar */\nbody:not([re621-data-th-nav=true]) div#nav-links-left {\n  display: none;\n}\n\nbody[re621-data-th-nav=true] div#nav-links-top {\n  display: none;\n}\n\ndiv#nav-links-left > div:not(:last-child), div#nav-links-left > div > ul > li:not(:last-child) {\n  border-bottom: 1px solid #666;\n  padding-bottom: 0.5rem;\n}\ndiv#nav-links-left > div > ul > li:last-child {\n  padding-top: 0.5rem;\n}\ndiv#nav-links-left > div > ul > li:first-child {\n  padding-top: 0;\n}\ndiv#nav-links-left li.post-nav {\n  height: unset !important;\n  flex-wrap: wrap;\n  justify-content: center !important;\n  position: relative;\n}\ndiv#nav-links-left li.post-nav div.post-nav-switch-box {\n  position: absolute;\n  left: 0;\n  top: 0.125rem;\n}\ndiv#nav-links-left li.post-nav div.post-nav-switch-box.vis-hidden {\n  display: none;\n}\ndiv#nav-links-left li.post-nav span.search-name {\n  white-space: inherit;\n}\ndiv#nav-links-left li.post-nav span.pool-name {\n  padding: 0 1.25rem !important;\n  max-width: unset !important;\n}\ndiv#nav-links-left li.post-nav div.vis-hidden + span.pool-name {\n  padding: 0 0.5rem !important;\n}\ndiv#nav-links-left li.post-nav div.nav-left-down {\n  display: flex;\n  justify-content: space-around;\n  margin-top: 0.5rem;\n  flex: 0 0 100%;\n}\n\n#post-related-images li.list-break {\n  height: 0.5em;\n}\n\n/** Fixes to the vanilla profile structure */\ndiv#page[enhancements=true] div#c-users div#a-show {\n  /* Re-position the favorites section */\n  /* Unmargin about sections */\n}\ndiv#page[enhancements=true] div#c-users div#a-show .bottom-section {\n  display: block;\n  margin-top: 1rem;\n}\ndiv#page[enhancements=true] div#c-users div#a-show .posts-section .posts {\n  display: block;\n}\ndiv#page[enhancements=true] div#c-users div#a-show div.box.user-favorites,\ndiv#page[enhancements=true] div#c-users div#a-show div.box.user-uploads {\n  display: inline-block;\n  position: relative;\n  flex: 0 0 100%;\n  height: 12rem;\n  min-width: 2rem;\n  width: 100%;\n  background: #ffffff10;\n  margin-bottom: 1em;\n  border-radius: 6px;\n}\ndiv#page[enhancements=true] div#c-users div#a-show div.box.user-favorites h2,\ndiv#page[enhancements=true] div#c-users div#a-show div.box.user-favorites h2,\ndiv#page[enhancements=true] div#c-users div#a-show div.box.user-uploads h2,\ndiv#page[enhancements=true] div#c-users div#a-show div.box.user-uploads h2 {\n  border-bottom: 0.25rem solid #00000060;\n  background: #ffffff10;\n  position: absolute;\n  bottom: -2.5rem;\n  transform: rotate(270deg);\n  transform-origin: top left;\n  width: 12rem;\n  height: 2rem;\n  line-height: 2rem;\n  padding: 0 0 0.25rem;\n  text-align: center;\n  overflow: hidden;\n  border-radius: 6px;\n}\ndiv#page[enhancements=true] div#c-users div#a-show div.box.user-favorites div.vertical-section,\ndiv#page[enhancements=true] div#c-users div#a-show div.box.user-favorites div.vertical-section,\ndiv#page[enhancements=true] div#c-users div#a-show div.box.user-uploads div.vertical-section,\ndiv#page[enhancements=true] div#c-users div#a-show div.box.user-uploads div.vertical-section {\n  height: 12rem;\n  flex-direction: row-reverse;\n  align-items: flex-end;\n  justify-content: space-evenly;\n  margin: 0 1rem 0 3rem;\n}\ndiv#page[enhancements=true] div#c-users div#a-show div.box.user-favorites h4,\ndiv#page[enhancements=true] div#c-users div#a-show div.box.user-favorites h4,\ndiv#page[enhancements=true] div#c-users div#a-show div.box.user-uploads h4,\ndiv#page[enhancements=true] div#c-users div#a-show div.box.user-uploads h4 {\n  text-align: center;\n  /* Fix for the privacy mode */\n  position: absolute;\n  left: 0;\n  right: 0;\n  z-index: 100;\n}\ndiv#page[enhancements=true] div#c-users div#a-show .about-section .about-piece {\n  margin: 0 1rem 0 0;\n}\ndiv#page[enhancements=true] div#c-users div#a-show .about-section .about-piece:last-child {\n  margin-right: 0;\n}\n\n/** Collapsable Sidebar **/\na#sidebar-collapse {\n  position: relative;\n  z-index: 10;\n  font-family: monospace;\n  grid-column: 1/-1;\n  width: 1rem;\n  line-height: 0;\n}\na#sidebar-collapse:after {\n  content: \"<<\";\n}\n\na#sidebar-collapse.collapsed:after {\n  content: \">>\";\n}\n\naside#sidebar.collapsed {\n  width: 0 !important;\n  overflow: hidden;\n}\n\n/* Settings Controller Styles */\ndiv.settings-page {\n  display: grid;\n  grid-template-columns: 1fr 1fr;\n}\n\ndiv#changelog-list ul {\n  list-style: circle;\n  margin-left: 1.25rem;\n}\n\nspan#project-update-button[data-available=false] {\n  visibility: hidden;\n}\nspan#project-update-button a {\n  padding: 0.25rem;\n  border-radius: 4px;\n  background: green;\n  color: white;\n}\nspan#project-update-button a:hover {\n  background: darkgreen;\n}\n\n/* Vanilla Overrides */\nbody {\n  display: flex;\n  min-height: 100vh;\n  flex-direction: column;\n}\nbody input:focus,\nbody textarea:focus,\nbody select:focus {\n  outline: 0;\n}\nbody div#page {\n  flex: 1;\n  position: relative;\n}\n\ndiv#notice {\n  z-index: 10000;\n}\n\ndiv.guest-warning {\n  z-index: 10001;\n}\n\ndiv#c-users div#a-edit .active {\n  color: unset;\n}\n\n#basic-settings-section .dtext-previewable {\n  width: 80%;\n}\n\nheader#top h1 {\n  display: none !important;\n}\nheader#top nav#nav.re621-nav {\n  grid-template-columns: 3.75em 1fr auto;\n  grid-template-areas: \"logo main extra\" \"logo secondary secondary\";\n}\nheader#top nav#nav.re621-nav menu.main {\n  overflow: hidden;\n  white-space: nowrap;\n  padding-left: 0;\n  padding-right: 0;\n}\nheader#top nav#nav.re621-nav menu.extra {\n  grid-area: extra;\n  background: unset;\n  margin: 0 0.5rem 0 0;\n  padding: 0.25rem 0;\n  font-weight: 700;\n}\nheader#top nav#nav.re621-nav menu.extra a {\n  padding: 6px 10px;\n}\n\nbody[data-sticky-header=true] header#top {\n  position: -webkit-sticky;\n  position: sticky;\n  z-index: 400;\n  top: -1px;\n}\nbody[data-sticky-header=true] div#re621-search {\n  margin-top: -3.5rem !important;\n  padding-top: 3.5rem !important;\n}\nbody[data-sticky-header=true] div#re621-search.re621-search-sticky {\n  padding-top: 3.5rem !important;\n}\n\nbody[data-sticky-editbox=true] div#quick-edit-div {\n  position: -webkit-sticky;\n  position: sticky;\n  top: 0;\n  z-index: 400;\n}\n\n/* Gridify the sidebar */\ndiv#c-posts div#a-index,\ndiv#c-posts div#a-show,\ndiv#c-favorites div#a-index {\n  display: grid;\n  grid-template-columns: -webkit-min-content auto;\n  grid-template-columns: min-content auto;\n  grid-column-gap: 1rem;\n}\ndiv#c-posts div#a-index aside#sidebar,\ndiv#c-posts div#a-show aside#sidebar,\ndiv#c-favorites div#a-index aside#sidebar {\n  width: 13rem;\n  float: unset;\n}\ndiv#c-posts div#a-index section#content,\ndiv#c-posts div#a-show section#content,\ndiv#c-favorites div#a-index section#content {\n  margin-left: unset;\n  padding-left: unset;\n  position: relative;\n}\n\n/* Fix Sidebar Sections */\nbody aside#sidebar div#re621-search {\n  position: relative;\n  margin: -0.5rem -0.5rem 0;\n  padding: 0.5rem 0.5rem;\n  border-radius: 6px 6px 0 0;\n  top: -1px;\n  z-index: 1;\n}\nbody[data-sticky=true] aside#sidebar div#re621-search,\nbody[data-sticky=true] aside#sidebar section#downloader-box,\nbody[data-sticky=true] aside#sidebar section#fav-downloader-box {\n  position: -webkit-sticky;\n  position: sticky;\n}\nbody div#page.mode-edit div#re621-search.re621-search-sticky {\n  background-color: #828028;\n}\nbody div#page.mode-add-fav div#re621-search.re621-search-sticky {\n  background-color: #104e17;\n}\nbody div#page.mode-remove-fav div#re621-search.re621-search-sticky {\n  background-color: #07240b;\n}\nbody div#page.mode-vote-up div#re621-search.re621-search-sticky {\n  background-color: #288233;\n}\nbody div#page.mode-vote-down div#re621-search.re621-search-sticky {\n  background-color: #822828;\n}\nbody div#page.mode-tag-script div#re621-search.re621-search-sticky {\n  background-color: #4f114f;\n}\nbody div#page.mode-lock-rating div#re621-search.re621-search-sticky {\n  background-color: #aa3;\n}\nbody div#page.mode-lock-note div#re621-search.re621-search-sticky {\n  background-color: #3aa;\n}\nbody div#page.mode-approve div#re621-search.re621-search-sticky {\n  background-color: #48c;\n}\nbody div#page.mode-delete div#re621-search.re621-search-sticky {\n  background-color: #4e1010;\n}\n\ndiv#page aside#sidebar section {\n  margin-bottom: 0.5rem;\n}\ndiv#page aside#sidebar section#search-box form,\ndiv#page aside#sidebar section#re621-insearch form,\ndiv#page aside#sidebar section#mode-box form {\n  display: grid;\n  grid-template-columns: auto 2rem;\n}\ndiv#page aside#sidebar section#search-box form input[type=text],\ndiv#page aside#sidebar section#re621-insearch form input[type=text],\ndiv#page aside#sidebar section#mode-box form input[type=text] {\n  z-index: unset;\n  position: unset;\n  width: unset;\n  padding: 0.125rem;\n  border: 0;\n  border-radius: 0.125rem 0 0 0.125rem;\n}\ndiv#page aside#sidebar section#search-box form button[type=submit],\ndiv#page aside#sidebar section#re621-insearch form button[type=submit],\ndiv#page aside#sidebar section#mode-box form button[type=submit] {\n  padding: unset;\n  background: #eee;\n  width: unset;\n  border-left: 1px solid #ccc;\n  border-radius: 0 0.125rem 0.125rem 0;\n}\ndiv#page aside#sidebar section#search-box form select[name=mode],\ndiv#page aside#sidebar section#re621-insearch form select[name=mode],\ndiv#page aside#sidebar section#mode-box form select[name=mode] {\n  width: unset;\n  grid-column: span 2;\n  border-radius: 0.125rem;\n}\n\n/* Taglist Helpers */\n#tag-box > ul li,\n#tag-list > ul li {\n  display: flex;\n  line-height: 1rem;\n  margin-bottom: 1px;\n  position: relative;\n}\n#tag-box > ul li a.search-inc-tag,\n#tag-box > ul li a.search-exl-tag,\n#tag-list > ul li a.search-inc-tag,\n#tag-list > ul li a.search-exl-tag {\n  padding-right: 0.125rem;\n}\n#tag-box > ul li span.tag-wrap,\n#tag-list > ul li span.tag-wrap {\n  margin-right: 0.25rem;\n}\n#tag-box > ul li div.tag-actions,\n#tag-list > ul li div.tag-actions {\n  min-width: -webkit-fit-content;\n  min-width: -moz-fit-content;\n  min-width: fit-content;\n  margin-left: auto;\n  line-height: 1rem;\n  position: absolute;\n  right: -0.85rem;\n}\n#tag-box > ul li div.tag-actions span,\n#tag-list > ul li div.tag-actions span {\n  margin: 0 0.125rem;\n  min-width: -webkit-fit-content;\n  min-width: -moz-fit-content;\n  min-width: fit-content;\n}\n#tag-box > ul li div.tag-actions span.tag-action-blacklist,\n#tag-list > ul li div.tag-actions span.tag-action-blacklist {\n  display: none;\n}\n#tag-box > ul li div.tag-actions span.tag-action-subscribe a[subscribed=false],\n#tag-list > ul li div.tag-actions span.tag-action-subscribe a[subscribed=false] {\n  visibility: hidden;\n}\n#tag-box > ul li span.post-count,\n#tag-list > ul li span.post-count {\n  margin-left: 0.5rem;\n  white-space: nowrap;\n  font-size: 90%;\n}\n#tag-box > ul li:hover a.search-tag,\n#tag-list > ul li:hover a.search-tag {\n  white-space: normal;\n  max-width: unset;\n}\n#tag-box > ul li:hover div.tag-actions span.tag-action-blacklist,\n#tag-list > ul li:hover div.tag-actions span.tag-action-blacklist {\n  display: inline-block;\n}\n#tag-box > ul li:hover div.tag-actions span.tag-action-subscribe a,\n#tag-list > ul li:hover div.tag-actions span.tag-action-subscribe a {\n  visibility: visible;\n}\n#tag-box[data-shorten-tagnames=true] > ul li span.tag-wrap,\n#tag-list[data-shorten-tagnames=true] > ul li span.tag-wrap {\n  display: inline-grid;\n}\n#tag-box[data-shorten-tagnames=true] > ul li:hover span.tag-wrap,\n#tag-list[data-shorten-tagnames=true] > ul li:hover span.tag-wrap {\n  margin-right: 1rem;\n}\n#tag-box[data-shorten-tagnames=true] > ul li:hover span.post-count,\n#tag-list[data-shorten-tagnames=true] > ul li:hover span.post-count {\n  display: none;\n}\n#tag-box[data-shorten-tagnames=true] > ul li:not(:hover) span.tag-wrap,\n#tag-list[data-shorten-tagnames=true] > ul li:not(:hover) span.tag-wrap {\n  display: inline-grid;\n  grid-template-columns: auto -webkit-max-content;\n  grid-template-columns: auto max-content;\n  align-items: center;\n}\n#tag-box[data-shorten-tagnames=true] > ul li:not(:hover) span.tag-wrap a.search-tag,\n#tag-list[data-shorten-tagnames=true] > ul li:not(:hover) span.tag-wrap a.search-tag {\n  white-space: nowrap;\n  text-overflow: ellipsis;\n  overflow: hidden;\n}\n#tag-box[data-hide-plusminus=true] a.search-inc-tag,\n#tag-box[data-hide-plusminus=true] a.search-exl-tag,\n#tag-list[data-hide-plusminus=true] a.search-inc-tag,\n#tag-list[data-hide-plusminus=true] a.search-exl-tag {\n  display: none;\n}\n\n/* Quick-add Tags Override */\ndiv#c-posts div#quick-edit-div textarea {\n  width: 100%;\n}\n\n/* Error Handling Styles */\ntextarea.error-feedback {\n  width: 100%;\n  min-height: 25vh;\n  overflow-x: hidden;\n  white-space: pre;\n}\ntextarea.error-feedback::-webkit-scrollbar {\n  width: 6px;\n  height: 6px;\n}\ntextarea.error-feedback::-webkit-scrollbar-thumb {\n  height: 6px;\n  background-color: #ffffff55;\n}\ntextarea.error-feedback::-webkit-scrollbar-button {\n  width: 0;\n  height: 0;\n  display: none;\n}\ntextarea.error-feedback::-webkit-scrollbar-track, textarea.error-feedback::-webkit-scrollbar-corner {\n  background-color: transparent;\n}\ntextarea.error-feedback {\n  scrollbar-width: thin;\n  scrollbar-color: #ffffff55 transparent;\n}\n\n/* Increase the size of blacklist form */\ntextarea#user_blacklisted_tags {\n  height: 400px;\n}\n\ndiv.blacklist-character-counter-box {\n  width: 80%;\n  text-align: right;\n  margin-top: -1rem;\n  font-size: 0.75rem;\n  opacity: 0.5;\n  pointer-events: none;\n}\n\n/* Tweak the set cover page */\ndiv#page div#c-sets div#a-show span.set-viewposts {\n  display: block;\n  padding-top: 1rem;\n}\ndiv#page div#c-sets div#a-show span.set-viewposts a {\n  margin-right: 0.5rem;\n}\n\n/* Hide the blacklist sidebar section */\nbody[data-hide-blacklist=true] section#blacklist-box {\n  display: none !important;\n}\n\n/* Fix the overflow in the diff-list */\n.diff-list del, .diff-list ins {\n  white-space: nowrap;\n}\n\n/* Update Notifications */\n.update-notification:not([data-updates=\"0\"])::after {\n  content: \"\\f111\";\n  font-family: \"Font Awesome 6 Free\";\n  font-weight: 900;\n  font-size: 0.5em;\n  color: red;\n  position: absolute;\n  top: 0;\n}\n\n.update-notification[data-loading=true] {\n  position: relative;\n}\n@-webkit-keyframes spinner {\n  to {\n    transform: rotate(360deg);\n  }\n}\n@keyframes spinner {\n  to {\n    transform: rotate(360deg);\n  }\n}\n.update-notification[data-loading=true]::after {\n  content: \"\\f110\";\n  font-family: \"Font Awesome 6 Free\";\n  font-weight: 900;\n  font-size: 0.75em;\n  line-height: 0.75em;\n  text-align: center;\n  color: inherit;\n  position: absolute;\n  -webkit-animation: spinner 1s linear infinite;\n          animation: spinner 1s linear infinite;\n}\n\ntabbed.config-tabs {\n  position: relative;\n  display: grid;\n  height: 100%;\n  box-sizing: border-box;\n  grid-template-columns: 2rem auto;\n  margin-left: -0.75rem;\n  padding-top: 0.5rem;\n}\ntabbed.config-tabs ul.ui-tabs-nav {\n  position: fixed;\n  width: 2rem;\n  display: grid;\n  grid-template-rows: 0 -webkit-min-content -webkit-min-content -webkit-min-content -webkit-min-content auto 0;\n  grid-template-rows: 0 min-content min-content min-content min-content auto 0;\n  grid-row-gap: 0.5rem;\n  align-items: baseline;\n  height: 81vh;\n  border-right: 1px solid #ffffff30 !important;\n  border-radius: 0;\n}\ntabbed.config-tabs ul.ui-tabs-nav li.ui-tabs-tab {\n  -ms-writing-mode: tb-rl;\n      writing-mode: vertical-rl;\n  -webkit-text-orientation: sideways;\n          text-orientation: sideways;\n  transform: rotate(180deg);\n  padding: 0.5rem;\n  align-self: end;\n  border-radius: 0;\n  position: relative;\n}\ntabbed.config-tabs ul.ui-tabs-nav li.ui-tabs-tab:hover, tabbed.config-tabs ul.ui-tabs-nav li.ui-tabs-tab.ui-tabs-active {\n  background-color: #ffffff20;\n}\n@keyframes spinner {\n  to {\n    transform: rotate(360deg);\n  }\n}\ntabbed.config-tabs ul.ui-tabs-nav li.ui-tabs-tab a.notification:not([updates=\"0\"])::after {\n  content: \"\\f111\";\n  font-family: \"Font Awesome 6 Free\";\n  font-weight: 900;\n  font-size: 0.5em;\n  color: red;\n  position: absolute;\n  bottom: 0.125rem;\n  right: 0.25rem;\n}\ntabbed.config-tabs ul.ui-tabs-nav li.ui-tabs-tab a.notification[loading=true]::after {\n  content: \"\\f110\";\n  font-family: \"Font Awesome 6 Free\";\n  font-weight: 900;\n  font-size: 0.5em;\n  color: inherit;\n  position: absolute;\n  bottom: 0.05rem;\n  right: 0.25rem;\n  -webkit-animation: spinner 1s linear infinite;\n          animation: spinner 1s linear infinite;\n}\ntabbed.config-tabs div.ui-tabs-panel {\n  margin-left: 0.25rem;\n  grid-column: 2;\n  width: var(--window-width, 37rem);\n}\ntabbed.config-tabs form-section:not([columns]).subscription-control-btn {\n  grid-template-columns: 1fr 1fr;\n}\ntabbed.config-tabs form-section:not([columns]).subscription-control-btn form-input {\n  grid-column: span 1;\n}\n\ndiv#modal-container div.re621-ui-dialog div.ui-dialog-content.subscription-wrapper {\n  overflow-x: auto !important;\n}\n\n#subscriptions-controls {\n  justify-content: center;\n  overflow: hidden;\n}\n\na.subscribe-button-minor::after {\n  content: \"\\f004\";\n  font-family: \"Font Awesome 6 Free\";\n  font-weight: 500;\n}\na.subscribe-button-minor[subscribed=true]::after {\n  font-weight: 700;\n}\n\na.subscribe-button-major {\n  display: block;\n  box-sizing: border-box;\n  border-radius: 6px;\n  font-size: 1rem;\n  line-height: 1.25rem;\n  padding: 0.25rem 0.5rem;\n  border: 0;\n  margin: 0 0.5rem;\n  font-weight: 500;\n  background: #006400;\n  color: #fff;\n  float: right;\n  box-shadow: 0px 0px 1px 0px black;\n  -webkit-touch-callout: none;\n  /* iOS Safari */\n  -webkit-user-select: none;\n  /* Safari */\n  /* Konqueror HTML */\n  -moz-user-select: none;\n  /* Old versions of Firefox */\n  -ms-user-select: none;\n  /* Internet Explorer/Edge */\n  user-select: none;\n  /* Chrome, Edge, Opera and Firefox */\n}\na.subscribe-button-major:hover {\n  background: #004b00;\n  color: #fff;\n}\na.subscribe-button-major[subscribed=true] {\n  background: maroon;\n}\na.subscribe-button-major[subscribed=true]:hover {\n  background: #670000;\n}\n\ndiv#c-forum-topics div#a-show h1:first-of-type {\n  position: relative;\n  padding-right: 8rem;\n}\ndiv#c-forum-topics div#a-show h1:first-of-type a.subscribe-button-major {\n  position: absolute;\n  right: 0;\n  top: 0.25rem;\n}\n\ntabbed.config-tabs form.form-section {\n  margin-left: 0.25rem;\n}\n\ntabbed.config-tabs form.form-section:not([columns]),\ntabbed.config-tabs form.form-section[columns=\"1\"],\ntabbed.config-tabs form-section:not([columns]),\ntabbed.config-tabs form-section[columns=\"1\"] {\n  width: 100%;\n  grid-template-columns: 5.625rem 12rem;\n}\n\ntabbed.config-tabs form.form-section[formspan=\"2\"],\ntabbed.config-tabs form.form-section[columns=\"2\"],\ntabbed.config-tabs form-section[columns=\"2\"] {\n  width: 100%;\n  grid-template-columns: 5.625rem 12rem 5.625rem 12rem;\n}\n\ntabbed.config-tabs form-section.subscription-settings > form-section {\n  grid-template-columns: 5.25rem 12rem !important;\n}\ntabbed.config-tabs form-section.subscription-settings > form-section:nth-child(odd) {\n  padding-right: 0.25rem;\n}\ntabbed.config-tabs form-section.subscription-settings > form-section:nth-child(even) {\n  justify-content: right;\n}\ntabbed.config-tabs form-section.subscription-settings > form-section:not(:nth-last-of-type(-n+2)) {\n  margin-bottom: 0.5rem;\n}\ntabbed.config-tabs form-section.subscription-settings > form-section input[type=text] {\n  padding: 0 0.75rem;\n}\ntabbed.config-tabs form-section.subscription-settings > form-section .update-timer {\n  opacity: 0.5;\n}\ntabbed.config-tabs form-section.subscription-settings > form-section .update-timer input {\n  font-family: monospace;\n  font-size: 1.1rem;\n  background: #ffffff20;\n}\ntabbed.config-tabs form-section.subscription-settings > form-section .failed-attempt {\n  color: gold;\n}\n\n.subscription-tutorial {\n  font-family: monospace;\n  margin-bottom: -0.5rem;\n  font-size: 0.9rem;\n}\n\nsb-enwrap input.sb-enfind {\n  width: 100%;\n  margin-bottom: 0.5rem;\n  border-radius: 0;\n}\nsb-enwrap sb-encont {\n  display: grid;\n  max-height: 40vh;\n  overflow: hidden auto;\n}\nsb-enwrap sb-encont::-webkit-scrollbar {\n  width: 6px;\n  height: 6px;\n}\nsb-enwrap sb-encont::-webkit-scrollbar-thumb {\n  height: 6px;\n  background-color: #ffffff55;\n}\nsb-enwrap sb-encont::-webkit-scrollbar-button {\n  width: 0;\n  height: 0;\n  display: none;\n}\nsb-enwrap sb-encont::-webkit-scrollbar-track, sb-enwrap sb-encont::-webkit-scrollbar-corner {\n  background-color: transparent;\n}\nsb-enwrap sb-encont {\n  scrollbar-width: thin;\n  scrollbar-color: #ffffff55 transparent;\n}\nsb-enwrap sb-encont sb-enitem {\n  display: block;\n}\nsb-enwrap sb-encont sb-enitem a.sb-unsub {\n  margin-right: 0.5rem;\n}\n\nsb-enitem.sb-quicksub {\n  margin-left: 0.95rem;\n}\n\nsb-enwrap[content=Tags] sb-encont {\n  grid-template-columns: 1fr 1fr;\n}\n\nsb-enwrap[content=Comments] sb-encont {\n  grid-template-columns: 1fr 1fr;\n}\n\nsb-ctwrap {\n  display: block;\n  width: var(--window-width, 37rem);\n}\nsb-ctwrap[state=done] sb-status {\n  display: none !important;\n}\nsb-ctwrap:not([state=done]) sb-canvas {\n  display: none !important;\n}\nsb-ctwrap sb-canvas subitem {\n  order: 20;\n}\nsb-ctwrap sb-canvas subitem[new=true],\nsb-ctwrap sb-canvas subitem[new=maybe] {\n  order: 0;\n}\nsb-ctwrap sb-canvas subdivider {\n  display: flex;\n  grid-column: 1/-1;\n  align-items: center;\n  text-align: center;\n  order: 10;\n  color: #ffffff50;\n}\nsb-ctwrap sb-canvas subdivider::before, sb-ctwrap sb-canvas subdivider::after {\n  content: \"\";\n  flex: 1;\n  border-bottom: 1px solid #ffffff50;\n}\nsb-ctwrap sb-canvas subdivider::before {\n  margin-right: 1rem;\n}\nsb-ctwrap sb-canvas subdivider::after {\n  margin-left: 1rem;\n}\nsb-ctwrap sb-canvas subnotif {\n  grid-column: 1/-1;\n  justify-self: center;\n  padding: 20% 2rem 25%;\n  color: #666666;\n  font-family: \"Calibri\";\n  font-size: 1.25rem;\n  width: 21rem;\n  background: #77777720;\n  margin-top: -0.5rem;\n  box-shadow: 1px 1px 5rem #99999920;\n  border-radius: 0 0 10rem 10rem;\n}\nsb-ctwrap sb-canvas subnotif div {\n  font-size: 150%;\n  padding-bottom: 1rem;\n  text-align: center;\n  color: #999999;\n}\nsb-ctwrap[added=\"0\"] sb-canvas subdivider, sb-ctwrap:not([posts=\"0\"]) sb-canvas subnotif {\n  display: none;\n}\nsb-ctwrap sb-status {\n  display: block;\n  font-family: monospace;\n  font-size: 1.25rem;\n  width: -webkit-min-content;\n  width: -moz-min-content;\n  width: min-content;\n  margin: 6rem auto;\n}\nsb-ctwrap sb-status > div {\n  white-space: nowrap;\n  line-height: 1.5rem;\n  padding-bottom: 0.125rem;\n}\n\nsb-ctwrap[content=Tags] sb-canvas {\n  display: grid;\n  width: var(--window-width, 37rem);\n  grid-template-columns: repeat(var(--thumb-cols, 4), 1fr);\n  grid-column-gap: 0.5rem;\n  grid-row-gap: 0.5rem;\n  justify-content: space-between;\n}\nsb-ctwrap[content=Tags] sb-canvas subitem {\n  display: block;\n  overflow: hidden;\n  position: relative;\n  background: #ffffff05;\n  height: var(--thumb-width, 8.75rem);\n}\nsb-ctwrap[content=Tags] sb-canvas subitem img {\n  -o-object-fit: cover;\n     object-fit: cover;\n  width: 100%;\n  height: var(--thumb-width, 8.75rem);\n}\nsb-ctwrap[content=Tags] sb-canvas subitem a.delete-link {\n  position: absolute;\n  top: -0.75rem;\n  right: -1.25rem;\n  width: 3rem;\n  height: 2rem;\n  display: flex;\n  align-items: flex-end;\n  justify-content: center;\n  background: #96181877;\n  transform: rotate(45deg);\n  transform-origin: center;\n  box-shadow: 1px 1px 5px 0px #00000060;\n  padding-bottom: 0.05rem;\n  box-sizing: border-box;\n  visibility: hidden;\n}\nsb-ctwrap[content=Tags] sb-canvas subitem a.delete-link:hover {\n  background: #961818;\n  color: white;\n}\nsb-ctwrap[content=Tags] sb-canvas subitem a.delete-link span {\n  transform: rotate(-45deg);\n}\nsb-ctwrap[content=Tags] sb-canvas subitem:hover a.delete-link {\n  visibility: visible;\n}\n\nsb-ctwrap[content=Pools] sb-canvas {\n  display: grid;\n  grid-template-columns: 1fr;\n  grid-row-gap: 0.5rem;\n}\nsb-ctwrap[content=Pools] sb-canvas subitem {\n  grid-column: 1;\n  display: grid;\n  grid-template-columns: 7rem auto 1rem;\n  grid-template-rows: auto 1.25rem;\n  grid-column-gap: 0.5rem;\n  height: 5rem;\n  background: #ffffff10;\n  margin-right: -0.5rem;\n  width: 100%;\n}\nsb-ctwrap[content=Pools] sb-canvas subitem a.img-link {\n  grid-row: span 2;\n}\nsb-ctwrap[content=Pools] sb-canvas subitem a.img-link img {\n  width: 7rem;\n  height: 5rem;\n  -o-object-fit: cover;\n     object-fit: cover;\n}\nsb-ctwrap[content=Pools] sb-canvas subitem div.info-section {\n  grid-area: 1/2;\n  padding-top: 0.25rem;\n}\nsb-ctwrap[content=Pools] sb-canvas subitem div.info-section a {\n  display: block;\n  font-size: 1.25rem;\n  max-width: 28.5rem;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  white-space: nowrap;\n}\nsb-ctwrap[content=Pools] sb-canvas subitem div.info-section div {\n  color: #777;\n}\nsb-ctwrap[content=Pools] sb-canvas subitem a.all-link {\n  grid-area: 2/2;\n  align-self: center;\n}\nsb-ctwrap[content=Pools] sb-canvas subitem a.delete-link {\n  grid-area: 1/3/span 2;\n  background: #ffffff10;\n  height: 100%;\n  display: flex;\n  align-items: center;\n  justify-content: center;\n  color: #ddd;\n}\nsb-ctwrap[content=Pools] sb-canvas subitem a.delete-link:hover {\n  background: #ffffff25;\n}\n\nsb-ctwrap[content=Forums] sb-canvas {\n  display: grid;\n  grid-template-columns: 1fr;\n  grid-row-gap: 0.5rem;\n}\nsb-ctwrap[content=Forums] sb-canvas subitem {\n  grid-column: 1;\n  display: grid;\n  grid-template-columns: auto 1rem;\n  grid-column-gap: 0.5rem;\n  height: 5rem;\n  background: #ffffff10;\n  margin-right: -0.5rem;\n  width: 100%;\n}\nsb-ctwrap[content=Forums] sb-canvas subitem div.info-section {\n  align-self: center;\n  padding-left: 0.5rem;\n}\nsb-ctwrap[content=Forums] sb-canvas subitem div.info-section a {\n  display: block;\n  font-size: 1.25rem;\n  max-width: 28.5rem;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  white-space: nowrap;\n}\nsb-ctwrap[content=Forums] sb-canvas subitem div.info-section div {\n  color: #777;\n}\nsb-ctwrap[content=Forums] sb-canvas subitem a.delete-link {\n  background: #ffffff10;\n  height: 100%;\n  display: flex;\n  align-items: center;\n  justify-content: center;\n  color: #ddd;\n}\nsb-ctwrap[content=Forums] sb-canvas subitem a.delete-link:hover {\n  background: #ffffff25;\n}\n\nsb-ctwrap[content=Comments] sb-canvas {\n  display: grid;\n  grid-template-columns: 1fr;\n  grid-row-gap: 0.5rem;\n}\nsb-ctwrap[content=Comments] sb-canvas subitem {\n  grid-column: 1;\n  display: grid;\n  grid-template-columns: 7rem auto 1rem;\n  grid-column-gap: 0.5rem;\n  height: 5rem;\n  background: #ffffff10;\n  margin-right: -0.5rem;\n  width: 100%;\n}\nsb-ctwrap[content=Comments] sb-canvas subitem a.img-link img {\n  width: 7rem;\n  height: 5rem;\n  -o-object-fit: cover;\n     object-fit: cover;\n}\nsb-ctwrap[content=Comments] sb-canvas subitem div.info-section {\n  padding-top: 0.25rem;\n}\nsb-ctwrap[content=Comments] sb-canvas subitem div.info-section a {\n  display: block;\n  font-size: 1rem;\n  max-width: 28.5rem;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  white-space: nowrap;\n}\nsb-ctwrap[content=Comments] sb-canvas subitem div.info-section div {\n  color: #777;\n}\nsb-ctwrap[content=Comments] sb-canvas subitem div.info-section div.comment-body {\n  height: 2.2rem;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  width: 28rem;\n  color: #ccc;\n}\nsb-ctwrap[content=Comments] sb-canvas subitem a.delete-link {\n  background: #ffffff10;\n  height: 100%;\n  display: flex;\n  align-items: center;\n  justify-content: center;\n  color: #ddd;\n}\nsb-ctwrap[content=Comments] sb-canvas subitem a.delete-link:hover {\n  background: #ffffff25;\n}\n\n/* Smart Alias Styles */\ntextarea#alias-list-container,\ntextarea#tag-suggestions-container {\n  min-height: 40vh;\n  font-family: monospace;\n  font-size: 1.2em;\n  overflow: hidden auto;\n}\n\nsmart-alias {\n  display: grid;\n  grid-template-columns: repeat(auto-fill, 16rem);\n  width: inherit;\n  margin: 0.25rem 0;\n  overflow: hidden;\n  font-family: \"Consolas\", monospace, monospace;\n  font-size: 1em;\n  border: 1px solid #666;\n  border-radius: 0.25rem;\n}\nsmart-alias smart-tag {\n  position: relative;\n  padding: 0.075rem 0 0.075rem 1.35rem;\n}\nsmart-alias smart-tag[color=error] {\n  color: lightcoral;\n}\nsmart-alias smart-tag[color=info] {\n  color: aqua;\n}\nsmart-alias smart-tag[color=warning] {\n  color: gold;\n}\nsmart-alias smart-tag[color=implied] {\n  color: lightgreen;\n}\nsmart-alias smart-tag[color=success] {\n  color: inherit;\n}\nsmart-alias smart-tag::before {\n  content: \"\";\n  display: block;\n  line-height: 1;\n  font-family: \"Font Awesome 6 Free\";\n  font-weight: 400;\n  font-size: 0.7rem;\n  color: white;\n  position: absolute;\n  left: 0.25rem;\n  top: 0.25rem;\n}\nsmart-alias smart-tag[symbol=loading]::before {\n  content: \"\\f1ce\";\n  font-weight: 700;\n  -webkit-animation: fa-spin 2s infinite linear;\n          animation: fa-spin 2s infinite linear;\n}\nsmart-alias smart-tag[symbol=error]::before {\n  content: \"\\f057\";\n}\nsmart-alias smart-tag[symbol=info]::before {\n  content: \"\\f059\";\n}\nsmart-alias smart-tag[symbol=warning]::before {\n  content: \"\\f192\";\n}\nsmart-alias smart-tag[symbol=success]::before {\n  content: \"\\f058\";\n}\nsmart-alias smart-tag.category-3 a:not(:hover) {\n  color: #d8c;\n}\nsmart-alias smart-tag > span {\n  margin-left: 0.5em;\n}\nsmart-alias smart-tag > span.tag-warning {\n  color: orange;\n  cursor: help;\n  font-size: 70%;\n}\nsmart-alias.grouped smart-tag {\n  order: 6;\n}\nsmart-alias.grouped smart-tag.category-1 {\n  order: 1;\n}\nsmart-alias.grouped smart-tag.category-3 {\n  order: 3;\n}\nsmart-alias.grouped smart-tag.category-4 {\n  order: 4;\n}\nsmart-alias.grouped smart-tag.category-5 {\n  order: 5;\n}\nsmart-alias.grouped smart-tag.category-7 {\n  order: 7;\n}\nsmart-alias.grouped smart-tag.category-8 {\n  order: 8;\n}\n\nsmart-alias[has-original=true] smart-tag[action=added]::before {\n  color: #81ec81;\n}\nsmart-alias[has-original=true] smart-tag[action=removed]::before {\n  color: #ff8585;\n}\n\n#c-posts #a-index smart-alias,\n#c-favorites #a-index smart-alias,\n#page[data-smartalias-compact=true] smart-alias {\n  max-height: 6.75rem;\n  overflow: hidden scroll;\n}\n#c-posts #a-index smart-alias::-webkit-scrollbar,\n#c-favorites #a-index smart-alias::-webkit-scrollbar,\n#page[data-smartalias-compact=true] smart-alias::-webkit-scrollbar {\n  width: 6px;\n  height: 6px;\n}\n#c-posts #a-index smart-alias::-webkit-scrollbar-thumb,\n#c-favorites #a-index smart-alias::-webkit-scrollbar-thumb,\n#page[data-smartalias-compact=true] smart-alias::-webkit-scrollbar-thumb {\n  height: 6px;\n  background-color: #ffffff55;\n}\n#c-posts #a-index smart-alias::-webkit-scrollbar-button,\n#c-favorites #a-index smart-alias::-webkit-scrollbar-button,\n#page[data-smartalias-compact=true] smart-alias::-webkit-scrollbar-button {\n  width: 0;\n  height: 0;\n  display: none;\n}\n#c-posts #a-index smart-alias::-webkit-scrollbar-track, #c-posts #a-index smart-alias::-webkit-scrollbar-corner,\n#c-favorites #a-index smart-alias::-webkit-scrollbar-track,\n#c-favorites #a-index smart-alias::-webkit-scrollbar-corner,\n#page[data-smartalias-compact=true] smart-alias::-webkit-scrollbar-track,\n#page[data-smartalias-compact=true] smart-alias::-webkit-scrollbar-corner {\n  background-color: transparent;\n}\n#c-posts #a-index smart-alias,\n#c-favorites #a-index smart-alias,\n#page[data-smartalias-compact=true] smart-alias {\n  scrollbar-width: thin;\n  scrollbar-color: #ffffff55 transparent;\n}\n\nsmart-tag-counter {\n  display: block;\n  position: relative;\n  pointer-events: none;\n  height: 1rem;\n  margin-top: -1rem;\n  padding: 0 1rem;\n  font-family: monospace;\n  color: #666;\n  text-align: right;\n}\n\nbutton.smart-alias-validate {\n  display: block;\n  margin: 0 auto;\n  padding: 0 1rem;\n  background: #ffffff11;\n  border: 1px solid #666;\n  border-top: 0;\n  border-radius: 0 0 0.5rem 0.5rem;\n  color: white;\n  font-size: 0.75rem;\n}\nbutton.smart-alias-validate:hover {\n  background: #ffffff20;\n}\n\ntextarea#post_tag_string {\n  min-height: 6rem;\n}\n\ndiv#c-uploads div#a-new textarea.tag-textarea,\nform.simple_form div.input textarea.tag-textarea {\n  font-family: \"Consolas\", monospace, monospace;\n  font-size: 1em;\n}\n\ntag-suggester {\n  display: grid;\n  grid-template-columns: repeat(auto-fill, 16rem);\n  width: inherit;\n  margin: 0.25rem 0;\n  overflow: hidden;\n  font-family: \"Consolas\", monospace, monospace;\n  font-size: 1em;\n  border: 1px solid #666;\n  border-radius: 0.25rem;\n}\ntag-suggester:not([count=\"0\"]):before {\n  content: \"Suggested Tags\";\n  grid-column: 1/-1;\n  padding: 0.075rem 0 0.075rem 1.35rem;\n}\ntag-suggester tag-entry {\n  position: relative;\n  padding: 0.075rem 0 0.075rem 0.35rem;\n}\ntag-suggester tag-entry > a:first-child {\n  margin-right: 0.5rem;\n}\n\n.tag-suggester-container {\n  display: flex;\n  flex-flow: column;\n}\n.tag-suggester-container smart-alias {\n  order: 10;\n}\n\ndiv.post-changes {\n  margin-bottom: 0.5rem;\n}\ndiv.post-changes label {\n  display: block;\n}\n\n/* Basic style fixes */\ndiv#source-container > div > button {\n  min-width: 1.5rem;\n}\ndiv#source-container button.source-copy,\ndiv#source-container button.source-link,\ndiv#source-container span.source-eval {\n  float: right;\n  margin-left: 0.25rem;\n}\ndiv#source-container span.source-eval {\n  color: coral;\n  font-family: monospace;\n}\n\n/* Duplicates Checking */\ndiv#dupes-container {\n  display: grid;\n  grid-template-columns: repeat(auto-fill, 8rem);\n  grid-column-gap: 0.25rem;\n}\ndiv#dupes-container > .fullspan, div#dupes-container > h3 {\n  grid-column: 1/-1;\n}\ndiv#dupes-container > .error {\n  color: darkorange;\n  font-weight: unset;\n}\ndiv#dupes-container > div a > img {\n  -o-object-fit: cover;\n     object-fit: cover;\n  width: 8rem;\n  height: 8rem;\n}\ndiv#dupes-container > div loading::before {\n  content: \" \";\n  background: red;\n  display: block;\n  height: 0.125rem;\n  width: var(--progress, \"0%\");\n}\ndiv#dupes-container > div span {\n  display: block;\n  text-align: center;\n  height: 1rem;\n  margin-top: -1rem;\n  pointer-events: none;\n  font-family: monospace;\n  overflow: hidden;\n  text-shadow: 0px 0px 5px black;\n}\n\n/* Reverse Image Search Links */\ndiv#ris-container {\n  display: flex;\n  justify-content: space-evenly;\n  margin-top: 1rem;\n}\n\n/* Upload Submit Button */\nbutton.submit-upload {\n  padding: 0.75rem 1rem;\n  font-weight: bold;\n}\n\na#upload-parent-preview {\n  display: block;\n  margin: 0.5rem 0;\n  width: -webkit-min-content;\n  width: -moz-min-content;\n  width: min-content;\n}\na#upload-parent-preview img {\n  -o-object-fit: cover;\n     object-fit: cover;\n  width: 8rem;\n  height: 8rem;\n}\n"`;


!function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,(function(r){return o(e[i][1][r]||r)}),p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}({1:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.ModuleController=void 0;const CleanSlate_1=require("./structure/CleanSlate"),Debug_1=require("./utility/Debug"),ErrorHandler_1=require("./utility/ErrorHandler"),Util_1=require("./utility/Util");class ModuleController{static async register(moduleList){Array.isArray(moduleList)||(moduleList=[moduleList]),Debug_1.Debug.perfStart("re621.total");let activeModules=0;for(const moduleClass of moduleList){Debug_1.Debug.perfStart(moduleClass.prototype.constructor.name);try{const instance=moduleClass.getInstance();this.modules.set(moduleClass.prototype.constructor.name,instance),await instance.prepare()}catch(error){ErrorHandler_1.ErrorHandler.error(moduleClass.prototype.constructor.name,error.stack,"prepare")}}for(const instance of this.modules.values())if(instance.canInitialize()){try{instance.isWaitingForDOM()?$((async()=>{await Util_1.Util.sleep(50),instance.isWaitingForFocus()&&await CleanSlate_1.CleanSlate.awaitFocus(),instance.create()})):(instance.isWaitingForFocus()&&await CleanSlate_1.CleanSlate.awaitFocus(),instance.create()),activeModules++}catch(error){ErrorHandler_1.ErrorHandler.error(instance,error.stack,"init")}Debug_1.Debug.perfEnd(instance.constructor.name)}else Debug_1.Debug.perfEnd(instance.constructor.name);return Debug_1.Debug.perfEnd("re621.total"),Promise.resolve(activeModules)}static get(module){return"string"==typeof module?this.modules.get(module):this.get(module.prototype.constructor.name)}static getAll(){return this.modules}static fetchSettings(module,property){return this.get(module.prototype.constructor.name).fetchSettings(property)}}exports.ModuleController=ModuleController,ModuleController.modules=new Map},{"./structure/CleanSlate":28,"./utility/Debug":34,"./utility/ErrorHandler":35,"./utility/Util":38}],2:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.RE6Module=void 0;const XM_1=require("./api/XM"),Keybinds_1=require("./data/Keybinds"),Page_1=require("./data/Page"),ModuleController_1=require("./ModuleController");exports.RE6Module=class{constructor(constraint,waitForDOM=!1,waitForFocus=!1,dependencies=[],settingsTag){this.initialized=!1,this.dependencies=[],this.constraint=[],this.keybinds=[],void 0===constraint?this.constraint=[]:constraint instanceof RegExp?this.constraint.push(constraint):this.constraint=constraint,this.dependencies=dependencies,this.waitForDOM=waitForDOM,this.waitForFocus=waitForFocus,this.settingsTag=settingsTag||this.constructor.name}async prepare(){await this.loadSettingsCache(),this.enabled=this.fetchSettings("enabled")}isInitialized(){return this.initialized}canInitialize(){let depend=!0;for(const module of this.dependencies)if(!ModuleController_1.ModuleController.get(module).isEnabled()){depend=!1;break}return!this.initialized&&this.pageMatchesFilter()&&this.enabled&&depend}getSettingsTag(){return this.settingsTag}isWaitingForDOM(){return this.waitForDOM}isWaitingForFocus(){return this.waitForFocus}pageMatchesFilter(){return 0==this.constraint.length||Page_1.Page.matches(this.constraint)}create(){this.initialized=!0}destroy(){this.initialized=!1}isEnabled(){return this.enabled}setEnabled(enabled){this.enabled=enabled}fetchSettings(property,fresh){if(fresh)return new Promise((async resolve=>{await this.loadSettingsCache(),resolve(this.fetchSettings(property))}));if(Array.isArray(property)){const result={};return property.forEach((entry=>{result[entry]=this.settings[entry]})),result}return this.settings[property]}async fetchSettingsGently(property){return Promise.resolve((await this.loadSettingsValues())[property])}async pushSettings(property,value){return this.loadSettingsCache().then((()=>("string"==typeof property?this.settings[property]=value:Object.keys(property).forEach((key=>{this.settings[key]=property[key]})),this.saveSettingsCache())))}async clearSettings(){return XM_1.XM.Storage.deleteValue("re621."+this.settingsTag).then((()=>this.loadSettingsCache()))}getDefaultSettings(){return{enabled:!0}}async loadSettingsCache(){return this.settings=await this.loadSettingsValues(),Promise.resolve(!0)}async loadSettingsValues(){const defaultValues=this.getDefaultSettings(),result=await XM_1.XM.Storage.getValue("re621."+this.settingsTag,defaultValues);for(const key of Object.keys(defaultValues))void 0===result[key]&&(result[key]=defaultValues[key]);return Promise.resolve(result)}async saveSettingsCache(){return XM_1.XM.Storage.setValue("re621."+this.settingsTag,this.settings)}async refreshSettings(){return this.loadSettingsCache()}async getSavedSettings(){return{name:"re621."+this.settingsTag,data:await XM_1.XM.Storage.getValue("re621."+this.settingsTag,{})}}async resetHotkeys(){await this.loadSettingsCache();const keyMeta=[],keybindObj=[],enabled=this.pageMatchesFilter();for(const keybind of this.keybinds){const meta=this.getSettingsTag()+"."+keybind.keys,keys=this.fetchSettings(keybind.keys).split("|");if(keybind.ignoreShift)for(const key of[...keys])keys.push("shift+"+key);keybindObj.push({keys:keys,fnct:keybind.fnct,bindMeta:meta,enabled:enabled&&(!keybind.page||Page_1.Page.matches(keybind.page)),element:keybind.element,selector:keybind.selector,holdable:keybind.holdable}),keyMeta.push(meta)}Keybinds_1.KeybindManager.unregister(keyMeta),Keybinds_1.KeybindManager.register(keybindObj)}registerHotkeys(...keybinds){this.keybinds.push(...keybinds),this.resetHotkeys()}static getInstance(){return null==this.instance&&(this.instance=new this),this.instance}static on(name,callback){$(document).on("re621.module."+this.getInstance().constructor.name+"."+name,((event,data)=>{callback(event,data)}))}static one(name,callback){$(document).on("re621.module."+this.getInstance().constructor.name+"."+name,((event,data)=>{callback(event,data),this.off(name)}))}static off(name){$(document).off("re621.module."+this.getInstance().constructor.name+"."+name)}static trigger(name,data){$(document).trigger("re621.module."+this.getInstance().constructor.name+"."+name,data)}}},{"./ModuleController":1,"./api/XM":7,"./data/Keybinds":19,"./data/Page":20}],3:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.Danbooru=void 0;const XM_1=require("./XM");class Danbooru{static getModules(){return XM_1.XM.Window.Danbooru}static hasModules(){return void 0!==XM_1.XM.Window.Danbooru}static notice(input,permanent){Danbooru.hasModules()?Danbooru.getModules().notice(input,permanent):XM_1.XM.Chrome.execInjectorRequest("Danbooru","Notice","notice",[input,permanent])}static error(input){Danbooru.hasModules()?Danbooru.getModules().error(input):XM_1.XM.Chrome.execInjectorRequest("Danbooru","Notice","error",[input])}}exports.Danbooru=Danbooru,Danbooru.Autocomplete={initialize_all(){Danbooru.hasModules()?Danbooru.getModules().Autocomplete.initialize_all():XM_1.XM.Chrome.execInjectorRequest("Danbooru","Autocomplete","initialize_all")}},Danbooru.Blacklist={apply(){Danbooru.hasModules()?Danbooru.getModules().Blacklist.apply():XM_1.XM.Chrome.execInjectorRequest("Danbooru","Blacklist","apply")},initialize_anonymous_blacklist(){Danbooru.hasModules()?Danbooru.getModules().Blacklist.initialize_anonymous_blacklist():XM_1.XM.Chrome.execInjectorRequest("Danbooru","Blacklist","initialize_anonymous_blacklist")},initialize_all(){Danbooru.hasModules()?Danbooru.getModules().Blacklist.initialize_all():XM_1.XM.Chrome.execInjectorRequest("Danbooru","Blacklist","initialize_all")},initialize_disable_all_blacklists(){Danbooru.hasModules()?Danbooru.getModules().Blacklist.initialize_disable_all_blacklists():XM_1.XM.Chrome.execInjectorRequest("Danbooru","Blacklist","initialize_disable_all_blacklists")},stub_vanilla_functions(){Danbooru.hasModules()?(Danbooru.getModules().Blacklist.apply=()=>{},Danbooru.getModules().Blacklist.initialize_disable_all_blacklists=()=>{},Danbooru.getModules().Blacklist.initialize_all=()=>{}):XM_1.XM.Chrome.execInjectorRequest("Danbooru","Blacklist","stub_vanilla_functions")}},Danbooru.DText={initialize_formatting_buttons(element){Danbooru.hasModules()?Danbooru.getModules().DText.initialize_formatting_buttons(element):XM_1.XM.Chrome.execInjectorRequest("Danbooru","DText","initializeFormattingButtons",[element])},override_formatting(fn){Danbooru.hasModules()?Danbooru.getModules().DText.process_formatting=fn:XM_1.XM.Chrome.execInjectorRequest("Danbooru","DText","overrideFormatting",[fn])}},Danbooru.Post={vote(post_id,scoreDifference,preventUnvote){Danbooru.hasModules()?Danbooru.getModules().Post.vote(post_id,scoreDifference,preventUnvote):XM_1.XM.Chrome.execInjectorRequest("Danbooru","Post","vote",[post_id,scoreDifference,preventUnvote])},initialize_all(){Danbooru.hasModules()?Danbooru.getModules().Post.initialize_all():XM_1.XM.Chrome.execInjectorRequest("Danbooru","Post","update")},update(post_id,params){Danbooru.hasModules()?Danbooru.getModules().Post.update(post_id,params):XM_1.XM.Chrome.execInjectorRequest("Danbooru","Post","update",[post_id,params])},delete_with_reason(post_id,reason,reload_after_delete){Danbooru.hasModules()?Danbooru.getModules().Post.delete_with_reason(post_id,reason,reload_after_delete):XM_1.XM.Chrome.execInjectorRequest("Danbooru","Post","delete_with_reason",[post_id,reason,reload_after_delete])},undelete(post_id){Danbooru.hasModules()?Danbooru.getModules().Post.undelete(post_id):XM_1.XM.Chrome.execInjectorRequest("Danbooru","Post","undelete",[post_id])},approve(post_id,should_reload=!1){Danbooru.hasModules()?Danbooru.getModules().Post.approve(post_id,should_reload):XM_1.XM.Chrome.execInjectorRequest("Danbooru","Post","approve",[post_id,should_reload])},disapprove(post_id,reason,should_reload=!1){Danbooru.hasModules()?Danbooru.getModules().Post.disapprove(post_id,reason,should_reload):XM_1.XM.Chrome.execInjectorRequest("Danbooru","Post","disapprove",[post_id,reason,should_reload])},unapprove(post_id){Danbooru.hasModules()?Danbooru.getModules().Post.unapprove(post_id):XM_1.XM.Chrome.execInjectorRequest("Danbooru","Post","unapprove",[post_id])},resize_cycle_mode(){Danbooru.hasModules()?Danbooru.getModules().Post.resize_cycle_mode():XM_1.XM.Chrome.execInjectorRequest("Danbooru","Post","resize_cycle_mode")},resize_to(size){Danbooru.hasModules()?Danbooru.getModules().Post.resize_to(size):XM_1.XM.Chrome.execInjectorRequest("Danbooru","Post","resize_to",[size])},resize_to_internal(size){Danbooru.hasModules()?Danbooru.getModules().Post.resize_to_internal(size):XM_1.XM.Chrome.execInjectorRequest("Danbooru","Post","resize_to_internal",[size])},resize_notes(){Danbooru.hasModules()?Danbooru.getModules().Post.resize_notes():XM_1.XM.Chrome.execInjectorRequest("Danbooru","Post","resize_notes")}},Danbooru.PostModeMenu={change(){Danbooru.hasModules()?Danbooru.getModules().PostModeMenu.change():XM_1.XM.Chrome.execInjectorRequest("Danbooru","PostModeMenu","change")},click(e){Danbooru.hasModules()?Danbooru.getModules().PostModeMenu.click(e):XM_1.XM.Chrome.execInjectorRequest("Danbooru","PostModeMenu","click",[e])},change_tag_script(script){if(Danbooru.hasModules()){const event=new CustomEvent("re621.dummy-event");event.key=script,Danbooru.getModules().PostModeMenu.change_tag_script(event)}else XM_1.XM.Chrome.execInjectorRequest("Danbooru","PostModeMenu","click",[script])}},Danbooru.Note={Box:{scale_all(){Danbooru.hasModules()?Danbooru.getModules().Note.Box.scale_all():XM_1.XM.Chrome.execInjectorRequest("Danbooru","Note.Box","scale_all")}},TranslationMode:{active:state=>Danbooru.hasModules()?(void 0!==state&&(Danbooru.getModules().Note.TranslationMode.active=state),Promise.resolve(Danbooru.getModules().Note.TranslationMode.active)):XM_1.XM.Chrome.execInjectorRequest("Danbooru","Note.TranslationMode","active",[state]),toggle(){Danbooru.hasModules()?Danbooru.getModules().Note.TranslationMode.toggle(new CustomEvent("re621.dummy-event")):XM_1.XM.Chrome.execInjectorRequest("Danbooru","Note.TranslationMode","toggle")}}},Danbooru.Thumbnails={initialize(){Danbooru.hasModules()?Danbooru.getModules().Thumbnails.initialize():XM_1.XM.Chrome.execInjectorRequest("Danbooru","Thumbnails","initialize")}},Danbooru.Shortcuts={set disabled(value){Danbooru.hasModules()?Danbooru.getModules().Shortcuts.disabled=1==value:XM_1.XM.Chrome.execInjectorRequest("Danbooru","Shortcuts","setDisabled",[1==value])}},Danbooru.E621={addDeferredPosts(posts){Danbooru.hasModules()?(XM_1.XM.Window.___deferred_posts=XM_1.XM.Window.___deferred_posts||{},XM_1.XM.Window.___deferred_posts=$.extend(XM_1.XM.Window.___deferred_posts,posts)):XM_1.XM.Chrome.execInjectorRequest("Danbooru","E621","addDeferredPosts",[posts])}}},{"./XM":7}],4:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.DownloadQueue=void 0;const Util_1=require("../utility/Util"),XM_1=require("./XM");exports.DownloadQueue=class{constructor(maxThreads=4){this.maxThreads=4,this.id=Util_1.Util.ID.make(),this.maxThreads=Util_1.Util.Math.clamp(maxThreads,1,6),this.queue=[],this.zip=new JSZip}getThreadCount(){return this.maxThreads}getQueueLength(){return this.queue.length}add(file,listeners){file.unid=void 0===file.unid?0:file.unid,file.date=void 0===file.date?new Date:new Date(file.date),file.tags=void 0===file.tags?"":file.tags,listeners.onStart=void 0===listeners.onStart?function(){}:listeners.onStart,listeners.onFinish=void 0===listeners.onFinish?function(){}:listeners.onFinish,listeners.onLoadStart=void 0===listeners.onLoadStart?function(){}:listeners.onLoadStart,listeners.onLoadFinish=void 0===listeners.onLoadFinish?function(){}:listeners.onLoadFinish,listeners.onLoadProgress=void 0===listeners.onLoadProgress?function(){}:listeners.onLoadProgress,listeners.onError=void 0===listeners.onError?function(){}:listeners.onError,this.queue.push({file:file,listeners:listeners})}async run(onArchiveProgress){this.queue=this.queue.reverse();let cancelled=!1,saved=!1;Util_1.Util.Events.one(`re621.dl-${this.id}.cancel`,((event,data)=>{data&&(saved=!0),cancelled=!0,this.queue=[]}));const processes=[];for(let i=0;i<this.maxThreads;i++)processes.push(this.createNewProcess(i));return Promise.all(processes).then((()=>cancelled&&!saved?null:this.zip.generateAsync({type:"blob",compression:"STORE",comment:"Downloaded from e621 on "+(new Date).toUTCString()},onArchiveProgress)))}async createNewProcess(thread){return new Promise((async resolve=>{let index,item;for(Util_1.Util.Events.one(`re621.dl-${this.id}.cancel`,(()=>{resolve()}));this.queue.length>0;){index=this.queue.length,item=this.queue.pop(),item.listeners.onStart(item.file,thread,index);try{const dataBlob=await this.getDataBlob(item,thread);await this.zip.file(item.file.name,dataBlob,{binary:!0,date:item.file.date,comment:item.file.tags})}catch(e){console.log(e)}item.listeners.onFinish(item.file,thread,index)}void 0!==item&&item.listeners.onWorkerFinish(item.file,thread),resolve()}))}async getDataBlob(item,thread){return new Promise(((resolve,reject)=>{let timer;XM_1.XM.Connect.xmlHttpRequest({method:"GET",url:item.file.path,headers:{"User-Agent":window.re621.useragent,"X-User-Agent":window.re621.useragent},responseType:"arraybuffer",onloadstart:event=>{item.listeners.onLoadStart(item.file,thread,event)},onerror:event=>{item.listeners.onError(item.file,thread,event),reject(item.file)},ontimeout:event=>{item.listeners.onError(item.file,thread,event),reject(item.file)},onprogress:event=>{timer&&clearTimeout(timer),timer=window.setTimeout((()=>{item.listeners.onLoadProgress(item.file,thread,event)}),500)},onload:event=>{item.listeners.onLoadFinish(item.file,thread,event),resolve(event.response)}})}))}abort(save=!1){Util_1.Util.Events.trigger(`re621.dl-${this.id}.cancel`,save)}}},{"../utility/Util":38,"./XM":7}],5:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.E621=void 0;const Debug_1=require("../utility/Debug"),Util_1=require("../utility/Util"),ENDPOINT_DEFS=[{name:"posts",path:"posts.json",node:"posts"},{name:"post",path:"posts/%ID%.json",node:"post"},{name:"post_votes",path:"posts/%ID%/votes.json"},{name:"tags",path:"tags.json"},{name:"tag",path:"tags/%ID%.json"},{name:"tag_aliases",path:"tag_aliases.json"},{name:"tag_implications",path:"tag_implications.json"},{name:"tag_preview",path:"tags/preview.json"},{name:"notes",path:"notes.json"},{name:"favorites",path:"favorites.json",node:"posts"},{name:"favorite",path:"favorites/%ID%.json"},{name:"pools",path:"pools.json"},{name:"pool",path:"pools/%ID%.json"},{name:"sets",path:"post_sets.json"},{name:"set",path:"post_sets/%ID%.json"},{name:"set_add_post",path:"post_sets/%ID%/add_posts.json"},{name:"set_remove_post",path:"post_sets/%ID%/remove_posts.json"},{name:"users",path:"users.json"},{name:"user",path:"users/%ID%.json"},{name:"blips",path:"blips.json"},{name:"wiki_pages",path:"wiki_pages.json"},{name:"comments",path:"comments.json"},{name:"comment",path:"comments/%ID%.json"},{name:"forum_posts",path:"forum_posts.json"},{name:"forum_post",path:"forum_posts/%ID%.json"},{name:"forum_topics",path:"forum_topics.json"},{name:"forum_topic",path:"forum_topics/%ID%.json"},{name:"dtext_preview",path:"dtext_preview"},{name:"iqdb_queries",path:"iqdb_queries.json"}];class APIEndpoint{constructor(queue,endpoint){this.queue=queue,this.path=endpoint.path,this.name=endpoint.name,this.node=endpoint.node}id(param){return this.param=param+"",this}async get(query,delay){return this.queue.createRequest(this.getParsedPath(),this.formatParam(query),"GET",{},this.name,this.node,delay).then((response=>{const result=this.formatData(response[0],response[2]);return Promise.resolve(result)}),(response=>Promise.reject(response[0])))}async first(query,delay){return this.get(query,delay).then((response=>response.length>0?Promise.resolve(response[0]):Promise.resolve(null)))}async post(data,delay,noEncode){return this.queue.createRequest(this.getParsedPath(),{},"POST",this.formatParam(data,noEncode),this.name,this.node,delay).then((data=>Promise.resolve(data)),(error=>Promise.reject(error)))}async delete(data,delay){return this.queue.createRequest(this.getParsedPath(),{},"DELETE",this.formatParam(data),this.name,this.node,delay).then((data=>Promise.resolve(data)),(error=>Promise.reject(error)))}async put(data,delay){return this.queue.createRequest(this.getParsedPath(),{},"PUT",this.formatParam(data),this.name,this.node,delay).then((data=>Promise.resolve(data)),(error=>Promise.reject(error)))}async patch(data,delay){return this.queue.createRequest(this.getParsedPath(),{},"PATCH",this.formatParam(data),this.name,this.node,delay).then((data=>Promise.resolve(data)),(error=>Promise.reject(error)))}getParsedPath(){if(this.param){const output=this.path.replace(/%ID%/g,this.param);return this.param=void 0,output}return this.path}formatParam(input,noEncode=!1){if(null==input)return{};const response={};for(const[key,value]of Object.entries(input))if(null!=value)if(Array.isArray(value)){for(const[index,elem]of value.entries())value[index]=cleanURIComponent(elem,noEncode);response[key]=value.join("+")}else if("object"==typeof value)for(const[subKey,subValue]of Object.entries(value))if(Array.isArray(subValue)){for(const[index,subElement]of subValue.entries())subValue[index]=cleanURIComponent(subElement,noEncode);response[`${key}[${subKey}]`]=subValue.join("+")}else response[`${key}[${subKey}]`]=cleanURIComponent(subValue,noEncode);else response[key]=cleanURIComponent(value,noEncode);return response;function cleanURIComponent(value,noEncode){return noEncode?encodeURIComponent(value+""):encodeURIComponent(decodeURIComponent(value+""))}}formatData(data,node){return void 0!==node&&(data=data[node]),Array.isArray(data)?data:[data]}}class E621{constructor(){this.emitter=$({}),this.processing=!1,this.requestIndex=0,this.endpoints={},this.authToken=$("head meta[name=csrf-token]").attr("content"),this.queue=[],ENDPOINT_DEFS.forEach((definition=>{this.endpoints[definition.name]=new APIEndpoint(this,definition)}))}static getEndpoint(name){return void 0===this.instance&&(this.instance=new E621),this.instance.endpoints[name]}async createRequest(path,query,method,requestBody,endpoint,node,delay){void 0===delay?delay=E621.requestRateLimit:delay<500&&(delay=500);const requestInfo={credentials:"include",headers:{"Content-Type":"application/x-www-form-urlencoded","User-Agent":window.re621.useragent,"X-User-Agent":window.re621.useragent},method:method,mode:"cors"};"GET"!==method&&(this.authToken=$("meta[name=csrf-token]").attr("content"),requestBody.authenticity_token=encodeURIComponent(this.authToken),requestInfo.body=FormattedAPIQuery.stringify(requestBody)),query._client=window.re621.useragent;const entry=new Request(location.origin+"/"+path+"?"+FormattedAPIQuery.stringify(query),requestInfo),index=this.requestIndex++,final=new Promise(((resolve,reject)=>{this.emitter.one("api.re621.result-"+index,((e,data,status,endpoint,node)=>{null===data&&(data=[]),void 0===data[endpoint]||["posts","post"].includes(endpoint)||(data=[]),void 0===data.error?resolve([data,status,node]):reject([data,status,node])}))}));return this.add({request:entry,index:index,delay:delay,endpoint:endpoint,node:node}),final}async add(newItem){if(this.queue.push(newItem),!this.processing){for(this.processing=!0;this.queue.length>0;){const item=this.queue.shift();Debug_1.Debug.connectLog(item.request.url),await new Promise((async resolve=>{fetch(item.request).then((async response=>{if(response.ok){let responseText=await response.text();responseText||(responseText="[]"),this.emitter.trigger("api.re621.result-"+item.index,[JSON.parse(responseText),response.status,item.endpoint,item.node])}else this.emitter.trigger("api.re621.result-"+item.index,[{error:response.status+" "+response.statusText},response.status,item.endpoint,item.node]);resolve()}),(error=>{this.emitter.trigger("api.re621.result-"+item.index,[{error:error&&error[0]?error[1]+" "+error[0].error:"unknown error"},error&&error[0]?error[1]:500,item.endpoint,item.node]),resolve()}))})),await Util_1.Util.sleep(item.delay)}this.processing=!1}}}var FormattedAPIQuery;exports.E621=E621,E621.requestRateLimit=1e3,E621.Posts=E621.getEndpoint("posts"),E621.Post=E621.getEndpoint("post"),E621.PostVotes=E621.getEndpoint("post_votes"),E621.Tags=E621.getEndpoint("tags"),E621.Tag=E621.getEndpoint("tag"),E621.TagAliases=E621.getEndpoint("tag_aliases"),E621.TagImplications=E621.getEndpoint("tag_implications"),E621.TagPreview=E621.getEndpoint("tag_preview"),E621.Notes=E621.getEndpoint("notes"),E621.Favorites=E621.getEndpoint("favorites"),E621.Favorite=E621.getEndpoint("favorite"),E621.Pools=E621.getEndpoint("pools"),E621.Pool=E621.getEndpoint("pool"),E621.Sets=E621.getEndpoint("sets"),E621.Set=E621.getEndpoint("set"),E621.SetAddPost=E621.getEndpoint("set_add_post"),E621.SetRemovePost=E621.getEndpoint("set_remove_post"),E621.Users=E621.getEndpoint("users"),E621.User=E621.getEndpoint("user"),E621.Blips=E621.getEndpoint("blips"),E621.Wiki=E621.getEndpoint("wiki_pages"),E621.Comments=E621.getEndpoint("comments"),E621.Comment=E621.getEndpoint("comment"),E621.ForumPosts=E621.getEndpoint("forum_posts"),E621.ForumPost=E621.getEndpoint("forum_post"),E621.ForumTopics=E621.getEndpoint("forum_topics"),E621.ForumTopic=E621.getEndpoint("forum_topic"),E621.DTextPreview=E621.getEndpoint("dtext_preview"),E621.IQDBQueries=E621.getEndpoint("iqdb_queries"),function(FormattedAPIQuery){FormattedAPIQuery.stringify=function(input){const result=[];for(const[key,value]of Object.entries(input))result.push(key+"="+value);return result.join("&")}}(FormattedAPIQuery||(FormattedAPIQuery={}))},{"../utility/Debug":34,"../utility/Util":38}],6:[function(require,module,exports){"use strict";var _a;Object.defineProperty(exports,"__esModule",{value:!0});const XM_1=require("./XM");class LocalStorage{static size(){let _xLen,_x,_lsTotal=0;for(_x in localStorage)_xLen=2*((localStorage[_x].length||0)+(_x.length||0)),_lsTotal+=_xLen;return _lsTotal}}exports.default=LocalStorage,_a=LocalStorage,LocalStorage.LS=XM_1.XM.Window.localStorage,LocalStorage.Index={d0:"r6.dnp.expires",d1:"r6.dnp.version",d2:"r6.dnp.created",d3:"r6.dnp.cache"},LocalStorage.get=name=>_a.LS.getItem(name),LocalStorage.set=(name,value)=>_a.LS.setItem(name,value),LocalStorage.remove=name=>_a.LS.removeItem(name),LocalStorage.DNP={get Expires(){return parseInt(LocalStorage.get(LocalStorage.Index.d0))||0},set Expires(value){0==value?LocalStorage.remove(LocalStorage.Index.d0):LocalStorage.set(LocalStorage.Index.d0,value+"")},get Version(){return parseInt(LocalStorage.get(LocalStorage.Index.d1))||0},set Version(value){0==value?LocalStorage.remove(LocalStorage.Index.d1):LocalStorage.set(LocalStorage.Index.d1,value+"")},get CreatedAt(){return parseInt(LocalStorage.get(LocalStorage.Index.d2))||0},set CreatedAt(value){0==value?LocalStorage.remove(LocalStorage.Index.d2):LocalStorage.set(LocalStorage.Index.d2,value+"")},get Cache(){let data;try{data=JSON.parse(LocalStorage.get(LocalStorage.Index.d3)||"[]")}catch(error){return console.error("Unable to parse DNP cache (1)"),LocalStorage.DNP.clear(),new Set}return Array.isArray(data)?new Set(data):(console.error("Unable to parse DNP cache (2)"),LocalStorage.DNP.clear(),new Set)},set Cache(value){const text=JSON.stringify(Array.from(value));"[]"==text?LocalStorage.remove(LocalStorage.Index.d3):LocalStorage.set(LocalStorage.Index.d3,text)},clear(){LocalStorage.remove(LocalStorage.Index.d0),LocalStorage.remove(LocalStorage.Index.d1),LocalStorage.remove(LocalStorage.Index.d2),LocalStorage.remove(LocalStorage.Index.d3)}}},{"./XM":7}],7:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.XM=void 0;const XMChrome_1=require("./XMChrome"),XMConnect_1=require("./XMConnect"),XMStorage_1=require("./XMStorage"),XMUtil_1=require("./XMUtil");class XM{static info(){return"undefined"==typeof GM?{script:null,scriptMetaStr:null,scriptHandler:window.re621.type,version:"1.0"}:GM.info}static isUserscript(){return"script"==window.re621.type}}exports.XM=XM,XM.Storage=XMStorage_1.XMStorage,XM.Connect=XMConnect_1.XMConnect,XM.Util=XMUtil_1.XMUtil,XM.Chrome=XMChrome_1.XMChrome,XM.Window="undefined"==typeof unsafeWindow?window:unsafeWindow},{"./XMChrome":8,"./XMConnect":9,"./XMStorage":10,"./XMUtil":11}],8:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.XMChrome=void 0;const Util_1=require("../utility/Util");class XMChrome{static async execBackgroundRequest(component,module,method,args){return new Promise((resolve=>{chrome.runtime.sendMessage(XMChrome.formatRequestData(component,module,method,args),(response=>{XMChrome.requests=XMChrome.requests.filter((e=>e!==response.eventID)),resolve(response.data)}))}))}static async execBackgroundConnection(component){return Promise.resolve(chrome.runtime.connect({name:component}))}static async execInjectorRequest(component,module,method,args){return new Promise((resolve=>{const request=XMChrome.formatRequestData(component,module,method,args),callback=function(event){const response=event.detail;document.removeEventListener("re621.chrome.message.response-"+response.eventID,callback),XMChrome.requests=XMChrome.requests.filter((e=>e!==response.eventID)),resolve(response.data)};document.addEventListener("re621.chrome.message.response-"+request.eventID,callback),document.dispatchEvent(new CustomEvent("re621.chrome.message",{detail:request}))}))}static formatRequestData(component,module,method,args){return{component:component,module:module,method:method,eventID:function(){let id;do{id=Util_1.Util.ID.make(8,!1)}while(XMChrome.requests.includes(id));return XMChrome.requests.push(id),id}(),args:void 0===args?[]:args}}static getResourceURL(name){return chrome.extension.getURL(name)}static download(url,name,saveAs){return chrome.downloads.download({url:url,filename:name,saveAs:saveAs})}}exports.XMChrome=XMChrome,XMChrome.requests=[]},{"../utility/Util":38}],9:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.XMConnect=void 0;const Debug_1=require("../utility/Debug"),XM_1=require("./XM");class XMConnect{static xmlHttpRequest(details){Debug_1.Debug.connectLog(details.url);const validDetails=XMConnect.validateXHRDetails(details);"undefined"!=typeof GM&&"function"==typeof GM.xmlHttpRequest?GM.xmlHttpRequest(validDetails):"function"==typeof GM_xmlhttpRequest?GM_xmlhttpRequest(validDetails):XM_1.XM.Chrome.execBackgroundConnection("XHR").then((port=>{port.postMessage(validDetails),port.onMessage.addListener((async response=>{"onload"===response.event&&("blob"===details.responseType?response.response=await fetch(response.response).then((r=>r.blob())):"arraybuffer"===details.responseType&&(response.response=await fetch(response.response).then((r=>r.arrayBuffer()))),URL.revokeObjectURL(response.responseURL)),details[response.event](response)}))}))}static xmlHttpPromise(details){const validDetails=XMConnect.validateXHRDetails(details);return new Promise(((resolve,reject)=>{const callbacks={onabort:validDetails.onabort,onerror:validDetails.onerror,onload:validDetails.onload,onloadstart:validDetails.onloadstart,onprogress:validDetails.onprogress,onreadystatechange:validDetails.onreadystatechange,ontimeout:validDetails.ontimeout};details.onabort=event=>{callbacks.onabort(event),reject(event)},details.onerror=event=>{callbacks.onerror(event),reject(event)},details.onload=event=>{callbacks.onload(event),resolve(event)},details.onloadstart=event=>{callbacks.onloadstart(event)},details.onprogress=event=>{callbacks.onprogress(event)},details.onreadystatechange=event=>{callbacks.onreadystatechange(event)},details.ontimeout=event=>{callbacks.ontimeout(event),reject(event)},XMConnect.xmlHttpRequest(validDetails)}))}static validateXHRDetails(details){return void 0===details.headers&&(details.headers={}),void 0===details.headers["User-Agent"]&&(details.headers["User-Agent"]=window.re621.useragent,details.headers["X-User-Agent"]=window.re621.useragent),void 0===details.onabort&&(details.onabort=()=>{}),void 0===details.onerror&&(details.onerror=()=>{}),void 0===details.onload&&(details.onload=()=>{}),void 0===details.onloadstart&&(details.onloadstart=()=>{}),void 0===details.onprogress&&(details.onprogress=()=>{}),void 0===details.onreadystatechange&&(details.onreadystatechange=()=>{}),void 0===details.ontimeout&&(details.ontimeout=()=>{}),details}static async getResourceText(name){return"function"==typeof GM_getResourceText?Promise.resolve(GM_getResourceText(name)):"undefined"!=typeof GM?XMConnect.getResourceTextGM(name):XMConnect.xmlHttpPromise({url:window.resources[name].startsWith("http")?window.resources[name]:XM_1.XM.Chrome.getResourceURL(window.resources[name]),method:"GET"}).then((data=>Promise.resolve(data.responseText)),(error=>Promise.reject(error.status+" "+error.statusText)))}static async getResourceTextGM(name){const resource="function"==typeof GM.getResourceUrl?await GM.getResourceUrl(name):GM_getResourceURL(name);return resource.startsWith("data:")?Promise.resolve(atob(resource.replace(/^data:(.*);base64,/g,""))):resource.startsWith("blob:")?new Promise((async(resolve,reject)=>{const request=await fetch(resource,{credentials:"include",headers:{"Content-Type":"application/x-www-form-urlencoded","User-Agent":window.re621.useragent,"X-User-Agent":window.re621.useragent},method:"GET",mode:"cors"});request.ok?resolve(await request.text()):reject()})):Promise.reject()}static async getResourceJSON(name){return XMConnect.getResourceText(name).then((resolved=>Promise.resolve(JSON.parse(resolved))),(rejected=>Promise.reject(rejected)))}static download(a,b){let timer;"string"==typeof a&&(a={url:a,name:b}),void 0===a.headers&&(a.headers={"User-Agent":window.re621.useragent,"X-User-Agent":window.re621.useragent}),void 0===a.onerror&&(a.onerror=()=>{}),void 0===a.onload&&(a.onload=()=>{}),void 0===a.onprogress&&(a.onprogress=()=>{}),void 0===a.ontimeout&&(a.ontimeout=()=>{}),XMConnect.xmlHttpRequest({url:a.url,method:"GET",headers:a.headers,responseType:"blob",onerror:event=>{a.onerror(event)},ontimeout:event=>{a.ontimeout(event)},onprogress:event=>{timer&&clearTimeout(timer),timer=window.setTimeout((()=>{a.onprogress(event)}),500)},onload:event=>{a.onload(event);const btn=$("<a>").attr({href:URL.createObjectURL(event.response),download:a.name}).html("download").on("click",(()=>{btn.remove()}));btn[0].click()}})}static browserDownload(a,b,c){Debug_1.Debug.getState("vivaldi")&&XM_1.XM.Connect.download(a,b);("string"==typeof a?{url:a,name:b,saveAs:c}:a).onerror=event=>{if("not_whitelisted"==event.error)XM_1.XM.Connect.download(a,b);else{if(!a.onerror)throw"Error: unable to download file"+(event.error?` [${event.error}]`:"");a.onerror(event)}},"function"==typeof GM_download?GM_download(a):XM_1.XM.Chrome.download(a,b,c)}}exports.XMConnect=XMConnect},{"../utility/Debug":34,"./XM":7}],10:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.XMStorage=void 0;exports.XMStorage=class{static async setValue(name,value){return new Promise((async resolve=>{"undefined"==typeof GM?await new Promise((resolve=>{chrome.storage.sync.set({[name]:value},(()=>{resolve()}))})):await GM.setValue(name,value),resolve(!0)}))}static async getValue(name,defaultValue){return new Promise((async resolve=>{"undefined"==typeof GM?chrome.storage.sync.get(name,(result=>{void 0===result[name]?resolve(Promise.resolve(defaultValue)):resolve(Promise.resolve(result[name]))})):resolve(GM.getValue(name,defaultValue))}))}static async deleteValue(name){return new Promise((async resolve=>{"undefined"==typeof GM?await new Promise((resolve=>{chrome.storage.sync.set({name:void 0},(()=>{resolve()}))})):await GM.deleteValue(name),resolve()}))}static addListener(name,callback){if("undefined"!=typeof GM_addValueChangeListener)return GM_addValueChangeListener(name,callback);chrome.storage.onChanged.addListener((function(changes){for(const key in changes){if(key!==name)return;callback(key,changes[key].oldValue,changes[key].newValue,!0)}}))}static removeListener(listenerId){"undefined"!=typeof GM_removeValueChangeListener&&GM_removeValueChangeListener(listenerId)}}},{}],11:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.XMUtil=void 0;const XM_1=require("./XM");exports.XMUtil=class{static openInTab(path,active=!0){"undefined"==typeof GM?XM_1.XM.Chrome.execBackgroundRequest("XM","Util","openInTab",[path,active]):GM.openInTab(path,{active:active})}static setClipboard(data,info){"undefined"==typeof GM?XM_1.XM.Chrome.execBackgroundRequest("XM","Util","setClipboard",[data]):GM.setClipboard(data,info)}}},{"./XM":7}],12:[function(require,module,exports){"use strict";var PostRatingAliases;Object.defineProperty(exports,"__esModule",{value:!0}),exports.APIPost=exports.PostFlag=exports.PostRating=void 0,function(PostRating){PostRating.Safe="s",PostRating.Questionable="q",PostRating.Explicit="e"}(exports.PostRating||(exports.PostRating={})),function(PostRatingAliases){PostRatingAliases.s="s",PostRatingAliases.safe="s",PostRatingAliases.q="q",PostRatingAliases.questionable="q",PostRatingAliases.e="e",PostRatingAliases.explicit="e"}(PostRatingAliases||(PostRatingAliases={})),function(PostFlag){PostFlag.Pending="pending",PostFlag.Flagged="flagged",PostFlag.Deleted="deleted"}(exports.PostFlag||(exports.PostFlag={})),function(PostFlag){PostFlag.get=function(post){const flags=new Set;return post.flags.deleted&&flags.add(PostFlag.Deleted),post.flags.flagged&&flags.add(PostFlag.Flagged),post.flags.pending&&flags.add(PostFlag.Pending),flags},PostFlag.getString=function(post){return[...PostFlag.get(post)].join(" ")},PostFlag.fromSingle=function(input){switch(input=input.toLowerCase().trim()){case"pending":return PostFlag.Pending;case"flagged":return PostFlag.Flagged;case"deleted":return PostFlag.Deleted}return null},PostFlag.fromString=function(input){const parts=new Set(input.split(" ")),flags=new Set;return parts.has("deleted")&&flags.add(PostFlag.Deleted),parts.has("flagged")&&flags.add(PostFlag.Flagged),parts.has("pending")&&flags.add(PostFlag.Pending),flags}}(exports.PostFlag||(exports.PostFlag={})),function(PostRating){PostRating.fromValue=function(value){return PostRatingAliases[value]},PostRating.toString=function(postRating){for(const key of Object.keys(PostRating))if(PostRating[key]===postRating)return key},PostRating.toFullString=function(postRating){switch(postRating.toLowerCase()){case"s":return"safe";case"q":return"questionable";case"e":return"explicit"}return null}}(exports.PostRating||(exports.PostRating={})),function(APIPost){APIPost.getTags=function(post){return[...post.tags.artist,...post.tags.character,...post.tags.copyright,...post.tags.general,...post.tags.invalid,...post.tags.lore,...post.tags.meta,...post.tags.species]},APIPost.getTagString=function(post){return APIPost.getTags(post).join(" ")},APIPost.getTagSet=function(post){return new Set(APIPost.getTags(post))}}(exports.APIPost||(exports.APIPost={}))},{}],13:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.TagCategory=void 0,function(TagCategory){TagCategory[TagCategory.Unknown=-1]="Unknown",TagCategory[TagCategory.General=0]="General",TagCategory[TagCategory.Artist=1]="Artist",TagCategory[TagCategory.Copyright=3]="Copyright",TagCategory[TagCategory.Character=4]="Character",TagCategory[TagCategory.Species=5]="Species",TagCategory[TagCategory.Invalid=6]="Invalid",TagCategory[TagCategory.Meta=7]="Meta",TagCategory[TagCategory.Lore=8]="Lore"}(exports.TagCategory||(exports.TagCategory={}))},{}],14:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0});const LocalStorage_1=require("../api/LocalStorage"),XM_1=require("../api/XM"),ErrorHandler_1=require("../utility/ErrorHandler"),Util_1=require("../utility/Util");class AvoidPosting{static get Version(){return LocalStorage_1.default.DNP.Version}static get CreatedAt(){return LocalStorage_1.default.DNP.CreatedAt}static get Cache(){return this.CachedList||(this.CachedList=LocalStorage_1.default.DNP.Cache),new Set(this.CachedList)}static get size(){return this.Cache.size}static has(value){return this.Cache.has(value)}static async init(){if(!(LocalStorage_1.default.DNP.Expires>Util_1.Util.Time.now()))try{const versionData=await XM_1.XM.Connect.xmlHttpPromise({url:this.baseURL+"version/",method:"GET"});let json;try{json=JSON.parse(versionData.responseText)}catch(error){return passTime()}if(!json.version||json.version<this.Version)return passTime();const dnpData=await XM_1.XM.Connect.xmlHttpPromise({url:this.baseURL,method:"GET"});try{json=JSON.parse(dnpData.responseText)}catch(error){return passTime()}if(!json.data||!Array.isArray)return passTime();LocalStorage_1.default.DNP.Version=json.version||0,LocalStorage_1.default.DNP.CreatedAt=json.from||0,LocalStorage_1.default.DNP.Cache=new Set(json.data),passTime()}catch(error){ErrorHandler_1.ErrorHandler.log("[AvoidPosting] Failed to load assets",error),LocalStorage_1.default.DNP.Expires=Util_1.Util.Time.now()+5*Util_1.Util.Time.MINUTE}function passTime(){LocalStorage_1.default.DNP.Expires=Util_1.Util.Time.now()+Util_1.Util.Time.DAY}}}exports.default=AvoidPosting,AvoidPosting.baseURL="https://re621.app/cache/dnp/"},{"../api/LocalStorage":6,"../api/XM":7,"../utility/ErrorHandler":35,"../utility/Util":38}],15:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0});class RelationsCache{constructor(){this.data={}}static get(){return this.instance||(this.instance=new RelationsCache),this.instance}static resolve(tag){return this.get().data[tag]}static has(tag){return void 0!==this.get().data[tag]}static intersect(tags){const data=this.get().data,has={},lacks=[];for(const tag of tags){const tagData=data[tag.name];void 0===tagData?lacks.push(tag.name):has[tag.name]=tagData}return{has:has,lacks:lacks}}static add(tag,data){this.get().data[tag]=data}}exports.default=RelationsCache},{}],16:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.TagCache=void 0;const Debug_1=require("../utility/Debug"),Util_1=require("../utility/Util");class TagCache{static getCache(){return null==TagCache.cache&&TagCache.load(),TagCache.cache}static load(){TagCache.cache=new Map(JSON.parse(Util_1.Util.LS.getItem("re621.tagcache")||"[]"));const now=Util_1.Util.Time.now();let pruned=0;for(const[name,data]of TagCache.cache)data.expires<now&&(TagCache.cache.delete(name),pruned++);Debug_1.Debug.log(`TagCache loaded, ${TagCache.cache.size}, ${pruned} pruned`)}static save(){Util_1.Util.LS.setItem("re621.tagcache",JSON.stringify(Array.from(TagCache.getCache().entries()))),Debug_1.Debug.log(`TagCache saved, ${TagCache.cache.size}`)}static clear(){TagCache.getCache().clear(),TagCache.save()}static has(tag){return TagCache.getCache().has(tag)}static get(tag){return TagCache.getCache().has(tag)?TagCache.getCache().get(tag):null}static add(tag,count,category){TagCache.getCache().set(tag,{count:count,category:category,expires:Util_1.Util.Time.now()+(count>1e5?Util_1.Util.Time.WEEK:Util_1.Util.Time.DAY)})}}exports.TagCache=TagCache},{"../utility/Debug":34,"../utility/Util":38}],17:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.TagSuggestionsTools=exports.TagSuggestionsList=void 0,exports.TagSuggestionsList={"multiple_images|multiple_scenes":{has:["solo","duo","group"],matchCount:2,not:["multiple_images","multiple_scenes"]},butt:{has:"presenting_hindquarters"},"non-mammal_breasts":{has:["breasts",/^(reptile|lizard|marine|avian|arthropod|flora_fauna|insect)$/]},nipples:{has:/^(breasts|teats)$/,not:["featureless_breasts","clothed"]},areola:{has:"nipples"},penis:{has:/(handjob|fellatio|penile|knot|medial_ring|penis)/},pussy:{has:/vaginal/},"erection|flaccid|half-erect":{has:/penis|penile/,not:["erection","flaccid","half-erect"]},canine_penis:{has:"knot"},sheath:{has:"canine_penis"},equine_penis:{has:"medial_ring"},knotted_equine_penis:{has:["medial_ring","knot"]},medial_ring:{has:"equine_penis"},flared_penis:{has:"equine_penis"},hooves:{has:/^(underhoof|fetlocks)$/},paws:{has:"claws"},countershade_fur:{has:[/^countershad(e|ing)/,/fur/]},countershade_scales:{has:[/^countershad(e|ing)/,/scales/]},biped:{has:"anthro",not:/^(uniped|triped)$/},quadruped:{has:"feral",not:/^(hexapod|semi-anthro)$/},legless:{has:/^(naga|lamia|merfolk)$/},faceless_anthro:{has:[/^faceless_/,"anthro"]},faceless_human:{has:[/^faceless_/,"human"]},faceless_humanoid:{has:[/^faceless_/,"humanoid"]},faceless_feral:{has:[/^faceless_/,"feral"]},faceless_taur:{has:[/^faceless_/,"taur"]},faceless_male:{has:[/^faceless_/,"male"]},faceless_female:{has:[/^faceless_/,"female"]},faceless_ambiguous:{has:[/^faceless_/,"ambiguous_gender"]},faceless_gynomorph:{has:[/^faceless_/,"gynomorph"]},faceless_andromorph:{has:[/^faceless_/,"andromorph"]},faceless_herm:{has:[/^faceless_/,"herm"]},faceless_maleherm:{has:[/^faceless_/,"maleherm"]},smaller_anthro:{has:[/^smaller_/,"anthro"]},smaller_human:{has:[/^smaller_/,"human"]},smaller_humanoid:{has:[/^smaller_/,"humanoid"]},smaller_feral:{has:[/^smaller_/,"feral"]},smaller_taur:{has:[/^smaller_/,"taur"]},smaller_male:{has:[/^smaller_/,"male"]},smaller_female:{has:[/^smaller_/,"female"]},smaller_ambiguous:{has:[/^smaller_/,"ambiguous_gender"]},smaller_gynomorph:{has:[/^smaller_/,"gynomorph"]},smaller_andromorph:{has:[/^smaller_/,"andromorph"]},smaller_herm:{has:[/^smaller_/,"herm"]},smaller_maleherm:{has:[/^smaller_/,"maleherm"]},larger_anthro:{has:[/^larger_/,"anthro"]},larger_human:{has:[/^larger_/,"human"]},larger_humanoid:{has:[/^larger_/,"humanoid"]},larger_feral:{has:[/^larger_/,"feral"]},larger_taur:{has:[/^larger_/,"taur"]},larger_male:{has:[/^larger_/,"male"]},larger_female:{has:[/^larger_/,"female"]},larger_ambiguous:{has:[/^larger_/,"ambiguous_gender"]},larger_gynomorph:{has:[/^larger_/,"gynomorph"]},larger_andromorph:{has:[/^larger_/,"andromorph"]},larger_herm:{has:[/^larger_/,"herm"]},larger_maleherm:{has:[/^larger_/,"maleherm"]},mature_anthro:{has:[/^mature_/,"anthro"]},mature_human:{has:[/^mature_/,"human"]},mature_humanoid:{has:[/^mature_/,"humanoid"]},mature_feral:{has:[/^mature_/,"feral"]},mature_taur:{has:[/^mature_/,"taur"]},mature_male:{has:[/^mature_/,"male"]},mature_female:{has:[/^mature_/,"female"]},mature_ambiguous:{has:[/^mature_/,"ambiguous_gender"]},mature_gynomorph:{has:[/^mature_/,"gynomorph"]},mature_andromorph:{has:[/^mature_/,"andromorph"]},mature_herm:{has:[/^mature_/,"herm"]},mature_maleherm:{has:[/^mature_/,"maleherm"]},muscular_anthro:{has:[/^muscular_/,"anthro"]},muscular_human:{has:[/^muscular_/,"human"]},muscular_humanoid:{has:[/^muscular_/,"humanoid"]},muscular_feral:{has:[/^muscular_/,"feral"]},muscular_taur:{has:[/^muscular_/,"taur"]},muscular_male:{has:[/^muscular_/,"male"]},muscular_female:{has:[/^muscular_/,"female"]},muscular_ambiguous:{has:[/^muscular_/,"ambiguous_gender"]},muscular_gynomorph:{has:[/^muscular_/,"gynomorph"]},muscular_andromorph:{has:[/^muscular_/,"andromorph"]},muscular_herm:{has:[/^muscular_/,"herm"]},muscular_maleherm:{has:[/^muscular_/,"maleherm"]},elderly_anthro:{has:[/^elderly_/,"anthro"]},elderly_human:{has:[/^elderly_/,"human"]},elderly_humanoid:{has:[/^elderly_/,"humanoid"]},elderly_feral:{has:[/^elderly_/,"feral"]},elderly_taur:{has:[/^elderly_/,"taur"]},elderly_male:{has:[/^elderly_/,"male"]},elderly_female:{has:[/^elderly_/,"female"]},elderly_ambiguous:{has:[/^elderly_/,"ambiguous_gender"]},elderly_gynomorph:{has:[/^elderly_/,"gynomorph"]},elderly_andromorph:{has:[/^elderly_/,"andromorph"]},elderly_herm:{has:[/^elderly_/,"herm"]},elderly_maleherm:{has:[/^elderly_/,"maleherm"]},older_anthro:{has:[/^older_/,"anthro"]},older_human:{has:[/^older_/,"human"]},older_humanoid:{has:[/^older_/,"humanoid"]},older_feral:{has:[/^older_/,"feral"]},older_taur:{has:[/^older_/,"taur"]},older_male:{has:[/^older_/,"male"]},older_female:{has:[/^older_/,"female"]},older_ambiguous:{has:[/^older_/,"ambiguous_gender"]},older_gynomorph:{has:[/^older_/,"gynomorph"]},older_andromorph:{has:[/^older_/,"andromorph"]},older_herm:{has:[/^older_/,"herm"]},older_maleherm:{has:[/^older_/,"maleherm"]},younger_anthro:{has:[/^younger_/,"anthro"]},younger_human:{has:[/^younger_/,"human"]},younger_humanoid:{has:[/^younger_/,"humanoid"]},younger_feral:{has:[/^younger_/,"feral"]},younger_taur:{has:[/^younger_/,"taur"]},younger_male:{has:[/^younger_/,"male"]},younger_female:{has:[/^younger_/,"female"]},younger_ambiguous:{has:[/^younger_/,"ambiguous_gender"]},younger_gynomorph:{has:[/^younger_/,"gynomorph"]},younger_andromorph:{has:[/^younger_/,"andromorph"]},younger_herm:{has:[/^younger_/,"herm"]},younger_maleherm:{has:[/^younger_/,"maleherm"]},chubby_anthro:{has:[/^chubby_/,"anthro"]},chubby_human:{has:[/^chubby_/,"human"]},chubby_humanoid:{has:[/^chubby_/,"humanoid"]},chubby_feral:{has:[/^chubby_/,"feral"]},chubby_taur:{has:[/^chubby_/,"taur"]},chubby_male:{has:[/^chubby_/,"male"]},chubby_female:{has:[/^chubby_/,"female"]},chubby_ambiguous:{has:[/^chubby_/,"ambiguous_gender"]},chubby_gynomorph:{has:[/^chubby_/,"gynomorph"]},chubby_andromorph:{has:[/^chubby_/,"andromorph"]},chubby_herm:{has:[/^chubby_/,"herm"]},chubby_maleherm:{has:[/^chubby_/,"maleherm"]},overweight_anthro:{has:[/^overweight_/,"anthro"]},overweight_human:{has:[/^overweight_/,"human"]},overweight_humanoid:{has:[/^overweight_/,"humanoid"]},overweight_feral:{has:[/^overweight_/,"feral"]},overweight_taur:{has:[/^overweight_/,"taur"]},overweight_male:{has:[/^overweight_/,"male"]},overweight_female:{has:[/^overweight_/,"female"]},overweight_ambiguous:{has:[/^overweight_/,"ambiguous_gender"]},overweight_gynomorph:{has:[/^overweight_/,"gynomorph"]},overweight_andromorph:{has:[/^overweight_/,"andromorph"]},overweight_herm:{has:[/^overweight_/,"herm"]},overweight_maleherm:{has:[/^overweight_/,"maleherm"]},obese_anthro:{has:[/^obese_/,"anthro"]},obese_human:{has:[/^obese_/,"human"]},obese_humanoid:{has:[/^obese_/,"humanoid"]},obese_feral:{has:[/^obese_/,"feral"]},obese_taur:{has:[/^obese_/,"taur"]},obese_male:{has:[/^obese_/,"male"]},obese_female:{has:[/^obese_/,"female"]},obese_ambiguous:{has:[/^obese_/,"ambiguous_gender"]},obese_gynomorph:{has:[/^obese_/,"gynomorph"]},obese_andromorph:{has:[/^obese_/,"andromorph"]},obese_herm:{has:[/^obese_/,"herm"]},obese_maleherm:{has:[/^obese_/,"maleherm"]},morbidly_obese_anthro:{has:[/^morbidly_obese_/,"anthro"]},morbidly_obese_human:{has:[/^morbidly_obese_/,"human"]},morbidly_obese_humanoid:{has:[/^morbidly_obese_/,"humanoid"]},morbidly_obese_feral:{has:[/^morbidly_obese_/,"feral"]},morbidly_obese_taur:{has:[/^morbidly_obese_/,"taur"]},morbidly_obese_male:{has:[/^morbidly_obese_/,"male"]},morbidly_obese_female:{has:[/^morbidly_obese_/,"female"]},morbidly_obese_ambiguous:{has:[/^morbidly_obese_/,"ambiguous_gender"]},morbidly_obese_gynomorph:{has:[/^morbidly_obese_/,"gynomorph"]},morbidly_obese_andromorph:{has:[/^morbidly_obese_/,"andromorph"]},morbidly_obese_herm:{has:[/^morbidly_obese_/,"herm"]},morbidly_obese_maleherm:{has:[/^morbidly_obese_/,"maleherm"]},athletic_anthro:{has:[/^athletic_/,"anthro"]},athletic_human:{has:[/^athletic_/,"human"]},athletic_humanoid:{has:[/^athletic_/,"humanoid"]},athletic_feral:{has:[/^athletic_/,"feral"]},athletic_taur:{has:[/^athletic_/,"taur"]},athletic_male:{has:[/^athletic_/,"male"]},athletic_female:{has:[/^athletic_/,"female"]},athletic_ambiguous:{has:[/^athletic_/,"ambiguous_gender"]},athletic_gynomorph:{has:[/^athletic_/,"gynomorph"]},athletic_andromorph:{has:[/^athletic_/,"andromorph"]},athletic_herm:{has:[/^athletic_/,"herm"]},athletic_maleherm:{has:[/^athletic_/,"maleherm"]},rear_view:{has:"looking_back"},solo_focus:{has:[/^faceless_/,/^(duo|group)$/]},male_penetrating:{has:/^male_penetrating_.+$/},female_penetrating:{has:/^female_penetrating_.+$/},andromorph_penetrating:{has:/^andromorph_penetrating_.+$/},gynomorph_penetrating:{has:/^gynomorph_penetrating_.+$/},herm_penetrating:{has:/^herm_penetrating_.+$/},maleherm_penetrating:{has:/^maleherm_penetrating_.+$/},ambiguous_penetrating:{has:/^ambiguous_penetrating_.+$/},male_penetrated:{has:/^.+_penetrating_male$/},female_penetrated:{has:/^.+_penetrating_female$/},andromorph_penetrated:{has:/^.+_penetrating_andromorph$/},gynomorph_penetrated:{has:/^.+_penetrating_gynomorph$/},herm_penetrated:{has:/^.+_penetrating_herm$/},maleherm_penetrated:{has:/^.+_penetrating_maleherm$/},ambiguous_penetrated:{has:/^.+_penetrating_ambiguous$/},sex:{has:/^(.+_penetrating_.+|.+_penetration|.+_position|cunnilingus|fellatio|rimming)$/},rape:{has:[/^forced/,/rating:q|rating:e/]},pregnant_sex:{has:["pregnant","sex"]},penile_masturbation:{has:["penis","masturbation"]},vaginal_masturbation:{has:["pussy","masturbation"]},"speech_bubble|thought_bubble":{has:"dialogue"},foreskin:{has:"humanoid_penis"},glans:{has:"humanoid_penis"},knot:{has:"canine_penis"}};exports.TagSuggestionsTools=class{static replacer(key,value){return value instanceof RegExp?"REGEXP:"+value.toString():value}static reviver(key,value){if(value.toString().includes("REGEXP:")){const parts=value.split("REGEXP:")[1].match(/\/(.*)\/(.*)?/);return new RegExp(parts[1],parts[2]||"")}return value}}},{}],18:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.Blacklist=void 0;const BlacklistEnhancer_1=require("../../modules/search/BlacklistEnhancer"),ModuleController_1=require("../ModuleController"),Post_1=require("../post/Post"),PostFilter_1=require("../post/PostFilter"),Util_1=require("../utility/Util"),User_1=require("./User");class Blacklist{constructor(){this.blacklist=new Map;const blacklistMeta=$("head meta[name=blacklisted-tags]");if(!blacklistMeta.length)return void console.warn("Warning: The blacklist failed to load. This may be caused by the blacklist being empty, or by an internal error.");const filters=blacklistMeta.attr("content"),blacklistEnabled="1"!==Util_1.Util.LS.getItem("dab"),options=ModuleController_1.ModuleController.get(BlacklistEnhancer_1.BlacklistEnhancer).fetchSettings(["favorites","uploads","whitelist"]);if(void 0!==filters)for(const filter of JSON.parse(filters)){(filter?filter.trim():"")&&this.createFilter(filter,blacklistEnabled,options)}}static getInstance(){return null==this.instance&&(this.instance=new Blacklist),this.instance}static get(){return this.getInstance().blacklist}static getActiveFilters(){const result=new Map;for(const[tags,filter]of this.getInstance().blacklist)filter.getMatchesCount()>0&&result.set(tags,filter);return result}static addPost(...posts){let count=0;for(const filter of Blacklist.get().values())filter.update(posts)&&count++;return count}static updatePost(...posts){return Blacklist.addPost(...posts)}static checkPost(post,ignoreDisabled=!1){"number"!=typeof post&&(post=post.id);for(const filter of Blacklist.get().values())if(filter.matchesID(post,ignoreDisabled))return!0;return!1}static checkPostAlt(post){"number"!=typeof post&&(post=post.id);let resultType=0;for(const filter of Blacklist.get().values()){const result=filter.matchesIDAlt(post);if(result){if(1==result)return result;resultType=2}}return resultType}static enableAll(){for(const filter of Blacklist.get().values())filter.setEnabled(!0)}static disableAll(){for(const filter of Blacklist.get().values())filter.setEnabled(!1)}createFilter(filter,enabled=!0,options){if(!filter)return;let postFilter=this.blacklist.get(filter);void 0===postFilter&&(postFilter=new PostFilter_1.PostFilter(filter,enabled,options),this.blacklist.set(filter,postFilter))}static createFilter(filter,enabled=!0,options){return this.getInstance().createFilter(filter,enabled,options)}deleteFilter(filter){this.blacklist.delete(filter)}static deleteFilter(filter){return this.getInstance().deleteFilter(filter)}static async toggleBlacklistTag(tagName){let currentBlacklist=(await User_1.User.getCurrentSettings()).blacklisted_tags.split("\n");return-1===currentBlacklist.indexOf(tagName)?(currentBlacklist.push(tagName),Blacklist.createFilter(tagName),Danbooru.notice(`Adding ${getTagLink(tagName)} to blacklist`)):(currentBlacklist=currentBlacklist.filter((e=>e!==tagName)),Blacklist.deleteFilter(tagName),Danbooru.notice(`Removing ${getTagLink(tagName)} from blacklist`)),await User_1.User.setSettings({blacklisted_tags:currentBlacklist.join("\n")}),ModuleController_1.ModuleController.get(BlacklistEnhancer_1.BlacklistEnhancer).isInitialized()&&BlacklistEnhancer_1.BlacklistEnhancer.update(),Post_1.Post.find("all").each((post=>{post.updateVisibility()})),Promise.resolve();function getTagLink(tagName){return tagName.startsWith("id:")?`<a href="/posts/${tagName.substr(3)}" target="_blank" rel="noopener noreferrer">${tagName}</a>`:`<a href="/wiki_pages/show_or_new?title=${tagName}">${tagName}</a>`}}}exports.Blacklist=Blacklist},{"../../modules/search/BlacklistEnhancer":70,"../ModuleController":1,"../post/Post":23,"../post/PostFilter":25,"../utility/Util":38,"./User":22}],19:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.KeybindManager=void 0;const Debug_1=require("../utility/Debug"),Util_1=require("../utility/Util"),validKeys=["1","2","3","4","5","6","7","8","9","0","-","=",".",",","/",";","'","[","]","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","escape","ctrl","alt","shift","return","up","down","left","right"],replacedKeys={enter:"return",control:"ctrl",arrow:"","!":"1","@":"2","#":"3",$:"4","%":"5","^":"6","&":"7","*":"8","(":"9",")":"0",_:"-","+":"=","<":",",">":".","?":"//",":":";",'"':"'","{":"[","}":"]"},replacedRegExp=Util_1.Util.getKeyRegex(replacedKeys);class KeybindManager{static enable(){KeybindManager.enabled=!0}static disable(){KeybindManager.enabled=!1}static block(){KeybindManager.blocked=!0}static register(keybind){if(!KeybindManager.blocked)if(Array.isArray(keybind))for(const entry of keybind)this.register(entry);else{this.refreshListener(keybind.keys,keybind.element,keybind.selector);for(const key of keybind.keys)0!=key.length&&(this.executors.get(key)[keybind.bindMeta]=keybind)}}static unregister(bindMeta){Array.isArray(bindMeta)||(bindMeta=[bindMeta]);for(const executor of this.executors.values())for(const key of Object.keys(executor))bindMeta.includes(key)&&delete executor[key]}static record(callback){KeybindManager.listening=!0;let keys=[];$(document).on("keydown.re621.record",(event=>{const key=event.key.toLowerCase().replace(replacedRegExp,(matched=>replacedKeys[matched]));-1!=validKeys.indexOf(key)&&keys.push(key)})),$(document).on("keyup.re621.record",(()=>{if(0!==keys.length)return $(document).off(".re621.record"),callback(keys),void(KeybindManager.listening=!1);keys=[]}))}static count(sequence){return this.executors.has(sequence)?Object.keys(this.executors.get(sequence)).length:0}static refreshListener(keys,element,selector){for(const key of keys)if(0!=key.length){if(!this.listeners.has(key)){let keydown=!1;this.listeners.set(key,(event=>{if(KeybindManager.listening)return;const listenerExecutor=this.executors.get(key);Debug_1.Debug.log(`[${key}]: triggered ${Object.entries(listenerExecutor).length} executors`);for(const[bindMeta,keyObj]of Object.entries(listenerExecutor))keyObj.enabled&&(keyObj.holdable&&(keydown=!1),keyObj.fnct(event,bindMeta))}));const $element=element?$(element):$(document);selector||(selector=null);let cooldown=null;$element.on("keydown.re621.hotkey-"+key,selector,key,(event=>{if(!keydown&&!cooldown){if(keydown=!0,!KeybindManager.enabled||KeybindManager.listening)return!1;Debug_1.Debug.log(`[${key}]: caught`),this.listeners.get(key)(event),clearTimeout(cooldown),cooldown=setTimeout((()=>{clearTimeout(cooldown),cooldown=null}),50)}})),$element.on("keyup.re621.hotkey-"+key,selector,key,(()=>{keydown=!1})),$(window).on("blur",(()=>{keydown=!1}))}this.executors.has(key)||this.executors.set(key,{})}}}exports.KeybindManager=KeybindManager,KeybindManager.listeners=new Map,KeybindManager.executors=new Map,KeybindManager.enabled=!0,KeybindManager.blocked=!1,KeybindManager.listening=!1},{"../utility/Debug":34,"../utility/Util":38}],20:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.PageDefinition=exports.Page=void 0;class Page{constructor(){this.url=new URL(window.location.toString())}static matches(filter){filter instanceof RegExp&&(filter=[filter]);const pathname=this.getInstance().url.pathname.replace(/[\/?]$/g,"");let result=!1;return filter.forEach((function(constraint){result=result||constraint.test(pathname)})),result}static getURL(){return this.getInstance().url}static getQueryParameter(key){return this.getInstance().url.searchParams.get(key)}static hasQueryParameter(key){return this.getInstance().url.searchParams.has(key)}static setQueryParameter(key,value){this.getInstance().url.searchParams.set(key,value),this.refreshCurrentUrl()}static removeQueryParameter(keys){Array.isArray(keys)||(keys=[keys]);for(const key of keys)this.getInstance().url.searchParams.delete(key);this.refreshCurrentUrl()}static refreshCurrentUrl(){const url=this.getInstance().url,searchPrefix=0===url.searchParams.toString().length?"":"?";history.replaceState({},"",url.origin+url.pathname+searchPrefix+url.searchParams.toString()+url.hash)}static getSiteName(){return this.getInstance().url.hostname.replace(/\.net/g,"")}static getPageID(){return this.getInstance().url.pathname.split("/")[2]}static getInstance(){return void 0===this.instance&&(this.instance=new Page),this.instance}static getPageType(){for(const[name,regex]of Object.entries(exports.PageDefinition))if(Page.matches(regex))return name;return null}}exports.Page=Page,exports.PageDefinition={title:/^(\/)?$/,search:/^\/posts\/?$/,post:/^\/posts\/\d+\/?(show_seq)?$/,upload:/\/uploads\/new\/?/,forum:/^\/forum_topics\/?.*/,forumPost:/^\/forum_topics\/\d+.*/,pool:/^\/pools\/.+/,set:/^\/post_sets\/.+/,popular:/^\/explore\/posts\/popular.?/,favorites:/^\/favorites\/?.*/,wiki:/^\/wiki_pages\/[0-9]+/,wikiNA:/^\/wiki_pages\/show_or_new.*/,artist:/^\/artists\/[0-9]+/,comments:/^\/comments\??.*/,settings:/^\/users\/\.+\/edit$/,changes:/^\/post_versions.*/,tickets:/^\/tickets.*/,profile:/^\/users\/.+$/,iqdb:/^\/iqdb_queries.*/,deleted_posts:/^\/deleted_posts.*/,blips:/^\/blips.*/,help:/^\/help.*/,postConfirmDelete:/^\/moderator\/post\/posts\/.+\/confirm_delete.*/}},{}],21:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.Tag=exports.TagTypes=void 0,function(TagTypes){TagTypes.Artist="artist",TagTypes.Character="character",TagTypes.Copyright="copyright",TagTypes.Species="species",TagTypes.General="general",TagTypes.Meta="meta",TagTypes.Lore="lore"}(exports.TagTypes||(exports.TagTypes={}));class Tag{static isArtist(tag){return-1===Tag.nonArtistTags.indexOf(tag)}static escapeSearchToRegex(string){return new RegExp(string.replace(/[-\/\\^$+?.()|[\]{}]/g,"\\$&").replace(/\*/g,"[\\S]*?"))}}exports.Tag=Tag,Tag.nonArtistTags=["unknown_artist","unknown_artist_signature","unknown_colorist","anonymous_artist","avoid_posting","conditional_dnp","sound_warning","epilepsy_warning"]},{}],22:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.ImageScalingMode=exports.User=void 0;const E621_1=require("../api/E621");class User{static init(){const data=$("body").data();function getValue(name){const el=$(`meta[name="${name}"]`);return 0==el.length?null:el.attr("content")}User.loggedIn=0==data.userIsAnonymous,User.username=data.userName||"Anonymous",User.userID=data.userId||-1,User.level=data.userLevel||0,User.levelString=data.userLevelString||"Anonymous",User.isMember=1==data.userIsMemeber,User.isPrivileged=1==data.userIsPrivileged,User.isContributor=1==data.userIsContributor,User.isJanitor=1==data.userIsJanitor,User.isModerator=1==data.userIsModerator,User.isAdmin=1==data.userIsAdmin,User.isFormerStaff=1==data.userIsFormerStaff,User.isVoter=1==data.userIsVoter,User.isVerified=1==data.userIsVerified,User.isApprover=1==data.userIsApprover,User.isBlocked=1==data.userIsBlocked,User.isBanned=1==data.userIsBanned,User.canSeeDeletedPosts=User.isApprover||User.isJanitor||User.isModerator||User.isAdmin,User.canApprovePosts=1==data.userCanApprovePosts,User.canUploadFree=1==data.userCanUploadFree,User.postsPerPage=data.userPerPage||75,User.commentThreshold=parseInt(getValue("user-comment-threshold"))||3,User.blacklistedTags=getValue("blacklisted-tags"),User.blacklistUsers="true"==getValue("blacklist-users"),User.enableJSNavigation="true"==getValue("enable-js-navigation"),User.enableAutoComplete="true"==getValue("enable-auto-complete"),User.styleUsernames="true"==getValue("style-usernames"),User.defaultImageSize=ImageScalingMode.get(getValue("default-image-size"))}static async getCurrentSettings(){return E621_1.E621.User.id(User.userID).first()}static async setSettings(data){await E621_1.E621.User.id(this.userID).post({user:data,_method:"patch"})}}var ImageScalingMode;exports.User=User,function(ImageScalingMode){ImageScalingMode.Sample="large",ImageScalingMode.FitHeight="fitv",ImageScalingMode.FitWidth="fit",ImageScalingMode.Original="original"}(ImageScalingMode=exports.ImageScalingMode||(exports.ImageScalingMode={})),function(ImageScalingMode){ImageScalingMode.get=function(mode){switch(mode){case"large":return ImageScalingMode.Sample;case"fitv":return ImageScalingMode.FitHeight;case"fit":return ImageScalingMode.FitWidth;case"original":return ImageScalingMode.Original}return ImageScalingMode.Sample}}(ImageScalingMode=exports.ImageScalingMode||(exports.ImageScalingMode={}))},{"../api/E621":5}],23:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.FileExtension=exports.LoadedFileType=exports.PostData=exports.Post=void 0;const PostViewer_1=require("../../modules/post/PostViewer"),BetterSearch_1=require("../../modules/search/BetterSearch"),CustomFlagger_1=require("../../modules/search/CustomFlagger"),APIPost_1=require("../api/responses/APIPost"),Blacklist_1=require("../data/Blacklist"),Tag_1=require("../data/Tag"),ModuleController_1=require("../ModuleController"),Debug_1=require("../utility/Debug"),Util_1=require("../utility/Util"),PostParts_1=require("./PostParts"),PostSet_1=require("./PostSet");class Post{constructor(data,$ref){for(const[key,value]of Object.entries(data))this[key]=value;this.$ref=$ref,this.$ref.data("wfpost",this),this.updateFilters()}update(data){for(const[key,value]of Object.entries(PostData.fromAPI(data)))this[key]=value;return this.updateFilters(),this}isRendered(){return"true"==this.$ref.attr("rendered")}isBlacklisted(){return"true"==this.$ref.attr("blacklisted")}render(){const conf=ModuleController_1.ModuleController.get(BetterSearch_1.BetterSearch).fetchSettings(["imageRatioChange","clickAction","imageLoadMethod","hoverTags","autoPlayGIFs","maxPlayingGIFs","ribbonsFlag","ribbonsRel","buttonsVote","buttonsFav","customFlagsExpanded"]);return conf.upvoteOnFavorite=ModuleController_1.ModuleController.get(PostViewer_1.PostViewer).fetchSettings("upvoteOnFavorite"),PostParts_1.PostParts.cleanup(this),this.$ref.attr({fav:1==this.is_favorited?"true":void 0,rendered:!0}).removeAttr("style").removeAttr("error").html(""),this.$ref.append(PostParts_1.PostParts.renderImage(this,conf)).append(PostParts_1.PostParts.renderRibbons(this,conf)).append(PostParts_1.PostParts.renderButtons(this,conf)).append(PostParts_1.PostParts.renderFlags(this,conf)).append(PostParts_1.PostParts.renderInfo(this)),conf.imageRatioChange||this.$ref.css("--img-ratio",this.img.ratio),this.meta.duration&&this.$ref.css("--duration",this.meta.duration),this.updateVisibility(),this}reset(){return PostParts_1.PostParts.cleanup(this),this.$ref.attr({rendered:!1,loading:!1}).removeAttr("error").html(this.id+"").children().remove(),this.$ref.off("re621:update").off("re621:sync"),this}updateFilters(){return CustomFlagger_1.CustomFlagger.addPost(this),Blacklist_1.Blacklist.addPost(this),this}updateVisibility(){const state=Blacklist_1.Blacklist.checkPostAlt(this.id);return state?1==state?(this.$ref.attr("blacklisted","true"),this.isRendered()&&this.reset()):this.$ref.attr("blacklisted","maybe"):this.$ref.removeAttr("blacklisted"),this}static get(post){if("number"==typeof post){if(0==(post=$("#entry_"+post).first()).length)return null}else if("string"==typeof post)switch(post){case"first":if(0==(post=$("post").first()).length)return null;break;case"last":if(0==(post=$("post").last()).length)return null;break;case"random":{const posts=$("post");if(0==posts.length)return null;const index=Math.floor(Math.random()*posts.length);post=posts.eq(index);break}default:return null}return $(post).data("wfpost")}static getViewingPost(){const container=$("#image-container");return void 0!==container.data("wfpost")?Post.get(container):new Post(PostData.fromDOM(),container)}static find(type){const result=new PostSet_1.PostSet;if("number"==typeof type){for(const elem of $("post").get()){const post=Post.get($(elem));if(post.id==type)break;result.push(post)}return result}switch(type){case"hovering":case"blacklisted":case"rendered":for(const elem of $(`post[${type}=true]`).get())result.push(Post.get($(elem)));break;case"visible":for(const elem of $("post:not([blacklisted=true])").get())result.push(Post.get($(elem)));break;case"existant":for(const elem of $("post:not([deleted=true])").get())result.push(Post.get($(elem)));break;case"all":for(const elem of $("post").get())result.push(Post.get($(elem)))}return result}static make(data,page,imageRatioChange){const post=PostData.fromAPI(data,page);if(!post.file.original&&!post.flags.has(APIPost_1.PostFlag.Deleted))return Debug_1.Debug.log(`Post #${post.id} skipped: no file`),null;const $article=$("<post>").attr({id:"entry_"+post.id,fav:1==post.is_favorited||void 0,vote:void 0,animated:post.meta.animated?"true":void 0,sound:post.meta.sound?"true":void 0,filetype:post.file.ext,deleted:!!post.flags.has(APIPost_1.PostFlag.Deleted)||void 0,rendered:!1,page:page}).data({id:post.id,"large-file-url":post.file.sample,"file-ext":post.file.ext}).html(post.id+"");null==imageRatioChange&&(imageRatioChange=ModuleController_1.ModuleController.get(BetterSearch_1.BetterSearch).fetchSettings("imageRatioChange")),imageRatioChange||$article.css("--img-ratio",post.img.ratio+"");const result=new Post(post,$article);return result.updateFilters(),result.updateVisibility(),result}}var PostData,FileExtension;exports.Post=Post,function(PostData){PostData.fromAPI=function(data,page){const tags=APIPost_1.APIPost.getTagSet(data),flags=APIPost_1.PostFlag.get(data);return{id:data.id,flags:flags,score:{up:data.score.up,down:data.score.down,total:data.score.total},user_score:data.user_score,favorites:data.fav_count,is_favorited:1==data.is_favorited,comments:data.comment_count,rating:APIPost_1.PostRating.fromValue(data.rating),uploader:data.uploader_id,uploaderName:data.uploader_name||"",approver:data.approver_id?data.approver_id:-1,page:page,date:{iso:null==data.created_at?data.updated_at:data.created_at,ago:Util_1.Util.Time.ago(null==data.created_at?data.updated_at:data.created_at),obj:new Date(null==data.created_at?data.updated_at:data.created_at)},tagString:[...tags].sort().join(" "),tags:{all:tags,artist:new Set(data.tags.artist),real_artist:new Set(data.tags.artist.filter((tag=>Tag_1.Tag.isArtist(tag)))),copyright:new Set(data.tags.copyright),species:new Set(data.tags.species),character:new Set(data.tags.character),general:new Set(data.tags.general),invalid:new Set(data.tags.invalid),meta:new Set(data.tags.meta),lore:new Set(data.tags.lore)},tagCategoriesKnown:!0,sources:data.sources,description:data.description,file:{ext:FileExtension.fromString(data.file.ext),md5:data.file.md5,original:data.file.url,sample:data.sample.has?data.sample.url:data.file.url,preview:data.preview.url,size:data.file.size},loaded:void 0,img:{width:data.file.width,height:data.file.height,ratio:Util_1.Util.Math.round(data.file.height/data.file.width,2)},has:{file:null!==data.file.url,children:data.relationships.has_active_children,parent:void 0!==data.relationships.parent_id&&null!==data.relationships.parent_id,sample:data.sample.has},rel:{children:new Set(data.relationships.children),parent:data.relationships.parent_id},meta:{duration:data.duration,animated:tags.has("animated")||"webm"==data.file.ext||"gif"==data.file.ext||"swf"==data.file.ext,sound:tags.has("sound"),interactive:"webm"==data.file.ext||"swf"==data.file.ext},warning:{sound:tags.has("sound_warning"),epilepsy:tags.has("epilepsy_warning")}}},PostData.fromDOM=function(){const $article=$("#image-container"),data=JSON.parse($article.attr("data-post"));data.tags={artist:getTags("artist"),character:getTags("character"),copyright:getTags("copyright"),general:getTags("general"),invalid:getTags("invalid"),lore:getTags("lore"),meta:getTags("meta"),species:getTags("species")},data.uploader_name=$article.attr("data-uploader"),data.sources.length>0&&(data.sources=data.sources[0].split("\n")),data.rating=APIPost_1.PostRating.fromValue($article.attr("data-rating"));const md5=data.file.md5,md52=md5.substr(0,2);data.preview={width:-1,height:-1,url:`https://static1.e621.net/data/preview/${md52}/${md52}/${md5}.jpg`};const positiveVote=$("a.post-vote-up-link span").first(),negativeVote=$("a.post-vote-down-link span").first();return data.user_score=positiveVote.hasClass("score-positive")?1:negativeVote.hasClass("score-negative")?-1:0,PostData.fromAPI(data);function getTags(group){const result=[];for(const element of $(`#tag-list .${group}-tag-list`).children())result.push($(element).find(".search-tag").text().replace(/ /g,"_"));return result}},PostData.fromThumbnail=function($article,cached=!0){if(cached&&$article.data("wfpost"))return $article.data("wfpost");const id=parseInt($article.attr("data-id"))||0,children=new Set,tagString=$article.attr("data-tags")||"",tagSet=new Set(tagString.split(" ")),approverLink=$("#post-information li a.user-post-approver"),approver=approverLink.length>0&&parseInt(approverLink.attr("href").replace("/users/",""))||-1,width=parseInt($article.attr("data-width")),height=parseInt($article.attr("data-height")),extension=FileExtension.fromString($article.attr("data-file-ext"));let md5,urls={};$article.hasClass("post-preview")?($article.attr("data-md5")?md5=$article.attr("data-md5"):$article.attr("data-file-url")&&(md5=$article.attr("data-file-url").substr(36,32)),urls={preview:$article.attr("data-preview-file-url")||null,sample:$article.attr("data-large-file-url")||null,original:$article.attr("data-file-url")||null}):($article.attr("data-md5")?md5=$article.attr("data-md5"):$article.attr("data-preview-url")&&(md5=$article.attr("data-preview-url").substr(44,32)),urls=null==md5?{preview:"/images/deleted-preview.png",sample:"/images/deleted-preview.png",original:"/images/deleted-preview.png"}:{preview:$article.attr("data-preview-url")?$article.attr("data-preview-url"):`https://static1.e621.net/data/preview/${md5.substr(0,2)}/${md5.substr(2,2)}/${md5}.jpg`,sample:$article.attr("data-large-file-url")?$article.attr("data-large-file-url"):width<850||height<850||"gif"==extension?`https://static1.e621.net/data/${md5.substr(0,2)}/${md5.substr(2,2)}/${md5}.${extension}`:`https://static1.e621.net/data/sample/${md5.substr(0,2)}/${md5.substr(2,2)}/${md5}.jpg`,original:`https://static1.e621.net/data/${md5.substr(0,2)}/${md5.substr(2,2)}/${md5}.${extension}`});const rawDate=$article.attr("data-created-at")||"0",score=parseInt($article.attr("data-score")||"0"),result={id:id,flags:APIPost_1.PostFlag.fromString($article.attr("data-flags")||""),score:{up:score>0?score:0,down:score<0?score:0,total:score},user_score:0,favorites:parseInt($article.attr("data-fav-count"))||0,is_favorited:"true"==$article.attr("data-is-favorited"),comments:-1,rating:APIPost_1.PostRating.fromValue($article.attr("data-rating")),uploader:parseInt($article.attr("data-uploader-id"))||0,uploaderName:$article.attr("data-uploader")||"Unknown",approver:approver,page:"-1",date:{iso:rawDate,ago:Util_1.Util.Time.ago(rawDate),obj:new Date(rawDate)},tagString:tagString,tags:{all:tagSet,artist:new Set,real_artist:new Set,copyright:new Set,species:new Set,character:new Set,general:new Set,invalid:new Set,meta:new Set,lore:new Set},tagCategoriesKnown:!1,sources:[],description:"",file:{ext:extension,md5:md5,original:urls.original,sample:urls.sample,preview:urls.preview,size:parseInt($article.attr("data-filesize")||"0")},loaded:void 0,img:{width:width,height:height,ratio:height/width},has:{file:void 0!==$article.attr("data-file-url"),children:$article.hasClass("post-status-has-children")||"true"==$article.attr("data-has-active-children"),parent:$article.hasClass("post-status-has-parent")||void 0!==$article.attr("data-parent-id"),sample:urls.original!==urls.sample},rel:{children:children,parent:parseInt($article.attr("data-parent-id"))||null},meta:{duration:null,animated:tagSet.has("animated")||"webm"==extension||"gif"==extension||"swf"==extension,sound:tagSet.has("sound"),interactive:"webm"==extension||"swf"==extension},warning:{sound:tagSet.has("sound_warning"),epilepsy:tagSet.has("epilepsy_warning")}};return $article.data("wfpost",result),result},PostData.createPreviewUrlFromMd5=function(md5){return""==md5?"https://static1.e621.net/images/download-preview.png":`https://static1.e621.net/data/preview/${md5.substring(0,2)}/${md5.substring(2,4)}/${md5}.jpg`}}(PostData=exports.PostData||(exports.PostData={})),function(LoadedFileType){LoadedFileType.PREVIEW="preview",LoadedFileType.SAMPLE="sample",LoadedFileType.ORIGINAL="original"}(exports.LoadedFileType||(exports.LoadedFileType={})),function(FileExtension){FileExtension.JPG="jpg",FileExtension.PNG="png",FileExtension.GIF="gif",FileExtension.SWF="swf",FileExtension.WEBM="webm"}(FileExtension=exports.FileExtension||(exports.FileExtension={})),function(FileExtension){FileExtension.fromString=function(input){switch(input){case"jpeg":case"jpg":return FileExtension.JPG;case"png":return FileExtension.PNG;case"gif":return FileExtension.GIF;case"swf":return FileExtension.SWF;case"webm":return FileExtension.WEBM}return null}}(FileExtension=exports.FileExtension||(exports.FileExtension={}))},{"../../modules/post/PostViewer":67,"../../modules/search/BetterSearch":69,"../../modules/search/CustomFlagger":71,"../ModuleController":1,"../api/responses/APIPost":12,"../data/Blacklist":18,"../data/Tag":21,"../utility/Debug":34,"../utility/Util":38,"./PostParts":26,"./PostSet":27}],24:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.PostActions=void 0;const E621_1=require("../api/E621"),Debug_1=require("../utility/Debug");class PostActions{static async toggleSet(setID,postID){const setData=await E621_1.E621.Set.id(setID).first({},500);if(null==setData)return Danbooru.error("Error: active set moved or deleted"),Promise.resolve(!1);setData.post_ids.includes(postID)?PostActions.removeSet(setID,postID):PostActions.addSet(setID,postID)}static addSet(setID,postID){return E621_1.E621.SetAddPost.id(setID).post({"post_ids[]":[postID]},500).then((response=>201==response[1]?(Danbooru.notice(`<a href="/post_sets/${setID}">${response[0].name}</a>: post <a href="/posts/${postID}">#${postID}</a> added (${response[0].post_count} total)`),Promise.resolve(!0)):(Danbooru.error(`Error occurred while adding the post to set: ${response[1]}`),Promise.resolve(!1))),(response=>(Danbooru.error(`Error occurred while adding the post to set: ${response[1]}`),Promise.resolve(!1))))}static removeSet(setID,postID){return E621_1.E621.SetRemovePost.id(setID).post({"post_ids[]":[postID]},500).then((response=>201==response[1]?(Danbooru.notice(`<a href="/post_sets/${setID}">${response[0].name}</a>: post <a href="/posts/${postID}">#${postID}</a> removed (${response[0].post_count} total)`),Promise.resolve(!0)):(Danbooru.error(`Error occurred while removing the post from set: ${response[1]}`),Promise.resolve(!1))),(response=>(Danbooru.error(`Error occurred while removing the post from set: ${response[1]}`),Promise.resolve(!1))))}static vote(postID,score,preventUnvote=!1){return new Promise((resolve=>{E621_1.E621.PostVotes.id(postID).post({score:score,no_unvote:preventUnvote}).then((success=>{Debug_1.Debug.log(success),resolve({success:!0,action:success[0].our_score,score:success[0].score,up:success[0].up,down:success[0].down})}),(error=>{console.log(error),resolve({success:!1})}))}))}static addFavorite(postID){return new Promise((resolve=>{E621_1.E621.Favorites.post({post_id:postID}).then((response=>{Debug_1.Debug.log(response),resolve(!0)}),(error=>{console.log(error),resolve(!1)}))}))}static removeFavorite(postID){return new Promise((resolve=>{E621_1.E621.Favorite.id(postID).delete().then((response=>{Debug_1.Debug.log(response),resolve(!0)}),(error=>{console.log(error),resolve(!1)}))}))}}exports.PostActions=PostActions},{"../api/E621":5,"../utility/Debug":34}],25:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.PostFilter=void 0;const APIPost_1=require("../api/responses/APIPost"),Tag_1=require("../data/Tag"),User_1=require("../data/User"),Util_1=require("../utility/Util");exports.PostFilter=class{constructor(input,enabled=!0,options){if(this.input=input.toLowerCase().trim(),this.entries=[],this.enabled=enabled,this.matchIDs=new Set,this.optionals=0,options&&(options.favorites&&this.entries.push({type:FilterType.Fav,value:User_1.User.username,inverted:!0,optional:!1,comparison:ComparisonType.Equals}),options.uploads&&this.entries.push({type:FilterType.UserID,value:User_1.User.userID+"",inverted:!0,optional:!1,comparison:ComparisonType.Equals}),options.whitelist))for(const tag of options.whitelist.split(" "))this.entries.push({type:FilterType.Tag,value:tag,inverted:!0,optional:!1,comparison:ComparisonType.Equals});for(let filter of new Set(this.input.split(" ").filter((e=>""!=e)))){const optional=filter.startsWith("~");optional&&(filter=filter.substring(1),this.optionals++);const inverse=filter.startsWith("-");inverse&&(filter=filter.substring(1));const filterType=FilterType.test(filter);filterType!==FilterType.Tag&&(filter=filter.substring(filterType.length+1));const comparison=ComparisonType.test(filter);if(comparison!==ComparisonType.Equals&&comparison!==ComparisonType.Range&&(filter=filter.substring(comparison.length)),filterType===FilterType.Size)filter=Util_1.Util.Size.unformat(filter)+"";filter=filter.toLowerCase(),this.entries.push({type:filterType,value:filter,inverted:inverse,optional:optional,comparison:comparison})}}getName(){return this.input}update(post,shouldDecrement=!0){if(Array.isArray(post)){let result=!0;for(const entry of post)result=!!this.update(entry)&&result;return result}let result=!1,optionalHits=0;for(const filter of this.entries){const value=filter.value;switch(filter.type){case FilterType.Tag:result=PostFilterUtils.tagsMatchesFilter(post,value);break;case FilterType.Id:result=PostFilterUtils.compareNumbers(post.id,value,filter.comparison);break;case FilterType.Score:result=PostFilterUtils.compareNumbers(post.score.total,value,filter.comparison);break;case FilterType.Fav:result=post.is_favorited;break;case FilterType.FavCount:result=PostFilterUtils.compareNumbers(post.favorites,value,filter.comparison);break;case FilterType.Rating:result=post.rating===APIPost_1.PostRating.fromValue(value);break;case FilterType.Flag:result=post.flags.has(APIPost_1.PostFlag.fromSingle(value));break;case FilterType.Uploader:case FilterType.User:case FilterType.UserID:result=post.uploader===parseInt(value);break;case FilterType.Approver:result=post.approver===parseInt(value);break;case FilterType.Height:result=PostFilterUtils.compareNumbers(post.img.height,value,filter.comparison);break;case FilterType.Width:result=PostFilterUtils.compareNumbers(post.img.width,value,filter.comparison);break;case FilterType.Size:result=PostFilterUtils.compareNumbers(post.file.size,value,filter.comparison);break;case FilterType.Type:result=post.file.ext===value;break;case FilterType.Duration:result=null==post.meta.duration||PostFilterUtils.compareNumbers(post.meta.duration,value,filter.comparison);break;case FilterType.Ratio:result=PostFilterUtils.compareNumbers(post.img.ratio,value,filter.comparison);break;case FilterType.TagCount:result=PostFilterUtils.compareNumbers(post.tags.all.size,value,filter.comparison);break;case FilterType.GenTags:result=post.tagCategoriesKnown&&PostFilterUtils.compareNumbers(post.tags.general.size,value,filter.comparison);break;case FilterType.ArtTags:result=post.tagCategoriesKnown&&PostFilterUtils.compareNumbers(post.tags.artist.size,value,filter.comparison);break;case FilterType.CharTags:result=post.tagCategoriesKnown&&PostFilterUtils.compareNumbers(post.tags.character.size,value,filter.comparison);break;case FilterType.CopyTags:result=post.tagCategoriesKnown&&PostFilterUtils.compareNumbers(post.tags.copyright.size,value,filter.comparison);break;case FilterType.SpecTags:result=post.tagCategoriesKnown&&PostFilterUtils.compareNumbers(post.tags.species.size,value,filter.comparison);break;case FilterType.InvTags:result=post.tagCategoriesKnown&&PostFilterUtils.compareNumbers(post.tags.invalid.size,value,filter.comparison);break;case FilterType.MetaTags:result=post.tagCategoriesKnown&&PostFilterUtils.compareNumbers(post.tags.meta.size,value,filter.comparison);break;default:result=!1}if(filter.inverted&&(result=!result),filter.optional)optionalHits+=result?1:0;else if(!result)break}return this.optionals>0&&(result=(this.entries.length-this.optionals>0||result)&&optionalHits>0),!0===result?this.matchIDs.add(post.id):!1===result&&shouldDecrement&&this.matchIDs.delete(post.id),result}matches(post,ignoreDisabled=!1){return this.matchesID(post.id,ignoreDisabled)}matchesID(id,ignoreDisabled=!1){return(this.enabled||ignoreDisabled)&&this.matchIDs.has(id)}matchesIDAlt(id){return this.matchIDs.has(id)?this.enabled?1:2:0}getMatches(){return this.matchIDs}getMatchesCount(){return this.matchIDs.size}toggleEnabled(){this.enabled=!this.enabled}setEnabled(enabled){this.enabled=enabled}isEnabled(){return this.enabled}};class PostFilterUtils{static compareNumbers(a,b,mode){switch(mode){case ComparisonType.Equals:return a===parseFloat(b);case ComparisonType.Smaller:return a<parseFloat(b);case ComparisonType.EqualsSmaller:return a<=parseFloat(b);case ComparisonType.Larger:return a>parseFloat(b);case ComparisonType.EqualsLarger:return a>=parseFloat(b);case ComparisonType.Range:{const parts=b.split("...");if(2!==parts.length)return!1;console.log(parts);const parsedParts=[];for(const el of parts)parsedParts.push(parseFloat(el));return console.log(parsedParts,Math.min(...parsedParts),Math.max(...parsedParts),a>=Math.min(...parsedParts),a<=Math.max(...parsedParts)),a>=Math.min(...parsedParts)&&a<=Math.max(...parsedParts)}}return!1}static tagsMatchesFilter(post,filter){if(filter.includes("*")){return Tag_1.Tag.escapeSearchToRegex(filter).test(post.tagString)}return post.tags.all.has(filter)}}var FilterType,ComparisonType;!function(FilterType){FilterType.Tag="tag",FilterType.Id="id",FilterType.Score="score",FilterType.Fav="fav",FilterType.FavCount="favcount",FilterType.Rating="rating",FilterType.Flag="status",FilterType.Uploader="uploader",FilterType.User="user",FilterType.UserID="userid",FilterType.Approver="approvedby",FilterType.Height="height",FilterType.Width="width",FilterType.Size="filesize",FilterType.Type="type",FilterType.Duration="duration",FilterType.Ratio="ratio",FilterType.TagCount="tagcount",FilterType.GenTags="gentags",FilterType.ArtTags="arttags",FilterType.CharTags="chartags",FilterType.CopyTags="copytags",FilterType.SpecTags="spectags",FilterType.InvTags="invtags",FilterType.MetaTags="metatags"}(FilterType||(FilterType={})),function(FilterType){FilterType.test=function(input){input=input.toLowerCase();for(const key of Object.keys(FilterType))if(input.startsWith(FilterType[key]+":"))return FilterType[key];return FilterType.Tag}}(FilterType||(FilterType={})),function(ComparisonType){ComparisonType.EqualsSmaller="<=",ComparisonType.EqualsLarger=">=",ComparisonType.Equals="=",ComparisonType.Smaller="<",ComparisonType.Larger=">",ComparisonType.Range="..."}(ComparisonType||(ComparisonType={}));const ComparisonTypeAliases={"<=":ComparisonType.EqualsSmaller,"=<":ComparisonType.EqualsSmaller,">=":ComparisonType.EqualsLarger,"=>":ComparisonType.EqualsLarger,"=":ComparisonType.Equals,"==":ComparisonType.Equals,"<":ComparisonType.Smaller,">":ComparisonType.Larger};!function(ComparisonType){ComparisonType.test=function(input){if(input=input.toLowerCase(),/.+\.\.\..+/.test(input))return ComparisonType.Range;for(const[key,comparison]of Object.entries(ComparisonTypeAliases))if(input.startsWith(key))return comparison;return ComparisonType.Equals}}(ComparisonType||(ComparisonType={}))},{"../api/responses/APIPost":12,"../data/Tag":21,"../data/User":22,"../utility/Util":38}],26:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.PostParts=void 0;const BetterSearch_1=require("../../modules/search/BetterSearch"),CustomFlagger_1=require("../../modules/search/CustomFlagger"),Danbooru_1=require("../api/Danbooru"),APIPost_1=require("../api/responses/APIPost"),XM_1=require("../api/XM"),Blacklist_1=require("../data/Blacklist"),Page_1=require("../data/Page"),User_1=require("../data/User"),Debug_1=require("../utility/Debug"),Util_1=require("../utility/Util"),Post_1=require("./Post"),PostActions_1=require("./PostActions"),PostSet_1=require("./PostSet");class PostParts{static cleanup(post){this.renderedGIFs.delete(post)}static renderImage(post,conf){let query="";Page_1.Page.matches(Page_1.PageDefinition.search)?query=Page_1.Page.getQueryParameter("tags"):Page_1.Page.matches(Page_1.PageDefinition.favorites)&&(query=BetterSearch_1.BetterSearch.originalTags);const $link=$("<a>").attr({href:"/posts/"+post.id+(null!==query?"?q="+query:"")}).append(PostParts.renderImageElement(post,conf)).append($("<post-loading>"));return post.meta.duration&&$("<span>").addClass("video-duration").html(Util_1.Util.Time.formatPlaytime(post.meta.duration)).appendTo($link),(post.meta.sound||post.warning.sound)&&$("<span>").addClass("post-sound").attr({warning:post.warning.sound?"true":void 0,title:post.warning.sound?"loud sound warning":"has sound"}).appendTo($link),conf.clickAction!==BetterSearch_1.ImageClickAction.Disabled&&PostParts.handleDoubleClick($link,post,conf),$link}static handleDoubleClick($link,post,conf){PostParts.bootstrapDoubleClick($link,(()=>{switch(post.$ref.addClass("highlight"),window.setTimeout((()=>post.$ref.removeClass("highlight")),250),conf.clickAction){case BetterSearch_1.ImageClickAction.NewTab:XM_1.XM.Util.openInTab(window.location.origin+$link.attr("href"),!1);break;case BetterSearch_1.ImageClickAction.CopyID:XM_1.XM.Util.setClipboard(post.id+"","text"),Danbooru_1.Danbooru.notice(`Copied post ID to clipboard: <a href="/posts/${post.id}" target="_blank" rel="noopener noreferrer">#${post.id}</a>`);break;case BetterSearch_1.ImageClickAction.Blacklist:Blacklist_1.Blacklist.toggleBlacklistTag("id:"+post.id);break;case BetterSearch_1.ImageClickAction.AddToSet:{const lastSet=parseInt(window.localStorage.getItem("set"));lastSet?PostActions_1.PostActions.addSet(lastSet,post.id):Danbooru_1.Danbooru.error("Error: no set selected");break}case BetterSearch_1.ImageClickAction.ToggleSet:{const lastSet=parseInt(window.localStorage.getItem("set"));lastSet?PostActions_1.PostActions.toggleSet(lastSet,post.id):Danbooru_1.Danbooru.error("Error: no set selected");break}default:$link.off("click.re621.dbl-extra"),$link[0].click()}}),(()=>BetterSearch_1.BetterSearch.isPaused()||"view"!==$("#mode-box-mode").val()))}static renderImageElement(post,conf){post.$ref.attr("loading","true");const $image=$("<img>").attr("src",Util_1.Util.DOM.getPlaceholderImage()).one("load",(()=>{post.$ref.removeAttr("loading"),conf.hoverTags&&$image.attr("title",PostParts.formatHoverText(post))})).one("error",(()=>{post.$ref.removeAttr("loading").attr("error","true"),$image.attr("src",Util_1.Util.DOM.getPlaceholderImage()).off("mouseenter.re621.upscale").off("mouseleave.re621.upscale"),post.loaded=Post_1.LoadedFileType.ORIGINAL}));if(post.flags.has(APIPost_1.PostFlag.Deleted)&&!User_1.User.canSeeDeletedPosts)return post.img.ratio=1,post.loaded=Post_1.LoadedFileType.ORIGINAL,$image;if(post.file.ext===Post_1.FileExtension.SWF)return post.img.ratio=1,post.loaded=Post_1.LoadedFileType.ORIGINAL,$image;const loadedFileType=function(loadedFileType,imageLoadMethod,extension,autoPlayGIFs){if(extension==Post_1.FileExtension.GIF)return autoPlayGIFs?Post_1.LoadedFileType.SAMPLE:Post_1.LoadedFileType.PREVIEW;if(!loadedFileType)return imageLoadMethod==BetterSearch_1.ImageLoadMethod.Always?Post_1.LoadedFileType.SAMPLE:Post_1.LoadedFileType.PREVIEW;switch(imageLoadMethod){case BetterSearch_1.ImageLoadMethod.Always:return Post_1.LoadedFileType.SAMPLE;case BetterSearch_1.ImageLoadMethod.Disabled:return Post_1.LoadedFileType.PREVIEW}return loadedFileType}(post.loaded,conf.imageLoadMethod,post.file.ext,conf.autoPlayGIFs);if($image.attr("src",loadedFileType==Post_1.LoadedFileType.SAMPLE?post.file.sample:post.file.preview),post.loaded=loadedFileType,"gif"===post.file.ext&&!conf.autoPlayGIFs){if(post.loaded==Post_1.LoadedFileType.SAMPLE)$image.attr("src",post.file.sample);else{let timer;$image.attr("src",post.file.preview),post.loaded=Post_1.LoadedFileType.PREVIEW,$image.on("mouseenter.re621.upscale",(()=>{timer=window.setTimeout((()=>{post.$ref.attr("loading","true"),$image.attr("src",post.file.sample).on("load",(()=>{if(post.$ref.removeAttr("loading"),$image.off("mouseenter.re621.upscale").off("mouseleave.re621.upscale"),"number"==typeof conf.maxPlayingGIFs&&-1!=conf.maxPlayingGIFs&&(PostParts.renderedGIFs.push(post),PostParts.renderedGIFs.size()>conf.maxPlayingGIFs)){const trimmed=PostParts.renderedGIFs.shift();if(trimmed.id==post.id)return;trimmed.loaded=Post_1.LoadedFileType.PREVIEW,trimmed.render()}})),post.loaded=Post_1.LoadedFileType.SAMPLE}),200)})),$image.on("mouseleave.re621.upscale",(()=>{window.clearTimeout(timer)}))}return $image}if(conf.imageLoadMethod==BetterSearch_1.ImageLoadMethod.Hover&&post.loaded==Post_1.LoadedFileType.PREVIEW){let timer;$image.on("mouseenter.re621.upscale",(()=>{timer=window.setTimeout((()=>{post.$ref.attr("loading","true"),$image.attr("src",post.file.sample).one("load",(()=>{post.$ref.removeAttr("loading"),$image.off("mouseenter.re621.upscale").off("mouseleave.re621.upscale")})),post.loaded=Post_1.LoadedFileType.SAMPLE}),200)})),$image.on("mouseleave.re621.upscale",(()=>{window.clearTimeout(timer)}))}return $image}static renderRibbons(post,conf){const $ribbons=$("<img-ribbons>");return generateRibbons(post,$ribbons,conf),post.$ref.on("re621:sync.ribbons",(()=>{generateRibbons(post,$ribbons,conf)})),$ribbons;function generateRibbons(post,container,conf){if(container.html(""),conf.ribbonsRel){const relRibbon=$("<ribbon>").addClass("left").html("<span></span>").appendTo(container),relRibbonText=[];post.has.children&&(relRibbon.addClass("has-children"),relRibbonText.push("Child posts")),post.has.parent&&(relRibbon.addClass("has-parent"),relRibbonText.push("Parent posts")),relRibbonText.length>0?relRibbon.attr("title",relRibbonText.join("\n")):relRibbon.remove()}if(conf.ribbonsFlag){const flagRibbon=$("<ribbon>").addClass("right").html("<span></span>").appendTo(container),flagRibbonText=[];post.flags.has(APIPost_1.PostFlag.Flagged)&&(flagRibbon.addClass("is-flagged"),flagRibbonText.push("Flagged")),post.flags.has(APIPost_1.PostFlag.Pending)&&(flagRibbon.addClass("is-pending"),flagRibbonText.push("Pending")),flagRibbonText.length>0?flagRibbon.attr("title",flagRibbonText.join("\n")):flagRibbon.remove()}0==$ribbons.children().length?container.css("display","none"):container.css("display","")}}static renderButtons(post,conf){const $voteBox=$("<post-voting>");if(conf.buttonsVote&&($("<button>").addClass("button voteButton vote score-neutral").attr("action","up").appendTo($voteBox).on("click",(event=>{event.preventDefault();const firstVote=null==post.$ref.attr("vote");PostActions_1.PostActions.vote(post.id,1,firstVote).then((response=>{Debug_1.Debug.log(response),0==response.action?firstVote?post.$ref.attr("vote","1"):post.$ref.attr("vote","0"):post.$ref.attr("vote",response.action),post.score={up:response.up||0,down:response.down||0,total:response.score||0},post.$ref.trigger("re621:update")}),(error=>{Danbooru_1.Danbooru.error("An error occurred while recording the vote"),console.log(error)}))})),$("<button>").addClass("button voteButton vote score-neutral").attr("action","down").appendTo($voteBox).on("click",(event=>{event.preventDefault();const firstVote=null==parseInt(post.$ref.attr("vote"));PostActions_1.PostActions.vote(post.id,-1,firstVote).then((response=>{Debug_1.Debug.log(response),0==response.action?firstVote?post.$ref.attr("vote","-1"):post.$ref.attr("vote","0"):post.$ref.attr("vote",response.action),post.score={up:response.up||0,down:response.down||0,total:response.score||0},post.$ref.trigger("re621:update")}),(error=>{Danbooru_1.Danbooru.error("An error occurred while recording the vote"),console.log(error)}))}))),conf.buttonsFav){let favBlock=!1;const $btn=$("<button>").addClass("button voteButton fav score-neutral").appendTo($voteBox).on("click",(async event=>{event.preventDefault(),favBlock||(favBlock=!0,post.is_favorited?(await PostActions_1.PostActions.removeFavorite(post.id),post.is_favorited=!1,post.$ref.removeAttr("fav"),$btn.removeClass("score-favorite")):(await PostActions_1.PostActions.addFavorite(post.id),post.is_favorited=!0,post.$ref.attr("fav","true"),$btn.addClass("score-favorite"),conf.upvoteOnFavorite&&PostActions_1.PostActions.vote(post.id,1,!0).then((response=>{post.$ref.attr("vote",1),post.score={up:response.up||0,down:response.down||0,total:response.score||0},post.$ref.trigger("re621:update")}))),favBlock=!1)}))}return $voteBox}static renderFlags(post,conf){const $flagBox=$("<post-flags>");for(const flag of CustomFlagger_1.CustomFlagger.getFlags(post))$("<span>").addClass("custom-flag-thumb").toggleClass("expanded",conf.customFlagsExpanded).css("--flag-color",flag.color).attr("title",flag.tags).html(flag.name).appendTo($flagBox);if(0!=$flagBox.children().length)return $flagBox}static renderInfo(post){const $infoBlock=$("<post-info>");return post.$ref.on("re621:update",(()=>{$infoBlock.html(getPostInfo(post))})),$infoBlock.html(getPostInfo(post)),$infoBlock;function getPostInfo(post){return`\n                <span class="post-info-score score-${post.score.total>0?"positive":post.score.total<0?"negative":"neutral"}" title="${post.score.up} up / ${Math.abs(post.score.down)} down">${post.score.total}</span>\n                <span class="post-info-favorites">${post.favorites}</span>\n                <span class="post-info-comments">${post.comments}</span>\n                <span class="post-info-rating rating-${post.rating}">${post.rating}</span>\n            `}}static formatHoverText(post,compact=!1,html=!1){const br=html?"<br>\n":"\n";return compact?`${[...post.tags.artist,...post.tags.copyright].join(" ")} ${[...post.tags.character,...post.tags.species].join(" ")} ${[...post.tags.general,...post.tags.invalid,...post.tags.lore,...post.tags.meta].join(" ")}`:`Post #${post.id}, uploaded on: ${Util_1.Util.Time.format(post.date.iso)} (${post.date.ago})${br}${[...post.tags.artist,...post.tags.copyright].join(" ")}${br}${[...post.tags.character,...post.tags.species].join(" ")}${br}${[...post.tags.general,...post.tags.invalid,...post.tags.lore,...post.tags.meta].join(" ")}${br}`}static bootstrapDoubleClick(target,onDoubleClick,isPaused=(()=>!1)){let attachment,selector,dblclickTimer;if("string"==typeof target)attachment=$("body"),selector=target;else{if(target.length>1){for(const element of target.get())PostParts.bootstrapDoubleClick($(element),onDoubleClick,isPaused);return}attachment=target,target=null}let prevent=!1;attachment.on("click.re621.dbl-extra",selector,(event=>{if(0!==event.button||event.shiftKey||event.ctrlKey||event.altKey||event.metaKey||isPaused())return;event.preventDefault();const $link=$(event.currentTarget);return dblclickTimer=window.setTimeout((()=>{prevent||(attachment.off("click.re621.dbl-extra",selector),$link[0].click()),prevent=!1}),250),!1})),attachment.on("dblclick.re621.dbl-extra",selector,(event=>{if(0!==event.button||event.shiftKey||event.ctrlKey||event.altKey||event.metaKey||isPaused())return;event.preventDefault();const $link=$(event.currentTarget);window.clearTimeout(dblclickTimer),prevent=!0,onDoubleClick($link)}))}static unstrapDoubleClick(target){"string"==typeof target?$("body").off("click.re621.thumbnail",target).off("dblclick.re621.thumbnail",target):target.off("click.re621.thumbnail").off("dblclick.re621.thumbnail")}}exports.PostParts=PostParts,PostParts.renderedGIFs=new PostSet_1.PostSet},{"../../modules/search/BetterSearch":69,"../../modules/search/CustomFlagger":71,"../api/Danbooru":3,"../api/XM":7,"../api/responses/APIPost":12,"../data/Blacklist":18,"../data/Page":20,"../data/User":22,"../utility/Debug":34,"../utility/Util":38,"./Post":23,"./PostActions":24,"./PostSet":27}],27:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.PostSortType=exports.PostSet=void 0;class PostSet{constructor(posts){this.posts=posts||[]}push(post){this.posts.push(post)}pop(){return this.posts.pop()}shift(){return this.posts.shift()}size(){return this.posts.length}reverse(){return new PostSet(this.posts.reverse())}values(){return this.posts.values()}entries(){return this.posts}each(fn){for(const entry of this.posts)fn(entry)}sort(type){switch(type||(type=PostSortType.ID),type){case PostSortType.Size:return this.sort(PostSortType.Size).reverse();case PostSortType.SizeAsc:return new PostSet([...this.posts.sort(((a,b)=>a.file.size-b.file.size))]);case PostSortType.ID:return this.sort(PostSortType.ID).reverse();case PostSortType.IDAsc:return new PostSet([...this.posts.sort(((a,b)=>a.id-b.id))])}return this}delete(needle){const result=[];for(const post of this.posts)post.id!=needle.id&&result.push(post);return this.posts=result,this}}var PostSortType;exports.PostSet=PostSet,function(PostSortType){PostSortType.ID="id",PostSortType.IDAsc="id_asc",PostSortType.Size="size",PostSortType.SizeAsc="size_asc"}(PostSortType=exports.PostSortType||(exports.PostSortType={}))},{}],28:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.CleanSlate=void 0;const XM_1=require("../api/XM"),Keybinds_1=require("../data/Keybinds"),Page_1=require("../data/Page"),Debug_1=require("../utility/Debug"),ErrorHandler_1=require("../utility/ErrorHandler"),Util_1=require("../utility/Util");exports.CleanSlate=class{static async createDOM(){const actions=[];return actions.push({selector:"head",action:async()=>{try{const stylesheet=Util_1.Util.DOM.addStyle(XM_1.XM.isUserscript()?attachedStylesheet:await XM_1.XM.Connect.getResourceText("re621_css"));return $((()=>{stylesheet.appendTo("head")})),Promise.resolve(stylesheet)}catch(error){ErrorHandler_1.ErrorHandler.error("DOM",error.stack,"styles")}"undefined"==typeof GM&&$("<script>").attr("src",XM_1.XM.Chrome.getResourceURL("injector.js")).appendTo("head")}}),actions.push({selector:"body",action:()=>{$("body").attr({re621:!0,"data-th-main":window.localStorage.getItem("theme"),"data-th-extra":window.localStorage.getItem("theme-extra"),"data-th-nav":window.localStorage.getItem("theme-nav")})}}),actions.push({selector:"#page",action:()=>{$("<div>").attr("id","modal-container").prependTo("div#page")}}),actions.push({selector:"#nav",action:()=>{$("#nav").addClass("re621-nav"),$("<menu>").addClass("extra").insertAfter("#nav menu.main");const titlePageRouting=Util_1.Util.LS.getItem("re621.mainpage")||"default";"default"!==titlePageRouting&&$("#nav a.logo").attr("href",titlePageRouting)}}),Page_1.Page.matches([Page_1.PageDefinition.search,Page_1.PageDefinition.favorites])&&"true"===Util_1.Util.LS.getItem("re621.bs.enabled")&&actions.push({selector:"div.paginator menu",action:()=>{$("div.paginator menu").css("display","none").attr("id","paginator-old").appendTo("body"),$("#content").html("")}}),Page_1.Page.matches(Page_1.PageDefinition.post)&&actions.push({selector:"#image-container",action:()=>{"swf"===$("#image-container").attr("data-file-ext")&&Keybinds_1.KeybindManager.block()}}),this.elementsReady(actions)}static async elementsReady(actions){const processed=new Map;for(const action of actions)processed.set(action.selector,action.action);let iterations=0;return new Promise((resolve=>{const observer=new MutationObserver((()=>{for(const[selector,action]of processed.entries())0!=$(selector).length&&(processed.delete(selector),action());iterations++,0==processed.size?(observer.disconnect(),resolve(!0)):iterations>100&&(observer.disconnect(),resolve(!1))}));observer.observe(document,{childList:!0,subtree:!0}),$((()=>{observer.disconnect();for(const action of processed.values())action();resolve(!1)}))}))}static async awaitFocus(){return new Promise((resolve=>{document.hasFocus()||"visible"==document.visibilityState?resolve(!0):(Debug_1.Debug.log("CleanSlate: waiting for focus"),$(window).one("focus",(()=>{Debug_1.Debug.log("CleanSlate: received focus"),resolve(!0)})))}))}}},{"../api/XM":7,"../data/Keybinds":19,"../data/Page":20,"../utility/Debug":34,"../utility/ErrorHandler":35,"../utility/Util":38}],29:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.FormElement=exports.Form=void 0;const XM_1=require("../api/XM"),Keybinds_1=require("../data/Keybinds"),Util_1=require("../utility/Util");class Form{constructor(options,content,onSubmit){options.name||(options.name=Util_1.Util.ID.make()),options.columns||(options.columns=1),options.width||(options.width=options.columns),this.element=$("<form>").addClass("form-section"+(options.wrapper?" "+options.wrapper:"")).attr({id:options.name,columns:1!==options.columns?options.columns:null,formspan:1!==options.width?options.width:null}).on("submit",(event=>{event.preventDefault();const values={};this.inputList.forEach(((input,name)=>{"checkbox"==input.attr("type")?values[name]=input.is(":checked"):values[name]=input.val().toString()})),onSubmit(values,this)})),this.content=content,this.inputList=new Map}render(force=!1){if(this.created&&!force)return this.element;this.element[0].innerHTML="";const formID=this.element.attr("id");for(const entry of this.content)for(const childElem of entry.build(formID,force))childElem.appendTo(this.element);for(const entry of this.content)for(const input of entry.getInputs()){const name=input.attr("name");void 0!==name&&this.inputList.set(name,input)}return this.created=!0,this.element}reset(){this.inputList.forEach((input=>{const defval=input.attr("defval");void 0!==defval&&("checkbox"==input.attr("type")?input.prop("checked","true"==defval):input.val(defval))}))}getInputList(...names){if(0==names.length)return this.inputList;const results=new Map;return this.inputList.forEach(((input,name)=>{names.includes(name)&&results.set(name,input)})),results}static placeholder(width=1){return new Form({columns:width,width:width},[Form.spacer(width)]).render()}static section(options,content){let $label;options.name||(options.name=Util_1.Util.ID.make()),options.columns||(options.columns=1),options.width||(options.width=options.columns),options.label&&($label=FormUtils.makeLabel(options.name,options.label));const $element=$("<form-section>").toggleClass(options.wrapper,options.wrapper).attr({id:options.name,labeled:void 0!==options.label?"":null,columns:1!==options.columns?options.columns:null,colspan:1!==options.width?options.width:null});return new FormElement($element,void 0,$label,content)}static accordion(options,content){let $label;options.name||(options.name=Util_1.Util.ID.make()),options.columns||(options.columns=1),options.width||(options.width=options.columns),options.label&&($label=FormUtils.makeLabel(options.name,options.label));const $element=$("<form-accordion>").toggleClass(options.wrapper,options.wrapper).attr({id:options.name,labeled:void 0!==options.label?"":null,columns:1!==options.columns?options.columns:null,colspan:1!==options.width?options.width:null});return new FormElement($element,void 0,$label,content,void 0,(postElement=>{postElement.accordion({active:options.active,animate:!1,collapsible:!0===options.collapsible,header:"form-header"}),postElement.find("form-section[aria-hidden=false]").css("display","")}))}static accordionTab(options,content){options.name||(options.name=Util_1.Util.ID.make()),options.columns||(options.columns=1),options.width||(options.width=options.columns);const $label=$("<form-header>").attr("for",options.name).html(options.label||"TITLE_ERROR");options.subheader&&$("<span>").addClass("form-collapse-subheader").append(options.subheader).appendTo($label),options.badge&&$("<span>").addClass("form-collapse-badge").append(options.badge).appendTo($label);const $element=$("<form-section>").addClass("collapse-content").attr({id:options.name,labeled:void 0!==options.label?"":null,columns:1!==options.columns?options.columns:null,colspan:1!==options.width?options.width:null});return new FormElement($element,void 0,$label,content)}static collapse(options,content,onActivate){let $label;options.name||(options.name=Util_1.Util.ID.make()),options.columns||(options.columns=1),options.width||(options.width=options.columns),options.label&&($label=FormUtils.makeLabel(options.name,options.label));const $element=$("<form-collapse>").attr({id:options.name,colspan:options.width||1}),header=$("<h3>").addClass("collapse-header").html(options.title||"Details").appendTo($element);options.badge&&$("<span>").addClass("form-collapse-badge").append(options.badge).appendTo(header);const container=$("<form-section>").addClass("collapse-content").attr({labeled:void 0!==options.label?"":null,columns:1!==options.columns?options.columns:null,colspan:1!==options.width?options.width:null}).appendTo($element);return $element.accordion({active:!options.collapsed,animate:!1,collapsible:!0,header:"h3",beforeActivate:()=>{null!=onActivate&&onActivate(header.attr("id"),"true"==header.attr("aria-expanded"))}}),new FormElement($element,void 0,$label,content,container)}static input(options,changed){let $label;options.name||(options.name=Util_1.Util.ID.make()),options.label&&($label=FormUtils.makeLabel(options.name,options.label));const $element=FormUtils.makeInputWrapper(options.label,options.wrapper,options.width),$input=$("<input>").attr({type:"text",id:options.name,name:options.name}).addClass("bg-section color-text").prop("disabled",1==options.disabled).appendTo($element);if(void 0!==options.value&&null!==options.value)switch(typeof options.value){case"function":options.value($input);break;case"object":$input.val(options.value.text());break;case"boolean":options.value=options.value+"";default:$input.val(options.value).attr("defval",options.value)}if(options.title&&$input.attr("title",options.title),options.pattern&&$input.attr("pattern",options.pattern),options.required&&$input.attr("required",""),void 0!==changed){let timer;$input.on("input",(()=>{timer&&clearTimeout(timer),timer=window.setTimeout((()=>{changed($input.val().toString(),$input)}),Form.inputTimeout)}))}return new FormElement($element,$input,$label)}static textarea(options,changed){let $label;options.name||(options.name=Util_1.Util.ID.make()),options.label&&($label=FormUtils.makeLabel(options.name,options.label));const $element=FormUtils.makeInputWrapper(options.label,options.wrapper,options.width),$input=$("<textarea>").attr({type:"text",id:options.name,name:options.name}).addClass("bg-section color-text").prop("disabled",1==options.disabled).appendTo($element);if(void 0!==options.value&&null!==options.value)switch(typeof options.value){case"function":options.value($input);break;case"object":$input.val(options.value.text());break;case"boolean":options.value=options.value+"";default:$input.val(options.value).attr("defval",options.value)}if(options.title&&$input.attr("title",options.title),options.pattern&&$input.attr("pattern",options.pattern),options.required&&$input.attr("required",""),void 0!==changed){let timer;$input.on("input",(()=>{timer&&clearTimeout(timer),timer=window.setTimeout((()=>{changed($input.val().toString(),$input)}),Form.inputTimeout)}))}return new FormElement($element,$input,$label)}static copy(options){let $label;options.name||(options.name=Util_1.Util.ID.make()),options.label&&($label=FormUtils.makeLabel(options.name,options.label));const $element=FormUtils.makeInputWrapper(options.label,options.wrapper,options.width).addClass("copybox"),$input=$("<input>").attr({type:"text",id:options.name,readonly:""}).addClass("bg-section color-text").appendTo($element);if(void 0!==options.value&&null!==options.value)switch(typeof options.value){case"function":options.value($input);break;case"object":$input.val(options.value.text());break;case"boolean":options.value=options.value+"";default:$input.val(options.value).attr("defval",options.value)}const $copyButton=$("<button>").attr({type:"button",id:options.name+"-copy"}).addClass("button btn-neutral border-highlight border-left").html('<i class="far fa-copy"></i>').appendTo($element);let copyTimer;return options.title&&($input.attr("title",options.title),$copyButton.attr("title",options.title)),$($copyButton).on("click",(()=>{XM_1.XM.Util.setClipboard($input.val()),window.clearTimeout(copyTimer),$input.addClass("highlight"),copyTimer=window.setTimeout((()=>$input.removeClass("highlight")),250)})),new FormElement($element,$input,$label)}static key(options,changed){let $label;options.name||(options.name=Util_1.Util.ID.make()),options.label&&($label=FormUtils.makeLabel(options.name,options.label));const $element=FormUtils.makeInputWrapper(options.label,options.wrapper,options.width).addClass("keyinput"),$input=$("<input>").attr({type:"text",id:options.name,readonly:""}).addClass("bg-section color-text").appendTo($element);if(void 0!==options.value&&null!==options.value){switch(typeof options.value){case"function":options.value($input);break;case"object":$input.val(options.value.text());break;case"boolean":options.value=options.value+"";default:$input.val(options.value).attr("defval",options.value)}$input.attr("key",$input.val()+"")}const $warning=$("<span>").addClass("keyinput-warning").attr("title","Duplicate Keybinding").appendTo($element);Keybinds_1.KeybindManager.count($input.val()+"")<=1&&$warning.addClass("display-none");const $recordButton=$("<button>").attr({type:"button",id:options.name+"-key"}).addClass("button btn-neutral border-highlight border-left").html('<i class="far fa-keyboard"></i>').appendTo($element);options.title&&($input.attr("title",options.title),$recordButton.attr("title",options.title));let occupied=!1;return $($recordButton).on("click",(()=>{if(occupied)return;occupied=!0;const duplicates=$(`.keyinput input[key="${$input.val()}"]`);duplicates.length>2?$warning.addClass("display-none"):duplicates.parent().find("span.keyinput-warning").addClass("display-none"),$input.addClass("input-info").val("Recording"),Keybinds_1.KeybindManager.record((sequence=>{if(sequence.includes("escape"))$input.removeClass("input-info").val("").attr("key",""),void 0!==changed&&changed("",$input),occupied=!1;else{const newVal=(input=(input=sequence).join("+").split("+"),(input=[...new Set(input)]).join("+"));$input.removeClass("input-info").val(newVal).attr("key",newVal);const duplicates=$(`.keyinput input[key="${newVal}"]`);duplicates.length>1&&duplicates.parent().find("span.keyinput-warning").removeClass("display-none"),void 0!==changed&&changed(newVal,$input),occupied=!1}var input}))})),new FormElement($element,$input,$label)}static file(options,changed){let $label;options.name||(options.name=Util_1.Util.ID.make()),options.label&&($label=FormUtils.makeLabel(options.name,options.label));const $element=FormUtils.makeInputWrapper(options.label,options.wrapper,options.width).addClass("fileinput"),$input=$("<input>").attr({type:"file",accept:options.accept,id:options.name}).addClass("bg-section color-text").prop("disabled",1==options.disabled).appendTo($element);return options.title&&$input.attr("title",options.title),void 0!==changed&&$input.on("change",(()=>{changed($input.prop("files"),$input)})),new FormElement($element,$input,$label)}static icon(options,content,changed){let $label;options.name||(options.name=Util_1.Util.ID.make()),options.label&&($label=FormUtils.makeLabel(options.name,options.label));const $element=FormUtils.makeInputWrapper(options.label,options.wrapper,options.width),$input=$("<input>").attr({type:"text",id:options.name,name:options.name}).css("display","none").appendTo($element);if(void 0!==options.value&&null!==options.value)switch(typeof options.value){case"function":options.value($input);break;case"object":$input.val(options.value.text());break;case"boolean":options.value=options.value+"";default:$input.val(options.value).attr("defval",options.value)}const $selectContainer=$("<div>").addClass("icon-picker").appendTo($element);for(const key in content)$("<a>").attr("href","#").attr("data-value",key).html(content[key]?"&#x"+content[key]:"&nbsp;").appendTo($selectContainer);return $selectContainer.find("a").on("click",(event=>{event.preventDefault(),$selectContainer.find("a").removeClass("active");const $target=$(event.target);$input.val($target.attr("data-value")),$target.addClass("active"),changed&&changed($input.val().toString(),$input)})),options.value?$selectContainer.find("a[data-value='"+options.value+"']").first().trigger("click"):$selectContainer.find("a").first().trigger("click"),$input.on("re621:form:update",(()=>{console.log("updating",$input.val()),""==$input.val()?$selectContainer.find("a").first().trigger("click"):$selectContainer.find("a[data-value='"+$input.val()+"']").first().trigger("click")})),new FormElement($element,$input,$label)}static button(options,changed){let $label;options.name||(options.name=Util_1.Util.ID.make()),options.label&&($label=FormUtils.makeLabel(options.name,options.label));const $element=FormUtils.makeInputWrapper(options.label,options.wrapper,options.width),$input=$("<button>").attr({id:options.name,type:options.type?options.type:"button"}).addClass("button btn-neutral").prop("disabled",1==options.disabled).appendTo($element);if(void 0!==options.value&&null!==options.value)switch(typeof options.value){case"function":options.value($input);break;case"object":$input.append(options.value);break;case"number":case"boolean":options.value=options.value+"";default:$input.html(options.value).attr("defval",options.value)}return options.title&&$input.attr("title",options.title),void 0!==changed&&$input.on("click",(event=>{event.preventDefault(),changed(!0,$input)})),new FormElement($element,$input,$label)}static checkbox(options,changed){options.name||(options.name=Util_1.Util.ID.make());const $element=FormUtils.makeInputWrapper(void 0,options.wrapper,options.width).addClass("checkbox-switch").toggleClass("input-disabled",1==options.disabled),$input=$("<input>").attr({id:options.name,name:options.name,type:"checkbox"}).addClass("switch").prop("disabled",1==options.disabled).appendTo($element);if(void 0!==options.value&&null!==options.value)switch(typeof options.value){case"function":options.value($input);break;case"object":break;default:$input.prop("checked",options.value).attr("defval",options.value+"")}return $("<label>").attr("for",options.name).addClass("switch").appendTo($element),options.label&&$("<label>").attr("for",options.name).html(options.label).appendTo($element),void 0!==changed&&$input.on("change",(()=>{changed($input.is(":checked"),$input)})),new FormElement($element,$input)}static select(options,content,changed){let $label;options.name||(options.name=Util_1.Util.ID.make()),options.label&&($label=FormUtils.makeLabel(options.name,options.label));const $element=FormUtils.makeInputWrapper(options.label,options.wrapper,options.width),$input=$("<select>").attr({id:options.name,name:options.name}).addClass("button btn-neutral").prop("disabled",1==options.disabled).appendTo($element);if(void 0!==content){"function"==typeof content&&(content=content());for(const key in content)$("<option>").val(key).text(content[key]).appendTo($input)}if(void 0!==options.value&&null!==options.value)switch(typeof options.value){case"function":options.value($input);break;case"object":$input.val(options.value.text());break;case"boolean":options.value=options.value+"";default:$input.val(options.value).attr("defval",options.value)}return options.title&&$input.attr("title",options.title),void 0!==changed&&$input.on("change",(()=>{changed($input.val().toString(),$input)})),new FormElement($element,$input,$label)}static header(text,width){const $element=FormUtils.makeInputWrapper(void 0,void 0,width);return $("<h3>").attr("id",Util_1.Util.ID.make()).addClass("color-text").html(text).appendTo($element),new FormElement($element)}static div(options){let $label;options.name||(options.name=Util_1.Util.ID.make()),options.label&&($label=FormUtils.makeLabel(options.name,options.label));const $element=FormUtils.makeInputWrapper(options.label,options.wrapper,options.width).addClass("text-div").attr("id",options.name);if(void 0!==options.value&&null!==options.value)switch(typeof options.value){case"function":options.value($element);break;case"object":$element.append(options.value);break;case"number":case"boolean":options.value=options.value+"";default:$element.html(options.value)}return new FormElement($element,void 0,$label)}static text(text,width=1,wrapper){return Form.div({value:text,width:width,wrapper:wrapper})}static requiresReload(){return Form.text('<div class="text-center text-bold">Requires a page reload</div>',1,"align-middle")}static subheader(header,subheader,width=1,name,wrapper){return Form.div({value:`<b>${header}</b><br />${subheader}`,width:width,wrapper:"subheader"+(wrapper?" "+wrapper:""),name:name})}static hr(width){const $element=FormUtils.makeInputWrapper(void 0,void 0,width);return $("<hr>").attr("id",Util_1.Util.ID.make()).addClass("color-text-muted").appendTo($element),new FormElement($element)}static spacer(width,unmargin=!1){const $element=FormUtils.makeInputWrapper(void 0,void 0,width);return $("<spacer>").attr("id",Util_1.Util.ID.make()).toggleClass("unmargin",unmargin).appendTo($element),new FormElement($element)}}exports.Form=Form,Form.inputTimeout=500;class FormUtils{static makeLabel(name,text){return $("<label>").attr("for",name).html(text)}static makeInputWrapper(label,wrapper,width=1){return $("<form-input>").addClass(wrapper?" "+wrapper:"").attr({labeled:void 0!==label?"":null,colspan:1!==width?width:null})}}class FormElement{constructor(wrapper,input,label,content,container,postProcessing){this.wrapper=wrapper,this.input=input,this.label=label,this.content=content||[],this.container=container||wrapper,this.postProcessing=postProcessing||(()=>{})}getInput(){return this.input}getInputs(){const result=[];this.input&&result.push(this.input);for(const entry of this.content)result.push(...entry.getInputs());return result}build(parentID,force=!1){if(force||!this.created){for(const entry of this.content)for(const childElem of entry.build(parentID+"-"+this.wrapper.attr("id"),force))childElem.appendTo(this.container);switch(void 0!==this.label&&this.label.attr("for",parentID+"-"+this.label.attr("for")),void 0!==this.input&&this.input.attr("id",parentID+"-"+this.input.attr("id")),this.wrapper.prop("tagName")){case"FORM-INPUT":this.wrapper.attr("id")&&this.wrapper.attr("id",parentID+"-"+this.wrapper.attr("id"));for(const label of this.wrapper.find("> label")){const $subLabel=$(label);$subLabel.attr("for",parentID+"-"+$subLabel.attr("for"))}break;case"FORM-SECTION":case"FORM-ACCORDION":this.wrapper.attr("id",parentID+"-"+this.wrapper.attr("id"))}this.postProcessing(this.wrapper),this.created=!0}return this.label?[this.label,this.wrapper]:[this.wrapper]}}exports.FormElement=FormElement},{"../api/XM":7,"../data/Keybinds":19,"../utility/Util":38}],30:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.Modal=void 0;const Util_1=require("../utility/Util");exports.Modal=class{constructor(config){if(this.triggers=[],this.id=Util_1.Util.ID.make(),this.config=this.validateConfig(config),this.$modal=$("<div>").addClass(config.wrapperClass).attr("title",config.title).append(this.config.content).appendTo("div#modal-container").dialog({autoOpen:!1,appendTo:"#modal-container",closeOnEscape:config.escapable,draggable:config.draggable,resizable:!1,width:"auto",minWidth:config.minWidth,minHeight:config.minHeight,position:{my:config.position.my,at:config.position.at,of:$("#modal-container"),within:$("#modal-container"),collision:"none"},classes:{"ui-dialog":"bg-foreground border-section color-text","ui-dialog-titlebar":"color-text","ui-dialog-titlebar-close":"border-foreground"}}),this.$modal.dialog("widget").addClass("re621-ui-dialog").removeClass("ui-dialog ui-widget ui-widget-content").toggleClass("modal-reserve-height",config.reserveHeight).draggable({disabled:!config.draggable,containment:"parent"}),config.structure){let modalOpened=!1;this.$modal.on("dialogopen",(()=>{modalOpened||(modalOpened=!0,this.$modal.html(""),this.$modal.append(config.structure.render()))}))}if(config.fixed){const widget=this.$modal.dialog("widget");widget.addClass("modal-fixed"),this.$modal.dialog("option","position",{my:config.position.my,at:config.position.at,of:window,within:"div#modal-container",collision:"none"}),widget.draggable("option","containment","window");let timer=0,left=widget.css("left"),top=widget.css("top");const style=$("<style>").attr({id:"style-"+this.id,type:"text/css"}).html(`\n                    .modal-fixed-${this.id} {\n                        left: ${left} !important;\n                        top: ${top} !important;\n                    }\n                `).appendTo("head");$(window).on("scroll",(()=>{timer?clearTimeout(timer):(left=widget.css("left"),top=widget.css("top"),style.html(`\n                        .modal-fixed-${this.id} {\n                            left: ${left} !important;\n                            top: ${top} !important;\n                        }\n                    `),widget.addClass("modal-fixed-"+this.id)),timer=window.setTimeout((()=>{timer=0,widget.removeClass("modal-fixed-"+this.id),widget.css("left",left),widget.css("top",top)}),500)}))}for(const trigger of config.triggers)this.registerTrigger(trigger)}validateConfig(config){return void 0===config.title&&(config.title="Dialog"),void 0===config.content&&(config.content=$("")),void 0===config.triggers&&(config.triggers=[]),void 0===config.triggerMulti&&(config.triggerMulti=!1),void 0===config.escapable&&(config.escapable=!0),void 0===config.draggable&&(config.draggable=!0),void 0===config.minWidth&&(config.minWidth=150),void 0===config.minHeight&&(config.minHeight=150),void 0===config.fixed&&(config.fixed=!1),void 0===config.reserveHeight&&(config.reserveHeight=!1),void 0===config.wrapperClass&&(config.wrapperClass=""),void 0===config.disabled&&(config.disabled=!1),void 0===config.position&&(config.position={my:"center",at:"center"}),config}addContent($content){this.$modal.append($content)}setContent($content){this.$modal.html(""),this.$modal.append($content)}registerTrigger(trigger){void 0===trigger.event&&(trigger.event="click"),0==this.triggers.length&&(this.$activeTrigger=trigger.element),this.triggers.push(trigger),trigger.element.on(trigger.event,(event=>{if(this.isDisabled())return;const $target=$(event.currentTarget);return this.config.triggerMulti&&!this.$activeTrigger.is($target)&&this.isOpen()&&this.toggle(),this.$activeTrigger=$target,event.preventDefault(),this.toggle(),!1}))}getElement(){return this.$modal}toggle(){this.isOpen()?this.close():this.open()}isOpen(){return this.$modal.dialog("isOpen")}open(){return this.$modal.dialog("open")}close(){return this.$modal.dialog("close")}isDisabled(){return this.config.disabled}enable(){this.config.disabled=!1}disable(){this.config.disabled=!0}destroy(){this.$modal.dialog("destroy"),this.$modal.remove()}getActiveTrigger(){return this.$activeTrigger}}},{"../utility/Util":38}],31:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.Prompt=void 0;const Modal_1=require("./Modal");class Prompt extends Modal_1.Modal{constructor(title="Prompt"){super({title:title,fixed:!0,minHeight:50}),this.createForm(),this.addContent(this.$form),this.open(),this.$input.trigger("focus"),this.promise=new Promise(((resolve,reject)=>{this.$form.on("submit",(event=>{event.preventDefault(),this.destroy(),resolve(this.$input.val()),reject()}))}))}createForm(){this.$form=$("<form>").addClass("prompt-input"),this.$input=$("<input>").attr("id","text").appendTo(this.$form),$("<button>").attr("type","submit").html("Submit").appendTo(this.$form)}getPromise(){return this.promise}}exports.Prompt=Prompt},{"./Modal":30}],32:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.StartupTasks=void 0;const Page_1=require("../data/Page");exports.StartupTasks=class{static createSearchbox(){if(Page_1.Page.matches([Page_1.PageDefinition.search,Page_1.PageDefinition.post,Page_1.PageDefinition.favorites])&&$("aside#sidebar").length>0){const $searchContainer=$("<div>").attr("id","re621-search").prependTo("aside#sidebar");$("aside#sidebar section#search-box").appendTo($searchContainer),$("aside#sidebar section#mode-box").appendTo($searchContainer);new IntersectionObserver((([event])=>{$(event.target).toggleClass("re621-search-sticky bg-foreground",event.intersectionRatio<1)}),{threshold:[1]}).observe($searchContainer[0])}}static createTagList(){$("#tag-box > ul > li, #tag-list > ul > li").each(((index,element)=>{const $container=$(element),$tagLink=$container.find("a.search-tag").first();$("<span>").addClass("tag-wrap").insertAfter($tagLink).append($tagLink);const $actionsBox=$("<div>").addClass("tag-actions").attr("data-tag",$container.find("a.search-tag").text().replace(/ /g,"_")).appendTo($container);$("<span>").addClass("tag-action-blacklist").appendTo($actionsBox);const $countBox=$container.find(".post-count").first();$countBox.addClass("re621-post-count").attr("data-count-short",$countBox.text()).insertAfter($tagLink),$("<span>").addClass("tag-action-subscribe").appendTo($actionsBox)}))}}},{"../data/Page":20}],33:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.Tabbed=void 0;const Util_1=require("../utility/Util");exports.Tabbed=class{constructor(config){this.id=Util_1.Util.ID.make(),this.config=config}render(clearCache=!1){if(void 0!==this.$container&&!clearCache)return this.$container;this.$container=$("<tabbed>");const $tabList=$("<ul>").appendTo(this.$container);return this.config.class&&this.$container.addClass(this.config.class),this.config.content.forEach(((entry,index)=>{let $tab;$tab="string"==typeof entry.name?$("<a>").html(entry.name):entry.name,$tab.attr("href","#"+this.id+"-fragment-"+index),$("<li>").appendTo($tabList).append($tab);const elem=$("<div>").attr("id",this.id+"-fragment-"+index).appendTo(this.$container);entry.structure?elem.append(entry.structure.render()):entry.content?elem.append(entry.content):elem.append($("<span>ERROR: Missing Tabbed Content</span>"))})),this.$container.tabs({classes:{"ui-tabs":"color-text","ui-tabs-tab":"color-text"}}),this.$container.tabs("widget").find(".ui-tabs-nav li").off("keydown"),this.$container}replace(index,$element){this.$container.find("#"+this.id+"-fragment-"+index).children().replaceWith($element)}}},{"../utility/Util":38}],34:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.Debug=void 0;const XM_1=require("../api/XM");class Debug{static async init(){return Debug.enabled=await XM_1.XM.Storage.getValue("re621.debug.enabled",!1),Debug.connect=await XM_1.XM.Storage.getValue("re621.debug.connect",!1),Debug.perform=await XM_1.XM.Storage.getValue("re621.debug.perform",!1),Debug.vivaldi=await XM_1.XM.Storage.getValue("re621.debug.vivaldi",!1),Promise.resolve(!0)}static getState(type){return Debug[type]}static setState(type,enabled){Debug[type]=enabled,enabled?XM_1.XM.Storage.setValue("re621.debug."+type,enabled):XM_1.XM.Storage.deleteValue("re621.debug."+type)}static log(...data){Debug.enabled&&console.log(...data)}static table(obj){Debug.enabled&&console.table(obj)}static connectLog(...data){Debug.connect&&console.log("CONNECT",...data)}static perfStart(input){Debug.perform&&console.time(input)}static perfEnd(input){Debug.perform&&console.timeEnd(input)}}exports.Debug=Debug},{"../api/XM":7}],35:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.ErrorHandler=void 0;const XM_1=require("../api/XM"),Modal_1=require("../structure/Modal"),Patcher_1=require("./Patcher");class ErrorHandler{constructor(){const $contentWrapper=$("<div>").html(`\n                <p>RE621 has encountered an error during script execution.</p>\n                <p>Please, report this message, including the error log below, through the <a href="${window.re621.links.issues}">issue tracker</a>, or in the <a href="${window.re621.links.forum}">forum thread</a>.</p>\n            `);this.feedback=$("<textarea>").addClass("error-feedback bg-section color-text").val(`${window.re621.name} v.${window.re621.version}-${window.re621.build}-${Patcher_1.Patcher.version} for ${XM_1.XM.info().scriptHandler} v.${XM_1.XM.info().version}\n${window.navigator.userAgent}\n`).prop("readonly",!0).appendTo($contentWrapper),this.trigger=$("<a>"),this.modal=new Modal_1.Modal({title:"An error has occurred",content:$contentWrapper,triggers:[{element:this.trigger}],fixed:!0}),this.modal.getElement().dialog("open")}static getInstance(){return void 0===this.instance&&(this.instance=new ErrorHandler),this.instance}static log(module,message,context){const instance=this.getInstance();"string"!=typeof module&&(module=module.getSettingsTag()),void 0!==context&&(module+="/"+context),instance.feedback.val(((index,value)=>{const entry=""===value?module+"\n"+message+"\n":value+"\n"+module+"\n"+message+"\n";return console.log(entry),entry}))}static error(module,message,context){const instance=this.getInstance();instance.modal.isOpen()||instance.trigger.get(0).click(),this.log(module,message,context)}}exports.ErrorHandler=ErrorHandler},{"../api/XM":7,"../structure/Modal":30,"./Patcher":36}],36:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.Patcher=void 0;const HoverZoom_1=require("../../modules/search/HoverZoom"),XM_1=require("../api/XM"),Debug_1=require("./Debug"),ErrorHandler_1=require("./ErrorHandler");class Patcher{static async patchConfig(){let counter=0;Patcher.version=await XM_1.XM.Storage.getValue("re621.patchVersion",0);try{switch(Patcher.version){case 0:counter+=await this.patch1();case 1:counter+=await this.patch2();case 2:counter+=await this.patch3();case 3:counter+=await this.patch4();case 4:counter+=await this.patch5();case 5:counter+=await this.patch6();case 6:case 7:counter+=await this.patch8();case 8:counter+=await this.patch9();case 9:counter+=await this.patch10();case 10:counter+=await this.patch11()}}catch(error){ErrorHandler_1.ErrorHandler.error("Patcher",error.stack,"patch "+Patcher.version)}Debug_1.Debug.log(`Patcher: ${counter} records changed`),await XM_1.XM.Storage.setValue("re621.patchVersion",Patcher.version)}static async patch1(){let counter=0;for(const type of["Comment","Forum","Pool","Tag"]){const entry=await XM_1.XM.Storage.getValue("re621."+type+"Subscriptions",void 0);void 0!==entry&&(void 0!==entry.cache&&(await XM_1.XM.Storage.setValue("re621."+type+"Tracker.cache",entry.cache),delete entry.cache,counter++),await XM_1.XM.Storage.setValue("re621."+type+"Tracker",entry),await XM_1.XM.Storage.deleteValue("re621."+type+"Subscriptions"),counter++)}return Patcher.version=1,counter}static async patch2(){let counter=0;const miscSettings=await XM_1.XM.Storage.getValue("re621.Miscellaneous",{}),searchUtilities=await XM_1.XM.Storage.getValue("re621.SearchUtilities",{});for(const property of["improveTagCount","shortenTagNames","collapseCategories","hotkeyFocusSearch","hotkeyRandomPost"])miscSettings.hasOwnProperty(property)&&(searchUtilities[property]=miscSettings[property],delete miscSettings[property],counter++);for(const property of["removeSearchQueryString","categoryData"])miscSettings.hasOwnProperty(property)&&(delete miscSettings[property],counter++);return await XM_1.XM.Storage.setValue("re621.Miscellaneous",miscSettings),await XM_1.XM.Storage.setValue("re621.SearchUtilities",searchUtilities),Patcher.version=2,counter}static async patch3(){let counter=0;return void 0!==await XM_1.XM.Storage.getValue("re621.report",void 0)&&(await XM_1.XM.Storage.deleteValue("re621.report"),counter++),Patcher.version=3,counter}static async patch4(){let counter=0;return window.localStorage.removeItem("re621.favorites"),window.localStorage.removeItem("re621.dnp.cache"),counter+=2,Patcher.version=4,2}static async patch5(){let counter=0;const taConf=await XM_1.XM.Storage.getValue("re621.TinyAlias",void 0);if(void 0!==taConf&&void 0!==taConf.data){let output="";for(const[key,value]of Object.entries(taConf.data))output+=`${key} -> ${value}\n`,counter++;const saConf=await XM_1.XM.Storage.getValue("re621.SmartAlias",{data:""});saConf.data=saConf.data+(""==saConf.data?"":"\n\n")+"# Imported from TinyAlias\n"+output,await XM_1.XM.Storage.setValue("re621.SmartAlias",saConf),await XM_1.XM.Storage.deleteValue("re621.TinyAlias")}return Patcher.version=5,counter}static async patch6(){let counter=0;const thumbEnhancer=await XM_1.XM.Storage.getValue("re621.ThumbnailEnhancer",void 0),infiniteScroll=await XM_1.XM.Storage.getValue("re621.InfiniteScroll",void 0),betterSearch=await XM_1.XM.Storage.getValue("re621.BetterSearch",{});return thumbEnhancer&&(betterSearch.imageLoadMethod=thumbEnhancer.upscale,betterSearch.autoPlayGIFs=thumbEnhancer.autoPlayGIFs,betterSearch.hoverTags=thumbEnhancer.preserveHoverText,"onshift"==thumbEnhancer.zoom?betterSearch.zoomMode=HoverZoom_1.ImageZoomMode.OnShift:"true"==thumbEnhancer.zoom?betterSearch.zoomMode=HoverZoom_1.ImageZoomMode.Hover:betterSearch.zoomMode=HoverZoom_1.ImageZoomMode.Disabled,betterSearch.imageSizeChange=thumbEnhancer.crop,betterSearch.imageWidth=(thumbEnhancer.cropSize||"150").replace(/px/g,""),betterSearch.imageRatioChange=!thumbEnhancer.cropPreserveRatio,betterSearch.imageRatio=thumbEnhancer.cropRatio,betterSearch.ribbonsFlag=thumbEnhancer.ribbons,betterSearch.ribbonsRel=thumbEnhancer.relRibbons,betterSearch.buttonsVote=thumbEnhancer.vote,betterSearch.buttonsFav=thumbEnhancer.fav,counter+=12,await XM_1.XM.Storage.setValue("re621.BetterSearch",betterSearch),await XM_1.XM.Storage.deleteValue("re621.ThumbnailEnhancer")),infiniteScroll&&(betterSearch.infiniteScroll=infiniteScroll.enabled,betterSearch.loadPrevPages=infiniteScroll.keepHistory,counter+=2,await XM_1.XM.Storage.setValue("re621.BetterSearch",betterSearch),await XM_1.XM.Storage.deleteValue("re621.InfiniteScroll")),window.localStorage.removeItem("re621.favcache.data"),window.localStorage.removeItem("re621.favcache.invalid"),window.localStorage.removeItem("re621.favcache.update"),counter+=3,Patcher.version=6,counter}static async patch8(){return await XM_1.XM.Storage.deleteValue("re621.sync"),Patcher.version=8,1}static async patch9(){let counter=0;const betterSearch=await XM_1.XM.Storage.getValue("re621.BetterSearch",{}),hoverZoom=await XM_1.XM.Storage.getValue("re621.HoverZoom",{});void 0!==betterSearch.zoomMode&&(hoverZoom.mode=betterSearch.zoomMode,delete betterSearch.zoomMode,counter++),void 0!==betterSearch.zoomTags&&(hoverZoom.tags=betterSearch.zoomTags,delete betterSearch.zoomTags,counter++);for(const deletedEntry of["zoomFull","zoomScale","zoomContextual"])delete betterSearch[deletedEntry],counter++;return await XM_1.XM.Storage.setValue("re621.BetterSearch",betterSearch),await XM_1.XM.Storage.setValue("re621.HoverZoom",hoverZoom),Patcher.version=9,counter}static async patch10(){let counter=0;const customFlagger=await XM_1.XM.Storage.getValue("re621.CustomFlagger",{});if(customFlagger.enabled||(customFlagger.enabled=!0,counter++),void 0!==customFlagger.flags&&Array.isArray(customFlagger.flags)){const result=[];for(const flag of customFlagger.flags)null==flag.show&&(flag.show=!0,counter++),result.push(flag);customFlagger.flags=result}return await XM_1.XM.Storage.setValue("re621.CustomFlagger",customFlagger),Patcher.version=10,counter}static async patch11(){let counter=0;for(const tracker of["Tag","Pool","Forum","Comment"]){const settings=await XM_1.XM.Storage.getValue(`re621.${tracker}Tracker`,{});if(!settings.data)continue;const subscriptions=Object.keys(settings.data)||[];if(0==subscriptions.length)continue;counter+=subscriptions.length;const newSettings=await XM_1.XM.Storage.getValue(`re621.${tracker}Tracker.list`,[]),extraID=newSettings.pop(),list=new Set([...newSettings,...subscriptions].sort());extraID&&list.add(extraID),await XM_1.XM.Storage.setValue(`re621.${tracker}Tracker.list`,Array.from(list)),delete settings.data,await XM_1.XM.Storage.setValue(`re621.${tracker}Tracker`,settings)}const settings=await XM_1.XM.Storage.getValue("re621.SubscriptionManager",{});for(const element of["lastUpdate","updateStarted","cacheSize","updateInterval","cacheMaxAge"])delete settings[element],counter++;return await XM_1.XM.Storage.setValue("re621.SubscriptionManager",settings),Patcher.version=11,counter}}exports.Patcher=Patcher,Patcher.version=0},{"../../modules/search/HoverZoom":72,"../api/XM":7,"./Debug":34,"./ErrorHandler":35}],37:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.TagValidator=void 0;class TagValidator{static run(tag){return 0==TagValidator.runVerbose(tag).length}static runVerbose(tag){const errors=[];if(0!=tag.length){[...tag].some((char=>char.charCodeAt(0)>127))&&errors.push("Tags can only contain ASCII characters"),/[ \n\r\t]+/.test(tag)&&errors.push("Tags cannot contain spaces, tabs, or newlines");for(const check of TagValidator.validation){const match=tag.match(check.regex);match&&errors.push(check.text.replace("%MATCHNAME%",TagValidator.charnames[match[1]]).replace("%MATCH%",match[1]))}return errors}}}exports.TagValidator=TagValidator,TagValidator.metatags=["user","approver","commenter","comm","noter","noteupdater","artcomm?","pool","ordpool","fav","favoritedby","md5","rating","note","locked","width","height","mpixels","ratio","score","favcount","filesize","source","id","date","age","order","limit","status","tagcount","parent","child","pixiv_id","pixiv","search","upvote","downvote","voted","filetype","flagger","type","appealer","disapproval","set","randseed","description","change","user_id","delreason","deletedby","votedup","voteddown","duration"],TagValidator.metatagsRegex=new RegExp(`^(${TagValidator.metatags.join("|")}):(.+)$`,"i"),TagValidator.categories=["general","species","character","copyright","artist","invalid","lore","meta"],TagValidator.categoriesRegex=new RegExp(`^(${TagValidator.categories.join("|")}):(.+)$`,"i"),TagValidator.validation=[{regex:/\*/,text:"Tags cannot contain asterisks ('*')"},{regex:/,/,text:"Tags cannot contain commas (',')"},{regex:/#/,text:"Tags cannot contain octothorpes ('#')"},{regex:/\$/,text:"Tags cannot contain peso signs ('$')"},{regex:/%/,text:"Tags cannot contain percent signs ('%')"},{regex:/\\/,text:"Tags cannot contain back slashes ('\\')"},{regex:/[_\-~]{2}/,text:"Tags cannot contain consecutive underscores, hyphens or tildes"},{regex:/[\x00-\x1F]/,text:"Tags cannot contain non-printable characters"},{regex:/^([-~+:_`(){}\[\]\/])/,text:"Tags cannot begin with %MATCHNAME% ('%MATCH%')"},{regex:/([_])$/,text:"Tags cannot end with %MATCHNAME% ('%MATCH%')"},{regex:/&/,text:"Tags containing ampersands ('&') should be avoided"},{regex:TagValidator.metatagsRegex,text:"Tags cannot begin with '%MATCH%:'"},{regex:TagValidator.categoriesRegex,text:"Tags cannot begin with '%MATCH%:'"}],TagValidator.charnames={"-":"a dash","~":"a tilde","+":"a plus sign",":":"a colon",_:"an underscore","`":"a backtick","(":"a bracket",")":"a bracket","{":"a brace","}":"a brace","[":"a square bracket","]":"a square bracket","/":"a slash"}},{}],38:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.Util=void 0;const UtilDOM_1=require("./UtilDOM"),UtilEvents_1=require("./UtilEvents"),UtilID_1=require("./UtilID"),UtilMath_1=require("./UtilMath"),UtilSize_1=require("./UtilSize"),UtilTime_1=require("./UtilTime");class Util{static downloadAsJSON(data,file){const tempLink=$("<a>").attr({download:file+".json",href:"data:application/json,"+encodeURIComponent(JSON.stringify(data,null,4))}).appendTo("body").on("click",(()=>{tempLink.remove()}));tempLink[0].click()}static async sleep(time){return new Promise((resolve=>{setTimeout((()=>{resolve()}),time)}))}static chunkArray(input,size,method="balance"){Array.isArray(input)||(input=Array.from(input));const result=[];switch(method){case"chunk":for(let i=0;i<input.length;i+=size)result.push(input.slice(i,i+size));break;case"split":result[0]=input.slice(0,size),result[1]=input.slice(size);break;default:for(let i=Math.ceil(input.length/size);i>0;i--)result.push(input.splice(0,Math.ceil(input.length/i)))}return result}static getArrayIndexes(input,value){const indexes=[];let i=0;for(;i<input.length;i++)input[i]===value&&indexes.push(i);return indexes}static quickParseMarkdown(input){return void 0===input?"":input.replace(/\*\*(.*?)\*\*/gm,"<strong>$1</strong>").replace(/\_(.*?\S)\_/gm,"<em>$1</em>").replace(/\[(.+)\]\((.*)\)/gm,'<a href="$2">$1</a>').replace(/^[-]+(.*)?/gim,"<ul><li>$1</li></ul>").replace(/\<\/ul\>\r\n\<ul\>/gm,"").replace(/\n(?!<)/gm,"<br />")}static stripDText(input,removeSections=!0){return removeSections&&(input=input.replace(/\[quote\][\s\S]*\[\/quote\]/g,"").replace(/\[code\][\s\S]*\[\/code\]/g,"").replace(/\\[section[\s\S]*\[\/section\]/g,"")),input=input.replace(/\[b\]([\s\S]*)\[\/b\]/g,"<b>$1</b>").replace(/\[i\]([\s\S]*)\[\/i\]/g,"<i>$1</i>").replace(/\[u\]([\s\S]*)\[\/u\]/g,"<u>$1</u>").replace(/\[o\]([\s\S]*)\[\/o\]/g,"<o>$1</o>").replace(/\[s\]([\s\S]*)\[\/s\]/g,"<s>$1</s>").replace(/\[sup\]([\s\S]*)\[\/sup\]/g,"<sup>$1</sup>").replace(/\[sub\]([\s\S]*)\[\/sub\]/g,"<sub>$1</sub>").replace(/\[spoiler\]([\s\S]*)\[\/spoiler\]/g,"<span>$1</span>").replace(/\[color\]([\s\S]*)\[\/color\]/g,"<span>$1</span>")}static formatK(num){return Math.abs(num)>999?(Math.sign(num)*(Math.abs(num)/1e3)).toFixed(1)+"k":Math.sign(num)*Math.abs(num)+""}static formatRatio(width,height){const d=function gcd(u,v){if(u===v)return u;if(0===u)return v;if(0===v)return u;if(1&~u)return 1&v?gcd(u>>1,v):gcd(u>>1,v>>1)<<1;return 1&~v?gcd(u,v>>1):u>v?gcd(u-v>>1,v):gcd(v-u>>1,u)}(width,height);return[width/d,height/d]}static getTagString(input){const implications=input.data("implications")||[];return input.val().toString().trim().toLowerCase().replace(/\r?\n|\r/g," ").replace(/(?:\s){2,}/g," ")+(implications.length>0?" "+implications.join(" "):"")}static getTags(input){if(Array.isArray(input)){const result=[];for(const element of input)result.push(...Util.getTags(element));return result}return("string"==typeof input?input:Util.getTagString(input)).split(" ").filter((el=>null!=el&&""!=el))}static getKeyRegex(object){const result=[];for(const key of Object.keys(object))result.push(key.replace(/[.*+?^${}()|[\]\\]/g,"\\$&"));return new RegExp(result.join("|"),"gi")}static versionCompare(v1,v2,options){const lexicographical=options&&options.lexicographical,zeroExtend=options&&options.zeroExtend;if("string"!=typeof v1||"string"!=typeof v2)return NaN;let v1parts=v1.split("."),v2parts=v2.split(".");function isValidPart(x){return(lexicographical?/^\d+[A-Za-z]*$/:/^\d+$/).test(x)}if(!v1parts.every(isValidPart)||!v2parts.every(isValidPart))return NaN;if(zeroExtend){for(;v1parts.length<v2parts.length;)v1parts.push("0");for(;v2parts.length<v1parts.length;)v2parts.push("0")}lexicographical||(v1parts=v1parts.map(Number),v2parts=v2parts.map(Number));for(let i=0;i<v1parts.length;++i){if(v2parts.length==i)return 1;if(v1parts[i]!=v2parts[i])return v1parts[i]>v2parts[i]?1:-1}return v1parts.length!=v2parts.length?-1:0}static prettyPrintArray(array,delimiter="and"){return 1==array.length?array[0]:2==array.length?array[0]+" "+delimiter+" "+array[1]:array.slice(0,-1).join(", ")+", "+delimiter+" "+array.slice(-1)}}exports.Util=Util,Util.DOM=UtilDOM_1.UtilDOM,Util.Events=UtilEvents_1.UtilEvents,Util.ID=UtilID_1.UtilID,Util.Math=UtilMath_1.UtilMath,Util.Time=UtilTime_1.UtilTime,Util.Size=UtilSize_1.UtilSize,Util.LS=window.localStorage,Util.SS=window.sessionStorage},{"./UtilDOM":39,"./UtilEvents":40,"./UtilID":41,"./UtilMath":42,"./UtilSize":43,"./UtilTime":44}],39:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.UtilDOM=void 0;const Util_1=require("./Util");exports.UtilDOM=class{static addSettingsButton(config,target="menu.extra"){void 0===config.name&&(config.name="T"),void 0===config.href&&(config.href=""),void 0===config.title&&(config.title=""),void 0===config.tabClass&&(config.tabClass=""),void 0===config.linkClass&&(config.linkClass=""),void 0===config.attr&&(config.attr={});const $tab=$("<li>").appendTo(target),$link=$("<a>").html(config.name).attr({title:config.title,id:config.id}).appendTo($tab);return void 0!==config.onClick&&$link.on("click",(()=>{config.onClick($link)})),config.href&&$link.attr("href",config.href),config.tabClass&&$tab.addClass(config.tabClass),config.linkClass&&$link.addClass(config.linkClass),config.attr&&$link.attr(config.attr),$link}static addStyle(css){return $("<style>").attr({id:Util_1.Util.ID.make(),type:"text/css"}).html(css).appendTo("head")}static getPlaceholderImage(){return"data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="}static getKoFiImage(){return"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALsAAAAkBAMAAAAjjlbPAAAAHlBMVEVDS1dDS1dDS1f+/v5DS1fi4uOLjpO8vcD/X1z/p6boDZakAAAAA3RSTlMCtVgF8JOLAAACCElEQVRIx+3XMW7bMBQGYLUnCIoeoENv8OuZ8NbAP8kDUBTRWbRyANLxAbKwc1AguW0H2nJSq6kBV0sRDhpI4BP19PhINs3Hz1yofWqapllMJ2+a5sNyOm+b5uuCPL8sGRvypllS57d3/gLe+KmF+O95jVOTuCiP1eGLxvFySftoffw7Lw5S+xKgLuadj8nnN/j1T3x/BFo61FmksMPFvJDuzeCU8lyKQ8sN6ixSJrin7XRmIBmSsuio0ZE0TnmSFooaPXcIW3hukWnRz/BSSinlES31ke9HoaNuNx2FJATOKcILyUGckHSC6DxyggzACKeYPOI5vz7ngdUrnkNrxK6YMumyFdIIjVUc2hqcTUs3Cod2NjgHfjjyYYf4ghcOHUWLdx0ppJBWkbqlXVV+EI+9eDfHP5VSfgCtcYcfmjJTfsVvKu/zxK9+5/2deN/NZU4p5QGQKR3P+aGj6LoqHE0NDrWiXk3BoVV/yPunUmrqH16ewh4x9anbqO1p9gb3LpIpJCGJPo24d13lrew9XZ/yHL8uDwCAwBfLSgPRQE48E4SkrX1bSBwgx7xPUNxiLnMAPAOAmipBLQpjJMdRSEYaMtae47MORzKShjTjaWS+KLTnK9KGpK4raXbiuxkeyFfW+4mfq8YmXrtb3XnvfQj7/L7X/i/8wofAhY+wCx/AF74+LHv5+QUPP47PCU3CGwAAAABJRU5ErkJggg=="}static getLoadingImage(){return"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAyVBMVEUAAAC9vsDCw8W9v8G9vsD29/fr7O29vsDm5+jx8fK/wML29vf///+9vsHR0tPm5+jt7u7w8PHr7Ozc3d7n6OnExcfGx8nJyszMzM7V1tjZ2tvf4OG9vsDHyMrp6uvIycu9v8HAwcTPz9HCw8W9vsC9vsDBwsTj5OXj5OXW19i9vsDm5+jw8PHy8vL09fW9vsDFxsjJyszAwsS9vsDU1dbLzM7Y2drb3N3c3d7e3+DHyMrBwsTh4uPR0tPDxcfa293R0tTV1ti9vsAll6RJAAAAQnRSTlMA7+t/MAZHQDYjHxABv6xSQjEgFgzi2M7Emop0cGVLD/ryt7Cfj3dmYWBgWjgsGd/Cv7SvopSSg4B6eHZrQjkyKx1dd0xhAAAA9klEQVR4AYWPeXOCMBBHFxIgCQKC3KCo1Wprtfd98/0/VBPb6TC0Wd+/783+ZqELrQkRoIMujFbiaLTwpESC029reB7919d7u6SgYaE8aUCivW84oEUY0lPQc408pxBqHxCIHGiw4Lxtl5h35ALFglouAAaZTj00OJ7NrvDANI/Q4PlQMDbNFA3ekiQRaHGRpmM0eMqyyxgLRlme4ydu8/n8Az3h+37xiRWv/k1RRlhxUtyVD8yCXwaDflHeP1Zr5sIey3WtfvFeVS+rTWAzFobhNhrFf4omWK03wcS2h8OzLd/1TyhiNvkJQu5amocjznm0i6HDF1RMG1aMA/PYAAAAAElFTkSuQmCC"}}},{"./Util":38}],40:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.UtilEvents=void 0;exports.UtilEvents=class{static on(name,callback){$(document).on(name,((event,data)=>{callback(event,data)}))}static one(name,callback){$(document).on(name,((event,data)=>{callback(event,data),this.off(name)}))}static off(name){$(document).off(name)}static trigger(name,data){$(document).trigger(name,data)}static triggerVueEvent(element,name,label){const e=document.createEvent("HTMLEvents");e.initEvent(name,!0,!0),label&&element.data(label,"true"),element[0].dispatchEvent(e)}}},{}],41:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.UtilID=void 0;const Util_1=require("./Util");class UtilID{static make(length=8,unique=!0){if(!unique)return getRandomString(length);let uniqueID;do{uniqueID=getRandomString(length)}while(UtilID.uniqueIDs.has(uniqueID));return UtilID.uniqueIDs.add(uniqueID),uniqueID;function getRandomString(length){let result="";const chars="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",charLength=chars.length;for(let i=0;i<length;i++)result+=chars.charAt(Math.floor(Math.random()*charLength));return result}}static has(id){return UtilID.uniqueIDs.has(id)}static remove(id){return!!UtilID.has(id)&&(UtilID.uniqueIDs.delete(id),!0)}static rand(){return(Util_1.Util.Time.now()+"").slice(-5)}}exports.UtilID=UtilID,UtilID.uniqueIDs=new Set},{"./Util":38}],42:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.UtilMath=void 0;exports.UtilMath=class{static clamp(value,min,max){return Math.min(Math.max(value,min),max)}static between(value,min,max){return min<=value&&max>=value}static isNumeric(value){return!isNaN(Number(value))}static round(num,decimal=2){return 0==decimal?parseInt(num.toFixed(decimal)):parseFloat(num.toFixed(decimal))}}},{}],43:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.RISSizeLimit=exports.UtilSize=void 0;const Util_1=require("./Util");var UtilSize;!function(UtilSize){UtilSize[UtilSize.Byte=1]="Byte",UtilSize[UtilSize.Kilobyte=1024]="Kilobyte",UtilSize[UtilSize.Megabyte=1048576]="Megabyte",UtilSize[UtilSize.Gigabyte=1073741824]="Gigabyte",UtilSize[UtilSize.Terabyte=1099511627776]="Terabyte",UtilSize[UtilSize.Petabyte=0x4000000000000]="Petabyte"}(exports.UtilSize||(exports.UtilSize={})),function(UtilSize){UtilSize.format=function(bytes,decimals=2){if("string"==typeof bytes&&(bytes=parseInt(bytes)),!bytes||0===bytes)return"0 B";const dm=decimals<0?0:decimals,i=Math.floor(Math.log(bytes)/Math.log(1024));return parseFloat((bytes/Math.pow(1024,i)).toFixed(dm))+["B","KB","MB","GB","TB","PB"][i]},UtilSize.unformat=function(input){if(Util_1.Util.Math.isNumeric(input))return parseInt(input);input=input.toUpperCase();for(const[index,size]of[/\dB$/,/\dKB$/,/\dMB$/,/\dGB$/,/\dTB$/,/\dPB$/].entries())if(size.test(input))return parseInt(input)*Math.pow(1024,index);return 0}}(UtilSize=exports.UtilSize||(exports.UtilSize={}));class RISSizeLimit{constructor(size,width=0,height=0){this.size=size,this.width=width,this.height=height}test(post){return post.file.size<=this.size&&(0==this.width||post.img.width<=this.width)&&(0==this.height||post.img.height<=this.height)}toString(){return`${this.width}x${this.height} (${this.size})`}}exports.RISSizeLimit=RISSizeLimit,RISSizeLimit.Google=new RISSizeLimit(20*UtilSize.Megabyte,8e3,6e3),RISSizeLimit.SauceNAO=new RISSizeLimit(15*UtilSize.Megabyte),RISSizeLimit.Derpibooru=new RISSizeLimit(20*UtilSize.Megabyte),RISSizeLimit.Kheina=new RISSizeLimit(8*UtilSize.Megabyte,7500,7500),RISSizeLimit.Yandex=new RISSizeLimit(100*UtilSize.Megabyte,15e4,15e4)},{"./Util":38}],44:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.UtilTime=void 0,function(UtilTime){UtilTime[UtilTime.SECOND=1e3]="SECOND",UtilTime[UtilTime.MINUTE=6e4]="MINUTE",UtilTime[UtilTime.HOUR=36e5]="HOUR",UtilTime[UtilTime.DAY=864e5]="DAY",UtilTime[UtilTime.WEEK=6048e5]="WEEK",UtilTime[UtilTime.MONTH=2592e6]="MONTH",UtilTime[UtilTime.YEAR=31536e6]="YEAR"}(exports.UtilTime||(exports.UtilTime={})),function(UtilTime){UtilTime.now=function(){return(new Date).getTime()},UtilTime.ago=function(time){switch(typeof time){case"string":time=+new Date(time);break;case"object":time=time.getTime()}const timeFormats=[[60,"seconds",1],[120,"1 minute ago","1 minute from now"],[3600,"minutes",60],[7200,"1 hour ago","1 hour from now"],[86400,"hours",3600],[172800,"Yesterday","Tomorrow"],[604800,"days",86400],[1209600,"Last week","Next week"],[2419200,"weeks",604800],[4838400,"Last month","Next month"],[29030400,"months",2419200],[58060800,"Last year","Next year"],[290304e4,"years",29030400],[580608e4,"Last century","Next century"],[580608e5,"centuries",290304e4]];let seconds=(+new Date-time)/1e3,token="ago",listChoice=1;if(seconds>=0&&seconds<2)return"Just now";seconds<0&&(seconds=Math.abs(seconds),token="from now",listChoice=2);let format,i=0;for(;format=timeFormats[i++];)if(seconds<format[0])return"string"==typeof format[2]?format[listChoice]:Math.floor(seconds/format[2])+" "+format[1]+" "+token;return time+""},UtilTime.format=function(date=new Date){"number"!=typeof date&&"string"!=typeof date||(date=new Date(date));const parts={year:""+date.getFullYear(),month:""+(date.getMonth()+1),day:""+date.getDate(),hours:""+date.getHours(),minutes:""+date.getMinutes(),seconds:""+date.getSeconds()};for(const id in parts)parts[id].length<2&&(parts[id]="0"+parts[id]);return parts.year+"-"+parts.month+"-"+parts.day+" "+parts.hours+":"+parts.minutes+":"+parts.seconds},UtilTime.formatPeriod=function(input){return input<UtilTime.MINUTE?(input/UtilTime.SECOND).toFixed(1)+" seconds":input<UtilTime.HOUR?(input/UtilTime.MINUTE).toFixed(1)+" minutes":input<UtilTime.DAY?(input/UtilTime.HOUR).toFixed(1)+" hours":input<UtilTime.WEEK?(input/UtilTime.DAY).toFixed(1)+" days":input<UtilTime.MONTH?(input/UtilTime.WEEK).toFixed(1)+" weeks":input<UtilTime.YEAR?(input/UtilTime.MONTH).toFixed(1)+" months":(input/UtilTime.YEAR).toFixed(1)+" years"},UtilTime.getDatetimeShort=function(){function twoDigit(n){return(n<10?"0":"")+n}const date=new Date;return(date.getFullYear()+"").substring(2)+twoDigit(date.getMonth()+1)+twoDigit(date.getDate())+"-"+twoDigit(date.getHours())+twoDigit(date.getMinutes())},UtilTime.formatPlaytime=function(seconds){const remainder=(seconds=Math.ceil(seconds))%60;return Math.floor(seconds/60)+":"+(remainder<10?"0":"")+remainder}}(exports.UtilTime||(exports.UtilTime={}))},{}],45:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.VersionChecker=void 0;const XM_1=require("../api/XM"),Debug_1=require("./Debug"),ErrorHandler_1=require("./ErrorHandler"),Util_1=require("./Util");class VersionChecker{static async init(){const emVersion=Util_1.Util.LS.getItem("re621.version");VersionChecker.scriptBuild=emVersion||window.re621.version;const settings=await XM_1.XM.Storage.getValue("re621.VersionChecker",{});if(void 0!==settings.latestBuild&&(VersionChecker.latestBuild=settings.latestBuild),void 0!==settings.cachedBuild&&(VersionChecker.cachedBuild=settings.cachedBuild),VersionChecker.cachedBuild!==VersionChecker.scriptBuild&&(VersionChecker.wasUpdated=!0),Util_1.Util.versionCompare(VersionChecker.cachedBuild,VersionChecker.latestBuild)<0&&(VersionChecker.hasUpdate=!0),void 0!==settings.lastUpdated&&(VersionChecker.lastUpdated=settings.lastUpdated),void 0!==settings.changesText&&(VersionChecker.changesText=settings.changesText),VersionChecker.scriptBuild.includes("dev"))VersionChecker.wasUpdated=!1,VersionChecker.hasUpdate=!1;else if(VersionChecker.wasUpdated||VersionChecker.lastUpdated+Util_1.Util.Time.HOUR<Util_1.Util.Time.now())try{const latestRelease=await VersionChecker.getGithubData("latest");if(!latestRelease||!latestRelease.name)throw"Malformed GitHub response";VersionChecker.latestBuild=latestRelease.name,VersionChecker.cachedBuild=VersionChecker.scriptBuild,VersionChecker.hasUpdate=Util_1.Util.versionCompare(VersionChecker.scriptBuild,VersionChecker.latestBuild)<0,VersionChecker.lastUpdated=Util_1.Util.Time.now(),VersionChecker.changesText=latestRelease.body}catch(error){VersionChecker.latestBuild="0.0.1",VersionChecker.cachedBuild=VersionChecker.scriptBuild,VersionChecker.hasUpdate=!1,VersionChecker.lastUpdated=Util_1.Util.Time.now(),VersionChecker.changesText="Unable to fetch changelog",ErrorHandler_1.ErrorHandler.error("VersionChecker","Failed to fetch update data from GitHub.\n"+error)}VersionChecker.changesHTML=Util_1.Util.quickParseMarkdown(VersionChecker.changesText),Debug_1.Debug.table({scriptBuild:VersionChecker.scriptBuild,latestBuild:VersionChecker.latestBuild,cachedBuild:VersionChecker.cachedBuild,wasUpdated:VersionChecker.wasUpdated,hasUpdate:VersionChecker.hasUpdate,lastUpdated:VersionChecker.lastUpdated}),await XM_1.XM.Storage.setValue("re621.VersionChecker",{latestBuild:VersionChecker.latestBuild,cachedBuild:VersionChecker.cachedBuild,lastUpdated:VersionChecker.lastUpdated,changesText:VersionChecker.changesText})}static async getGithubData(node){return XM_1.XM.Connect.xmlHttpPromise({url:"https://api.github.com/repos/re621/re621.Legacy/releases/"+node,method:"GET"}).then((response=>Promise.resolve(JSON.parse(response.responseText))),(()=>(console.error("Failed to fetch Github release data"),{name:"0.0.0",body:"Error: Unable to fetch the changelog"})))}}exports.VersionChecker=VersionChecker,VersionChecker.scriptBuild="0.0.1",VersionChecker.latestBuild="0.0.1",VersionChecker.cachedBuild="0.0.1",VersionChecker.wasUpdated=!1,VersionChecker.hasUpdate=!1,VersionChecker.lastUpdated=0,VersionChecker.changesText="_~ Changelog not available ~_",VersionChecker.changesHTML=""},{"../api/XM":7,"./Debug":34,"./ErrorHandler":35,"./Util":38}],46:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0});const Danbooru_1=require("./components/api/Danbooru"),Page_1=require("./components/data/Page"),User_1=require("./components/data/User"),ModuleController_1=require("./components/ModuleController"),CleanSlate_1=require("./components/structure/CleanSlate"),StartupTasks_1=require("./components/structure/StartupTasks"),Debug_1=require("./components/utility/Debug"),Patcher_1=require("./components/utility/Patcher"),Util_1=require("./components/utility/Util"),VersionChecker_1=require("./components/utility/VersionChecker"),FavDownloader_1=require("./modules/downloader/FavDownloader"),MassDownloader_1=require("./modules/downloader/MassDownloader"),PoolDownloader_1=require("./modules/downloader/PoolDownloader"),CommentBlacklist_1=require("./modules/general/CommentBlacklist"),CompatibilityPatcher_1=require("./modules/general/CompatibilityPatcher"),FormattingExtender_1=require("./modules/general/FormattingExtender"),HeaderCustomizer_1=require("./modules/general/HeaderCustomizer"),JanitorEnhancements_1=require("./modules/general/JanitorEnhancements"),Miscellaneous_1=require("./modules/general/Miscellaneous"),SettingsController_1=require("./modules/general/SettingsController"),ThemeCustomizer_1=require("./modules/general/ThemeCustomizer"),EditTracker_1=require("./modules/misc/EditTracker"),ScriptAssistant_1=require("./modules/misc/ScriptAssistant"),SmartAlias_1=require("./modules/misc/SmartAlias"),TagSuggester_1=require("./modules/misc/TagSuggester"),UploadUtilities_1=require("./modules/misc/UploadUtilities"),WikiEnhancer_1=require("./modules/misc/WikiEnhancer"),DownloadCustomizer_1=require("./modules/post/DownloadCustomizer"),ImageScaler_1=require("./modules/post/ImageScaler"),PoolNavigator_1=require("./modules/post/PoolNavigator"),PostViewer_1=require("./modules/post/PostViewer"),TitleCustomizer_1=require("./modules/post/TitleCustomizer"),BetterSearch_1=require("./modules/search/BetterSearch"),BlacklistEnhancer_1=require("./modules/search/BlacklistEnhancer"),CustomFlagger_1=require("./modules/search/CustomFlagger"),HoverZoom_1=require("./modules/search/HoverZoom"),InstantFilters_1=require("./modules/search/InstantFilters"),PostSuggester_1=require("./modules/search/PostSuggester"),ProgressTracker_1=require("./modules/search/ProgressTracker"),SearchUtilities_1=require("./modules/search/SearchUtilities"),ThumbnailTweaks_1=require("./modules/search/ThumbnailTweaks"),CommentTracker_1=require("./modules/subscriptions/CommentTracker"),ForumTracker_1=require("./modules/subscriptions/ForumTracker"),PoolTracker_1=require("./modules/subscriptions/PoolTracker"),TagTracker_1=require("./modules/subscriptions/TagTracker"),_SubscriptionManager_1=require("./modules/subscriptions/_SubscriptionManager"),AvoidPosting_1=require("./components/cache/AvoidPosting"),loadOrder=[FormattingExtender_1.FormattingExtender,HeaderCustomizer_1.HeaderCustomizer,ThemeCustomizer_1.ThemeCustomizer,DownloadCustomizer_1.DownloadCustomizer,ImageScaler_1.ImageScaler,PostViewer_1.PostViewer,PoolNavigator_1.PoolNavigator,TitleCustomizer_1.TitleCustomizer,BlacklistEnhancer_1.BlacklistEnhancer,CustomFlagger_1.CustomFlagger,ThumbnailTweaks_1.ThumbnailTweaks,BetterSearch_1.BetterSearch,InstantFilters_1.InstantFilters,HoverZoom_1.HoverZoom,ProgressTracker_1.ProgressTracker,PostSuggester_1.PostSuggester,SearchUtilities_1.SearchUtilities,Miscellaneous_1.Miscellaneous,SmartAlias_1.SmartAlias,TagSuggester_1.TagSuggester,EditTracker_1.EditTracker,WikiEnhancer_1.WikiEnhancer,UploadUtilities_1.UploadUtilities,ScriptAssistant_1.ScriptAssistant,CommentBlacklist_1.CommentBlacklist,JanitorEnhancements_1.JanitorEnhancements,FavDownloader_1.FavDownloader,PoolDownloader_1.PoolDownloader,MassDownloader_1.MassDownloader,_SubscriptionManager_1.SubscriptionManager,CompatibilityPatcher_1.CompatibilityPatcher,SettingsController_1.SettingsController],subscriptions=[TagTracker_1.TagTracker,PoolTracker_1.PoolTracker,ForumTracker_1.ForumTracker,CommentTracker_1.CommentTracker];if(console.log(`${window.re621.name} v.${window.re621.version} build ${window.re621.build}`),Page_1.Page.matches(Page_1.PageDefinition.title)){const page=Util_1.Util.LS.getItem("re621.mainpage");page&&"default"!==page&&window.location.replace("/"+page)}Danbooru_1.Danbooru.Shortcuts.disabled=!0,CleanSlate_1.CleanSlate.createDOM().then((async()=>{Page_1.Page.matches(Page_1.PageDefinition.title)||(Danbooru_1.Danbooru.Shortcuts.disabled=!0,StartupTasks_1.StartupTasks.createSearchbox(),StartupTasks_1.StartupTasks.createTagList(),await Debug_1.Debug.init(),await Patcher_1.Patcher.patchConfig(),await VersionChecker_1.VersionChecker.init(),await AvoidPosting_1.default.init(),User_1.User.init(),await ModuleController_1.ModuleController.register(subscriptions),await _SubscriptionManager_1.SubscriptionManager.register(subscriptions),await ModuleController_1.ModuleController.register(loadOrder))}))},{"./components/ModuleController":1,"./components/api/Danbooru":3,"./components/cache/AvoidPosting":14,"./components/data/Page":20,"./components/data/User":22,"./components/structure/CleanSlate":28,"./components/structure/StartupTasks":32,"./components/utility/Debug":34,"./components/utility/Patcher":36,"./components/utility/Util":38,"./components/utility/VersionChecker":45,"./modules/downloader/FavDownloader":47,"./modules/downloader/MassDownloader":48,"./modules/downloader/PoolDownloader":49,"./modules/general/CommentBlacklist":50,"./modules/general/CompatibilityPatcher":51,"./modules/general/FormattingExtender":52,"./modules/general/HeaderCustomizer":53,"./modules/general/JanitorEnhancements":54,"./modules/general/Miscellaneous":55,"./modules/general/SettingsController":56,"./modules/general/ThemeCustomizer":57,"./modules/misc/EditTracker":58,"./modules/misc/ScriptAssistant":59,"./modules/misc/SmartAlias":60,"./modules/misc/TagSuggester":61,"./modules/misc/UploadUtilities":62,"./modules/misc/WikiEnhancer":63,"./modules/post/DownloadCustomizer":64,"./modules/post/ImageScaler":65,"./modules/post/PoolNavigator":66,"./modules/post/PostViewer":67,"./modules/post/TitleCustomizer":68,"./modules/search/BetterSearch":69,"./modules/search/BlacklistEnhancer":70,"./modules/search/CustomFlagger":71,"./modules/search/HoverZoom":72,"./modules/search/InstantFilters":73,"./modules/search/PostSuggester":74,"./modules/search/ProgressTracker":75,"./modules/search/SearchUtilities":76,"./modules/search/ThumbnailTweaks":77,"./modules/subscriptions/CommentTracker":78,"./modules/subscriptions/ForumTracker":79,"./modules/subscriptions/PoolTracker":80,"./modules/subscriptions/TagTracker":81,"./modules/subscriptions/_SubscriptionManager":84}],47:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.FavDownloader=void 0;const DownloadQueue_1=require("../../components/api/DownloadQueue"),E621_1=require("../../components/api/E621"),Page_1=require("../../components/data/Page"),ModuleController_1=require("../../components/ModuleController"),Post_1=require("../../components/post/Post"),RE6Module_1=require("../../components/RE6Module"),Debug_1=require("../../components/utility/Debug"),Util_1=require("../../components/utility/Util"),DownloadCustomizer_1=require("../post/DownloadCustomizer"),BetterSearch_1=require("../search/BetterSearch"),MassDownloader_1=require("./MassDownloader");class FavDownloader extends RE6Module_1.RE6Module{constructor(){super(Page_1.PageDefinition.favorites),this.processing=!1,this.downloadOverSize=!1,this.batchOverSize=!0,this.posts=[],this.fileTimestamp=Util_1.Util.Time.getDatetimeShort(),this.downloadIndex=1}getDefaultSettings(){return{enabled:!0,template:"%artist%/%postid%-%copyright%-%character%-%species%",archive:"%userid%-favorites-%timestamp%",autoDownloadArchive:!0}}create(){super.create(),this.userID=parseInt(Page_1.Page.getQueryParameter("user_id")||$("meta[name=current-user-id]").attr("content")),NaN!=this.userID&&(this.section=$("<section>").attr({id:"fav-downloader-box","data-fixed":this.fetchSettings("fixedSection")+""}).html("<h1>Download</h1>").appendTo("aside#sidebar"),$("#sidebar").on("re621:reflow",(()=>{this.section.css("top",$("#re621-search").outerHeight()+"px")})),$("#sidebar").trigger("re621:reflow"),this.actButton=$("<a>").html("All").addClass("pool-download-button button btn-neutral").appendTo(this.section).on("click",(event=>{event.preventDefault(),this.processFiles()})),this.visButton=$("<a>").html("Page").addClass("pool-download-button button btn-neutral").appendTo(this.section).on("click",(event=>{event.preventDefault(),this.processFiles(!0)})),this.infoText=$("<div>").addClass("download-info").appendTo(this.section),this.infoFile=$("<div>").addClass("download-file").appendTo(this.section))}destroy(){super.destroy()}toggleFixedSection(){"true"===this.section.attr("data-fixed")?this.section.attr("data-fixed","false"):this.section.attr("data-fixed","true")}async processFiles(visible=!1){if(this.processing)return;this.processing=!0,this.actButton.attr("disabled","disabled"),this.visButton.attr("disabled","disabled"),$("search-content").attr("data-downloading","true"),BetterSearch_1.BetterSearch.setPaused(!0),this.infoText.attr("data-state","loading").html("Indexing favorites . . ."),0==this.posts.length&&(this.infoText.attr("data-state","loading").html("Fetching API data . . ."),this.posts=visible?Post_1.Post.find("existant").reverse().entries():(await async function recursiveLookup(output,info,userID,index=1){return info.html(" &nbsp; &nbsp;request "+index+" ["+output.length+"]"),E621_1.E621.Favorites.get({user_id:userID,page:index,limit:320}).then((data=>{for(const post of data){Post_1.PostData.fromAPI(post).has.file&&output.push(Post_1.PostData.fromAPI(post))}return console.log("counting",data.length),0==data.length?Promise.resolve(output):recursiveLookup(output,info,userID,++index)}))}([],this.infoFile,this.userID)).reverse());const downloadQueue=new DownloadQueue_1.DownloadQueue,threadInfo=[];this.infoFile.html("");for(let i=0;i<downloadQueue.getThreadCount();i++)threadInfo.push($("<span>").appendTo(this.infoFile));let totalFileSize=0,queueSize=0;this.batchOverSize=!1;const downloadSamples=ModuleController_1.ModuleController.fetchSettings(DownloadCustomizer_1.DownloadCustomizer,"downloadSamples");let queuedPost;for(;queuedPost=this.posts.pop();){const post=queuedPost;if(totalFileSize+=post.file.size,Debug_1.Debug.log(`adding #${post.id} (${Util_1.Util.Size.format(post.file.size)}) to the queue: ${Util_1.Util.Size.format(totalFileSize)} total`),totalFileSize>FavDownloader.maxBlobSize){this.batchOverSize=!0,this.downloadOverSize=!0;break}$("#entry_"+post.id).addClass("download-item").attr("data-state","preparing"),downloadQueue.add({name:this.createFilename(post,downloadSamples),path:downloadSamples?post.file.sample:post.file.original,file:(downloadSamples?post.file.sample:post.file.original).match(/.{32}\..*$/g)[0],unid:post.id,date:post.date.obj,tags:post.tagString},{onStart:(item,thread,index)=>{this.infoText.html('Downloading ... <span class="float-right">'+(queueSize-index)+" / "+queueSize+"</span>"),threadInfo[thread].html(item.file).css("--progress","0%"),$("#entry_"+post.id).attr("data-state","loading")},onFinish:()=>{$("#entry_"+post.id).attr("data-state","done")},onError:()=>{$("#entry_"+post.id).attr("data-state","error")},onLoadProgress:(item,thread,event)=>{event.lengthComputable&&threadInfo[thread].css("--progress",Math.round(event.loaded/event.total*100)+"%")},onWorkerFinish:(item,thread)=>{threadInfo[thread].remove()}})}queueSize=downloadQueue.getQueueLength(),this.infoText.html("Processing . . . ");const zipData=await downloadQueue.run((metadata=>{this.infoText.html("Compressing . . . "+metadata.percent.toFixed(2)+"%"),metadata.currentFile?this.infoFile.html(metadata.currentFile):this.infoFile.html("")}));let filename=this.fetchSettings("archive").replace("%userid%",this.userID).replace("%timestamp%",this.fileTimestamp);if(filename+=this.downloadOverSize?"-part"+this.downloadIndex+".zip":".zip",this.infoText.attr("data-state","done").html("Done! "),this.infoFile.html(""),zipData){const $downloadLink=$("<a>").attr({href:URL.createObjectURL(zipData),download:filename}).html("Download Archive").appendTo(this.infoText);this.fetchSettings("autoDownloadArchive")&&$downloadLink.get(0).click()}else $("<span>").html("Error: malformed archive").appendTo(this.infoText);this.downloadIndex++,this.actButton.removeAttr("disabled"),this.visButton.removeAttr("disabled"),this.processing=!1,this.batchOverSize?this.fetchSettings("autoDownloadArchive")?visible?this.visButton.get(0).click():this.actButton.get(0).click():$("<div>").addClass("download-notice").html("Download has exceeded the maximum file size.<br /><br />Click the download button again for the next part.").appendTo(this.infoText):BetterSearch_1.BetterSearch.setPaused(!1)}createFilename(post,downloadSamples=!1){return MassDownloader_1.MassDownloader.createFilenameBase(this.fetchSettings("template"),post).slice(0,128).replace(/-{2,}/g,"-").replace(/-*$/g,"")+"."+(downloadSamples&&post.has.sample?"jpg":post.file.ext)}}exports.FavDownloader=FavDownloader,FavDownloader.maxBlobSize=838860800},{"../../components/ModuleController":1,"../../components/RE6Module":2,"../../components/api/DownloadQueue":4,"../../components/api/E621":5,"../../components/data/Page":20,"../../components/post/Post":23,"../../components/utility/Debug":34,"../../components/utility/Util":38,"../post/DownloadCustomizer":64,"../search/BetterSearch":69,"./MassDownloader":48}],48:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.MassDownloader=void 0;const DownloadQueue_1=require("../../components/api/DownloadQueue"),Page_1=require("../../components/data/Page"),ModuleController_1=require("../../components/ModuleController"),Post_1=require("../../components/post/Post"),PostSet_1=require("../../components/post/PostSet"),RE6Module_1=require("../../components/RE6Module"),Debug_1=require("../../components/utility/Debug"),Util_1=require("../../components/utility/Util"),DownloadCustomizer_1=require("../post/DownloadCustomizer"),BetterSearch_1=require("../search/BetterSearch");class MassDownloader extends RE6Module_1.RE6Module{constructor(){super(Page_1.PageDefinition.search,!0,!1,[BetterSearch_1.BetterSearch]),this.showInterface=!1,this.processing=!1,this.downloadOverSize=!1,this.fileTimestamp=Util_1.Util.Time.getDatetimeShort(),this.downloadIndex=0}getDefaultSettings(){return{enabled:!0,template:"%artist%/%postid%-%copyright%-%character%-%species%",archive:"%tags%-%timestamp%",autoDownloadArchive:!0}}create(){super.create(),this.section=$("<section>").attr({id:"downloader-box","data-fixed":this.fetchSettings("fixedSection")+""}).html("<h1>Download</h1>").appendTo("aside#sidebar"),$("#sidebar").on("re621:reflow",(()=>{this.section.css("top",$("#re621-search").outerHeight()+"px")})),$("#sidebar").trigger("re621:reflow"),this.selectButton=$("<a>").html("Select").attr("id","download-select").addClass("button btn-neutral").appendTo(this.section).on("click",(event=>{event.preventDefault(),this.toggleInterface(),this.downloadQueue&&(this.downloadQueue.abort(),$("post.download-item").attr("data-state","ready")),this.processing=!1})),this.actButton=$("<a>").html("Download").attr("id","download-act").addClass("button btn-neutral").appendTo(this.section).on("click",(event=>{event.preventDefault(),this.processFiles()})),$("<a>").html("Select All Visible").attr("id","download-select-all").appendTo(this.section).on("click",(event=>{event.preventDefault(),Post_1.Post.find("visible").each((post=>{post.$ref.addClass("download-item").attr("data-state","ready")}))})),this.infoText=$("<div>").addClass("download-info").appendTo(this.section),this.infoFile=$("<div>").addClass("download-file").appendTo(this.section),this.container=$("search-content")}destroy(){super.destroy(),BetterSearch_1.BetterSearch.off("pageload.MassDownloader")}toggleInterface(){this.showInterface=!this.showInterface,BetterSearch_1.BetterSearch.setPaused(this.showInterface),this.showInterface?(this.selectButton.html("Cancel"),this.section.attr("data-interface","true"),this.infoText.html('Click on thumbnails to select them, then press "Download"'),this.container.attr("data-downloading","true").selectable({autoRefresh:!1,filter:"post",selected:function(event,ui){$(ui.selected).toggleClass("download-item").attr("data-state","ready")}}),BetterSearch_1.BetterSearch.on("pageload.MassDownloader",(()=>{this.container.selectable("refresh")}))):(this.selectButton.html("Select"),this.section.attr("data-interface","false"),this.container.attr("data-downloading","false").selectable("destroy"),BetterSearch_1.BetterSearch.off("pageload.MassDownloader"))}toggleFixedSection(){"true"===this.section.attr("data-fixed")?this.section.attr("data-fixed","false"):this.section.attr("data-fixed","true")}setProcessing(state){this.processing=state,BetterSearch_1.BetterSearch.setPaused(state),state?this.actButton.attr("disabled","disabled"):this.actButton.removeAttr("disabled")}async processFiles(){if(this.processing)return;this.setProcessing(!0),this.infoText.attr("data-state","loading").html("Indexing selected files . . .");const postList=new PostSet_1.PostSet;if($("post.download-item[data-state=ready]").each(((index,element)=>{postList.push(Post_1.Post.get($(element)))})),0===postList.size())return this.infoText.attr("data-state","error").html("Error: No files selected!"),void this.setProcessing(!1);Debug_1.Debug.log(`downloading ${postList.size()} files`),Debug_1.Debug.log(postList),this.downloadQueue=new DownloadQueue_1.DownloadQueue;const threadInfo=[];this.infoFile.html("");for(let i=0;i<this.downloadQueue.getThreadCount();i++)threadInfo.push($("<span>").appendTo(this.infoFile));let totalFileSize=0,queueSize=0;this.downloadOverSize=!1;const downloadSamples=ModuleController_1.ModuleController.fetchSettings(DownloadCustomizer_1.DownloadCustomizer,"downloadSamples");for(const post of postList.sort(PostSet_1.PostSortType.SizeAsc).values())if(post.has.file){if(totalFileSize+=post.file.size,Debug_1.Debug.log(`adding #${post.id} (${Util_1.Util.Size.format(post.file.size)}) to the queue: ${Util_1.Util.Size.format(totalFileSize)} total`),totalFileSize>MassDownloader.maxBlobSize){this.downloadOverSize=!0,Debug_1.Debug.log("over filesize limit, aborting");break}post.$ref.attr("data-state","preparing"),this.downloadQueue.add({name:this.createFilename(post,downloadSamples),path:downloadSamples?post.file.sample:post.file.original,file:(downloadSamples?post.file.sample:post.file.original).match(/.{32}\..*$/g)[0],unid:post.id,date:post.date.obj,tags:post.tagString},{onStart:(item,thread,index)=>{this.infoText.html('Downloading ... <span class="float-right">'+(queueSize-index)+" / "+queueSize+"</span>"),threadInfo[thread].html(item.file).css("--progress","0%"),$("#entry_"+item.unid).attr("data-state","loading")},onFinish:item=>{$("#entry_"+item.unid).attr("data-state","done")},onError:item=>{$("#entry_"+item.unid).attr("data-state","error")},onLoadProgress:(item,thread,event)=>{event.lengthComputable&&threadInfo[thread].css("--progress",Math.round(event.loaded/event.total*100)+"%")},onWorkerFinish:(item,thread)=>{threadInfo[thread].remove()}})}queueSize=this.downloadQueue.getQueueLength(),this.infoText.html("Processing . . . ");const zipData=await this.downloadQueue.run((metadata=>{this.infoText.html(`Compressing . . . ${metadata.percent.toFixed(2)}%`),metadata.currentFile?this.infoFile.html(metadata.currentFile):this.infoFile.html("")}));if(this.infoText.attr("data-state","done").html("Done! "),this.infoFile.html(""),this.downloadIndex++,zipData){const tagString=($("#tags").val()+"").replace(/([^a-z0-9 ]+)/gi,"").split(" ").join("_").slice(0,32);let filename=this.fetchSettings("archive").replace("%tags%",tagString).replace("%timestamp%",this.fileTimestamp);filename+=this.downloadOverSize?"-part"+this.downloadIndex+".zip":".zip";const $downloadLink=$("<a>").attr({href:URL.createObjectURL(zipData),download:filename}).html("Download Archive").appendTo(this.infoText);if(this.fetchSettings("autoDownloadArchive")){if($downloadLink.get(0).click(),this.downloadOverSize)return this.setProcessing(!1),void this.actButton.get(0).click()}else this.downloadOverSize&&$("<div>").addClass("download-notice").html("Download has exceeded the maximum file size.<br /><br />Click the download button again for the next part.").appendTo(this.infoText)}else $("<span>").html("Error: malformed archive").appendTo(this.infoText);this.setProcessing(!1)}createFilename(post,downloadSamples=!1){return MassDownloader.createFilenameBase(this.fetchSettings("template"),post).slice(0,128).replace(/-{2,}/g,"-").replace(/-*$/g,"")+"."+(downloadSamples&&post.has.sample?"jpg":post.file.ext)}static createFilenameBase(template,post){const trimmedArtists=post.tags.artist;for(const tag of["conditional_dnp","avoid_posting","sound_warning","epilepsy_warning"])trimmedArtists.delete(tag);return template.replace(/%postid%/g,post.id+"").replace(/%artist%/g,tagSetToString(trimmedArtists)).replace(/%copyright%/g,tagSetToString(post.tags.copyright)).replace(/%character%/g,tagSetToString(post.tags.character)).replace(/%species%/g,tagSetToString(post.tags.species)).replace(/%meta%/g,tagSetToString(post.tags.meta)).replace(/%tags%/g,tagSetToString(post.tags.general)).replace(/%md5%/g,post.file.md5);function tagSetToString(tags){return[...tags].join("-").replace(/\||\*|\/|\\|:|"/g,"_")}}}exports.MassDownloader=MassDownloader,MassDownloader.maxBlobSize=838860800},{"../../components/ModuleController":1,"../../components/RE6Module":2,"../../components/api/DownloadQueue":4,"../../components/data/Page":20,"../../components/post/Post":23,"../../components/post/PostSet":27,"../../components/utility/Debug":34,"../../components/utility/Util":38,"../post/DownloadCustomizer":64,"../search/BetterSearch":69}],49:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.PoolDownloader=void 0;const DownloadQueue_1=require("../../components/api/DownloadQueue"),E621_1=require("../../components/api/E621"),Page_1=require("../../components/data/Page"),ModuleController_1=require("../../components/ModuleController"),Post_1=require("../../components/post/Post"),RE6Module_1=require("../../components/RE6Module"),Debug_1=require("../../components/utility/Debug"),Util_1=require("../../components/utility/Util"),DownloadCustomizer_1=require("../post/DownloadCustomizer"),MassDownloader_1=require("./MassDownloader");class PoolDownloader extends RE6Module_1.RE6Module{constructor(){super([Page_1.PageDefinition.pool,Page_1.PageDefinition.set]),this.processing=!1,this.downloadOverSize=!1,this.batchOverSize=!0,this.fileTimestamp=Util_1.Util.Time.getDatetimeShort(),this.downloadIndex=1,this.poolName="",this.poolFiles=[],this.poolDownloaded=[]}getDefaultSettings(){return{enabled:!0,template:"%pool%/%index%-%postid%-%artist%-%copyright%-%character%-%species%",archive:"%poolname%-%timestamp%",autoDownloadArchive:!0}}create(){super.create();const base=Page_1.Page.matches(Page_1.PageDefinition.pool)?"div#c-pools":"div#c-sets",container=$(base).addClass("pool-container");this.overview=$("#a-show").addClass("pool-overview"),this.actButton=$("<button>").addClass("pool-download-button pool-download-act").addClass("button btn-neutral").html("Download").prependTo(this.overview).on("click",(event=>{event.preventDefault(),container.attr("data-interface","true"),this.processFiles()})),$("<button>").addClass("pool-download-button pool-download-cancel").addClass("button btn-neutral").html("Abort").prependTo(this.overview).on("click",(event=>{event.preventDefault(),this.downloadQueue&&this.downloadQueue.abort()})),$("<button>").addClass("pool-download-button pool-download-cancel").addClass("button btn-neutral").html("Save & Cancel").prependTo(this.overview).on("click",(event=>{event.preventDefault(),this.downloadQueue&&this.downloadQueue.abort(!0)}));const sidebar=$("<aside>").addClass("pool-sidebar").appendTo(container);this.section=$("<section>").attr("id","pool-downloader-box").html("<h1>Download</h1>").appendTo(sidebar),this.infoText=$("<div>").addClass("download-info").appendTo(this.section),this.infoFile=$("<div>").addClass("download-file").appendTo(this.section)}processFiles(){if(this.processing)return;let source;this.processing=!0,this.overview.attr("processing","loading"),this.infoText.attr("data-state","loading").html("Indexing pool files . . .");let poolName="UnknownPostGroup";source=Page_1.Page.matches(Page_1.PageDefinition.pool)?E621_1.E621.Pool.id(Page_1.Page.getPageID()).get():E621_1.E621.Set.id(Page_1.Page.getPageID()).get(),source.then((poolData=>{if(poolData.length<1)return Promise.reject("Pool not found");const pool=poolData[0],imageList=pool.post_ids.filter((n=>!this.poolDownloaded.includes(n)));if(this.poolFiles=pool.post_ids,poolName=pool.name,0===imageList.length)return this.infoText.attr("data-state","error").html("Error: Pool is empty!"),Promise.reject("Pool is empty");this.poolName=pool.name,this.infoText.attr("data-state","loading").html("Fetching API data . . .");const dataQueue=[],resultPages=Math.ceil(imageList.length/320);this.infoFile.html(" &nbsp; &nbsp;request 1 / "+resultPages);for(let i=1;i<=resultPages;i++)dataQueue.push(new Promise((async resolve=>{const result=await E621_1.E621.Posts.get({tags:(Page_1.Page.matches(Page_1.PageDefinition.pool)?"pool:":"set:")+pool.id,page:i,limit:320},500);this.infoFile.html(" &nbsp; &nbsp;request "+(i+1)+" / "+resultPages),resolve(result)})));return Promise.all(dataQueue)})).then((dataChunks=>{this.overview.attr("processing","true"),this.downloadQueue=new DownloadQueue_1.DownloadQueue;const threadInfo=[];this.infoFile.html("");for(let i=0;i<this.downloadQueue.getThreadCount();i++)threadInfo.push($("<span>").appendTo(this.infoFile));let totalFileSize=0,queueSize=0;this.batchOverSize=!1;const downloadSamples=ModuleController_1.ModuleController.fetchSettings(DownloadCustomizer_1.DownloadCustomizer,"downloadSamples");return dataChunks.forEach((chunk=>{this.batchOverSize||chunk.forEach((queuedPost=>{const post=Post_1.PostData.fromAPI(queuedPost);if(post.has.file){if(totalFileSize+=post.file.size,Debug_1.Debug.log(`adding #${post.id} (${Util_1.Util.Size.format(post.file.size)}) to the queue: ${Util_1.Util.Size.format(totalFileSize)} total`),totalFileSize>PoolDownloader.maxBlobSize)return this.batchOverSize=!0,void(this.downloadOverSize=!0);$("article.post-preview#post_"+post.id).attr("data-state","preparing"),this.downloadQueue.add({name:this.createFilename(post,downloadSamples),path:downloadSamples?post.file.sample:post.file.original,file:(downloadSamples?post.file.sample:post.file.original).match(/.{32}\..*$/g)[0],unid:post.id,date:post.date.obj,tags:post.tagString},{onStart:(item,thread,index)=>{"done"!=this.infoText.attr("data-state")&&(this.infoText.html('Downloading ... <span class="float-right">'+(queueSize-index)+" / "+queueSize+"</span>"),threadInfo[thread].html(item.file).css("--progress","0%"),$("article.post-preview#post_"+post.id).attr("data-state","loading"))},onFinish:()=>{$("article.post-preview#post_"+post.id).attr("data-state","done")},onError:()=>{$("article.post-preview#post_"+post.id).attr("data-state","error")},onLoadProgress:(item,thread,event)=>{event.lengthComputable&&threadInfo[thread].css("--progress",Math.round(event.loaded/event.total*100)+"%")},onWorkerFinish:(item,thread)=>{threadInfo[thread].remove()}}),this.poolDownloaded.push(post.id)}}))})),queueSize=this.downloadQueue.getQueueLength(),this.infoText.html("Processing . . . "),this.downloadQueue.run((metadata=>{this.infoText.html("Compressing . . . "+metadata.percent.toFixed(2)+"%"),metadata.currentFile?this.infoFile.html(metadata.currentFile):this.infoFile.html("")}))})).then((zipData=>{delete this.downloadQueue;let filename=this.fetchSettings("archive").replace("%poolname%",this.createPoolFilename(poolName)).replace("%timestamp%",this.fileTimestamp);if(filename+=this.downloadOverSize?"-part"+this.downloadIndex+".zip":".zip",this.infoText.attr("data-state","done").html(zipData?"Done! ":"Cancelled"),this.infoFile.html(""),zipData){const $downloadLink=$("<a>").attr({href:zipData?URL.createObjectURL(zipData):void 0,download:filename}).html("Download Archive").appendTo(this.infoText);this.fetchSettings("autoDownloadArchive")&&$downloadLink.get(0).click(),this.downloadIndex++}else this.downloadIndex=1;this.overview.removeAttr("processing"),this.processing=!1,this.batchOverSize?this.fetchSettings("autoDownloadArchive")?this.actButton.get(0).click():$("<div>").addClass("download-notice").html("Download has exceeded the maximum file size.<br /><br />Click the download button again for the next part.").appendTo(this.infoText):this.poolDownloaded=[]}))}createFilename(post,downloadSamples=!1){return MassDownloader_1.MassDownloader.createFilenameBase(this.fetchSettings("template"),post).replace(/%pool%/g,this.poolName).replace(/%index%/g,this.padIndex(this.poolFiles.indexOf(post.id)+1,this.poolFiles.length.toString().length)).slice(0,128).replace(/-{2,}/g,"-").replace(/-*$/g,"")+"."+(downloadSamples&&post.has.sample?"jpg":post.file.ext)}padIndex(index,length=2){let str=index.toString();for(;str.length<length;)str="0"+str;return str}createPoolFilename(name){return name.slice(0,64).replace(/\s/g,"_").replace(/_{2,}/g,"_").replace(/-{2,}/g,"-").replace(/-*$/g,"")}}exports.PoolDownloader=PoolDownloader,PoolDownloader.maxBlobSize=838860800},{"../../components/ModuleController":1,"../../components/RE6Module":2,"../../components/api/DownloadQueue":4,"../../components/api/E621":5,"../../components/data/Page":20,"../../components/post/Post":23,"../../components/utility/Debug":34,"../../components/utility/Util":38,"../post/DownloadCustomizer":64,"./MassDownloader":48}],50:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.CommentBlacklist=void 0;const RE6Module_1=require("../../components/RE6Module");class CommentBlacklist extends RE6Module_1.RE6Module{constructor(){super([],!0)}getDefaultSettings(){return{enabled:!0,filters:[]}}create(){const filters=this.fetchSettings("filters");for(const comment of $("article.comment").get()){const $comment=$(comment),text=$comment.find("div.body:first").text().toLowerCase();for(const filter of filters)if(CommentBlacklist.filterMatches(text,filter)){$comment.addClass("comment-blacklisted below-threshold");break}}}static filterMatches(comment,blacklistLine){const filters=blacklistLine.split(" ");let matches=0;for(const filter of filters)if(0!=filter.length)if(filter.startsWith("-")){if(comment.includes(filter.substr(1)))return!1;matches++}else comment.includes(filter)&&matches++;else matches++;return matches==filters.length}}exports.CommentBlacklist=CommentBlacklist},{"../../components/RE6Module":2}],51:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.CompatibilityPatcher=void 0;const RE6Module_1=require("../../components/RE6Module");class CompatibilityPatcher extends RE6Module_1.RE6Module{constructor(){super(void 0,!0)}create(){super.create(),this.patchUIConfigurator()}patchUIConfigurator(){const menuButton=$("#viewConfig");0!=menuButton.length&&(menuButton.removeAttr("style").addClass("float-left").css("font-weight","500").prependTo("menu.extra"),menuButton.find("a").html("UI"))}}exports.CompatibilityPatcher=CompatibilityPatcher},{"../../components/RE6Module":2}],52:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.FormattingExtender=void 0;const Danbooru_1=require("../../components/api/Danbooru"),RE6Module_1=require("../../components/RE6Module"),Form_1=require("../../components/structure/Form"),Modal_1=require("../../components/structure/Modal"),Prompt_1=require("../../components/structure/Prompt"),Debug_1=require("../../components/utility/Debug"),Util_1=require("../../components/utility/Util"),iconDefinitions={spacer:null,bold:"f032",italic:"f033",strikethrough:"f0cc",underscore:"f0cd",superscript:"f12b",subscript:"f12c",spoiler:"f070",color:"f53f",code:"f121",heading:"f1dc",quote:"f10e",section:"f103",tag:"f02b",wiki:"f002",keyboard:"f11c",link:"f0c1",unlink:"f127",link_prompt:"f35d",lemon:"f094",pepper:"f816",drumstick:"f6d7",magic:"f0d0",clipboard:"f328",paperclip:"f0c6",fountainpen:"f5ad",comment:"f27a",bell:"f0f3",bullhorn:"f0a1",heart:"f004","plus-square":"f0fe","minus-square":"f146",baby:"f77c",scales:"f24e","chart-pie":"f200",dice:"f522",hotdog:"f80f",leaf:"f06c","paper-plane":"f1d8",anchor:"f13d",crown:"f521",crow:"f520"};class FormattingExtender extends RE6Module_1.RE6Module{constructor(){super([],!0,!1,[],"FormattingHelper")}getDefaultSettings(){return{enabled:!0,buttonsActive:[{name:"Bold",icon:"bold",text:"[b]%selection%[/b]"},{name:"Italic",icon:"italic",text:"[i]%selection%[/i]"},{name:"Strikethrough",icon:"strikethrough",text:"[s]%selection%[/s]"},{name:"Underscore",icon:"underscore",text:"[u]%selection%[/u]"},{name:"Spacer",icon:"spacer",text:""},{name:"Heading",icon:"heading",text:"h2.%selection%"},{name:"Spoiler",icon:"spoiler",text:"[spoiler]%selection%[/spoiler]"},{name:"Code",icon:"code",text:"`%selection%`"},{name:"Quote",icon:"quote",text:"[quote]%selection%[/quote]"},{name:"Section",icon:"section",text:"[section=Title]%selection%[/section]"},{name:"Spacer",icon:"spacer",text:""},{name:"Tag",icon:"tag",text:"{{%selection%}}"},{name:"Link",icon:"link",text:'"%selection%":'}],buttonInactive:[{name:"Superscript",icon:"superscript",text:"[sup]%selection%[/sup]"},{name:"Color",icon:"color",text:"[color=]%selection%[/color]"},{name:"Wiki",icon:"wiki",text:"[[%selection%]]"},{name:"Link (Prompted)",icon:"link_prompt",text:'"%selection%":%prompt:Address%'}]}}create(){super.create(),Danbooru_1.Danbooru.DText.override_formatting(this.processFormattingTag),this.observer=new IntersectionObserver((entries=>{entries.forEach((value=>{if(!value.isIntersecting)return;const wrapper=$(value.target);this.observer.unobserve(value.target),new Formatter(this,wrapper),this.regenerateButtons()}))}),{root:null,rootMargin:"100% 50% 100% 50%",threshold:.5});for(const wrapper of $(".dtext-formatter").get())this.observer.observe(wrapper)}regenerateButtons(){const dtextButtons=[];for(const button of this.fetchSettings("buttonsActive"))dtextButtons.push(ButtonDefinition.toEsixButton(button));this.reloadButtonToolbar($(dtextButtons))}reloadButtonToolbar(buttons){const e=document.createEvent("HTMLEvents");e.initEvent("re621:reload",!0,!0),$(".dtext-formatter").each(((index,element)=>{const wrapper=$(".dtext-formatter-buttons",element);wrapper.empty(),wrapper.append(buttons.clone()),Danbooru_1.Danbooru.DText.initialize_formatting_buttons(element),element.dispatchEvent(e)}))}processFormattingTag(content,input){if("true"==input.attr("paused"))return;const promises=[],lookup=content.match(/%prompt[:]?[^%]*?(%|$)/g),replacedTags=[];null!==lookup&&lookup.reverse().forEach((element=>{const title=element.replace(/(%$)|(^%prompt[:]?)/g,"");replacedTags.push(element),promises.push(new Prompt_1.Prompt(title).getPromise())})),Promise.all(promises).then((data=>{replacedTags.forEach((function(tag,index){content=content.replace(tag,data[index])}));const currentText=input.val()+"",position={start:input.prop("selectionStart"),end:input.prop("selectionEnd")},offset_start=content.indexOf("%selection%"),offset_end=content.length-(content.indexOf("%selection%")+11);content=content.replace(/%selection%/g,currentText.substring(position.start,position.end)),input.trigger("focus"),document.execCommand("insertText",!1,content)||input.val(currentText.substring(0,position.start)+content+currentText.substring(position.end,currentText.length)),input.prop("selectionStart",position.start+offset_start),input.prop("selectionEnd",position.start+content.length-offset_end),input.trigger("focus")}))}}exports.FormattingExtender=FormattingExtender;class Formatter{constructor(module,element){this.module=module,this.wrapper=element,this.id=this.wrapper.attr("id"),this.id||(this.id="formatter-"+Util_1.Util.ID.make(),this.wrapper.attr("id",this.id)),this.wrapper.attr("data-drawer","false"),this.bootstrapEditForm(),this.bootstrapCreateForm(),this.extendButtonToolbar(),this.createButtonDrawer(),this.setupSorting()}extendButtonToolbar(){this.toolbar=this.wrapper.find("div.dtext-formatter-buttons").first(),this.wrapper.on("re621:reload",(()=>{const buttonList=this.module.fetchSettings("buttonsActive"),children=this.toolbar.children().get();Debug_1.Debug.log("Formatter:Toolbar",buttonList.length);for(let index=0;index<buttonList.length;index++){const element=$(children[index]);this.editForm.registerTrigger({element:element}),element.data("button",buttonList[index])}}))}createButtonDrawer(){const header=$("<div>").addClass("dtext-formatter-customizer color-text").appendTo(this.wrapper);$("<a>").html("&#xf0c9").addClass("dtext-formatter-opendrawer").attr({title:"Customize Buttons"}).appendTo(header).on("click",(event=>{event.preventDefault(),this.wrapper.trigger("re621:formatter.toggle")}));const addButton=$("<a>").html("&#xf067").addClass("dtext-formatter-addbutton").attr({title:"Add Custom Button"}).appendTo(header);this.makeForm.registerTrigger({element:addButton}),this.bdrawer=$("<div>").addClass("dtext-formatter-drawer color-text").appendTo(this.wrapper),this.bootstrapEditForm(),this.wrapper.on("re621:reload",(()=>{this.bdrawer.html("");const buttonList=this.module.fetchSettings("buttonInactive");Debug_1.Debug.log("Formatter:Drawer",buttonList.length);for(const button of buttonList){const icon=ButtonDefinition.getIcon(button.icon);if(!icon){$("<span>").appendTo(this.bdrawer).data("button",button);continue}const element=$("<a>").html("&#x"+icon).attr({title:button.name,role:"button"}).data("button",button).appendTo(this.bdrawer);this.editForm.registerTrigger({element:element})}}));const input=this.wrapper.find("textarea").first();this.wrapper.on("re621:formatter.disable",(()=>{this.wrapper.attr("data-drawer","false"),input.attr("paused","false"),this.bdrawer.sortable("disable"),this.toolbar.sortable("disable"),this.editForm.disable()})),this.wrapper.on("re621:formatter.toggle",(()=>{const enable="false"==this.wrapper.attr("data-drawer");$(".dtext-formatter").trigger("re621:formatter.disable"),enable&&(this.wrapper.attr("data-drawer","true"),input.attr("paused","true"),this.bdrawer.sortable("enable"),this.toolbar.sortable("enable"),this.editForm.enable())}))}bootstrapEditForm(){this.editForm=null;const $editButtonsForm=new Form_1.Form({name:"dtext-edit-button-"+this.id,columns:2,width:2},[Form_1.Form.input({name:"name",label:"Name",width:2}),Form_1.Form.icon({name:"icon",label:"Icon",width:2},iconDefinitions),Form_1.Form.textarea({name:"text",label:"Content",width:2}),Form_1.Form.button({name:"delete",value:"Delete"},(async()=>{this.deleteButton(this.editForm.getActiveTrigger()),this.editForm.close()})),Form_1.Form.button({name:"update",value:"Update",type:"submit"}),Form_1.Form.hr(2),Form_1.Form.div({value:"Available variables:",width:2}),Form_1.Form.copy({label:"Selection",value:"%selection%",width:2}),Form_1.Form.copy({label:"Prompt",value:"%prompt:Input Name%",width:2})],(async values=>{console.log("updating button",values),this.updateButton(this.editForm.getActiveTrigger(),{name:values.name,icon:values.icon,text:values.text}),this.editForm.close()}));this.editForm=new Modal_1.Modal({title:"Edit Button",content:Form_1.Form.placeholder(),structure:$editButtonsForm,triggers:[],triggerMulti:!0,fixed:!0,disabled:!0}),this.editForm.getElement().on("dialogopen",(()=>{const buttonData=this.editForm.getActiveTrigger().data("button"),$updateTabInputs=$editButtonsForm.getInputList();$updateTabInputs.get("name").val(buttonData.name),$updateTabInputs.get("icon").val(buttonData.icon).trigger("re621:form:update"),$updateTabInputs.get("text").val(buttonData.text)}))}bootstrapCreateForm(){const newFormatForm=new Form_1.Form({name:"dtext-custom-button-"+this.id,columns:2,width:2},[Form_1.Form.input({name:"name",label:"Name",width:2}),Form_1.Form.icon({name:"icon",label:"Icon",width:2},iconDefinitions),Form_1.Form.textarea({name:"text",label:"Content",width:2}),Form_1.Form.spacer(),Form_1.Form.button({name:"submit",value:"Create",type:"submit"}),Form_1.Form.hr(2),Form_1.Form.div({value:"Available variables:",width:2}),Form_1.Form.copy({label:"Selection",value:"%selection%",width:2}),Form_1.Form.copy({label:"Prompt",value:"%prompt:Input Name%",width:2})],(values=>{console.log(values),this.createButton({name:values.name,icon:values.icon,text:values.text}),newFormatForm.reset(),this.makeForm.close()}));this.makeForm=new Modal_1.Modal({title:"New Custom Button",content:Form_1.Form.placeholder(),structure:newFormatForm,triggers:[],fixed:!0})}setupSorting(){this.toolbar.sortable({helper:"clone",forceHelperSize:!0,cursor:"grabbing",containment:this.wrapper,connectWith:this.bdrawer,disabled:!0,update:()=>{this.saveButtons()}}),this.bdrawer.sortable({helper:"clone",forceHelperSize:!0,cursor:"grabbing",containment:this.wrapper,connectWith:this.toolbar,disabled:!0})}async saveButtons(){const active=this.toolbar.children().get(),inactive=this.bdrawer.children().get(),activeData=[],inactiveData=[];for(const button of active){const data=$(button).data("button");data&&activeData.push(data)}for(const button of inactive){const data=$(button).data("button");data&&inactiveData.push(data)}Debug_1.Debug.log({buttonsActive:activeData,buttonInactive:inactiveData}),activeData.length>0&&await this.module.pushSettings({buttonsActive:activeData,buttonInactive:inactiveData}),this.module.regenerateButtons()}async createButton(config){config=ButtonDefinition.validate(config);const inactiveButtons=this.module.fetchSettings("buttonInactive");inactiveButtons.push(config),await this.module.pushSettings("buttonInactive",inactiveButtons),this.module.regenerateButtons()}deleteButton($element){$element.remove(),this.saveButtons()}updateButton($element,config){config=ButtonDefinition.validate(config),$element.data("button",config),console.log($element,config),this.saveButtons()}}var ButtonDefinition;!function(ButtonDefinition){ButtonDefinition.toEsixButton=function(value){const iconUnicode=ButtonDefinition.getIcon(value.icon);return iconUnicode?$("<a>").html("&#x"+iconUnicode).attr({title:value.name,role:"button","data-content":value.text})[0]:$("<span>").addClass("spacer")[0]},ButtonDefinition.getIcon=function(name){return iconDefinitions[name]||null},ButtonDefinition.validate=function(value){return void 0===value.name&&(value.name="New Button"),void 0===value.icon&&(value.icon="crow"),void 0===value.text&&(value.text=""),value}}(ButtonDefinition||(ButtonDefinition={}))},{"../../components/RE6Module":2,"../../components/api/Danbooru":3,"../../components/structure/Form":29,"../../components/structure/Modal":30,"../../components/structure/Prompt":31,"../../components/utility/Debug":34,"../../components/utility/Util":38}],53:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.HeaderCustomizer=void 0;const Page_1=require("../../components/data/Page"),User_1=require("../../components/data/User"),ModuleController_1=require("../../components/ModuleController"),RE6Module_1=require("../../components/RE6Module"),Form_1=require("../../components/structure/Form"),Modal_1=require("../../components/structure/Modal"),Util_1=require("../../components/utility/Util");class HeaderCustomizer extends RE6Module_1.RE6Module{constructor(){super(),this.registerHotkeys({keys:"hotkeyTab1",fnct:()=>{HeaderCustomizer.openTabNum(0)}},{keys:"hotkeyTab2",fnct:()=>{HeaderCustomizer.openTabNum(1)}},{keys:"hotkeyTab3",fnct:()=>{HeaderCustomizer.openTabNum(2)}},{keys:"hotkeyTab4",fnct:()=>{HeaderCustomizer.openTabNum(3)}},{keys:"hotkeyTab5",fnct:()=>{HeaderCustomizer.openTabNum(4)}},{keys:"hotkeyTab6",fnct:()=>{HeaderCustomizer.openTabNum(5)}},{keys:"hotkeyTab7",fnct:()=>{HeaderCustomizer.openTabNum(6)}},{keys:"hotkeyTab8",fnct:()=>{HeaderCustomizer.openTabNum(7)}},{keys:"hotkeyTab9",fnct:()=>{HeaderCustomizer.openTabNum(8)}})}getDefaultSettings(){return{enabled:!0,hotkeyTab1:"1",hotkeyTab2:"2",hotkeyTab3:"3",hotkeyTab4:"4",hotkeyTab5:"5",hotkeyTab6:"6",hotkeyTab7:"7",hotkeyTab8:"8",hotkeyTab9:"9",tabs:[{name:"Profile",href:"/users/%userid%"},{name:"Posts",href:"/posts"},{name:"Comments",href:"/comments?group_by=post"},{name:"Artists",href:"/artists"},{name:"Tags",href:"/tags"},{name:"Blips",href:"/blips"},{name:"Pools",href:"/pools"},{name:"Sets",href:"/post_sets"},{name:"Wiki",href:"/wiki_pages?title=help:home"},{name:"Forum",href:"/forum_topics"},{name:"Discord",href:"/static/discord"},{name:"Help",href:"/help"},{name:"More »",href:"/static/site_map"}],forumUpdateDot:!0}}create(){super.create(),this.hasForumUpdates=$("li#nav-forum").hasClass("forum-updated"),this.$menu=$("menu.main"),this.$oldMenu=$("<div>").css("display","none").appendTo("body"),this.$menu.children().appendTo(this.$oldMenu),this.$menu.addClass("custom");for(const value of this.fetchSettings("tabs"))this.createTabElement(value);this.reloadTabMargins(),this.$menu.sortable({axis:"x",containment:"parent",helper:"clone",forceHelperSize:!0,opacity:.75,cursor:"grabbing",disabled:!0,update:()=>{this.reloadTabMargins(),this.saveNavbarSettings()}}),this.createConfigInterface(),this.toggleForumDot(this.fetchSettings("forumUpdateDot")),this.addTabModal.getElement().on("dialogopen",(()=>{this.enableEditingMode()})),this.addTabModal.getElement().on("dialogclose",(()=>{this.disableEditingMode()}))}destroy(){this.isInitialized()&&(super.destroy(),this.$menu.removeClass("custom").empty(),this.$menu.sortable("destroy"),this.addTabButton.remove(),this.addTabModal.destroy(),this.updateTabModal.destroy(),this.$oldMenu.children().appendTo(this.$menu),this.$oldMenu.remove())}createConfigInterface(){this.addTabButton=Util_1.Util.DOM.addSettingsButton({id:"header-button-customizer",name:'<i class="fas fa-tasks"></i>',title:"Edit Header Tabs",tabClass:"float-left"});const newTabForm=new Form_1.Form({name:"header-customizer-new"},[Form_1.Form.input({label:"Name",name:"name",value:"",required:!0,pattern:"[\\S ]+"}),Form_1.Form.input({label:"Hover",value:"",name:"title"}),Form_1.Form.input({label:"Link",value:"",name:"href"}),Form_1.Form.checkbox({label:"Attach to the right side",value:!1,name:"right"}),Form_1.Form.button({value:"Submit",type:"submit"}),Form_1.Form.hr(),Form_1.Form.div({value:"Available variables:"}),Form_1.Form.copy({label:"Unique ID",value:"%userid%"}),Form_1.Form.copy({label:"Username",value:"%username%"}),Form_1.Form.hr(),Form_1.Form.div({value:"Drag-and-drop tabs to re-arrange.<br />Click on a tab to edit it."})],((values,form)=>{this.addTab({name:values.name,title:values.title,href:values.href,right:values.right}),form.reset(),this.reloadTabMargins()}));this.addTabModal=new Modal_1.Modal({title:"Add Tab",triggers:[{element:this.addTabButton}],content:Form_1.Form.placeholder(),structure:newTabForm,position:{my:"right top",at:"right top"}}),this.updateTabForm=new Form_1.Form({name:"header-customizer-update"},[Form_1.Form.input({label:"Name",name:"name",value:"",required:!0,pattern:"[\\S ]+"}),Form_1.Form.input({label:"Hover",value:"",name:"title"}),Form_1.Form.input({label:"Link",value:"",name:"href"}),Form_1.Form.checkbox({label:"Attach to the right side",value:!1,name:"right"}),Form_1.Form.button({value:"Delete",type:"button"},(()=>{this.deleteTab(this.updateTabModal.getActiveTrigger().parent()),this.updateTabModal.close()})),Form_1.Form.button({value:"Update",type:"submit"})],((values,form)=>{this.updateTab(this.updateTabModal.getActiveTrigger().parent(),{name:values.name,title:values.title,href:values.href,right:values.right}),this.updateTabModal.close(),form.reset(),this.reloadTabMargins()})),this.updateTabModal=new Modal_1.Modal({title:"Update Tab",triggers:[{element:$("menu.main li a")}],content:Form_1.Form.placeholder(),structure:this.updateTabForm,position:{my:"center top",at:"center top"},triggerMulti:!0,disabled:!0})}enableEditingMode(){this.$menu.attr("data-editing","true"),this.$menu.sortable("enable"),this.updateTabModal.enable(),this.updateTabModal.getElement().on("dialogopen",(()=>{const $tab=this.updateTabModal.getActiveTrigger().parent(),$updateTabInputs=this.updateTabForm.getInputList();$updateTabInputs.get("name").val($tab.data("tab.name")),$updateTabInputs.get("title").val($tab.data("tab.title")),$updateTabInputs.get("href").val($tab.data("tab.href")),$updateTabInputs.get("right").prop("checked",$tab.data("tab.right"))}))}disableEditingMode(){this.$menu.attr("data-editing","false"),this.$menu.sortable("disable"),this.updateTabModal.close(),this.updateTabModal.disable()}toggleForumDot(state){this.$menu.attr("data-forumdot",""+state)}createTabElement(config,triggerUpdate=!1){config=this.parseHeaderTabConfig(config);const $tab=$("<li>").data({"tab.name":config.name,"tab.title":config.title,"tab.href":config.href,"tab.right":config.right}).attr("align",config.right?"true":void 0).appendTo(this.$menu),$link=$("<a>").html(this.processTabVariables(config.name)).appendTo($tab);return""!==config.title&&$link.attr("title",this.processTabVariables(config.title)),""!==config.href&&$link.attr("href",this.processTabVariables(config.href)),"/forum_topics"===config.href&&this.hasForumUpdates?$link.addClass("tab-has-updates"):"/users/%userid%"!=config.href&&"/users/home"!=config.href||User_1.User.loggedIn||$link.attr("href","/session/new").addClass("tab-login").html("Sign In"),triggerUpdate&&this.saveNavbarSettings(),""!==config.href.trim()&&Page_1.Page.getURL().pathname.includes(this.processTabVariables(config.href).split("?")[0])&&$tab.addClass("bg-foreground"),{tab:$tab,link:$link}}parseHeaderTabConfig(config){return void 0===config.name&&(config.name="New Tab"),void 0===config.href&&(config.href=""),void 0===config.title&&(config.title=""),void 0===config.right&&(config.right=!1),config}addTab(config){config=this.parseHeaderTabConfig(config);const newTab=this.createTabElement(config,!0);this.updateTabModal.registerTrigger({element:newTab.link})}updateTab($element,config){config=this.parseHeaderTabConfig(config),$element.data({"tab.name":config.name,"tab.title":config.title,"tab.href":config.href,"tab.right":config.right}).removeAttr("align").attr("align",config.right?"true":void 0),$element.find("a").first().html(this.processTabVariables(config.name)).attr("title",this.processTabVariables(config.title)).attr("href",this.processTabVariables(config.href)),this.saveNavbarSettings()}deleteTab($element){$element.remove(),this.saveNavbarSettings()}processTabVariables(text){return text.replace(/%userid%/g,User_1.User.userID+"").replace(/%username%/g,User_1.User.username)}async saveNavbarSettings(){const tabData=[];function formatVal(value){if(value)return value}this.$menu.find("li").each((function(i,element){const $tab=$(element);tabData.push({name:formatVal($tab.data("tab.name")),title:formatVal($tab.data("tab.title")),href:formatVal($tab.data("tab.href")),right:!!$tab.data("tab.right")||void 0})})),await this.pushSettings("tabs",tabData)}static openTabNum(num){const tabs=ModuleController_1.ModuleController.get(HeaderCustomizer).$menu.find("li > a");num>tabs.length||tabs[num].click()}reloadTabMargins(){this.$menu.children("li").removeClass("margined"),this.$menu.find("li[align=true]").first().addClass("margined")}}exports.HeaderCustomizer=HeaderCustomizer},{"../../components/ModuleController":1,"../../components/RE6Module":2,"../../components/data/Page":20,"../../components/data/User":22,"../../components/structure/Form":29,"../../components/structure/Modal":30,"../../components/utility/Util":38}],54:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.JanitorEnhancements=void 0;const Page_1=require("../../components/data/Page"),Post_1=require("../../components/post/Post"),RE6Module_1=require("../../components/RE6Module");class JanitorEnhancements extends RE6Module_1.RE6Module{constructor(){super([],!0),this.registerHotkeys({keys:"hotkeyApprovePost",fnct:this.approvePost},{keys:"hotkeyApprovePostPrev",fnct:this.approvePostPrev},{keys:"hotkeyApprovePostNext",fnct:this.approvePostNext})}getDefaultSettings(){return{enabled:!0,hotkeyApprovePost:"",hotkeyApprovePostPrev:"",hotkeyApprovePostNext:""}}create(){Page_1.Page.matches(Page_1.PageDefinition.post)&&(this.cleanupRecords(),this.decorateArtistName()),Page_1.Page.matches(Page_1.PageDefinition.postConfirmDelete)&&this.enhanceDeletionpage()}cleanupRecords(){for(const element of $("#post-information span.user-feedback-neutral, #post-information span.user-feedback-negative, #post-information span.user-feedback-positive").get())$(element).html(((index,value)=>value.replace(/ (Neutral|Neg|Pos)$/,"")));$("#post-information a[href^='/user_feedbacks']").html(((index,html)=>html.replace(/^\( +/,"(").replace(/ +\)$/,")")))}decorateArtistName(){const post=Post_1.Post.getViewingPost();post.tags.artist.has(post.uploaderName.toLowerCase())&&$('<span class="post-uploader-artist">(artist)</span>').appendTo("#post-information li:contains('Uploader')")}approvePost(){Page_1.Page.matches(Page_1.PageDefinition.post)&&$("a#approve-post").first()[0].click()}approvePostPrev(){Page_1.Page.matches(Page_1.PageDefinition.post)&&$("a#approve-post-prev").first()[0].click()}approvePostNext(){Page_1.Page.matches(Page_1.PageDefinition.post)&&$("a#approve-post-next").first()[0].click()}enhanceDeletionpage(){const postElements=$("#c-confirm-delete article");if(2!=postElements.length)return;const deleted=Post_1.PostData.fromThumbnail(postElements.first()),inheritor=Post_1.PostData.fromThumbnail(postElements.last()),portedTags=new Set(Array.from(deleted.tags.all).filter((item=>!inheritor.tags.all.has(item)))),container=$("<div>").addClass("deletion-diff").css("display","none").appendTo(".post_delete_options .input");if(0==portedTags.size)$("<span><i>none</i></span>").appendTo(container);else for(const tag of portedTags)$("<span>").html(`<a href="/wiki_pages/show_or_new?title=${tag}">${tag}</a> `).appendTo(container);const toggle=$("#copy_tags");toggle.is(":checked")&&container.css("display",""),toggle.on("click",(()=>{toggle.is(":checked")?container.css("display",""):container.css("display","none")}))}}exports.JanitorEnhancements=JanitorEnhancements},{"../../components/RE6Module":2,"../../components/data/Page":20,"../../components/post/Post":23}],55:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.Miscellaneous=void 0;const E621_1=require("../../components/api/E621"),XM_1=require("../../components/api/XM"),Page_1=require("../../components/data/Page"),ModuleController_1=require("../../components/ModuleController"),Post_1=require("../../components/post/Post"),PostActions_1=require("../../components/post/PostActions"),PostParts_1=require("../../components/post/PostParts"),RE6Module_1=require("../../components/RE6Module"),Util_1=require("../../components/utility/Util"),BetterSearch_1=require("../search/BetterSearch");class Miscellaneous extends RE6Module_1.RE6Module{constructor(){super(),this.registerHotkeys({keys:"hotkeyNewComment",fnct:this.openNewComment},{keys:"hotkeyEditPost",fnct:this.openEditTab},{keys:"hotkeyToggleBlacklist",fnct:this.toggleBlacklist},{keys:"hotkeySubmit",fnct:this.handleSubmitForm,element:"body",selector:"textarea, input"},{keys:"hotkeyRandomSetPost",fnct:this.randomSetPost},{keys:"hotkeyScrollUp",fnct:this.scrollUp,holdable:!0},{keys:"hotkeyScrollDown",fnct:this.scrollDown,holdable:!0})}getDefaultSettings(){return{enabled:!0,hotkeyNewComment:"n",hotkeyEditPost:"e",hotkeyToggleBlacklist:"",hotkeySubmit:"alt+return",hotkeyRandomSetPost:"",hotkeyScrollUp:"",hotkeyScrollDown:"",stickySearchbox:!0,stickyHeader:!1,stickyEditBox:!0,hideBlacklist:!1,avatarClick:!0,commitWikiLinks:!1,disableCommentRules:!0,fixForumTitle:!0,profileEnhancements:!0}}create(){if(super.create(),Page_1.Page.matches([Page_1.PageDefinition.post,Page_1.PageDefinition.forum])&&$((()=>{this.handleQuoteButton(),this.handleIDButton()})),Page_1.Page.matches([Page_1.PageDefinition.search,Page_1.PageDefinition.post,Page_1.PageDefinition.favorites])&&this.createStickySearchbox(this.fetchSettings("stickySearchbox")),this.createStickyHeader(this.fetchSettings("stickyHeader")),Page_1.Page.matches([Page_1.PageDefinition.search,Page_1.PageDefinition.favorites])&&this.createStickyEditBox(this.fetchSettings("stickyEditBox")),this.hideBlacklist(this.fetchSettings("hideBlacklist")),this.handleAvatarClick(this.fetchSettings("avatarClick")),$((()=>{this.handleCommentRules(this.fetchSettings("disableCommentRules"))})),this.fetchSettings("fixForumTitle")&&Page_1.Page.matches(Page_1.PageDefinition.forum)){const title=/^(?:Forum - )(.+)(?: - (e621|e926))$/g.exec(document.title);title&&(document.title=`${title[1]} - Forum - ${title[2]}`)}Page_1.Page.matches(Page_1.PageDefinition.settings)&&this.modifyBlacklistForm(),Page_1.Page.matches(Page_1.PageDefinition.set)&&this.tweakSetPage(),Page_1.Page.matches(Page_1.PageDefinition.changes)&&this.fetchSettings("commitWikiLinks")&&$((()=>{for(const link of $(".diff-list a").get()){const $link=$(link),text=$link.text().replace(/^[+-]/,"");$link.attr("href","/wiki_pages/show_or_new?title="+encodeURIComponent(text))}})),$((async()=>{if(Page_1.Page.matches(Page_1.PageDefinition.post)){const post=Post_1.Post.getViewingPost(),tags=post.tags.all;for(const trimmedTag of["better_version_at_source","thumbnail","low_res","hi_res","absurd_res","superabsurd_res","invalid_tag"])tags.delete(trimmedTag);const attributes=[];post.sources.length>0&&attributes.push("sources="+function(array,delimiter=","){const result=[];for(const el of array)result.push(encodeURIComponent(el));return result.join(delimiter)}(post.sources)),attributes.push("tags="+encodeURIComponent(Array.from(tags).join(" "))),attributes.push("simple-form=true"),attributes.push("rating="+post.rating),post.description.length>0&&(post.description.length+attributes.join("&").length>8e3?attributes.push("description="+encodeURIComponent("Copy Description Manually")):attributes.push("description="+encodeURIComponent(post.description))),$("<a>").attr("href","/uploads/new?"+attributes.join("&")).html("Reupload").appendTo($("<li>").appendTo("#post-history ul"))}if(Page_1.Page.matches(Page_1.PageDefinition.upload)){const tags=Page_1.Page.getQueryParameter("tags");if(tags){const tagsEl=$("#post_tags").val(tags+" ");Util_1.Util.Events.triggerVueEvent(tagsEl,"input")}const rating=Page_1.Page.getQueryParameter("rating");rating&&"undefined"!==rating&&$("button.toggle-button.rating-"+rating)[0].click()}})),$("#ad-leaderboard").prependTo("#content"),this.resetContentHeaders(),Util_1.Util.DOM.addSettingsButton({id:"header-button-dmail",name:'<i class="fas fa-envelope"></i>',href:"/dmails",title:"DMail"}),Page_1.Page.matches(Page_1.PageDefinition.post)&&this.addRemoveFromSetButton()}resetContentHeaders(){const config=this.fetchSettings(["profileEnhancements"]);Page_1.Page.matches(Page_1.PageDefinition.profile)&&config.profileEnhancements?$("#page").attr("enhancements","true"):$("#c-users").removeAttr("enhancements")}openNewComment(){Page_1.Page.matches(Page_1.PageDefinition.post)?($("menu#post-sections > li > a[href$=comments]")[0].click(),$("a.expand-comment-response")[0].click()):Page_1.Page.matches(Page_1.PageDefinition.forum)&&$("a#new-response-link")[0].click()}openEditTab(){Page_1.Page.matches(Page_1.PageDefinition.post)&&window.setTimeout((()=>{$("#post-edit-link")[0].click()}),100)}createStickySearchbox(state=!0){$("body").attr("data-sticky",state+"")}createStickyHeader(state=!0){$("body").attr("data-sticky-header",state+"")}createStickyEditBox(state=!0){$("body").attr("data-sticky-editbox",state+"")}hideBlacklist(state=!0){$("body").attr("data-hide-blacklist",state+"")}handleQuoteButton(){Page_1.Page.matches(Page_1.PageDefinition.forum)?($(".forum-post-reply-link").each((function(index,element){const $newLink=$("<a>").attr("href","#").addClass("re621-forum-post-reply").html("Respond");$(element).after($newLink).remove()})),$(".re621-forum-post-reply").on("click",(event=>{event.preventDefault();const $parent=$(event.target).parents("article.forum-post");this.quote($parent,"forum",$parent.data("forum-post-id"),$("#forum_post_body_for_"),$("a#new-response-link"))}))):Page_1.Page.matches(Page_1.PageDefinition.post)&&($(".comment-reply-link").each((function(index,element){const $newLink=$("<a>").attr("href","#").addClass("re621-comment-reply").html("Respond");$(element).after($newLink).remove()})),$(".re621-comment-reply").on("click",(event=>{event.preventDefault();const $parent=$(event.target).parents("article.comment");this.quote($parent,"comment",$parent.data("comment-id"),$("#comment_body_for_"),$("a.expand-comment-response"))})))}handleIDButton(){Page_1.Page.matches(Page_1.PageDefinition.forum)?($(".content-menu > menu > li:last-of-type").each((function(index,element){const $copyElement=$("<a>").addClass("re621-forum-post-copy-id").html("Copy ID");$(element).after($copyElement),$($copyElement).wrap("<li>")})),$(".re621-forum-post-copy-id").on("click",(event=>{event.preventDefault();const $post=$(event.target).parents("article.forum-post");XM_1.XM.Util.setClipboard($post.data("forum-post-id"))}))):Page_1.Page.matches(Page_1.PageDefinition.post)&&($(".content-menu > menu").each((function(index,element){const $element=$(element);$("<li>").text("|").appendTo($element);const $copyElement=$("<a>").addClass("re621-comment-copy-id").text("Copy ID");$("<li>").appendTo($element).append($copyElement)})),$(".re621-comment-copy-id").on("click",(event=>{event.preventDefault();const $comment=$(event.target).parents("article.comment");XM_1.XM.Util.setClipboard($comment.data("comment-id"))})),$(".show-all-comments-for-post-link").on("click",(async()=>{await Util_1.Util.sleep(500),this.handleIDButton()})))}async quote($parent,endpoint,id,$textarea,$responseButton){let strippedBody="";const selection=window.getSelection().toString();if(""===selection){strippedBody=("forum"===endpoint?await E621_1.E621.ForumPost.id(id).first():await E621_1.E621.Comment.id(id).first()).body.replace(/\[quote\](?:.|\n|\r)+?\[\/quote\][\n\r]*/gm,""),strippedBody='[quote]"'+$parent.data("creator")+'":/users/'+$parent.data("creator-id")+" said:\n"+strippedBody+"\n[/quote]"}else strippedBody='[quote]"'+$parent.data("creator")+'":/users/'+$parent.data("creator-id")+" said:\n"+selection+"\n[/quote]";($textarea.val()+"").length>0&&(strippedBody="\n\n"+strippedBody),$responseButton[0].click(),$textarea.scrollTop($textarea[0].scrollHeight);const newVal=$textarea.val()+strippedBody+"\n\n";$textarea.trigger("focus").val("").val(newVal)}handleAvatarClick(state=!0){PostParts_1.PostParts.unstrapDoubleClick("div.avatar > div.active > a"),state&&PostParts_1.PostParts.bootstrapDoubleClick("div.avatar > div > a",($link=>{XM_1.XM.Util.openInTab(window.location.origin+$link.attr("href"),!1)}),(()=>ModuleController_1.ModuleController.get(BetterSearch_1.BetterSearch).fetchSettings("clickAction")!==BetterSearch_1.ImageClickAction.NewTab))}handleSubmitForm(event){$(event.target).parents("form").trigger("submit")}modifyBlacklistForm(){const $textarea=$("textarea#user_blacklisted_tags"),$container=$("div.user_blacklisted_tags"),charCounter=$("<span>").addClass("char-counter").html(($textarea.val()+"").length+" / 50000");$("<div>").addClass("blacklist-character-counter-box").append(charCounter).appendTo($container),$textarea.on("keyup",(()=>{charCounter.html(($textarea.val()+"").length+" / 50000")}))}toggleBlacklist(){$("a#disable-all-blacklists:visible, a#re-enable-all-blacklists:visible").first()[0].click()}tweakSetPage(){const wrapper=$("span.set-viewposts").first();wrapper.find("a").addClass("button btn-success"),$("<a>").addClass("button btn-neutral").html("Random Post").attr({id:"set-random-post"}).on("click",(async()=>{const shortname=$("div.set-shortname a").first().text(),result=await E621_1.E621.Posts.get({tags:["set:"+shortname,"order:random"],limit:1});0!=result.length&&(location.href="/posts/"+result[0].id+"?q=set:"+shortname)})).appendTo(wrapper)}randomSetPost(){Page_1.Page.matches(Page_1.PageDefinition.set)&&$("#set-random-post")[0].click()}handleCommentRules(disable=!0){$("div.new-comment > h2 > a[href='/wiki_pages?search%5Btitle%5D=howto%3Acomment']").parent("h2").toggleClass("display-none",disable)}scrollUp(){window.scrollBy(0,-.15*$(window).height())}scrollDown(){window.scrollBy(0,.15*$(window).height())}addRemoveFromSetButton(){const post=Post_1.Post.getViewingPost();for(const link of $("div.set-nav span.set-name a").get()){const $link=$(link),id=parseInt($link.attr("href").replace("/post_sets/",""));id&&$("<a>").addClass("remove-from-set-button").html('<i class="fas fa-times"></i>').insertAfter($link).on("click",(event=>{event.preventDefault(),PostActions_1.PostActions.removeSet(id,post.id)}))}}}exports.Miscellaneous=Miscellaneous},{"../../components/ModuleController":1,"../../components/RE6Module":2,"../../components/api/E621":5,"../../components/api/XM":7,"../../components/data/Page":20,"../../components/post/Post":23,"../../components/post/PostActions":24,"../../components/post/PostParts":26,"../../components/utility/Util":38,"../search/BetterSearch":69}],56:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.SettingsController=void 0;const E621_1=require("../../components/api/E621"),XM_1=require("../../components/api/XM"),TagCache_1=require("../../components/cache/TagCache"),TagSuggestions_1=require("../../components/cache/TagSuggestions"),User_1=require("../../components/data/User"),ModuleController_1=require("../../components/ModuleController"),Post_1=require("../../components/post/Post"),RE6Module_1=require("../../components/RE6Module"),Form_1=require("../../components/structure/Form"),Modal_1=require("../../components/structure/Modal"),Tabbed_1=require("../../components/structure/Tabbed"),Debug_1=require("../../components/utility/Debug"),Patcher_1=require("../../components/utility/Patcher"),Util_1=require("../../components/utility/Util"),VersionChecker_1=require("../../components/utility/VersionChecker"),FavDownloader_1=require("../downloader/FavDownloader"),MassDownloader_1=require("../downloader/MassDownloader"),PoolDownloader_1=require("../downloader/PoolDownloader"),SmartAlias_1=require("../misc/SmartAlias"),TagSuggester_1=require("../misc/TagSuggester"),UploadUtilities_1=require("../misc/UploadUtilities"),DownloadCustomizer_1=require("../post/DownloadCustomizer"),ImageScaler_1=require("../post/ImageScaler"),PoolNavigator_1=require("../post/PoolNavigator"),PostViewer_1=require("../post/PostViewer"),TitleCustomizer_1=require("../post/TitleCustomizer"),BetterSearch_1=require("../search/BetterSearch"),BlacklistEnhancer_1=require("../search/BlacklistEnhancer"),CustomFlagger_1=require("../search/CustomFlagger"),HoverZoom_1=require("../search/HoverZoom"),SearchUtilities_1=require("../search/SearchUtilities"),ForumTracker_1=require("../subscriptions/ForumTracker"),PoolTracker_1=require("../subscriptions/PoolTracker"),_SubscriptionManager_1=require("../subscriptions/_SubscriptionManager"),CommentBlacklist_1=require("./CommentBlacklist"),HeaderCustomizer_1=require("./HeaderCustomizer"),JanitorEnhancements_1=require("./JanitorEnhancements"),Miscellaneous_1=require("./Miscellaneous"),AvoidPosting_1=require("../../components/cache/AvoidPosting");class SettingsController extends RE6Module_1.RE6Module{constructor(){super(),this.registerHotkeys({keys:"hotkeyOpenSettings",fnct:this.openSettings})}getDefaultSettings(){return{enabled:!0,checkUpdates:!0,hotkeyOpenSettings:""}}create(){this.openSettingsButton=Util_1.Util.DOM.addSettingsButton({id:"header-button-settings",name:'<i class="fas fa-wrench"></i>',title:"Settings",tabClass:"float-right",attr:{"data-loading":"false","data-updates":"0"},linkClass:"update-notification"});const $settings=new Tabbed_1.Tabbed({name:"settings-tabs",content:[{name:"General",structure:this.createGeneralTab()},{name:"Blacklist",structure:this.createBlacklistTab()},{name:"Downloads",structure:this.createDownloadsTab()},{name:"Uploads and Tags",structure:this.createUploadsTab()},{name:"Hotkeys",structure:this.createHotkeysTab()},{name:"Features",structure:this.createFeaturesTab()},{name:this.utilTabButton=$("<a>").attr({"data-loading":"false","data-updates":"0",id:"conf-tab-util"}).addClass("update-notification").html("Utilities"),structure:this.createMiscTab()},{name:this.aboutTabButton=$("<a>").attr({"data-loading":"false","data-updates":"0",id:"conf-tab-about"}).addClass("update-notification").html("About"),structure:this.createAboutTab()}]});new Modal_1.Modal({title:"Settings",triggers:[{element:this.openSettingsButton}],escapable:!1,fixed:!0,reserveHeight:!0,content:Form_1.Form.placeholder(3),structure:$settings,position:{my:"center",at:"center"}})}pushNotificationsCount(tab,count=0){this.openSettingsButton.attr("data-updates",(parseInt(this.openSettingsButton.attr("data-updates"))||0)+count);("util"==tab?this.utilTabButton:this.aboutTabButton).attr("data-updates",(parseInt(this.utilTabButton.attr("data-updates"))||0)+count)}createGeneralTab(){const titleCustomizer=ModuleController_1.ModuleController.get(TitleCustomizer_1.TitleCustomizer),miscellaneous=ModuleController_1.ModuleController.get(Miscellaneous_1.Miscellaneous),postViewer=ModuleController_1.ModuleController.get(PostViewer_1.PostViewer),imageScaler=ModuleController_1.ModuleController.get(ImageScaler_1.ImageScaler),headerCustomizer=ModuleController_1.ModuleController.get(HeaderCustomizer_1.HeaderCustomizer),searchUtilities=ModuleController_1.ModuleController.get(SearchUtilities_1.SearchUtilities),betterSearch=ModuleController_1.ModuleController.get(BetterSearch_1.BetterSearch),hoverZoom=ModuleController_1.ModuleController.get(HoverZoom_1.HoverZoom);return new Form_1.Form({name:"conf-general",columns:3,width:3},[Form_1.Form.accordion({name:"collapse",columns:3,width:3,active:0},[Form_1.Form.accordionTab({name:"general",label:"General",columns:3,width:3},[Form_1.Form.div({value:"<b>Main Page</b><br />Reroute the title page to the one specified",width:2}),Form_1.Form.select({value:Util_1.Util.LS.getItem("re621.mainpage")||"default"},{default:"Default",posts:"Posts",forum_topics:"Forums",blips:"Blips"},(value=>{Util_1.Util.LS.setItem("re621.mainpage",value)})),Form_1.Form.hr(3),Form_1.Form.checkbox({value:miscellaneous.fetchSettings("stickyHeader"),label:"<b>Fixed Header</b><br />Make the page header stick to the top when scrolling",width:3},(async data=>{await miscellaneous.pushSettings("stickyHeader",data),miscellaneous.createStickyHeader(data),$("#sidebar").trigger("re621:reflow")})),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:miscellaneous.fetchSettings("stickySearchbox"),label:"<b>Fixed Sidebar</b><br />Leave the sidebar controls on the screen while scrolling",width:3},(async data=>{await miscellaneous.pushSettings("stickySearchbox",data),miscellaneous.createStickySearchbox(data),$("#sidebar").trigger("re621:reflow")})),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:miscellaneous.fetchSettings("stickyEditBox"),label:"<b>Fixed Edit Form</b><br />Make the quick tags form stick to the top when scrolling",width:3},(async data=>{await miscellaneous.pushSettings("stickyEditBox",data),miscellaneous.createStickyEditBox(data)}))]),Form_1.Form.accordionTab({name:"sidebar",label:"Sidebar",columns:3,width:3},[Form_1.Form.checkbox({value:searchUtilities.fetchSettings("autoFocusSearch"),label:"<b>Auto Focus Search</b><br />If true, the cursor will be set to the search bar automatically",width:3},(async data=>{await searchUtilities.pushSettings("autoFocusSearch",data)})),Form_1.Form.hr(3),Form_1.Form.checkbox({value:searchUtilities.fetchSettings("improveTagCount"),label:"<b>Expanded Tag Count</b><br />Replace the rounded tag count in the sidebar with the precise one",width:3},(async data=>{await searchUtilities.pushSettings("improveTagCount",data),searchUtilities.isInitialized()&&searchUtilities.improveTagCount(data)})),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:searchUtilities.fetchSettings("shortenTagNames"),label:"<b>Shorten Tag Names</b><br />Cut off long tag names to make them fit on one line",width:3},(async data=>{await searchUtilities.pushSettings("shortenTagNames",data),searchUtilities.isInitialized()&&searchUtilities.shortenTagNames(data)})),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:searchUtilities.fetchSettings("hidePlusMinusIcons"),label:"<b>Hide + and - Icons</b><br />Remove these icons from view",width:3},(async data=>{await searchUtilities.pushSettings("hidePlusMinusIcons",data),searchUtilities.isInitialized()&&searchUtilities.hidePlusMinusIcons(data)})),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:postViewer.fetchSettings("boldenTags"),label:"<b>Boldened Tags</b><br />Restore the classic boldened look on the sidebar tags",width:3},(async data=>{await postViewer.pushSettings("boldenTags",data),postViewer.toggleBoldenedTags(data)}))]),Form_1.Form.accordionTab({name:"thumb",label:"Thumbnails",columns:3,width:3},[Form_1.Form.subheader("Hi-Res Thumbnails","Replace 150x150 thumbnails with high-resolution ones",2),Form_1.Form.select({value:betterSearch.fetchSettings("imageLoadMethod")},{disabled:"Disabled",hover:"On Hover",always:"Always"},(async data=>{await betterSearch.pushSettings("imageLoadMethod",data),betterSearch.isInitialized()&&(betterSearch.reloadEventListeners(),betterSearch.reloadRenderedPosts())})),Form_1.Form.spacer(3,!0),Form_1.Form.checkbox({value:betterSearch.fetchSettings("autoPlayGIFs"),label:"<b>Auto-Play GIFs</b><br />If disabled, animated GIFs will only play on hover",width:3},(async data=>{await betterSearch.pushSettings("autoPlayGIFs",data),betterSearch.isInitialized()&&betterSearch.reloadRenderedPosts(),$("#conf-general-collapse-thumb-maxPlayingGIFs-desc").toggleClass("input-disabled",data),$("#conf-general-collapse-thumb-maxPlayingGIFs").prop("disabled",data).parent().toggleClass("input-disabled",data)})),Form_1.Form.spacer(3,!0),Form_1.Form.subheader("Maximum number of playing GIFs","How many GIFs can be playing at one time. Set to -1 to disable.",2,"maxPlayingGIFs-desc",betterSearch.fetchSettings("autoPlayGIFs")?"input-disabled":void 0),Form_1.Form.input({name:"maxPlayingGIFs",value:betterSearch.fetchSettings("maxPlayingGIFs"),title:"Number between 1 and 320",required:!0,pattern:"^(-1|[1-9][0-9]?|1[0-9][0-9]|2[0-4][0-9]|250)$",wrapper:betterSearch.fetchSettings("autoPlayGIFs")?"input-disabled":void 0,disabled:betterSearch.fetchSettings("autoPlayGIFs")},(async(data,input)=>{""!=input.val()&&input.get()[0].checkValidity()&&(await betterSearch.pushSettings("maxPlayingGIFs",parseInt(data)),betterSearch.isInitialized()&&betterSearch.reloadRenderedPosts())})),Form_1.Form.spacer(3,!0),Form_1.Form.subheader("Double-Click Action","Action taken when a thumbnail is double-clicked",2),Form_1.Form.select({value:betterSearch.fetchSettings("clickAction")},{disabled:"Disabled",newtab:"Open New Tab",copyid:"Copy Post ID",blacklist:"Add to Blacklist",addtoset:"Add to Current Set ",toggleset:"Toggle Current Set "},(async data=>{await betterSearch.pushSettings("clickAction",data),betterSearch.isInitialized()&&betterSearch.reloadRenderedPosts()})),Form_1.Form.spacer(3,!0),Form_1.Form.collapse({name:"scaling",columns:3,width:3,title:"Scaling Options",collapsed:!0},[Form_1.Form.checkbox({value:betterSearch.fetchSettings("imageSizeChange"),label:"<b>Thumbnail Rescaling</b><br />Resize thumbnail images according to settings below",width:3},(async data=>{await betterSearch.pushSettings("imageSizeChange",data),betterSearch.isInitialized()&&betterSearch.updateContentHeader(),$("#conf-general-collapse-thumb-scaling-thumbsize-desc").toggleClass("input-disabled",!data),$("#conf-general-collapse-thumb-scaling-thumbsize").prop("disabled",!data).parent().toggleClass("input-disabled",!data),$("#conf-general-collapse-thumb-scaling-thumbnailResizeButtons").prop("disabled",!data),$("label[for='conf-general-collapse-thumb-scaling-thumbnailResizeButtons']").parent().toggleClass("input-disabled",!data),betterSearch.fetchSettings("thumbnailResizeButtons")&&BetterSearch_1.BetterSearch.toggleResizeButtons(data)})),Form_1.Form.spacer(3,!0),Form_1.Form.subheader("Thumbnail Size","Thumbnail card width, in pixels",2,"thumbsize-desc",betterSearch.fetchSettings("imageSizeChange")?void 0:"input-disabled"),Form_1.Form.input({name:"thumbsize",value:betterSearch.fetchSettings("imageWidth"),title:"Number between 150 and 999",required:!0,pattern:"^(1[5-9][0-9]|[2-9][0-9][0-9])$",wrapper:betterSearch.fetchSettings("imageSizeChange")?void 0:"input-disabled",disabled:!betterSearch.fetchSettings("imageSizeChange")},(async(data,input)=>{""!=input.val()&&input.get()[0].checkValidity()&&(await betterSearch.pushSettings("imageWidth",parseInt(data)),betterSearch.isInitialized()&&betterSearch.updateContentHeader())})),Form_1.Form.spacer(3,!0),Form_1.Form.checkbox({name:"cropimages",value:betterSearch.fetchSettings("imageRatioChange"),label:"<b>Crop Images</b><br />Restrict image size to the specified ratio",width:3},(async data=>{await betterSearch.pushSettings("imageRatioChange",data),betterSearch.isInitialized()&&(betterSearch.updateContentHeader(),betterSearch.reloadRenderedPosts()),$("#conf-general-collapse-thumb-scaling-cropratio-desc").toggleClass("input-disabled",!data),$("#conf-general-collapse-thumb-scaling-cropratio").prop("disabled",!data).parent().toggleClass("input-disabled",!data)})),Form_1.Form.spacer(3,!0),Form_1.Form.subheader("Image Ratio","Height to width ratio of the image",2,"cropratio-desc",betterSearch.fetchSettings("imageRatioChange")?void 0:"input-disabled"),Form_1.Form.input({name:"cropratio",value:betterSearch.fetchSettings("imageRatio"),title:"Number between 0.1 and 1.9",required:!0,pattern:"^1|([01]\\.[1-9]|1\\.0)$",wrapper:betterSearch.fetchSettings("imageRatioChange")?void 0:"input-disabled",disabled:!betterSearch.fetchSettings("imageRatioChange")},(async(data,input)=>{""!=input.val()&&input.get()[0].checkValidity()&&(await betterSearch.pushSettings("imageRatio",parseFloat(data)),betterSearch.isInitialized()&&(betterSearch.updateContentHeader(),betterSearch.reloadRenderedPosts()))})),Form_1.Form.spacer(3,!0),Form_1.Form.checkbox({name:"compactMode",value:betterSearch.fetchSettings("compactMode"),label:"<b>Compact Mode</b><br />Limit the image height to the same value as the width",width:3},(async data=>{await betterSearch.pushSettings("compactMode",data),betterSearch.isInitialized()&&(betterSearch.updateContentHeader(),betterSearch.reloadRenderedPosts())})),Form_1.Form.spacer(3,!0),Form_1.Form.subheader("Minimum Image Width","Images narrower than this percent value will be cropped to fit",2),Form_1.Form.input({value:betterSearch.fetchSettings("imageMinWidth"),required:!0,pattern:"^([1-9][0-9]|100)$",title:"Number between 10 and 100"},(async(data,input)=>{""!=input.val()&&input.get()[0].checkValidity()&&(await betterSearch.pushSettings("imageMinWidth",parseInt(data)),betterSearch.isInitialized()&&betterSearch.updateContentHeader())})),Form_1.Form.spacer(3,!0),Form_1.Form.checkbox({name:"thumbnailResizeButtons",value:betterSearch.fetchSettings("thumbnailResizeButtons"),label:"<b>Thumbnail Rescaling Buttons</b><br />Resize the images using the - and + buttons in the top right",width:3,disabled:!betterSearch.fetchSettings("imageSizeChange")},(async data=>{await betterSearch.pushSettings("thumbnailResizeButtons",data),betterSearch.isInitialized()&&betterSearch.updateContentHeader()})),Form_1.Form.spacer(3,!0)]),Form_1.Form.spacer(3,!0),Form_1.Form.collapse({name:"elements",columns:3,width:3,title:"Thumbnail Elements",collapsed:!0},[Form_1.Form.checkbox({value:betterSearch.fetchSettings("hoverTags"),label:"<b>Preserve Hover Text</b><br />Restores text displayed when hovering over the thumbnail",width:3},(async data=>{await betterSearch.pushSettings("hoverTags",data),betterSearch.isInitialized()&&betterSearch.reloadRenderedPosts()})),Form_1.Form.spacer(3,!0),Form_1.Form.checkbox({name:"votebutton",value:betterSearch.fetchSettings("buttonsVote"),label:"<b>Voting Buttons</b><br />Adds voting buttons when hovering over a thumbnail",width:3},(async data=>{await betterSearch.pushSettings("buttonsVote",data),betterSearch.isInitialized()&&betterSearch.reloadRenderedPosts()})),Form_1.Form.spacer(3,!0),Form_1.Form.checkbox({name:"favbutton",value:betterSearch.fetchSettings("buttonsFav"),label:"<b>Favorite Button</b><br />Adds a +favorite button when hovering over a thumbnail",width:3},(async data=>{await betterSearch.pushSettings("buttonsFav",data),betterSearch.isInitialized()&&betterSearch.reloadRenderedPosts()})),Form_1.Form.spacer(3,!0),Form_1.Form.checkbox({value:betterSearch.fetchSettings("ribbonsRel"),label:"<b>Relations Ribbons</b><br />Display ribbons for parent/child relationships",width:3},(async data=>{await betterSearch.pushSettings("ribbonsRel",data),betterSearch.isInitialized()&&betterSearch.reloadRenderedPosts()})),Form_1.Form.spacer(3,!0),Form_1.Form.checkbox({value:betterSearch.fetchSettings("ribbonsFlag"),label:"<b>Status Ribbons</b><br />Display post status as a colored ribbon on the post",width:3},(async data=>{await betterSearch.pushSettings("ribbonsFlag",data),betterSearch.isInitialized()&&betterSearch.reloadRenderedPosts()})),Form_1.Form.spacer(3,!0),Form_1.Form.checkbox({value:betterSearch.fetchSettings("ribbonsAlt"),label:"<b>Alternative Ribbons</b><br />Place the ribbons on the bottom of the thumbnail",width:3},(async data=>{await betterSearch.pushSettings("ribbonsAlt",data),betterSearch.isInitialized()&&betterSearch.updateContentHeader()}))]),Form_1.Form.spacer(3,!0),Form_1.Form.checkbox({value:betterSearch.fetchSettings("highlightVisited"),label:"<b>Underline Visited Posts</b><br />Adds an orange bottom border to visited posts",width:3},(async data=>{await betterSearch.pushSettings("highlightVisited",data),betterSearch.isInitialized()&&betterSearch.updateContentHeader()})),Form_1.Form.spacer(3,!0),Form_1.Form.checkbox({value:!betterSearch.fetchSettings("hideInfoBar"),label:"<b>Show Post Info</b><br />Shows the score, favorites, and rating display under the post",width:3},(async data=>{await betterSearch.pushSettings("hideInfoBar",!data),betterSearch.isInitialized()&&betterSearch.updateContentHeader()})),Form_1.Form.spacer(3,!0),Form_1.Form.checkbox({value:betterSearch.fetchSettings("colorFavCount"),label:"<b>Colored Favorites Counter</b><br />Changes the color of the favorites counter to yellow",width:3},(async data=>{await betterSearch.pushSettings("colorFavCount",data),betterSearch.isInitialized()&&betterSearch.updateContentHeader()})),Form_1.Form.spacer(3,!0)]),Form_1.Form.accordionTab({name:"infscroll",label:"Infinite Scroll",columns:3,width:3},[Form_1.Form.header("Infinite Scroll",3),Form_1.Form.checkbox({value:betterSearch.fetchSettings("infiniteScroll"),label:"<b>Enable Infinite Scroll</b><br />Append the next page of posts below the current one",width:3},(async data=>{await betterSearch.pushSettings("infiniteScroll",data),betterSearch.isInitialized()&&(betterSearch.reloadEventListeners(),betterSearch.reloadPaginator())})),Form_1.Form.spacer(3,!0),Form_1.Form.checkbox({value:betterSearch.fetchSettings("loadAutomatically"),label:"<b>Auto-Load Posts</b><br />Load posts automatically as you scroll, not by clicking a button",width:3},(async data=>{await betterSearch.pushSettings("loadAutomatically",data),betterSearch.isInitialized()&&betterSearch.reloadEventListeners()})),Form_1.Form.spacer(3,!0),Form_1.Form.checkbox({value:betterSearch.fetchSettings("loadPrevPages"),label:"<b>Preserve Scroll History</b><br />When opening a specific result page, load several previous pages as well",width:3},(async data=>{await betterSearch.pushSettings("loadPrevPages",data)})),Form_1.Form.spacer(3,!0),Form_1.Form.checkbox({value:betterSearch.fetchSettings("hidePageBreaks"),label:"<b>Hide Page Separators</b><br />Display posts as one continuous section, instead of being separated by page",width:3},(async data=>{await betterSearch.pushSettings("hidePageBreaks",data),betterSearch.isInitialized()&&betterSearch.updateContentHeader()}))]),Form_1.Form.accordionTab({name:"hoverzoom",label:"Hover Zoom",columns:3,width:3},[Form_1.Form.header("Hover Zoom",3),Form_1.Form.div({value:"<b>Zoom Mode</b><br />Increases the size of the thumbnail when hovering over it",width:2}),Form_1.Form.select({name:"hoverzoom",value:hoverZoom.fetchSettings("mode")},{disabled:"Disabled",hover:"On Hover",onshift:"Holding Shift"},(async data=>{await hoverZoom.pushSettings("mode",data),hoverZoom.isInitialized()&&hoverZoom.reloadEventListeners()})),Form_1.Form.spacer(3,!0),Form_1.Form.checkbox({value:hoverZoom.fetchSettings("tags"),label:"<b>Show Tags</b><br />Display the list of post's tags under the zoom-in image",width:3},(async data=>{await hoverZoom.pushSettings("tags",data)})),Form_1.Form.spacer(3,!0),Form_1.Form.checkbox({value:hoverZoom.fetchSettings("time"),label:"<b>Relative Time</b><br />Display the post's upload time in a relative format",width:3},(async data=>{await hoverZoom.pushSettings("time",data)})),Form_1.Form.spacer(3,!0),Form_1.Form.subheader("Trigger Delay","How quickly the zoom will activate, in seconds. Set to 0 to disable.",2),Form_1.Form.input({value:Util_1.Util.Math.round(hoverZoom.fetchSettings("zoomDelay")/Util_1.Util.Time.SECOND,3),required:!0,pattern:"^\\d+(\\.\\d+)?$",title:"Any positive number"},(async(data,input)=>{""!=input.val()&&input.get()[0].checkValidity()&&(await hoverZoom.pushSettings("zoomDelay",Util_1.Util.Math.round(parseFloat(data)*Util_1.Util.Time.SECOND,0)),hoverZoom.isInitialized()&&hoverZoom.reloadEventListeners())})),Form_1.Form.spacer(3,!0),Form_1.Form.checkbox({value:hoverZoom.fetchSettings("skipBlacklisted"),label:"<b>Skip Blacklisted</b><br />Don't trigger HoverZoom for blacklisted posts",width:3},(async data=>{await hoverZoom.pushSettings("skipBlacklisted",data)})),Form_1.Form.spacer(3,!0),Form_1.Form.checkbox({value:hoverZoom.fetchSettings("stickyShift"),label:'<b>Sticky Shift</b><br />In "Holding Shift" mode, zoom will not clear until the mouse leaves the thumbnail',width:3},(async data=>{await hoverZoom.pushSettings("stickyShift",data),hoverZoom.isInitialized()&&hoverZoom.reloadEventListeners()})),Form_1.Form.spacer(3,!0),Form_1.Form.checkbox({value:hoverZoom.fetchSettings("audio"),label:"<b>Play Audio</b><br />WEBMs with audio will not be muted",width:3},(async data=>{await hoverZoom.pushSettings("audio",data),hoverZoom.isInitialized()&&hoverZoom.reloadEventListeners()})),Form_1.Form.spacer(3,!0)]),Form_1.Form.accordionTab({name:"postpage",label:"Post Page",columns:3,width:3},[Form_1.Form.input({name:"template",value:titleCustomizer.fetchSettings("template"),label:"<b>Page Title</b>",width:3},(async data=>{await titleCustomizer.pushSettings("template",data),titleCustomizer.isInitialized()&&titleCustomizer.refreshPageTitle()})),Form_1.Form.section({columns:3,width:3},[Form_1.Form.div({value:'<div class="notice">The following variables can be used:</div>',width:3}),Form_1.Form.copy({value:"%postid%",label:"Post ID"}),Form_1.Form.copy({value:"%artist%",label:"Artist"}),Form_1.Form.copy({value:"%copyright%",label:"Copyright"}),Form_1.Form.copy({value:"%character%",label:"Characters"}),Form_1.Form.copy({value:"%species%",label:"Species"}),Form_1.Form.copy({value:"%general%",label:"General"}),Form_1.Form.copy({value:"%meta%",label:"Meta"}),Form_1.Form.copy({value:"%all%",label:"All Tags"})]),Form_1.Form.spacer(3,!0),Form_1.Form.checkbox({value:titleCustomizer.fetchSettings("symbolsEnabled"),label:"<b>Title Icons</b>",width:3},(async data=>{await titleCustomizer.pushSettings("symbolsEnabled",data),titleCustomizer.isInitialized()&&titleCustomizer.refreshPageTitle()})),Form_1.Form.input({value:titleCustomizer.fetchSettings("symbolFav"),label:"Favorite"},(async data=>{await titleCustomizer.pushSettings("symbolFav",data),titleCustomizer.isInitialized()&&titleCustomizer.refreshPageTitle()})),Form_1.Form.input({value:titleCustomizer.fetchSettings("symbolVoteUp"),label:"Upvoted"},(async data=>{await titleCustomizer.pushSettings("symbolVoteUp",data),titleCustomizer.isInitialized()&&titleCustomizer.refreshPageTitle()})),Form_1.Form.input({value:titleCustomizer.fetchSettings("symbolVoteDown"),label:"Downvoted"},(async data=>{await titleCustomizer.pushSettings("symbolVoteDown",data),titleCustomizer.isInitialized()&&titleCustomizer.refreshPageTitle()})),Form_1.Form.hr(3),Form_1.Form.checkbox({value:postViewer.fetchSettings("moveChildThumbs"),label:"<b>Move Related Thumbnails</b><br />Moves the parent / child thumbnails to the sidebar",width:2},(async data=>{await postViewer.pushSettings("moveChildThumbs",data)})),Form_1.Form.text('<div class="text-center text-bold">Requires a page reload</div>',1,"align-middle"),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:searchUtilities.fetchSettings("trimQueryParameters"),label:'<b>Trim Query Parameter</b><br />Remove the "?q=" from the URL on the post page',width:3},(async data=>{await searchUtilities.pushSettings("trimQueryParameters",data)})),Form_1.Form.hr(3),Form_1.Form.subheader("Adaptive Scaling","Dynamically select the scaling mode according to settings below",2),Form_1.Form.select({name:"hoverzoom",value:imageScaler.fetchSettings("dynSizeMode")},{0:"Disabled",1:"Aspect Scaling",2:"Tag-Based Scaling"},(async data=>{await imageScaler.pushSettings("dynSizeMode",data)})),Form_1.Form.spacer(3,!0),Form_1.Form.text("\n                        <b>Aspect Scaling:</b> Wide images are fitted to height, tall images - to width.<br />\n                        <b>Tag-Based Scaling:</b> Defaults to fit to height, but switches to fit to width when certain tags match.\n                        ",3),Form_1.Form.spacer(3,!0),Form_1.Form.subheader("Aspect Ratio Deadzone","Negative for fit-to-height bias, positive for fit-to-width bias",2),Form_1.Form.input({value:imageScaler.fetchSettings("dynSizeDeadzone"),required:!0,pattern:"^-?(1|(0(\\.\\d+)?))$",title:"Number between -1 and 1"},(async(data,input)=>{""!=input.val()&&input.get()[0].checkValidity()&&await imageScaler.pushSettings("dynSizeDeadzone",parseFloat(data))})),Form_1.Form.spacer(3,!0),Form_1.Form.subheader("Tall Image Tags","Posts with these tags are considered tall, and will be scaled to width",2),Form_1.Form.input({value:imageScaler.fetchSettings("dynSizeTags"),width:1},(async data=>{await imageScaler.pushSettings("dynSizeTags",data)}))]),Form_1.Form.accordionTab({name:"misc",label:"Other",columns:3,width:3},[Form_1.Form.checkbox({value:postViewer.fetchSettings("upvoteOnFavorite"),label:"<b>Auto-Upvote Favorites</b><br />Automatically upvote a post when adding it to the favorites",width:3},(async data=>{await postViewer.pushSettings("upvoteOnFavorite",data)})),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:imageScaler.fetchSettings("clickScale"),label:"<b>Quick Rescale</b><br />Click on a post image to cycle through scaling options",width:3},(async data=>{await imageScaler.pushSettings("clickScale",data)})),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:imageScaler.fetchSettings("organizeModes"),label:"<b>Organize Scaling Modes</b><br />Change the order of image scaling modes so that it actually makes sense",width:2},(async data=>{await imageScaler.pushSettings("organizeModes",data)})),Form_1.Form.requiresReload(),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:searchUtilities.fetchSettings("collapseCategories"),label:"<b>Remember Collapsed Tag Categories</b><br />Preserve the minimized state of the tag categories in the sidebar",width:3},(async data=>{await searchUtilities.pushSettings("collapseCategories",data)})),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:headerCustomizer.fetchSettings("forumUpdateDot"),label:"<b>Forum Notifications</b><br />Red dot on the Forum tab in the header if there are new posts",width:3},(async data=>{headerCustomizer.toggleForumDot(data),await headerCustomizer.pushSettings("forumUpdateDot",data)})),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:miscellaneous.fetchSettings("profileEnhancements"),label:"<b>Redesigned Profile Page</b><br />Restyle the profile page to be more compact",width:3},(async data=>{await miscellaneous.pushSettings("profileEnhancements",data),miscellaneous.resetContentHeaders()})),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:miscellaneous.fetchSettings("commitWikiLinks"),label:"<b>Wiki Links in Post History</b><br />Redirect the tag links in the post history to the wiki pages",width:2},(async data=>{await miscellaneous.pushSettings("commitWikiLinks",data)})),Form_1.Form.requiresReload(),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:postViewer.fetchSettings("betterImageSearch"),label:"<b>Better Reverse Image Search</b><br />Dynamically select appropriate image resolutions",width:2},(async data=>{await postViewer.pushSettings("betterImageSearch",data)})),Form_1.Form.requiresReload(),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:miscellaneous.fetchSettings("disableCommentRules"),label:'<b>Hide the Comment Rules Warning</b><br />Removes the "read the how to comment guide" warning',width:3},(async data=>{await miscellaneous.pushSettings("disableCommentRules",data),miscellaneous.handleCommentRules(data)}))])])])}createBlacklistTab(){const searchUtilities=ModuleController_1.ModuleController.get(SearchUtilities_1.SearchUtilities),miscellaneous=ModuleController_1.ModuleController.get(Miscellaneous_1.Miscellaneous),blacklistEnhancer=ModuleController_1.ModuleController.get(BlacklistEnhancer_1.BlacklistEnhancer),imageScaler=ModuleController_1.ModuleController.get(ImageScaler_1.ImageScaler),commentBlacklist=ModuleController_1.ModuleController.get(CommentBlacklist_1.CommentBlacklist),blacklistInput=$("<textarea>").attr("id","comblacklist-container").val(commentBlacklist.fetchSettings("filters").join("\n"));return new Form_1.Form({name:"conf-blacklist",columns:3,width:3},[Form_1.Form.header("Blacklist Settings"),Form_1.Form.checkbox({value:miscellaneous.fetchSettings("hideBlacklist"),label:'<b>Hide Blacklist</b><br />Completely remove the "Blacklisted" section in the sidebar',width:3},(async data=>{await miscellaneous.pushSettings("hideBlacklist",data),miscellaneous.hideBlacklist(data)})),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:searchUtilities.fetchSettings("quickBlacklist"),label:"<b>Quick Blacklist</b><br />Click X next to the tag in the sidebar to add it to the blacklist",width:3},(async data=>{await searchUtilities.pushSettings("quickBlacklist",data),searchUtilities.initQuickBlacklist(data)})),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:imageScaler.fetchSettings("clickShowFiltered"),label:"<b>Click to Show Blacklisted</b><br />Click on the blacklisted image on the post page to show it",width:2},(async data=>{await imageScaler.pushSettings("clickShowFiltered",data)})),Form_1.Form.text('<div class="text-center text-bold">Requires a page reload</div>',1,"align-middle"),Form_1.Form.hr(3),Form_1.Form.checkbox({value:blacklistEnhancer.fetchSettings("favorites"),label:"<b>Exclude Favorites</b><br />Prevent your favorites from being filtered out by the blacklist",width:2},(async data=>{await blacklistEnhancer.pushSettings("favorites",data)})),Form_1.Form.text('<div class="text-center text-bold">Requires a page reload</div>',1,"align-middle"),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:blacklistEnhancer.fetchSettings("uploads"),label:"<b>Exclude Uploads</b><br />Prevent your uploads from being filtered out by the blacklist",width:2},(async data=>{await blacklistEnhancer.pushSettings("uploads",data)})),Form_1.Form.text('<div class="text-center text-bold">Requires a page reload</div>',1,"align-middle"),Form_1.Form.spacer(3),Form_1.Form.text("<b>Whitelist</b>"),Form_1.Form.input({value:blacklistEnhancer.fetchSettings("whitelist"),width:2},(async data=>{await blacklistEnhancer.pushSettings("whitelist",data)})),Form_1.Form.text("Posts with these tags will never be filtered out",2),Form_1.Form.text('<div class="text-center text-bold">Requires a page reload</div>',1,"align-middle"),Form_1.Form.hr(3),Form_1.Form.text("<b>Persistent Tags</b>"),Form_1.Form.input({value:searchUtilities.fetchSettings("persistentTags"),width:2},(async data=>{await searchUtilities.pushSettings("persistentTags",data)})),Form_1.Form.text("Tags added to every search, used to emulate server-side blacklisting",2),Form_1.Form.text('<div class="text-center text-bold">Requires a page reload</div>',1,"align-middle"),Form_1.Form.spacer(3),Form_1.Form.text("<b>Comment Blacklist</b>",3),Form_1.Form.text("Comments containing the following words will be hidden from view.<br />The syntax is similar to the one used in post blacklist.",3),Form_1.Form.div({value:blacklistInput,width:3}),Form_1.Form.button({value:"Save"},(async()=>{const confirmBox=$("span#comblacklist-confirm").html("Saving . . ."),value=blacklistInput.val().toString().trim();let result=[];for(const line of value.split("\n"))result.push(line.toLowerCase());result=result.filter((n=>n)),await commentBlacklist.pushSettings("filters",result),confirmBox.html("Settings Saved"),window.setTimeout((()=>{confirmBox.html("")}),1e3)})),Form_1.Form.div({value:'<span id="comblacklist-confirm"></span>'})])}createDownloadsTab(){const downloadCustomizer=ModuleController_1.ModuleController.get(DownloadCustomizer_1.DownloadCustomizer),massDownloader=ModuleController_1.ModuleController.get(MassDownloader_1.MassDownloader),poolDownloader=ModuleController_1.ModuleController.get(PoolDownloader_1.PoolDownloader),favDownloader=ModuleController_1.ModuleController.get(FavDownloader_1.FavDownloader);return new Form_1.Form({name:"conf-download",columns:3,width:3},[Form_1.Form.section({name:"customizer",columns:3,width:3},[Form_1.Form.header("Download Customizer"),Form_1.Form.div({value:'<div class="notice float-right">Download individual files</div>',width:2}),Form_1.Form.text("<b>File name</b>"),Form_1.Form.input({value:downloadCustomizer.fetchSettings("template"),width:2},(async data=>{await downloadCustomizer.pushSettings("template",data),downloadCustomizer.isInitialized()&&downloadCustomizer.refreshDownloadLink()})),Form_1.Form.section({columns:3,width:3},[Form_1.Form.div({value:'<div class="notice unmargin">The following variables can be used:</div>',width:3}),Form_1.Form.copy({value:"%postid%",label:"Post ID"}),Form_1.Form.copy({value:"%artist%",label:"Artist"}),Form_1.Form.copy({value:"%copyright%",label:"Copyright"}),Form_1.Form.copy({value:"%character%",label:"Characters"}),Form_1.Form.copy({value:"%species%",label:"Species"}),Form_1.Form.copy({value:"%meta%",label:"Meta"}),Form_1.Form.copy({value:"%tags%",label:"General"}),Form_1.Form.copy({value:"%md5%",label:"MD5"})]),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:downloadCustomizer.fetchSettings("confirmDownload"),label:'<b>Confirm Downloads</b><br />Show the "Save As" dialog for every file.<br />Requires "Download Mode" to be set to "Browser API" in script manager settings',width:3},(async data=>{await downloadCustomizer.pushSettings("confirmDownload",data)})),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:downloadCustomizer.fetchSettings("downloadSamples"),label:"<b>Download Samples</b><br />Download the sampled (800px) images instead of the full original versions",width:3},(async data=>{await downloadCustomizer.pushSettings("downloadSamples",data),downloadCustomizer.isInitialized()&&downloadCustomizer.refreshDownloadLink()}))]),Form_1.Form.spacer(3),Form_1.Form.accordion({name:"collapse",columns:3,width:3,active:0},[Form_1.Form.accordionTab({name:"mass",label:"Mass Downloader",subheader:"Download files from the search page",columns:3,width:3},[Form_1.Form.text("<b>Image file name</b>"),Form_1.Form.input({value:massDownloader.fetchSettings("template"),width:2},(async data=>{await massDownloader.pushSettings("template",data)})),Form_1.Form.div({value:'<div class="notice unmargin">The same variables as above can be used. Add a forward slash ( / ) to signify a folder.</div>',width:3}),Form_1.Form.spacer(3),Form_1.Form.text("<b>Archive name</b>"),Form_1.Form.input({value:massDownloader.fetchSettings("archive"),width:2},(async data=>{await massDownloader.pushSettings("archive",data)})),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:massDownloader.fetchSettings("autoDownloadArchive"),label:"<b>Auto Download</b><br />The archive will be downloaded automatically after being created",width:3},(async data=>{await massDownloader.pushSettings("autoDownloadArchive",data)}))]),Form_1.Form.accordionTab({name:"fav",label:"Favorites Downloader",subheader:"Download all favorites at once",columns:3,width:3},[Form_1.Form.text("<b>Image file name</b>"),Form_1.Form.input({value:favDownloader.fetchSettings("template"),width:2},(async data=>{await favDownloader.pushSettings("template",data)})),Form_1.Form.div({value:'<div class="notice unmargin">The same variables as above can be used. Add a forward slash ( / ) to signify a folder.</div>',width:3}),Form_1.Form.spacer(3),Form_1.Form.text("<b>Archive name</b>"),Form_1.Form.input({value:favDownloader.fetchSettings("archive"),width:2},(async data=>{await favDownloader.pushSettings("archive",data)})),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:favDownloader.fetchSettings("autoDownloadArchive"),label:"<b>Auto Download</b><br />The archive will be downloaded automatically after being created",width:3},(async data=>{await favDownloader.pushSettings("autoDownloadArchive",data)}))]),Form_1.Form.accordionTab({name:"pool",label:"Pool Downloader",subheader:"Download image pools or sets",columns:3,width:3},[Form_1.Form.text("<b>Image file name</b>"),Form_1.Form.input({value:poolDownloader.fetchSettings("template"),width:2},(async data=>{await poolDownloader.pushSettings("template",data)})),Form_1.Form.section({name:"template-vars-pool",columns:3,width:3},[Form_1.Form.div({value:'<div class="notice unmargin">The same variables as above can be used. Add a forward slash ( / ) to signify a folder.</div>',width:3}),Form_1.Form.div({value:'<div class="notice unmargin">The following variables can also be used:</div>',width:3}),Form_1.Form.copy({value:"%pool%",label:"Pool Name"}),Form_1.Form.copy({value:"%index%",label:"Index"})]),Form_1.Form.spacer(3),Form_1.Form.text("<b>Archive name</b>"),Form_1.Form.input({value:poolDownloader.fetchSettings("archive"),width:2},(async data=>{await poolDownloader.pushSettings("archive",data)})),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:poolDownloader.fetchSettings("autoDownloadArchive"),label:"<b>Auto Download</b><br />The archive will be downloaded automatically after being created",width:3},(async data=>{await poolDownloader.pushSettings("autoDownloadArchive",data)}))])])])}createUploadsTab(){const smartAlias=ModuleController_1.ModuleController.get(SmartAlias_1.SmartAlias),uploadUtilities=ModuleController_1.ModuleController.get(UploadUtilities_1.UploadUtilities),tagSuggester=ModuleController_1.ModuleController.get(TagSuggester_1.TagSuggester),customFlagger=ModuleController_1.ModuleController.get(CustomFlagger_1.CustomFlagger),betterSearch=ModuleController_1.ModuleController.get(BetterSearch_1.BetterSearch),aliasContainer=$("<textarea>").attr("id","alias-list-container").val(smartAlias.fetchSettings("data")),flagDefsContainer=$("<div>").attr("id","flag-defs-container"),flagDefs=customFlagger.fetchSettings("flags"),tagContainer=$("<textarea>").attr("id","tag-suggestions-container").val(tagSuggester.fetchSettings("data"));return flagDefs.forEach((flag=>{makeFlagDefInput(flag).appendTo(flagDefsContainer)})),new Form_1.Form({name:"conf-alias",columns:3,width:3},[Form_1.Form.accordion({name:"collapse",columns:3,width:3,active:0},[Form_1.Form.accordionTab({name:"uploads",label:"Upload Utilities",columns:3,width:3},[Form_1.Form.checkbox({value:uploadUtilities.fetchSettings("checkDuplicates"),label:"<b>Check Duplicates</b><br />Search for visually similar images on e621 when uploading",width:2},(async data=>{await uploadUtilities.pushSettings("checkDuplicates",data)})),Form_1.Form.text('<div class="text-center text-bold">Requires a page reload</div>'),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:uploadUtilities.fetchSettings("addSourceLinks"),label:"<b>Source Link Buttons</b><br />Add utility buttons to the upload source inputs",width:2},(async data=>{await uploadUtilities.pushSettings("addSourceLinks",data)})),Form_1.Form.text('<div class="text-center text-bold">Requires a page reload</div>'),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:uploadUtilities.fetchSettings("cleanSourceLinks"),label:'<b>Clean Source Links</b><br />Convert source links to https, and remove the "www" prefix',width:3},(async data=>{await uploadUtilities.pushSettings("cleanSourceLinks",data)})),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:tagSuggester.fetchSettings("enabled"),label:"<b>Tag Suggestions</b><br />Suggest potentially applicable tags during the upload process",width:3},(async data=>{await tagSuggester.pushSettings("enabled",data),await tagSuggester.reload()})),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:uploadUtilities.fetchSettings("stopLeaveWarning"),label:"<b>Suppress Exit Message</b><br />Removes the confirmation message when leaving the upload page",width:3},(async data=>{await uploadUtilities.pushSettings("stopLeaveWarning",data)})),Form_1.Form.spacer(3),Form_1.Form.section({width:3,wrapper:window.re621.privacy?"display-none":void 0},[Form_1.Form.text("The following features require access to various domains not explicitly whitelisted by the script.<br />You will be prompted to approve a cross-origin request when that happens.",3),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:uploadUtilities.fetchSettings("loadImageData"),label:"<b>Fetch Image Data</b><br />Displays image dimensions, format, and filesize",width:2},(async data=>{await uploadUtilities.pushSettings("loadImageData",data)})),Form_1.Form.text('<div class="text-center text-bold">Requires a page reload</div>'),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:uploadUtilities.fetchSettings("fixPixivPreviews"),label:"<b>Fix Broken Pixiv Previews</b><br />Hacky workaround – might not work reliably.",width:2},(async data=>{await uploadUtilities.pushSettings("fixPixivPreviews",data)})),Form_1.Form.text('<div class="text-center text-bold">Requires a page reload</div>'),Form_1.Form.spacer(3)])]),Form_1.Form.accordionTab({name:"conf-flags",label:"Custom Flags",columns:3,width:3},[Form_1.Form.header("Flag Definitions",2),Form_1.Form.button({value:"New Flag"},(async()=>{makeFlagDefInput({name:"",color:"#"+Math.floor(16777215*Math.random()).toString(16),tags:"",show:!0}).appendTo(flagDefsContainer)})),Form_1.Form.div({value:flagDefsContainer,width:3}),Form_1.Form.button({value:"Save"},(async()=>{const confirmBox=$("span#defs-confirm").html("Saving . . ."),defData=[],defInputs=$(flagDefsContainer).find("div.flag-defs-inputs").get();for(const inputContainer of defInputs){const inputs=$(inputContainer).find("input").get(),show=$(inputs[0]),name=$(inputs[1]),color=$(inputs[2]),tags=$(inputs[3]);0==name.val().length&&name.val("FLAG"),color.val().match(/^#(?:[0-9a-f]{3}){1,2}$/i)||color.val("#800000"),0!=tags.val().length&&defData.push({show:show.is(":checked"),name:name.val(),color:color.val(),tags:tags.val()})}await customFlagger.pushSettings("flags",defData),confirmBox.html("Settings Saved"),CustomFlagger_1.CustomFlagger.regenerateFlagDefinitions(),console.log("reloading rendered posts"),Post_1.Post.find("all").each((post=>CustomFlagger_1.CustomFlagger.addPost(post))),console.log(CustomFlagger_1.CustomFlagger.get()),betterSearch.reloadRenderedPosts(),window.setTimeout((()=>{confirmBox.html("")}),1e3)})),Form_1.Form.div({value:'<span id="defs-confirm"></span>'}),Form_1.Form.div({value:"\n                        <b>Custom Flags</b> allow you to automatically highlight posts that match specified tags. For example:<br />\n                        <pre>-solo -duo -group -zero_pictured</pre>: posts that do not include character count tags.<br />\n                        <pre>tagcount:&lt;5</pre>: posts with less than 5 tags<br />\n                        Flag names must be unique. Duplicate tag strings are allowed, but their corresponding flag may not display.",width:3}),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:betterSearch.fetchSettings("customFlagsExpanded"),label:"<b>Always Show Flags</b><br />Custom flags will always be shown in full, not expanded on hover",width:3},(async data=>{await betterSearch.pushSettings("customFlagsExpanded",data),betterSearch.isInitialized()&&betterSearch.reloadRenderedPosts()})),Form_1.Form.spacer(3)]),Form_1.Form.accordionTab({name:"validatior",label:"Tag Validation",columns:3,width:3},[Form_1.Form.checkbox({value:smartAlias.fetchSettings("autoLoad"),label:"<b>Run Automatically</b><br />Either validate tag input as you type, or by pressing a button",width:3},(async data=>{await smartAlias.pushSettings("autoLoad",data),await smartAlias.reload()})),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:smartAlias.fetchSettings("replaceAliasedTags"),label:"<b>Replace Aliases</b><br />Automatically replace aliased tag names with their consequent version",width:3},(data=>{smartAlias.pushSettings("replaceAliasedTags",data)})),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:smartAlias.fetchSettings("resolveImplications"),label:"<b>Resolve Implications</b><br />Automatically add implied tags to the tag input",width:3},(data=>{smartAlias.pushSettings("resolveImplications",data)})),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:!smartAlias.fetchSettings("replaceLastTag"),label:"<b>Ignore Last Tag</b><br />Don't replace the last tag with its alias, in case you are still thinking about it",width:3},(data=>{smartAlias.pushSettings("replaceLastTag",!data)})),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:smartAlias.fetchSettings("fixCommonTypos"),label:"<b>Fix Common Typos</b><br />Correct several common typos in the tag fields",width:3},(data=>{smartAlias.pushSettings("fixCommonTypos",data)})),Form_1.Form.spacer(3),Form_1.Form.subheader("Tag Display Order","How the tags should be arranged in the display box",2),Form_1.Form.select({value:smartAlias.fetchSettings("tagOrder")},{default:"Original",alphabetical:"Alphabetical",grouped:"Grouped by Category"},(data=>{smartAlias.pushSettings("tagOrder",data)})),Form_1.Form.spacer(3),Form_1.Form.subheader("Minimum Posts Warning","Highlight tags that have less than the specified number of posts",2),Form_1.Form.input({value:smartAlias.fetchSettings("minPostsWarning"),width:1,pattern:"\\d+"},((data,input)=>{input.get()[0].checkValidity()&&smartAlias.pushSettings("minPostsWarning",data)})),Form_1.Form.spacer(3),Form_1.Form.subheader("Cache Post Minimum","Tags with this amount of posts will be cached to speed up lookups",2),Form_1.Form.input({value:smartAlias.fetchSettings("minCachedTags"),width:1,pattern:"\\d{2,}"},((data,input)=>{input.get()[0].checkValidity()&&smartAlias.pushSettings("minCachedTags",data)})),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:smartAlias.fetchSettings("asciiWarning"),label:"<b>Flag Non-ASCII Tags</b><br />Flags that contain certain characters are invalid and should be replaced",width:3},(data=>{smartAlias.pushSettings("asciiWarning",data)})),Form_1.Form.hr(3),Form_1.Form.checkbox({value:smartAlias.fetchSettings("searchForm"),label:"<b>Search Form Aliases</b><br />Apply custom aliases in the tag search form",width:3},(async data=>{await smartAlias.pushSettings("searchForm",data),await smartAlias.reload()})),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:smartAlias.fetchSettings("compactOutput"),label:"<b>Compact Display</b><br />Limit the tag information section to a set height",width:3},(async data=>{await smartAlias.pushSettings("compactOutput",data),smartAlias.setCompactOutput(data)}))]),Form_1.Form.accordionTab({name:"aliasref",label:"Validated Inputs",columns:3,width:3},[Form_1.Form.checkbox({value:smartAlias.fetchSettings("quickTagsForm"),label:"<b>Quick Tags</b><br />SmartAlias validation on the search page editing mode form",width:3},(async data=>{await smartAlias.pushSettings("quickTagsForm",data),await smartAlias.reload()})),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:betterSearch.fetchSettings("hideSmartAliasOutput"),label:"<b>Hide Quick Tags Output</b><br />Run the SmartAlias in the quick tags form, but don't display the tag anaysis",width:3},(async data=>{await betterSearch.pushSettings("hideSmartAliasOutput",data),betterSearch.updateContentHeader()})),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:smartAlias.fetchSettings("editTagsForm"),label:"<b>Post Editing</b><br />SmartAlias validation on the individual post editing form",width:3},(async data=>{await smartAlias.pushSettings("editTagsForm",data),await smartAlias.reload()})),Form_1.Form.hr(3),Form_1.Form.header("Upload Page"),Form_1.Form.checkbox({value:smartAlias.fetchSettings("uploadCharactersForm"),label:"<b>Artist Tags</b>",width:3},(async data=>{await smartAlias.pushSettings("uploadCharactersForm",data),await smartAlias.reload()})),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:smartAlias.fetchSettings("uploadSexesForm"),label:"<b>Characters</b>",width:3},(async data=>{await smartAlias.pushSettings("uploadSexesForm",data),await smartAlias.reload()})),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:smartAlias.fetchSettings("uploadBodyTypesForm"),label:"<b>Species</b>",width:3},(async data=>{await smartAlias.pushSettings("uploadBodyTypesForm",data),await smartAlias.reload()})),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:smartAlias.fetchSettings("uploadThemesForm"),label:"<b>Themes</b>",width:3},(async data=>{await smartAlias.pushSettings("uploadThemesForm",data),await smartAlias.reload()})),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:smartAlias.fetchSettings("uploadTagsForm"),label:"<b>Other Tags</b>",width:3},(async data=>{await smartAlias.pushSettings("uploadTagsForm",data),await smartAlias.reload()})),Form_1.Form.spacer(3)]),Form_1.Form.accordionTab({name:"aliasdef",label:"Alias Definitions",columns:3,width:3},[Form_1.Form.div({value:aliasContainer,width:3}),Form_1.Form.button({value:"Save"},(async()=>{const confirmBox=$("span#defs-confirm").html("Saving . . .");await smartAlias.pushSettings("data",$("#alias-list-container").val().toString().trim()),confirmBox.html("Settings Saved"),window.setTimeout((()=>{confirmBox.html("")}),1e3)})),Form_1.Form.div({value:'<span id="defs-confirm"></span>'}),Form_1.Form.div({value:`<div class="float-right">[ <a href="${window.re621.links.repository}/wiki/SmartAlias" target="_blank">syntax help</a> ]</div>`})]),Form_1.Form.accordionTab({name:"tagsuggdef",label:"Tag Suggestions",columns:3,width:3},[Form_1.Form.div({value:tagContainer,width:3}),Form_1.Form.button({value:"Save"},(async()=>{const confirmBox=$("div#tagsugg-confirm").html("Saving . . .");await tagSuggester.pushSettings("data",$("#tag-suggestions-container").val().toString().trim()),tagSuggester.reloadSuggestions(),confirmBox.html("Suggestions Saved"),window.setTimeout((()=>{confirmBox.html("")}),1e3)})),Form_1.Form.div({value:`<div class="text-center">[ <a href="${window.re621.links.repository}/wiki/TagSuggester" target="_blank">syntax help</a> ]</div>`}),Form_1.Form.button({value:"Reset to default"},(async()=>{const value=JSON.stringify(TagSuggestions_1.TagSuggestionsList,TagSuggestions_1.TagSuggestionsTools.replacer," ");$("#tag-suggestions-container").val(value);const confirmBox=$("div#tagsugg-confirm").html("Saving . . .");await tagSuggester.pushSettings("data",value),tagSuggester.reloadSuggestions(),confirmBox.html("Suggestions Reset"),window.setTimeout((()=>{confirmBox.html("")}),1e3)})),Form_1.Form.spacer(1),Form_1.Form.div({value:'<div class="text-center" id="tagsugg-confirm"></div>'})])])]);function makeFlagDefInput(flag){const flagContainer=$("<div>").addClass("flag-defs-inputs");return $("<input>").attr({type:"checkbox",checked:flag.show?"checked":void 0}).appendTo(flagContainer),$("<input>").attr({type:"text",placeholder:"name"}).val(void 0===flag?"":flag.name).appendTo(flagContainer),$("<input>").attr({type:"color",placeholder:"color"}).val(void 0===flag?"":flag.color).css("border-left-color",void 0===flag?"transparent":flag.color).appendTo(flagContainer).on("keyup",(event=>{const $target=$(event.target);($target.val()+"").match(/^#(?:[0-9a-f]{3}){1,2}$/i)&&$target.css("border-left-color",$target.val()+"")})),$("<input>").attr({type:"text",placeholder:"tags"}).val(void 0===flag?"":flag.tags).appendTo(flagContainer),$("<button>").html('<i class="far fa-trash-alt"></i>').appendTo(flagContainer).on("click",(()=>{flagContainer.remove()})),flagContainer}}createHotkeysTab(){const postViewer=ModuleController_1.ModuleController.get(PostViewer_1.PostViewer),poolNavigator=ModuleController_1.ModuleController.get(PoolNavigator_1.PoolNavigator),imageScaler=ModuleController_1.ModuleController.get(ImageScaler_1.ImageScaler),miscellaneous=ModuleController_1.ModuleController.get(Miscellaneous_1.Miscellaneous),headerCustomizer=ModuleController_1.ModuleController.get(HeaderCustomizer_1.HeaderCustomizer),subscriptionManager=ModuleController_1.ModuleController.get(_SubscriptionManager_1.SubscriptionManager),searchUtilities=ModuleController_1.ModuleController.get(SearchUtilities_1.SearchUtilities),downloadCustomizer=ModuleController_1.ModuleController.get(DownloadCustomizer_1.DownloadCustomizer),hoverZoom=ModuleController_1.ModuleController.get(HoverZoom_1.HoverZoom),janitorEnhancements=ModuleController_1.ModuleController.get(JanitorEnhancements_1.JanitorEnhancements);function createInputs(module,label,settingsKey){const values=(module.fetchSettings(settingsKey)||"").split("|"),bindings=[void 0===values[0]?"":values[0],void 0===values[1]?"":values[1]];return[Form_1.Form.div({value:label}),Form_1.Form.key({value:bindings[0]},(async data=>{await handleRebinding(data,0)})),Form_1.Form.key({value:bindings[1]},(async data=>{await handleRebinding(data,1)}))];async function handleRebinding(data,index){bindings[index]=data,await module.pushSettings(settingsKey,bindings.join("|")),await module.resetHotkeys()}}function createCustomInputs(module,label,dataLabel,settingsKey,pattern){const values=module.fetchSettings(settingsKey).split("|"),dataVal=module.fetchSettings(settingsKey+"_data"),bindings=[void 0===values[0]?"":values[0],void 0===values[1]?"":values[1]];return[Form_1.Form.div({value:label}),Form_1.Form.key({value:bindings[0]},(async data=>{await async function(data,index){bindings[index]=data,await module.pushSettings(settingsKey,bindings.join("|")),await module.resetHotkeys()}(data,0)})),Form_1.Form.input({value:dataVal,label:dataLabel,pattern:pattern},(async(data,input)=>{input.get()[0].checkValidity()&&await module.pushSettings(settingsKey+"_data",data)}))]}return new Form_1.Form({name:"conf-hotkeys",columns:3,width:3},[Form_1.Form.header("Listing",3),...createInputs(searchUtilities,"Search","hotkeyFocusSearch"),...createInputs(searchUtilities,"Random Post","hotkeyRandomPost"),...createInputs(miscellaneous,"Toggle Blacklist","hotkeyToggleBlacklist"),Form_1.Form.hr(3),Form_1.Form.header("Posts",3),...createInputs(postViewer,"Upvote Post","hotkeyUpvoteNU"),...createInputs(postViewer,"Toggle Upvote","hotkeyUpvote"),...createInputs(postViewer,"Downvote Post","hotkeyDownvoteNU"),...createInputs(postViewer,"Toggle Downvote","hotkeyDownvote"),...createInputs(postViewer,"Toggle Favorite","hotkeyFavorite"),...createInputs(postViewer,"Add to Favorites","hotkeyAddFavorite"),...createInputs(postViewer,"Remove From Favorites","hotkeyRemoveFavorite"),...createInputs(imageScaler,"Fullscreen Mode","hotkeyFullscreen"),Form_1.Form.spacer(3,!0),...createInputs(poolNavigator,"Cycle Navigation","hotkeyCycle"),...createInputs(imageScaler,"Change Scale","hotkeyScale"),...createInputs(downloadCustomizer,"Download","hotkeyDownload"),Form_1.Form.spacer(3,!0),...createInputs(poolNavigator,"Previous Post","hotkeyPrev"),...createInputs(poolNavigator,"Next Post","hotkeyNext"),Form_1.Form.spacer(3,!0),...createInputs(postViewer,"Open `Add to Set` Dialog","hotkeyAddSet"),...createInputs(postViewer,"Open `Add to Pool` Dialog","hotkeyAddPool"),...createInputs(postViewer,"Toggle Current Set","hotkeyToggleSetLatest"),...createInputs(postViewer,"Add to Current Set","hotkeyAddSetLatest"),...createInputs(postViewer,"Remove from Current Set","hotkeyRemoveSetLatest"),Form_1.Form.spacer(3,!0),...createCustomInputs(postViewer,"Add to Set","Set ID","hotkeyAddSetCustom1","\\d+"),...createCustomInputs(postViewer,"Add to Set","Set ID","hotkeyAddSetCustom2","\\d+"),...createCustomInputs(postViewer,"Add to Set","Set ID","hotkeyAddSetCustom3","\\d+"),...createCustomInputs(postViewer,"Add to Set","Set ID","hotkeyAddSetCustom4","\\d+"),...createCustomInputs(postViewer,"Add to Set","Set ID","hotkeyAddSetCustom5","\\d+"),Form_1.Form.hr(3),Form_1.Form.section({columns:3,width:3},[Form_1.Form.header("Actions",3),...createInputs(miscellaneous,"New Comment","hotkeyNewComment"),...createInputs(miscellaneous,"Edit Post","hotkeyEditPost"),...createInputs(postViewer,"Toggle Notes","hotkeyHideNotes"),...createInputs(postViewer,"Edit Notes","hotkeyNewNote"),...createInputs(postViewer,"Post History","hotkeyOpenHistory"),...createInputs(postViewer,"Go To Artist","hotkeyOpenArtist"),...createInputs(postViewer,"Go To Source","hotkeyOpenSource"),...createInputs(postViewer,"Go To Parent","hotkeyOpenParent"),...createInputs(postViewer,"Toggle Child Posts","hotkeyToggleRel"),...createInputs(postViewer,"Open IQDB","hotkeyOpenIQDB"),...createInputs(postViewer,"Open API Page","hotkeyOpenAPI"),Form_1.Form.spacer(3),...createInputs(postViewer,"Search SauceNAO","hotkeyOpenSauceNAO"),...createInputs(postViewer,"Search Kheina","hotkeyOpenKheina"),...createInputs(postViewer,"Search Google Search","hotkeyOpenGoogle"),...createInputs(postViewer,"Search Yandex Search","hotkeyOpenYandex"),...createInputs(postViewer,"Search Derpibooru","hotkeyOpenDerpibooru"),...createInputs(postViewer,"Search Inkbunny","hotkeyOpenInkbunny"),Form_1.Form.hr(3)]),Form_1.Form.header("Search Modes",3),...createInputs(searchUtilities,"View","hotkeySwitchModeView"),...createInputs(searchUtilities,"Edit","hotkeySwitchModeEdit"),...createInputs(searchUtilities,"Fullscreen","hotkeySwitchModeOpen"),...createInputs(searchUtilities,"Add Favorite","hotkeySwitchModeAddFav"),...createInputs(searchUtilities,"Remove Favorite","hotkeySwitchModeRemFav"),...createInputs(searchUtilities,"Blacklist","hotkeySwitchModeBlacklist"),...createInputs(searchUtilities,"Add to Set","hotkeySwitchModeAddSet"),...createInputs(searchUtilities,"Remove from Set","hotkeySwitchModeRemSet"),Form_1.Form.hr(3),Form_1.Form.header("Hover Zoom",3),...createInputs(hoverZoom,"Download Hovered Post","hotkeyDownload"),...createInputs(hoverZoom,"Open Fullscreen Image","hotkeyFullscreen"),Form_1.Form.hr(3),Form_1.Form.section({columns:3,width:3,wrapper:void 0},[Form_1.Form.header("Tag Scripts",3),...createInputs(searchUtilities,"Tag Script","hotkeySwitchModeScript"),Form_1.Form.spacer(3),...createInputs(searchUtilities,"Script #1","hotkeyScriptOne"),...createInputs(searchUtilities,"Script #2","hotkeyScriptTwo"),...createInputs(searchUtilities,"Script #3","hotkeyScriptThree"),...createInputs(searchUtilities,"Script #4","hotkeyScriptFour"),...createInputs(searchUtilities,"Script #5","hotkeyScriptFive"),...createInputs(searchUtilities,"Script #6","hotkeyScriptSix"),...createInputs(searchUtilities,"Script #7","hotkeyScriptSeven"),...createInputs(searchUtilities,"Script #8","hotkeyScriptEight"),...createInputs(searchUtilities,"Script #9","hotkeyScriptNine"),...createInputs(searchUtilities,"Script #0","hotkeyScriptTen"),Form_1.Form.hr(3)]),Form_1.Form.section({columns:3,width:3,wrapper:void 0},[Form_1.Form.header("Extra",3),...createInputs(janitorEnhancements,"Approve post","hotkeyApprovePost"),...createInputs(janitorEnhancements,"Approve + Prev","hotkeyApprovePostPrev"),...createInputs(janitorEnhancements,"Approve + Next","hotkeyApprovePostNext"),Form_1.Form.hr(3)]),Form_1.Form.header("Header Tabs",3),...createInputs(headerCustomizer,"Tab #1","hotkeyTab1"),...createInputs(headerCustomizer,"Tab #2","hotkeyTab2"),...createInputs(headerCustomizer,"Tab #3","hotkeyTab3"),...createInputs(headerCustomizer,"Tab #4","hotkeyTab4"),...createInputs(headerCustomizer,"Tab #5","hotkeyTab5"),...createInputs(headerCustomizer,"Tab #6","hotkeyTab6"),...createInputs(headerCustomizer,"Tab #7","hotkeyTab7"),...createInputs(headerCustomizer,"Tab #8","hotkeyTab8"),...createInputs(headerCustomizer,"Tab #9","hotkeyTab9"),...createInputs(this,"Open Settings","hotkeyOpenSettings"),...createInputs(subscriptionManager,"Open Notifications","hotkeyOpenNotifications"),Form_1.Form.hr(3),Form_1.Form.header("Miscellaneous",3),...createInputs(miscellaneous,"Random Set Post","hotkeyRandomSetPost"),...createInputs(miscellaneous,"Submit Form","hotkeySubmit"),...createInputs(miscellaneous,"Scroll Up","hotkeyScrollUp"),...createInputs(miscellaneous,"Scroll Down","hotkeyScrollDown")])}createFeaturesTab(){const modules=ModuleController_1.ModuleController.getAll();function createInput(moduleName,label,description){const module=modules.get(moduleName);return[Form_1.Form.checkbox({name:moduleName+"-enabled",value:module.fetchSettings("enabled"),label:`<b>${label}</b><br />${description}`,width:3},(data=>{module.pushSettings("enabled",data),module.setEnabled(data),!0===data?module.canInitialize()&&module.create():module.destroy()})),Form_1.Form.spacer(3)]}return new Form_1.Form({name:"settings-modules",columns:3,width:3},[Form_1.Form.header("Features",3),...createInput("BetterSearch","Improved Thumbnails","Massively overhauled thumbnail system. Many features will not work with this module disabled."),...createInput("HeaderCustomizer","Header Customizer","Add, delete, and customize header links to your heart's content."),...createInput("InstantFilters","Instant Filters","Quickly add filters to your current search."),...createInput("FormattingExtender","Formatting Helper","Fully customizable toolbar for easy DText formatting."),...createInput("SmartAlias","Smart Alias","A more intelligent way to quickly fill out post tags.")])}createMiscTab(){const modules=ModuleController_1.ModuleController.getAll(),moduleSelector={none:"------"};modules.forEach((module=>{moduleSelector[module.getSettingsTag()]=module.getSettingsTag()}));let selectedModule="none";return new Form_1.Form({name:"conf-misc",columns:3,width:3},[Form_1.Form.header("Miscellaneous",3),Form_1.Form.accordion({name:"collapse",columns:3,width:3,active:0},[Form_1.Form.accordionTab({name:"cache",label:"Cache",columns:3,width:3},[Form_1.Form.section({name:"tagcache",columns:3,width:3},[Form_1.Form.div({value:"<b>Tag Cache</b><br />Used to speed up SmartAlias tag checking",width:2}),Form_1.Form.button({name:"reset",value:"Clear"},(async(data,input)=>{TagCache_1.TagCache.clear(),input.html("Done!"),window.setTimeout((()=>{input.html("Clear")}),1e3)}))]),Form_1.Form.spacer(3),Form_1.Form.section({name:"dnpcache",columns:3,width:3},[Form_1.Form.div({value:"<b>Avoid Posting Cache</b><br />Used to validate the artist tags against the DNP list",width:2}),Form_1.Form.div({value:async element=>{$("<div>").attr("id","dnpcache-status").html(`${AvoidPosting_1.default.size} tags cached`).appendTo(element);const lastUpdate=AvoidPosting_1.default.CreatedAt;$("<div>").css("color","#666666").html(lastUpdate?Util_1.Util.Time.format(lastUpdate):"").appendTo(element)},width:1,wrapper:"text-center"})])]),Form_1.Form.accordionTab({name:"export",label:"Import / Export",columns:3,width:3},[Form_1.Form.section({name:"file",columns:3,width:3},[Form_1.Form.header("Import / Export from file"),Form_1.Form.div({value:'<div class="notice float-right">Import subscription data from file</div>',width:2}),Form_1.Form.text("Export to File"),Form_1.Form.button({value:"Export",width:2},(()=>{!function(){const promises=[];ModuleController_1.ModuleController.getAll().forEach((module=>{promises.push(module.getSavedSettings())})),_SubscriptionManager_1.SubscriptionManager.getAllTrackers().forEach((tracker=>{promises.push(new Promise((resolve=>{console.log(tracker.exportSubscriptionsList()),resolve(tracker.exportSubscriptionsList())})))})),Promise.all(promises).then((response=>{Debug_1.Debug.log(response);const storedData={meta:"re621/1.0"};response.forEach((data=>{storedData[data.name]=data.data,storedData[data.name].cache&&(storedData[data.name].cache={})})),Util_1.Util.downloadAsJSON(storedData,"re621-"+User_1.User.username+"-userdata")}))}()})),Form_1.Form.text("Import from File"),Form_1.Form.file({accept:"json",width:2},(data=>{!function(data){if(!data)return;const $info=$("#file-import-status").html("Loading . . ."),reader=new FileReader;reader.readAsText(data[0],"UTF-8"),reader.onload=function(event){const parsedData=JSON.parse(event.target.result.toString());parsedData.meta&&"re621/1.0"===parsedData.meta?(delete parsedData.meta,Object.keys(parsedData).forEach((key=>{$info.html("Importing "+key),XM_1.XM.Storage.setValue(key,parsedData[key])})),$info.html("Settings imported!")):$info.html("Invalid file format")},reader.onerror=function(){$info.html("Error loading file")}}(data)})),Form_1.Form.spacer(),Form_1.Form.div({value:'<div id="file-import-status" class="unmargin"></div>',label:" ",width:3})]),Form_1.Form.section({name:"esix",columns:3,width:3,wrapper:Debug_1.Debug.getState("enabled")?void 0:"display-none"},[Form_1.Form.header("eSix Extended"),Form_1.Form.div({value:'<div class="notice float-right">Import the settings from eSix Extended (Legacy)</div>',width:2}),Form_1.Form.text("Select File"),Form_1.Form.file({accept:"json",width:2},(data=>{!function(data){if(!data)return;const $info=$("#file-esix-status").html("Loading . . ."),reader=new FileReader;async function importPoolData(settings,$info){$info.html("Processing pools . . .");const poolSubs=PoolTracker_1.PoolTracker.getInstance(),poolData=poolSubs.fetchSettings("data");for(const entry of settings)poolData[entry.id]={md5:entry.thumb.url.substr(6,32),lastID:entry.last};poolSubs.pushSettings("data",poolData)}async function importForumData(settings,$info){$info.html("Processing forums . . .");const forumSubs=ForumTracker_1.ForumTracker.getInstance(),forumData=forumSubs.fetchSettings("data"),postIDs=[];for(const entry of settings)postIDs.push(entry.id);(await E621_1.E621.ForumPosts.get({"search[id]":postIDs.join(",")})).forEach((postData=>{forumData[postData.topic_id]={}})),forumSubs.pushSettings("data",forumData)}reader.readAsText(data,"UTF-8"),reader.onload=async event=>{const parsedData=event.target.result.toString().split("\n");"eSixExtend User Prefs"===parsedData[0]?(parsedData.forEach(((value,index)=>{0!==index&&(parsedData[index]=JSON.parse(atob(value).replace(/^\d+\|/,"")))})),await importPoolData(parsedData[2],$info),await importForumData(parsedData[3],$info),$info.html("Settings imported!")):$info.html("Invalid file format")},reader.onerror=function(){$info.html("Error loading file")}}(data)})),Form_1.Form.spacer(),Form_1.Form.div({value:'<div id="file-esix-status" class="unmargin"></div>',label:" ",width:3}),Form_1.Form.text("From LocalStorage"),Form_1.Form.button({value:"Load",width:2},(()=>{!async function(){const $info=$("#localstorage-esix-status").html("Loading . . .");null!==localStorage.getItem("poolSubscriptions")&&await this.importPoolData(JSON.parse(localStorage.getItem("poolSubscriptions")),$info);null!==localStorage.getItem("forumSubscriptions")&&await this.importForumData(JSON.parse(localStorage.getItem("forumSubscriptions")),$info);$info.html("Settings imported!")}()})),Form_1.Form.spacer(),Form_1.Form.div({value:'<div id="localstorage-esix-status" class="unmargin"></div>',label:" ",width:3})])]),Form_1.Form.accordionTab({name:"reset",label:"Reset Modules",columns:3,width:3},[Form_1.Form.text("<b>Everything</b><br />Delete settings for all modules. <b>This cannot be undone.</b>",2),Form_1.Form.button({value:"Clear"},(()=>{confirm("Are you absolutely sure?")&&(ModuleController_1.ModuleController.getAll().forEach((module=>{module.clearSettings()})),location.reload())})),Form_1.Form.spacer(3),Form_1.Form.text("<b>Module</b><br />Reset a specific module",2),Form_1.Form.select({value:selectedModule},moduleSelector,(data=>{selectedModule=data})),Form_1.Form.text('<div class="text-bold">Requires a page reload</div>',2),Form_1.Form.button({value:"Reset"},(()=>{"none"!==selectedModule&&ModuleController_1.ModuleController.get(selectedModule).clearSettings()})),Form_1.Form.spacer(3)]),Form_1.Form.accordionTab({name:"debug",label:"Debugging Tools",columns:3,width:3},[Form_1.Form.checkbox({value:Debug_1.Debug.getState("enabled"),label:"<b>Debug Mode</b><br />Enable debug messages in the console log",width:3},(data=>{Debug_1.Debug.setState("enabled",data)})),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:Debug_1.Debug.getState("connect"),label:"<b>Connections Log</b><br />Logs all outbound connections in the console",width:3},(data=>{Debug_1.Debug.setState("connect",data)})),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:Debug_1.Debug.getState("perform"),label:"<b>Performance Metrics</b><br />Write script performance analysis into the console log",width:3},(data=>{Debug_1.Debug.setState("perform",data)})),Form_1.Form.spacer(3),Form_1.Form.checkbox({value:Debug_1.Debug.getState("vivaldi"),label:"<b>Compatibility Mode</b><br />Use fallback functions to avoid crashes in some browsers",width:3},(data=>{Debug_1.Debug.setState("vivaldi",data)}))])])])}createAboutTab(){return VersionChecker_1.VersionChecker.hasUpdate&&this.fetchSettings("checkUpdates")&&this.pushNotificationsCount("about",1),new Form_1.Form({name:"conf-about",columns:3,width:3},[Form_1.Form.div({value:`<h3 class="display-inline"><a href="${window.re621.links.website}" target="_blank" rel="noopener noreferrer">${window.re621.name} v.${VersionChecker_1.VersionChecker.scriptBuild}</a></h3> <span class="display-inline">build ${window.re621.build}:${Patcher_1.Patcher.version}</span>`,width:2}),Form_1.Form.div({value:`<span class="float-right" id="project-update-button" data-available="${VersionChecker_1.VersionChecker.hasUpdate}">\n                    <a href="${window.re621.links.releases}" target="_blank" rel="noopener noreferrer">Update Available</a>\n                    </span>`}),Form_1.Form.div({value:`<b>${window.re621.name}</b> is a comprehensive set of tools designed to enhance the website for both casual and power users. It is created and maintained by unpaid volunteers, with the hope that it will be useful for the community.`,width:3}),Form_1.Form.div({value:`Keeping the script - and the website - fully functional is our highest priority. If you are experiencing bugs or issues, do not hesitate to create a new ticket on <a href="${window.re621.links.issues}" target="_blank" rel="noopener noreferrer">github</a>, or leave us a message in the <a href="${window.re621.links.forum}" target="_blank" rel="noopener noreferrer">forum thread</a>. Feature requests, comments, and overall feedback are also appreciated.`,width:3}),Form_1.Form.div({value:"Thank you for downloading and using this script. We hope that you enjoy the experience.",width:3}),Form_1.Form.spacer(3),Form_1.Form.div({value:`<a href="https://ko-fi.com/A0A43OM71" target="_blank" rel="noopener noreferrer"><img height="36" style="border:0px; height:36px;" src="${Util_1.Util.DOM.getKoFiImage()}" border="0" alt="Buy Me a Coffee at ko-fi.com" /></a>`,width:3}),Form_1.Form.spacer(3),Form_1.Form.checkbox({label:"<b>Show Update Notification</b><br />Display a red dot over the settings icon if an update is available",value:this.fetchSettings("checkUpdates"),width:3},(async data=>{console.log(data),await this.pushSettings("checkUpdates",data)})),Form_1.Form.spacer(3),Form_1.Form.header(`<a href="${window.re621.links.releases}" target="_blank" rel="noopener noreferrer" class="unmargin">What's new?</a>`,3),Form_1.Form.div({value:`<div id="changelog-list"><h5>Version ${VersionChecker_1.VersionChecker.latestBuild}</h5>${VersionChecker_1.VersionChecker.changesHTML}</div>`,width:3})])}openSettings(){$("a#header-button-settings")[0].click()}}exports.SettingsController=SettingsController},{"../../components/ModuleController":1,"../../components/RE6Module":2,"../../components/api/E621":5,"../../components/api/XM":7,"../../components/cache/AvoidPosting":14,"../../components/cache/TagCache":16,"../../components/cache/TagSuggestions":17,"../../components/data/User":22,"../../components/post/Post":23,"../../components/structure/Form":29,"../../components/structure/Modal":30,"../../components/structure/Tabbed":33,"../../components/utility/Debug":34,"../../components/utility/Patcher":36,"../../components/utility/Util":38,"../../components/utility/VersionChecker":45,"../downloader/FavDownloader":47,"../downloader/MassDownloader":48,"../downloader/PoolDownloader":49,"../misc/SmartAlias":60,"../misc/TagSuggester":61,"../misc/UploadUtilities":62,"../post/DownloadCustomizer":64,"../post/ImageScaler":65,"../post/PoolNavigator":66,"../post/PostViewer":67,"../post/TitleCustomizer":68,"../search/BetterSearch":69,"../search/BlacklistEnhancer":70,"../search/CustomFlagger":71,"../search/HoverZoom":72,"../search/SearchUtilities":76,"../subscriptions/ForumTracker":79,"../subscriptions/PoolTracker":80,"../subscriptions/_SubscriptionManager":84,"./CommentBlacklist":50,"./HeaderCustomizer":53,"./JanitorEnhancements":54,"./Miscellaneous":55}],57:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.ThemeCustomizer=void 0;const RE6Module_1=require("../../components/RE6Module"),Form_1=require("../../components/structure/Form"),Modal_1=require("../../components/structure/Modal"),Util_1=require("../../components/utility/Util");class ThemeCustomizer extends RE6Module_1.RE6Module{getDefaultSettings(){return{enabled:!0}}create(){super.create();const openCustomizerButton=Util_1.Util.DOM.addSettingsButton({id:"header-button-theme",name:'<i class="fas fa-paint-brush"></i>',title:"Change Theme"}),form=new Form_1.Form({name:"theme-customizer"},[Form_1.Form.select({label:"Theme",value:window.localStorage.getItem("theme")||"hexagon"},{hexagon:"Hexagon",pony:"Pony",bloodlust:"Bloodlust",serpent:"Serpent",hotdog:"Hotdog"},(data=>{window.localStorage.setItem("theme",data),$("body").attr("data-th-main",data),ThemeCustomizer.trigger("switch.theme",data)})),Form_1.Form.select({label:"Extras",value:window.localStorage.getItem("theme-extra")||"hexagons"},{none:"None",autumn:"Autumn",winter:"Winter",spring:"Spring",aurora:"Aurora",hexagons:"Hexagons",space:"Space",stars:"Stars"},(data=>{window.localStorage.setItem("theme-extra",data),$("body").attr("data-th-extra",data),ThemeCustomizer.trigger("switch.extras",data)})),Form_1.Form.select({label:"Post Navbar",value:Util_1.Util.LS.getItem("re621-theme-nav")||Util_1.Util.LS.getItem("theme-nav")||"top"},{top:"Top",bottom:"Bottom",both:"Both",left:"Sidebar",none:"None"},(data=>{"left"==data?Util_1.Util.LS.setItem("theme-nav","top"):Util_1.Util.LS.setItem("theme-nav",data),Util_1.Util.LS.setItem("re621-theme-nav",data),$("body").attr("data-th-nav",data),$("body").attr("re621-data-th-nav","left"==data?"true":"false"),ThemeCustomizer.trigger("switch.navbar",data)}))]);new Modal_1.Modal({title:"Themes",triggers:[{element:openCustomizerButton}],content:Form_1.Form.placeholder(),structure:form,position:{my:"right top",at:"right top"}})}}exports.ThemeCustomizer=ThemeCustomizer},{"../../components/RE6Module":2,"../../components/structure/Form":29,"../../components/structure/Modal":30,"../../components/utility/Util":38}],58:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.EditTracker=void 0;const Page_1=require("../../components/data/Page"),RE6Module_1=require("../../components/RE6Module"),Util_1=require("../../components/utility/Util");class EditTracker extends RE6Module_1.RE6Module{constructor(){super(Page_1.PageDefinition.post)}create(){$("#post_tag_string").is(":visible")?this.listen():$("body").one("click.re621","#post-edit-link, #side-edit-link",(()=>{this.listen()}))}async listen(){const input=$("#post_tag_string"),original=Util_1.Util.getTags(input),changes=$("<div>").addClass("diff-list post-changes").insertAfter("#tags-container");function escapeHTML(input){return $("<span>").text(input).html()}$("#post_tag_string").on("input",(()=>{const changed=Util_1.Util.getTags(input),output=[];for(const tag of changed.filter((el=>!original.includes(el))))output.push(`<ins>+<a href="/wiki_pages/show_or_new?title=${encodeURIComponent(tag)}" target="_blank" rel="noopener noreferrer">${escapeHTML(tag)}</a></ins>`);for(const tag of original.filter((el=>!changed.includes(el))))output.push(`<del>-<a href="/wiki_pages/show_or_new?title=${encodeURIComponent(tag)}" target="_blank" rel="noopener noreferrer">${escapeHTML(tag)}</a></del>`);0!=output.length?changes.html("<label>Tag Changes</label>\n"+output.join(" ")):changes.html("")}))}}exports.EditTracker=EditTracker},{"../../components/RE6Module":2,"../../components/data/Page":20,"../../components/utility/Util":38}],59:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.ScriptAssistant=void 0;const Page_1=require("../../components/data/Page"),Post_1=require("../../components/post/Post"),RE6Module_1=require("../../components/RE6Module"),BetterSearch_1=require("../search/BetterSearch");class ScriptAssistant extends RE6Module_1.RE6Module{constructor(){super(Page_1.PageDefinition.search,!0,!1,[BetterSearch_1.BetterSearch])}create(){super.create();const input=$("#tag-script-field");0!=input.length&&$("<button>").attr({id:"tag-script-all",title:"Apply the current script to all posts on the page"}).html("all").insertAfter(input).on("click",(()=>{Post_1.Post.find("all").each((post=>{post.$ref.trigger("pseudoclick")}))}))}}exports.ScriptAssistant=ScriptAssistant},{"../../components/RE6Module":2,"../../components/data/Page":20,"../../components/post/Post":23,"../search/BetterSearch":69}],60:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.SmartAlias=void 0;const E621_1=require("../../components/api/E621"),APITag_1=require("../../components/api/responses/APITag"),AvoidPosting_1=require("../../components/cache/AvoidPosting"),RelationsCache_1=require("../../components/cache/RelationsCache"),TagCache_1=require("../../components/cache/TagCache"),Page_1=require("../../components/data/Page"),RE6Module_1=require("../../components/RE6Module"),TagValidator_1=require("../../components/utility/TagValidator"),Util_1=require("../../components/utility/Util");class SmartAlias extends RE6Module_1.RE6Module{constructor(){super([Page_1.PageDefinition.upload,Page_1.PageDefinition.post,Page_1.PageDefinition.search,Page_1.PageDefinition.favorites],!0),this.inputElements=[]}getDefaultSettings(){return{enabled:!0,autoLoad:!0,tagOrder:TagOrder.Default,quickTagsForm:!0,editTagsForm:!0,searchForm:!0,uploadCharactersForm:!0,uploadSexesForm:!0,uploadBodyTypesForm:!0,uploadThemesForm:!0,uploadTagsForm:!0,replaceAliasedTags:!0,resolveImplications:!0,replaceLastTag:!1,fixCommonTypos:!1,asciiWarning:!0,minPostsWarning:20,compactOutput:!1,minCachedTags:1e3,data:""}}async prepare(){await super.prepare(),Page_1.Page.matches(Page_1.PageDefinition.post)&&($("#post_tag_string").is(":visible")||(SmartAlias.postPageLockout=!0,$("body").one("click.re621","#post-edit-link, #side-edit-link",(()=>{SmartAlias.postPageLockout=!1,this.reload()}))))}async reload(){if(this.destroy(),this.fetchSettings("enabled"))return new Promise((resolve=>{setTimeout((()=>{this.create(),resolve()}),100)}))}destroy(){if(this.isInitialized()){super.destroy();for(const inputElement of $("#post_tags, #post_tag_string").get())$(inputElement).off("focus.re621.smart-alias").off("focusout.re621.smart-alias");$("smart-alias").remove(),$("smart-tag-counter").remove(),$("button.smart-alias-validate").remove(),$("#tags").off("input.re621.smart-alias");for(const element of this.inputElements)element.off("input.smartalias blur.smartalias blur.smartalias.spacefix").removeData("re621:smartalias")}}create(){if(super.create(),this.fetchSettings("searchForm")&&Page_1.Page.matches([Page_1.PageDefinition.search,Page_1.PageDefinition.post,Page_1.PageDefinition.favorites])&&this.handleSearchForm(),!this.fetchSettings("quickTagsForm")&&Page_1.Page.matches([Page_1.PageDefinition.search,Page_1.PageDefinition.favorites]))return;if(!this.fetchSettings("editTagsForm")&&Page_1.Page.matches(Page_1.PageDefinition.post))return;if(this.setCompactOutput(this.fetchSettings("compactOutput")),SmartAlias.postPageLockout)return;if(void 0===SmartAlias.aliasCache){const cacheData=this.fetchSettings("data");SmartAlias.aliasCache=SmartAlias.getAliasData(cacheData),SmartAlias.aliasCacheLength=cacheData.length}const inputs=new Set(Array.from(SmartAlias.inputSelector)),enabledInputs=this.fetchSettings(["uploadCharactersForm","uploadSexesForm","uploadBodyTypesForm","uploadThemesForm","uploadTagsForm"]);enabledInputs.uploadCharactersForm||inputs.delete("#post_characters"),enabledInputs.uploadSexesForm||inputs.delete("#post_sexes"),enabledInputs.uploadBodyTypesForm||inputs.delete("#post_bodyTypes"),enabledInputs.uploadThemesForm||inputs.delete("#post_themes"),enabledInputs.uploadTagsForm||inputs.delete("#post_tags"),this.inputElements=[];const mode=this.fetchSettings("autoLoad");for(const inputElement of $([...inputs].join(", ")).get()){const $textarea=$(inputElement);if($textarea.data("re621:smartalias"))continue;$textarea.data("re621:smartalias",!0),this.inputElements.push($textarea);const $container=$("<smart-alias>").attr("ready","true").insertAfter($textarea),$counter=$("<smart-tag-counter>").insertAfter($textarea);let updateTimeout;mode?this.manageAutoLoad($textarea,$container):this.manageManualLoad($textarea,$container),Page_1.Page.matches([Page_1.PageDefinition.search,Page_1.PageDefinition.favorites])&&$("article.post-preview").on("click.danbooru",(()=>{mode?this.handleTagInput($textarea,$container,!1):$container.html("")})),$textarea.on("input re621:input",(()=>{updateTimeout||(updateTimeout=window.setTimeout((()=>{updateTimeout=0}),500),$counter.html(SmartAlias.countTagInput($textarea)+""))}))}}static getInputString(input){return input.val().toString().trim().toLowerCase().replace(/\r?\n|\r/g," ").replace(/(?:\s){2,}/g," ")}static parseTagString(input){const result=[];for(const tag of input.split(/ |\n|\r/).filter((el=>null!=el&&""!=el)))result.push(ParsedTag.fromString(tag));return result}static parseTagInput(input){return this.parseTagString(SmartAlias.getInputString(input))}static countTagInput(input){return SmartAlias.getInputString(input).split(/ |\n|\r/).length}manageAutoLoad($textarea,$container){let typingTimeout;$textarea.on("input.smartalias blur.smartalias",(()=>{"true"!==$textarea.data("vue-event")?(window.clearInterval(typingTimeout),typingTimeout=window.setInterval((()=>{"true"===$container.attr("ready")&&(window.clearInterval(typingTimeout),this.handleTagInput($textarea,$container))}),1e3)):$textarea.data("vue-event","false")})).on("blur.smartalias.spacefix",(()=>{$textarea.val(((index,value)=>value.endsWith(" ")||0==value.length?value:value+" "))})),$textarea.on("re621:input",(()=>{this.handleTagInput($textarea,$container)})),this.handleTagInput($textarea,$container,!1)}manageManualLoad($textarea,$container){$("<button>").html("Validate").addClass("smart-alias-validate").insertBefore($container).on("click",(event=>{event.preventDefault(),this.handleTagInput($textarea,$container,!1)}))}async handleTagInput($textarea,$container,scrollToBottom=!0){if("true"!==$container.attr("ready"))return;$container.attr("ready","false"),this.fetchSettings("fixCommonTypos")&&$textarea.val(((index,currentValue)=>currentValue.toLowerCase()));const originalTags=$textarea.data("originalTags");originalTags?($container.attr("has-original","true"),$container.data("originalTags",originalTags)):$container.removeAttr("has-original");const inputString=SmartAlias.getInputString($textarea);let tags=SmartAlias.parseTagString(inputString);const impliedTags=new Set;if(0==tags.length)return $container.html(""),void $container.attr("ready","true");const minPostsWarning=this.fetchSettings("minPostsWarning"),asciiWarning=this.fetchSettings("asciiWarning"),tagOrder=this.fetchSettings("tagOrder");await this.loadAliasCache(),SmartAlias.aliasCache.length>0&&($textarea.val(((index,text)=>this.replaceInputAliases(text))),triggerUpdateEvent($textarea),tags=SmartAlias.parseTagInput($textarea));const lookup=new Set;for(const tagData of tags.filter((tag=>!tag.malformed)))void 0===SmartAlias.tagData[tagData.name]&&lookup.add(tagData.name);redrawContainerContents($container,tags,minPostsWarning,asciiWarning,tagOrder,lookup);const invalidTags=new Set,ambiguousTags=new Set;for(const batch of Util_1.Util.chunkArray([...lookup].filter((value=>null==SmartAlias.tagAliases[value])),40))for(const result of await E621_1.E621.TagAliases.get({"search[antecedent_name]":batch,limit:320},500)){if("active"!==result.status)continue;const currentName=result.antecedent_name,trueName=result.consequent_name;"invalid_tag"!=trueName&&"invalid_color"!=trueName?trueName.endsWith("_(disambiguation)")?ambiguousTags.add(currentName):(lookup.delete(currentName),null==SmartAlias.tagData[trueName]&&lookup.add(trueName),SmartAlias.tagAliases[currentName]=trueName):invalidTags.add(currentName)}if(this.fetchSettings("replaceAliasedTags")&&($textarea.val(((index,currentValue)=>{const lastTag=this.fetchSettings("replaceLastTag")||currentValue.endsWith(" ")||!$textarea.is(":focus")?null:Util_1.Util.getTags($textarea).pop();for(const[antecedent,consequent]of Object.entries(SmartAlias.tagAliases))antecedent!=lastTag&&(currentValue=currentValue.replace(this.getTagRegex(antecedent),"$1"+consequent+"$3"));return currentValue})),triggerUpdateEvent($textarea),tags=SmartAlias.parseTagInput($textarea)),this.fetchSettings("resolveImplications")){const implLookup=RelationsCache_1.default.intersect(tags);if(implLookup.lacks.length){const response=await E621_1.E621.TagPreview.post({tags:implLookup.lacks.join(" ")},500).then((result=>200!==result[1]?[]:result[0])),lackingTags=new Set(implLookup.lacks);for(const tagPreview of response){if("implication"!==tagPreview.type)continue;const tagData=implLookup.has[tagPreview.a]||{adds:[]};tagData.adds.push(tagPreview.b),implLookup.has[tagPreview.a]=tagData,lackingTags.delete(tagPreview.a),RelationsCache_1.default.add(tagPreview.a,tagData)}for(const tag of lackingTags){const tagData=implLookup.has[tag]||{adds:[]};RelationsCache_1.default.add(tag,tagData)}}const tagIndex=new Set;for(const tagData of tags)tagIndex.add(tagData.name);for(const tagData of Object.values(implLookup.has))for(const implication of tagData.adds)tagIndex.has(implication)||impliedTags.has(implication)||(impliedTags.add(implication),tags.push({name:implication,negated:!1,prefix:null}));for(const tagData of tags.filter((tag=>!tag.malformed)))void 0===SmartAlias.tagData[tagData.name]&&lookup.add(tagData.name);$textarea.data("implications",Array.from(impliedTags)),redrawContainerContents($container,tags,minPostsWarning,asciiWarning,tagOrder)}TagCache_1.TagCache.load();for(const tag of lookup){const data=TagCache_1.TagCache.get(tag);null!=data&&(SmartAlias.tagData[tag]={count:data.count,category:data.category,ambiguous:!1,invalid:!1,dnp:AvoidPosting_1.default.has(tag),errors:TagValidator_1.TagValidator.runVerbose(tag),cached:!0},lookup.delete(tag))}if(lookup.size>0){for(const batch of Util_1.Util.chunkArray(lookup,100))for(const result of await E621_1.E621.Tags.get({search:{name:batch.join(","),hide_empty:!1},limit:100},500))SmartAlias.tagData[result.name]={count:result.post_count,category:result.category,ambiguous:ambiguousTags.has(result.name),invalid:invalidTags.has(result.name),dnp:AvoidPosting_1.default.has(result.name),errors:TagValidator_1.TagValidator.runVerbose(result.name),cached:!1},lookup.delete(result.name);for(const tagName of lookup)SmartAlias.tagData[tagName]={count:-1,category:APITag_1.TagCategory.Unknown,ambiguous:!1,invalid:!0,dnp:AvoidPosting_1.default.has(tagName),errors:TagValidator_1.TagValidator.runVerbose(tagName),cached:!1}}const minCachedTags=this.fetchSettings("minCachedTags");if(minCachedTags>0){for(const[name,data]of Object.entries(SmartAlias.tagData))TagCache_1.TagCache.has(name)||data.count<minCachedTags||TagCache_1.TagCache.add(name,data.count,data.category);TagCache_1.TagCache.save()}function triggerUpdateEvent($textarea){Util_1.Util.Events.triggerVueEvent($textarea,"input","vue-event")}function redrawContainerContents($container,tags,minPostsWarning,asciiWarning,tagOrder,loading=new Set){$container.html("").toggleClass("grouped",tagOrder==TagOrder.Grouped);const originalTags=$container.data("originalTags")?$container.data("originalTags"):new Set;tagOrder!==TagOrder.Default&&(tags=tags.sort(((a,b)=>a.name.localeCompare(b.name))));const tagNames=[];for(const tagData of tags)tagNames.push(tagData.name);for(const tagData of tags){let displayName=tagData.name;null!=SmartAlias.tagAliases[tagData.name]&&(tagData.name=SmartAlias.tagAliases[tagData.name]);const data=tagData.malformed?{count:0,category:APITag_1.TagCategory.Invalid,invalid:!0,ambiguous:!1,dnp:!1,errors:[],cached:!1}:SmartAlias.tagData[tagData.name],isLoading=loading.has(tagData.name);if(null==data&&!isLoading)continue;let symbol,color,text,title;isLoading?(symbol="loading",color="success",text=""):tagData.malformed?(symbol="error",color="error",text="invalid",tagData.name=(tagData.negated?"-":"")+(tagData.prefix?tagData.prefix+":":"")+tagData.name,displayName=tagData.name):data.dnp?(symbol="error",color="error",text="avoid posting"):Util_1.Util.getArrayIndexes(tagNames,tagData.name).length>1?(symbol="info",color="info",text="duplicate"):data.invalid||data.category==APITag_1.TagCategory.Invalid?(symbol="error",color="error",text="invalid"):data.ambiguous||tagData.name.endsWith("_(disambiguation)")?(symbol="info",color="warning",text="ambiguous",displayName=displayName.replace("_(disambiguation)","")):impliedTags.has(tagData.name)?(symbol="info",color="implied",text="implied"):0==data.count?(symbol="error",color="error",text="empty"):data.count<minPostsWarning?(symbol="error",color="error",text=data.count+""):(symbol="success",color="success",text=data.cached?"~"+Util_1.Util.formatK(data.count):data.count+"",title=data.cached?"cached value":void 0),displayName=displayName.replace(/_/g,"_​");let action="default";originalTags.has(tagData.name)&&tagData.negated&&(action="removed"),originalTags.has(tagData.name)||tagData.negated||(action="added");const $element=$("<smart-tag>").addClass(isLoading?"":"category-"+data.category).attr({name:tagData.name,symbol:symbol,color:color,action:"default"==action?void 0:action}).appendTo($container);$("<a>").attr({href:"/wiki_pages/show_or_new?title="+encodeURIComponent(tagData.name),target:"_blank",rel:"noopener noreferrer",tabindex:-1}).text(displayName).appendTo($element),$(" <span>").attr("title",title).text(text).appendTo($element),asciiWarning&&data&&data.errors.length>0&&!data.dnp&&$("<span>").addClass("fas fa-exclamation-triangle tag-warning").attr("title",data.errors.join("\n")).appendTo($element)}}redrawContainerContents($container,tags,minPostsWarning,asciiWarning,tagOrder),scrollToBottom&&$container.scrollTop($container[0].scrollHeight-$container[0].clientHeight),$container.attr("ready","true")}async loadAliasCache(){const aliasCacheRaw=await this.fetchSettings("data",!0);aliasCacheRaw.length!==SmartAlias.aliasCacheLength&&(SmartAlias.aliasCache=SmartAlias.getAliasData(aliasCacheRaw),SmartAlias.aliasCacheLength=aliasCacheRaw.length)}static getAliasData(rawData){const data=rawData.split("\n").reverse(),result=[],aliasList=new Set;for(const line of data){const parts=line.split("#")[0].trim().split("->");if(2!==parts.length)continue;const def={lookup:new Set,output:(input=parts[1],input.trim().replace(/\s{2,}/g," "))};for(const part of formatLookup(parts[0]))aliasList.has(part)||(aliasList.add(part),def.lookup.add(part));0!=def.lookup.size&&result.push(def)}var input;return result;function formatLookup(input){return new Set(input.split(" ").filter((e=>""!=e)))}}getTagRegex(input){input="string"==typeof input?[input]:[...input];for(let i=0;i<input.length;i++)input[i]=input[i].replace(/[.+?^${}()|[\]\\]/g,"\\$&").replace(/\*/g,"(\\S*)");return new RegExp("((?:^|\n| )-?(?:(?:artist|character|copyright|species):)?)("+input.join("|")+")( |\n|$)","gi")}replaceInputAliases(text){let changes=0,iterations=0;do{changes=0;for(const aliasDef of SmartAlias.aliasCache)text=text.replace(this.getTagRegex(aliasDef.lookup),((...args)=>{changes++;let output=aliasDef.output;for(let i=3;i<args.length-3;i++)output=output.replace(new RegExp("\\$"+(i-2),"gi"),args[i]);const result=new Set;for(const part of output.split(" "))this.getTagRegex(part).test(text)||result.add(part);return 0==result.size?" ":args[1]+[...result].join(" ")+args[args.length-3]}));iterations++}while(0!=changes&&iterations<SmartAlias.ITERATIONS_LIMIT);return text}handleSearchForm(){let typingTimeout;const input=$("#tags").on("input.re621.smart-alias",(()=>{clearTimeout(typingTimeout),typingTimeout=window.setTimeout((async()=>{await this.loadAliasCache(),input.val(((index,text)=>this.replaceInputAliases(text)))}),500)}))}setCompactOutput(state=!1){$("#page").attr("data-smartalias-compact",state+"")}}var TagOrder,ParsedTag;exports.SmartAlias=SmartAlias,SmartAlias.ITERATIONS_LIMIT=10,SmartAlias.inputSelector=new Set(["#post_tag_string","#re621_qedit_tags","#post_characters","#post_sexes","#post_bodyTypes","#post_themes","#post_tags"]),SmartAlias.tagData={},SmartAlias.tagAliases={},SmartAlias.postPageLockout=!1,function(TagOrder){TagOrder.Default="default",TagOrder.Alphabetical="alphabetical",TagOrder.Grouped="grouped"}(TagOrder||(TagOrder={})),function(TagOrder){TagOrder.fromString=function(input){for(const value of Object.values(TagOrder))if(value==input)return value;return TagOrder.Default}}(TagOrder||(TagOrder={})),function(ParsedTag){ParsedTag.fromString=function(rawTag){const result={name:null,negated:!1,prefix:null};rawTag.startsWith("-")&&(result.negated=!0,rawTag=rawTag.substr(1));const match=rawTag.match(/(artist|character|copyright|species):/);return match&&(result.prefix=match[1],rawTag=rawTag.substr(match[0].length)),result.name=rawTag,0==result.name.length&&(result.malformed=!0),result},ParsedTag.toString=function(tag,skipNegation=!1){return(tag.negated&&!skipNegation?"-":"")+(tag.prefix?tag.prefix+":":"")+tag.name}}(ParsedTag||(ParsedTag={}))},{"../../components/RE6Module":2,"../../components/api/E621":5,"../../components/api/responses/APITag":13,"../../components/cache/AvoidPosting":14,"../../components/cache/RelationsCache":15,"../../components/cache/TagCache":16,"../../components/data/Page":20,"../../components/utility/TagValidator":37,"../../components/utility/Util":38}],61:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.TagSuggester=void 0;const TagSuggestions_1=require("../../components/cache/TagSuggestions"),Page_1=require("../../components/data/Page"),RE6Module_1=require("../../components/RE6Module"),ErrorHandler_1=require("../../components/utility/ErrorHandler"),Util_1=require("../../components/utility/Util");class TagSuggester extends RE6Module_1.RE6Module{constructor(){super([Page_1.PageDefinition.upload],!0),this.tagInput=[]}getDefaultSettings(){return{enabled:!0,data:JSON.stringify(TagSuggestions_1.TagSuggestionsList,TagSuggestions_1.TagSuggestionsTools.replacer," ")}}create(){super.create(),this.reloadSuggestions();for(const element of $("button.toggle-button").get()){const $element=$(element),text=$element.text().trim();TagSuggester.buttonTagExceptions[text]?$element.attr("data-tag",TagSuggester.buttonTagExceptions[text]):$element.attr("data-tag",text.toLowerCase().replace(/ /,"_"))}this.tagOutput=$("#post_tags");const parentContainer=this.tagOutput.parent().addClass("tag-suggester-container");this.container=$("<tag-suggester>").attr("ready","true").on("recount",(()=>{this.container.attr("count",this.container.children().length)})).appendTo(parentContainer),this.tagInput=[];for(const selector of TagSuggester.inputSelectors){const input=$(selector);if(0==input.length)continue;let typingTimeout;this.tagInput.push(input),input.on("input.tagsuggester",(()=>{"true"!==input.data("vue-event-alt")?(window.clearInterval(typingTimeout),typingTimeout=window.setInterval((()=>{"true"===this.container.attr("ready")&&(window.clearInterval(typingTimeout),this.update())}),1e3)):input.data("vue-event-alt","false")}))}$("button.toggle-button").on("click.tagsuggester",(()=>{this.update()})),TagSuggester.on("update.main",(()=>{this.update()})),this.update()}destroy(){super.destroy(),this.container&&this.container.remove();for(const input of this.tagInput)input.off("input.tagsuggester");this.tagInput=[],$("button.toggle-button").off("click.tagsuggester")}async reload(){if(this.destroy(),this.fetchSettings("enabled"))return new Promise((resolve=>{setTimeout((()=>{this.create(),resolve()}),100)}))}reloadSuggestions(){try{this.tagSuggestionsData=JSON.parse(this.fetchSettings("data"),TagSuggestions_1.TagSuggestionsTools.reviver)}catch(error){ErrorHandler_1.ErrorHandler.error("TagSuggester","Failed to parse the tag suggestions file"),this.tagSuggestionsData={}}}update(){const tagOutput=this.tagOutput,container=this.container.html("").attr("ready","false"),tags=new Set(Util_1.Util.getTags(this.tagInput)),suggestions={};for(const element of $("button.toggle-button.active").get())tags.add($(element).data("tag"));const output=$("#preview-sidebar div.upload_preview_dims").first();if(output.length){const data={year:parseInt(output.attr("data-year"))||-1,width:parseInt(output.attr("data-width"))||-1,height:parseInt(output.attr("data-height"))||-1,size:parseInt(output.attr("data-size"))||-1,type:output.attr("data-type")||"unk",file:"true"==output.attr("data-file")};if("unk"!==data.type&&tags.add("type:"+data.type),data.year&&data.year>0&&!data.file&&(suggestions[data.year]="Might not be accurate. Based on the file's last modified date."),data.width&&data.height&&data.width>1&&"swf"!==data.type){const ratio=TagSuggester.getImageRatio(data.width,data.height);ratio&&(suggestions[ratio]="Aspect ratio based on the image's dimensions"),function(width,height,matches){for(const[matchWidth,matchHeight]of matches)if(width==matchWidth&&height==matchHeight||width==matchHeight&&height==matchWidth)return!0;return!1}(data.width,data.height,[[3840,2160],[4096,2160]])&&(suggestions["4k"]="Image dimensions fit the 4K resolution")}data.size&&data.size>31457280&&(suggestions.huge_filesize="Filesize exceeds 30MB")}for(const[key,matches]of Object.entries(this.tagSuggestionsData)){const keyset=key.split("|");if(!tagAlreadyPresent(tags,Object.keys(suggestions),keyset)&&tagsMatchRegex(matches,tags))for(const keyEntry of keyset)suggestions[keyEntry]="Existing tags: "+formatMatchRegex(matches)}for(const[tag,description]of Object.entries(suggestions))addSuggestion(tag,description+"");function tagAlreadyPresent(tags,suggestions,keyset){for(const key of keyset)if(tags.has(key)||suggestions.includes(key))return!0;return!1}function addSuggestion(tagName,hover){if(tags.has(tagName+""))return;const wrapper=$("<tag-entry>").attr("title",hover).appendTo(container);$("<a>").attr({href:"/wiki_pages/show_or_new?title="+encodeURIComponent(tagName),target:"_blank",rel:"noopener noreferrer"}).html("?").appendTo(wrapper),$("<a>").attr("href","javascript://").on("click",(event=>{event.preventDefault(),tagOutput.val(((index,value)=>value+(0==value.length||value.endsWith(" ")?"":" ")+tagName+" ")),$(event.currentTarget).parent("tag-entry").remove(),container.trigger("recount"),Util_1.Util.Events.triggerVueEvent(tagOutput,"input","vue-event-alt")})).html(tagName).appendTo(wrapper)}function tagsMatchRegex(suggestion,tags){let matchHas=!0;if(suggestion.has){Array.isArray(suggestion.has)||(suggestion.has=[suggestion.has]),suggestion.matchCount||(suggestion.matchCount=suggestion.has.length);const regexHas=new Set(suggestion.has);for(const regex of regexHas)if("string"==typeof regex){if(!tags.has(regex))continue;regexHas.delete(regex)}else for(const tag of tags)if(regex.test(tag)){regexHas.delete(regex);break}matchHas=regexHas.size<=suggestion.has.length-suggestion.matchCount}let matchNot=!0;if(suggestion.not){Array.isArray(suggestion.not)||(suggestion.not=[suggestion.not]);const regexNot=new Set(suggestion.not);for(const regex of regexNot)if("string"==typeof regex){if(!tags.has(regex))continue;matchNot=!1}else{for(const tag of tags)if(regex.test(tag)){matchNot=!1;break}if(!matchNot)break}}return matchHas&&matchNot}function formatMatchRegex(suggestion){const resultsHas=[];if(suggestion.has){Array.isArray(suggestion.has)||(suggestion.has=[suggestion.has]);for(const match of suggestion.has)resultsHas.push((match+"").replace(/\/\^|\$\//g,"").replace(/^\/|\/$/g,"").replace(/^\((.*)\)$/g,"$1").replace(/\.\+/g,"*").replace(/\|/g," / "))}const resultsNot=[];if(suggestion.not){Array.isArray(suggestion.not)||(suggestion.not=[suggestion.not]);for(const match of suggestion.not)resultsNot.push((match+"").replace(/\/\^|\$\//g,"").replace(/^\/|\/$/g,"").replace(/^\((.*)\)$/g,"$1").replace(/\.\+/g,"*").replace(/\|/g," / "))}return resultsHas.length>0&&resultsNot.length>0?Util_1.Util.prettyPrintArray(resultsHas)+", but not "+Util_1.Util.prettyPrintArray(resultsNot,"or"):resultsHas.length>0?Util_1.Util.prettyPrintArray(resultsHas):resultsNot.length>0?"not "+Util_1.Util.prettyPrintArray(resultsNot,"or"):"???"}container.attr("ready","true").trigger("recount")}static getImageRatio(width,height){return"string"==typeof width&&(width=parseInt(width)),"string"==typeof height&&(height=parseInt(height)),width&&height?ImageRatios[(width/height).toFixed(6)]:null}}exports.TagSuggester=TagSuggester,TagSuggester.inputSelectors=new Set(["#post_characters","#post_sexes","#post_bodyTypes","#post_themes","#post_tags"]),TagSuggester.buttonTagExceptions={Hermaphrodite:"herm","Male-Herm":"maleherm",Ambiguous:"ambiguous_gender",Explicit:"rating:e",Questionable:"rating:q",Safe:"rating:s"};const ImageRatios={"1.000000":"1:1","0.250000":"1:4","0.281250":"9:32","0.500000":"1:2",.428571:"9:21",.529412:"9:17","0.562500":"9:16",.571429:"4:7","0.600000":"3:5","0.625000":"10:16",.642857:"9:14",.666667:"2:3","0.750000":"3:4","0.800000":"4:5",.833333:"5:6","1.200000":"6:5","1.250000":"5:4",1.333333:"4:3","1.500000":"3:2",1.555556:"14:9","1.600000":"16:10",1.666667:"5:3","1.750000":"7:4",1.777778:"16:9",1.888889:"17:9",1.896296:"256:135","2.000000":"2:1",2.333333:"21:9",3.555556:"32:9","4.000000":"4:1"}},{"../../components/RE6Module":2,"../../components/cache/TagSuggestions":17,"../../components/data/Page":20,"../../components/utility/ErrorHandler":35,"../../components/utility/Util":38}],62:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.UploadUtilities=void 0;const E621_1=require("../../components/api/E621"),APIPost_1=require("../../components/api/responses/APIPost"),XM_1=require("../../components/api/XM"),Page_1=require("../../components/data/Page"),Post_1=require("../../components/post/Post"),RE6Module_1=require("../../components/RE6Module"),Util_1=require("../../components/utility/Util"),TagSuggester_1=require("./TagSuggester");class UploadUtilities extends RE6Module_1.RE6Module{constructor(){super([Page_1.PageDefinition.upload],!0)}getDefaultSettings(){return{enabled:!0,checkDuplicates:!0,addSourceLinks:!0,cleanSourceLinks:!0,loadImageData:!1,fixPixivPreviews:!1,stopLeaveWarning:!1}}create(){if(super.create(),this.fetchSettings("checkDuplicates")&&this.handleDuplicateCheck(),this.fetchSettings("addSourceLinks")){this.handleSourceEnhancements();const noSourceCheckbox=$("#no_source").on("change",(()=>{noSourceCheckbox.prop("checked")||this.handleSourceEnhancements()}))}this.handleImageData(),$("button:contains('Upload')").addClass("submit-upload"),this.fetchSettings("stopLeaveWarning")&&(XM_1.XM.Window.onbeforeunload=null),this.handleParentIDPreview(),this.fetchSettings("fixPixivPreviews")&&this.handlePixivPreviews()}static findSection(label,id){return $("label[for="+label+"]").parent().parent().attr("id",id)}handleDuplicateCheck(){const fileContainer=UploadUtilities.findSection("post_file","section-file").find("div.col2").first().attr("id","file-container"),dupesContainer=$("<div>").attr("id","dupes-container").appendTo(fileContainer),risContainer=$("<div>").attr("id","ris-container").html("").appendTo("div.upload_preview_container");let timer=null;function makePostThumbnail(entry){const postData=entry.post.posts,article=$("<div>"),link=$("<a>").attr({href:"/posts/"+postData.id,target:"_blank",rel:"noopener noreferrer"}).appendTo(article);return $("<img>").attr({src:postData.is_deleted?"/images/deleted-preview.png":postData.preview_file_url,title:`${postData.image_width}x${postData.image_height} ${Util_1.Util.Size.format(postData.file_size)} ${Math.round(entry.score)}% match\n${postData.tag_string_artist}\n${postData.tag_string_copyright}\n${postData.tag_string_character}\n${postData.tag_string_species}`}).appendTo(link),$("<loading>").css("--progress",Math.round(entry.score)+"%").appendTo(link),$("<span>").html(`${postData.image_width}x${postData.image_height} ${Util_1.Util.Size.format(postData.file_size)}`).appendTo(article),article}$(fileContainer).on("input paste","input",(async event=>{clearTimeout(timer),timer=setTimeout((()=>function(event){const value=$(event.target).val()+"";if(""==value)return dupesContainer.html(""),void risContainer.html("");try{new URL(value)}catch{return dupesContainer.html('<span class="fullspan">Unable to parse image path. <a href="/iqdb_queries" target="_blank" rel="noopener noreferrer">Check manually</a>?</span>'),void risContainer.html("")}dupesContainer.html('<span class="fullspan">Checking for duplicates . . .</span>'),E621_1.E621.IQDBQueries.get({url:encodeURI(value)}).then((response=>{if(dupesContainer.html(""),0!=response.length&&(void 0===response[0]||null!=response[0].post_id)){$("<h3>").html(`<a href="/iqdb_queries?url=${encodeURI(value)}" target="_blank" rel="noopener noreferrer">Duplicates Found:</a> ${response.length}`).appendTo(dupesContainer);for(const entry of response)makePostThumbnail(entry).appendTo(dupesContainer)}}),(error=>{console.log(error),dupesContainer.html("");const errorMessage=$("<span>").addClass("fullspan error").html(error.error&&429==error.error?"IQDB: Too Many Requests. ":`IQDB: Internal Error ${error.error?error.error:400} `).appendTo(dupesContainer);$("<a>").html("Retry?").appendTo(errorMessage).on("click",(event=>{event.preventDefault(),$(fileContainer).find("input").trigger("input")}))})),risContainer.html(`\n                <a href="/iqdb_queries?url=${encodeURI(value)}" target="_blank" rel="noopener noreferrer">e621</a>\n                <a href="https://www.google.com/searchbyimage?image_url=${encodeURI(value)}&client=e621" target="_blank" rel="noopener noreferrer">Google</a>\n                <a href="https://saucenao.com/search.php?url=${encodeURI(value)}" target="_blank" rel="noopener noreferrer">SauceNAO</a>\n                <a href="https://derpibooru.org/search/reverse?url=${encodeURI(value)}" target="_blank" rel="noopener noreferrer">Derpibooru</a>\n                <a href="https://kheina.com/?url=${encodeURI(value)}" target="_blank" rel="noopener noreferrer">Kheina</a>\n            `)}(event)),500)})),fileContainer.find("input[type=text").trigger("input")}handleSourceEnhancements(){const sourceContainer=UploadUtilities.findSection("post_sources","section-sources").find("div.col2").children("div").eq(1).attr("id","source-container"),urlMatch=/(http(?:s)?\:\/\/)(www\.)?/,timers={};$(sourceContainer).on("input re621:input","input.upload-source-input",(event=>{const $input=$(event.currentTarget),$parent=$input.parent();if("true"===$input.data("vue-event"))return void $input.data("vue-event","false");let id=$input.attr("data-timer");var link;(id||(id=Util_1.Util.ID.make(),$input.attr("data-timer",id),timers[id]=0),$parent.find("button.source-copy").remove(),$parent.find("button.source-link").remove(),$parent.find("span.source-eval").remove(),""!=$input.val())&&(timers[id]&&clearTimeout(timers[id]),timers[id]=window.setTimeout((()=>{this.fetchSettings("cleanSourceLinks")&&($input.val(((index,value)=>urlMatch.test(value)?value.replace(urlMatch,"https://"):value)),Util_1.Util.Events.triggerVueEvent($input,"input","vue-event"),$input.trigger("re621:input"))}),500),$("<button>").addClass("source-copy").html("copy").appendTo($parent).on("click",(()=>{XM_1.XM.Util.setClipboard($input.val())})),$("<button>").addClass("source-link").html("open").appendTo($parent).on("click",(()=>{window.open($input.val()+"","_blank")})),$("<span>").addClass("source-eval").html((link=$input.val()+"",/https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*)/.test(link)?link.startsWith("https")?"":"http":"invalid")).appendTo($parent))})),$("input.upload-source-input").trigger("input")}handleImageData(){const output=$("#preview-sidebar div.upload_preview_dims").first().on("re621:update",(()=>{output.html(["-1"==output.attr("data-width")?"0×0":`${output.attr("data-width")}×${output.attr("data-height")}`,"UNK"!==output.attr("data-type")?`${output.attr("data-type").toUpperCase()}`:void 0,"-1"!==output.attr("data-size")?`${Util_1.Util.Size.format(output.attr("data-size"))}`:void 0].filter((n=>n)).join("&emsp;"))})),image=$("#preview-sidebar img.upload_preview_img").first();let prevRequest="",prevData={};image.on("load.resix error.resix",(event=>{output.attr({"data-width":"error"==event.type?-1:$(image).prop("naturalWidth"),"data-height":"error"==event.type?-1:$(image).prop("naturalHeight"),"data-size":"0","data-type":"unk","data-year":-1,"data-file":!1});const fileInput=$("#file-container input[type=file]").first(),urlInput=$("#file-container input[type=text]").first();if(!(fileInput.length>0&&urlInput.length>0))if(fileInput.length>0){const fileData=fileInput[0].files;if(!fileData||0==fileData.length)return void output.html("");const file=fileData[0];output.attr({"data-size":file.size||"0","data-type":(file.type||"UNK").replace(/(image\/|video\/|\/plain)/g,"").replace("application/x-shockwave-flash","swf"),"data-year":file.lastModifiedDate?new Date(file.lastModifiedDate).getFullYear():-1,"data-file":!0}),prevRequest="",output.trigger("re621:update"),TagSuggester_1.TagSuggester.trigger("update")}else if(urlInput.length>0){if(!this.fetchSettings("loadImageData"))return output.attr({"data-size":-1,"data-type":"UNK","data-year":-1,"data-file":!1}),prevRequest="",output.trigger("re621:update"),void TagSuggester_1.TagSuggester.trigger("update");const curRequest=(urlInput.val()+"").trim();if(console.log("attempting",prevRequest==curRequest),curRequest==prevRequest)return output.attr(prevData),output.trigger("re621:update"),void TagSuggester_1.TagSuggester.trigger("update");prevRequest=curRequest;const requestURL=urlInput.val()+"";let requestURLValidated=null;try{requestURLValidated=new URL(requestURL),requestURLValidated||(requestURLValidated=null)}catch(e){requestURLValidated=null}if(!requestURLValidated)return output.attr({"data-size":-1,"data-type":"UNK","data-year":-1,"data-file":!1}),prevRequest="",output.trigger("re621:update"),void TagSuggester_1.TagSuggester.trigger("update");XM_1.XM.Connect.xmlHttpRequest({url:requestURL,method:"HEAD",headers:{referer:"i.pximg.net"==requestURLValidated.hostname?"https://www.pixiv.net/":window.location.href},onload:event=>{const headerStrings=event.responseHeaders.split(/\r?\n/),data={};for(const header of headerStrings){const parts=header.split(": ");parts.length<2||(data[parts[0]]=parts.slice(1).join(": "))}console.log(data),output.attr({"data-size":data["content-length"]||"0","data-type":(data["content-type"]||"UNK").replace(/(image\/|video\/|\/plain)/g,"").replace("application/x-shockwave-flash","swf"),"data-year":data["last-modified"]?new Date(data["last-modified"]).getFullYear():-1,"data-file":!1}),prevData={"data-width":output.attr("data-width"),"data-height":output.attr("data-height"),"data-size":output.attr("data-size"),"data-type":output.attr("data-type"),"data-year":output.attr("data-year"),"data-file":!1},output.trigger("re621:update"),TagSuggester_1.TagSuggester.trigger("update")}})}})),image.trigger("load.resix")}handleParentIDPreview(){const input=$('input[placeholder="Ex. 12345"]');if(0==input.length)return;const preview=$("<a>").attr({target:"_blank",rel:"noopener noreferrer",id:"upload-parent-preview"}).addClass("display-none-important").insertAfter(input),image=$("<img>").attr({src:"/images/deleted-preview.png"}).appendTo(preview);let timer;input.on("input paste",(()=>{timer&&window.clearTimeout(timer),timer=window.setTimeout((async()=>{const search=parseInt(input.val()+"");if(!search)return void preview.addClass("display-none-important");const lookup=await E621_1.E621.Posts.first({tags:"id:"+search},500);if(console.log(lookup),!lookup)return void preview.addClass("display-none-important");const post=Post_1.PostData.fromAPI(lookup);preview.attr("href","/posts/"+post.id).removeClass("display-none-important"),image.attr("src",post.flags.has(APIPost_1.PostFlag.Deleted)?"/images/deleted-preview.png":post.file.preview)}),500)}))}handlePixivPreviews(){const fileContainer=UploadUtilities.findSection("post_file","section-file").find("div.col2").first().attr("id","file-container"),output=$("#preview-sidebar div.upload_preview_dims").first(),image=$("#preview-sidebar img.upload_preview_img").first();let timer=null;$(fileContainer).on("input paste","input",(async event=>{clearTimeout(timer),timer=setTimeout((()=>function(event){const value=$(event.target).val()+"";let imageURL;try{if(imageURL=new URL(value),"i.pximg.net"!==imageURL.hostname)return}catch(e){return}if(!imageURL)return;image.attr("src",Util_1.Util.DOM.getLoadingImage()),XM_1.XM.Connect.xmlHttpRequest({url:"https://"+imageURL.hostname+"/"+imageURL.pathname,method:"GET",responseType:"blob",headers:{referer:"https://www.pixiv.net/"},onload:event=>{const reader=new FileReader;reader.readAsDataURL(event.response),reader.onloadend=()=>{const base64data=reader.result;image.attr("src",base64data+"").one("load",(()=>{const width=image.prop("naturalWidth"),height=image.prop("naturalHeight");output.attr("data-width",width).attr("data-height",height).trigger("re621:update")}))},TagSuggester_1.TagSuggester.trigger("update")}})}(event)),200)}))}}exports.UploadUtilities=UploadUtilities},{"../../components/RE6Module":2,"../../components/api/E621":5,"../../components/api/XM":7,"../../components/api/responses/APIPost":12,"../../components/data/Page":20,"../../components/post/Post":23,"../../components/utility/Util":38,"./TagSuggester":61}],63:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.WikiEnhancer=void 0;const XM_1=require("../../components/api/XM"),Page_1=require("../../components/data/Page"),RE6Module_1=require("../../components/RE6Module");class WikiEnhancer extends RE6Module_1.RE6Module{constructor(){super([Page_1.PageDefinition.wiki,Page_1.PageDefinition.wikiNA,Page_1.PageDefinition.artist],!0)}getDefaultSettings(){return{enabled:!0}}create(){super.create();const $title=Page_1.Page.matches(Page_1.PageDefinition.artist)?$("#a-show h1 a:first"):$("#wiki-page-title a:first"),tagName=WikiEnhancer.sanitizeWikiTagName($title.text());$("<button>").attr("id","wiki-page-copy-tag").addClass("button btn-neutral border-highlight border-left").html('<i class="far fa-copy"></i>').insertAfter($title).on("click",(()=>{XM_1.XM.Util.setClipboard(tagName)}))}destroy(){this.isInitialized()&&(super.destroy(),$("#wiki-page-copy-tag").remove())}static sanitizeWikiTagName(raw){return raw.trim().replace(/^.+: /g,"").replace(/ /g,"_")}}exports.WikiEnhancer=WikiEnhancer},{"../../components/RE6Module":2,"../../components/api/XM":7,"../../components/data/Page":20}],64:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.DownloadCustomizer=void 0;const XM_1=require("../../components/api/XM"),Page_1=require("../../components/data/Page"),ModuleController_1=require("../../components/ModuleController"),Post_1=require("../../components/post/Post"),PostParts_1=require("../../components/post/PostParts"),RE6Module_1=require("../../components/RE6Module"),MassDownloader_1=require("../downloader/MassDownloader");class DownloadCustomizer extends RE6Module_1.RE6Module{constructor(){super(Page_1.PageDefinition.post,!0),this.registerHotkeys({keys:"hotkeyDownload",fnct:this.hotkeyDownload})}getDefaultSettings(){return{enabled:!0,template:"%postid%-%artist%-%copyright%-%character%-%species%",confirmDownload:!1,downloadSamples:!1,hotkeyDownload:""}}create(){super.create(),this.post=Post_1.Post.getViewingPost();const downloadContainer=$("<div>").attr("id","image-custom-download-links").appendTo("#image-extra-controls"),link=$("<a>").attr({id:"image-custom-download-file",href:this.fetchSettings("downloadSamples")?this.post.file.sample:this.post.file.original,download:this.parseTemplate()}).html("Download").addClass("button btn-neutral").appendTo(downloadContainer).on("click",(event=>{event.preventDefault(),event.stopImmediatePropagation(),link.attr("loading","true"),XM_1.XM.Connect.browserDownload({url:this.fetchSettings("downloadSamples")?this.post.file.sample:this.post.file.original,name:link.attr("download"),saveAs:this.fetchSettings("confirmDownload"),onload:()=>{link.removeAttr("loading")}})})),tags=$("<a>").attr({id:"image-custom-download-tags",href:this.getTagsBlock(),download:this.parseTemplate("txt")}).html("Tags").addClass("button btn-neutral").appendTo(downloadContainer).on("click",(()=>{tags.attr("loading","true"),tags.attr({loading:"false",href:this.getTagsBlock()})}))}refreshDownloadLink(){$("#image-custom-download-file").attr({href:this.fetchSettings("downloadSamples")?this.post.file.sample:this.post.file.original,download:this.parseTemplate()})}getTagsBlock(){return URL.createObjectURL(new Blob([PostParts_1.PostParts.formatHoverText(this.post)],{type:"text/plain"}))}hotkeyDownload(){$("#image-custom-download-file")[0].click()}parseTemplate(ext){return DownloadCustomizer.getFileName(this.post,this.fetchSettings("template"),ext)}static getFileName(post,template,ext){return template||(template=ModuleController_1.ModuleController.fetchSettings(DownloadCustomizer,"template")),MassDownloader_1.MassDownloader.createFilenameBase(template,post).slice(0,128).replace(/-{2,}/g,"-").replace(/-*$/g,"")+"."+(ext||post.file.ext)}}exports.DownloadCustomizer=DownloadCustomizer},{"../../components/ModuleController":1,"../../components/RE6Module":2,"../../components/api/XM":7,"../../components/data/Page":20,"../../components/post/Post":23,"../../components/post/PostParts":26,"../downloader/MassDownloader":48}],65:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.ImageScaler=void 0;const Danbooru_1=require("../../components/api/Danbooru"),Page_1=require("../../components/data/Page"),User_1=require("../../components/data/User"),Post_1=require("../../components/post/Post"),RE6Module_1=require("../../components/RE6Module");class ImageScaler extends RE6Module_1.RE6Module{constructor(){super(Page_1.PageDefinition.post,!0),this.registerHotkeys({keys:"hotkeyScale",fnct:this.cycleScaling},{keys:"hotkeyFullscreen",fnct:this.openFullscreen})}getDefaultSettings(){return{enabled:!0,hotkeyScale:"v|0",hotkeyFullscreen:"",clickScale:!0,clickShowFiltered:!1,organizeModes:!0,dynSizeMode:DynSizeMode.Disabled,dynSizeDeadzone:.1,dynSizeTags:"comic"}}create(){super.create();const $container=$("#image-container"),$selector=$("#image-resize-selector"),isInteractive=Post_1.Post.getViewingPost().meta.interactive,post=Post_1.Post.getViewingPost(),dynSizeMode=this.fetchSettings("dynSizeMode");dynSizeMode!==DynSizeMode.Disabled&&Danbooru_1.Danbooru.Post.resize_to(this.calcDynamicSize(post,dynSizeMode)),$("#image-download-link a").html("Fullscreen"),this.fetchSettings("organizeModes")&&($selector.find("option[value=fitv]").appendTo($selector),$selector.find("option[value=fit]").appendTo($selector),$selector.find("option[value=original]").appendTo($selector)),$container.on("click",(async()=>{if($container.hasClass("blacklisted")){if(!this.fetchSettings("clickShowFiltered"))return;$container.removeClass("blacklisted");const size=$selector.val()+""||"large";return Danbooru_1.Danbooru.Post.resize_to(size),void Danbooru_1.Danbooru.Post.resize_notes()}"webm"!=post.file.ext&&"swf"!=post.file.ext&&(!this.fetchSettings("clickScale")||isInteractive||await Danbooru_1.Danbooru.Note.TranslationMode.active()||this.cycleScaling())}))}openFullscreen(){$("#image-download-link a")[0].click()}cycleScaling(){Danbooru_1.Danbooru.Post.resize_cycle_mode()}calcDynamicSize(post,mode){return mode==DynSizeMode.AspectScale?post.img.ratio<1-this.fetchSettings("dynSizeDeadzone")?User_1.ImageScalingMode.FitHeight:User_1.ImageScalingMode.FitWidth:mode==DynSizeMode.TagScale?function(list,entries){for(const entry of entries)if(list.has(entry))return!0;return!1}(post.tags.all,this.fetchSettings("dynSizeTags").split(" "))?User_1.ImageScalingMode.FitWidth:User_1.ImageScalingMode.FitHeight:User_1.User.defaultImageSize}}var DynSizeMode;exports.ImageScaler=ImageScaler,function(DynSizeMode){DynSizeMode[DynSizeMode.Disabled=0]="Disabled",DynSizeMode[DynSizeMode.AspectScale=1]="AspectScale",DynSizeMode[DynSizeMode.TagScale=2]="TagScale"}(DynSizeMode||(DynSizeMode={}))},{"../../components/RE6Module":2,"../../components/api/Danbooru":3,"../../components/data/Page":20,"../../components/data/User":22,"../../components/post/Post":23}],66:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.PoolNavigator=void 0;const Page_1=require("../../components/data/Page"),ModuleController_1=require("../../components/ModuleController"),RE6Module_1=require("../../components/RE6Module"),ThemeCustomizer_1=require("../general/ThemeCustomizer");class PoolNavigator extends RE6Module_1.RE6Module{constructor(){super(Page_1.PageDefinition.post),this.activeNav=0,this.navbars=[],this.registerHotkeys({keys:"hotkeyCycle",fnct:this.cycleNavbars},{keys:"hotkeyNext",fnct:this.triggerNextPost},{keys:"hotkeyPrev",fnct:this.triggerPrevPost})}getDefaultSettings(){return{enabled:!0,hotkeyCycle:"x|.",hotkeyPrev:"a|left",hotkeyNext:"d|right"}}create(){super.create(),this.createStructure(),ThemeCustomizer_1.ThemeCustomizer.on("switch.navbar",(()=>{this.resetStructure(),this.createStructure()})),$("#nav-links, #nav-links-top, #nav-links-bottom, #nav-links-left").find(".first").each(((index,element)=>{$(element).html("&laquo;")})),$("#nav-links, #nav-links-top, #nav-links-bottom, #nav-links-left").find(".last").each(((index,element)=>{$(element).html("&raquo;")}))}cycleNavbars(){const poolNavigator=ModuleController_1.ModuleController.get(PoolNavigator),navbars=poolNavigator.navbars,active=poolNavigator.activeNav;0!=navbars.length&&(active+1>=navbars.length?navbars[0].checkbox.trigger("click"):navbars[active+1].checkbox.trigger("click"))}triggerNextPost(){const poolNavigator=ModuleController_1.ModuleController.get(PoolNavigator),navbars=poolNavigator.navbars,active=poolNavigator.activeNav;if(0==navbars.length)return;const button=navbars[active].element.find("a.next").first()[0];void 0!==button&&button.click()}triggerPrevPost(){const poolNavigator=ModuleController_1.ModuleController.get(PoolNavigator),navbars=poolNavigator.navbars,active=poolNavigator.activeNav;if(0==navbars.length)return;const button=navbars[active].element.find("a.prev").first()[0];void 0!==button&&button.click()}createStructure(){$(".search-seq-nav:visible").length&&this.navbars.push({type:"search",element:$(".search-seq-nav:visible > ul > li").first(),checkbox:void 0});for(const element of $(".pool-nav:visible").first().find("ul > li").get())this.navbars.push({type:"pool",element:$(element),checkbox:void 0});for(const element of $(".set-nav:visible").first().find("ul > li").get())this.navbars.push({type:"set",element:$(element),checkbox:void 0});this.navbars.forEach(((nav,index)=>{nav.element.addClass("post-nav");const $radioBox=$("<div>").addClass("post-nav-switch-box").prependTo(nav.element);$("<div>").addClass("post-nav-spacer").appendTo(nav.element),nav.checkbox=$("<input>").attr("type","radio").attr("id","post-nav-switch-"+index).attr("name","nav").val(index).addClass("post-nav-switch").appendTo($radioBox),index===this.activeNav&&nav.checkbox.attr("checked",""),$("<label>").attr("for","post-nav-switch-"+index).appendTo($radioBox)})),1==this.navbars.length&&this.navbars[0].checkbox.parent().addClass("vis-hidden"),$("input[type='radio'].post-nav-switch").on("change",(event=>{this.activeNav=parseInt($(event.target).val()+"")}))}resetStructure(){$("input[type='radio'].post-nav-switch").off("change"),$(".post-nav-switch-box, .post-nav-spacer").remove(),this.navbars=[]}}exports.PoolNavigator=PoolNavigator},{"../../components/ModuleController":1,"../../components/RE6Module":2,"../../components/data/Page":20,"../general/ThemeCustomizer":57}],67:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.PostViewer=void 0;const Danbooru_1=require("../../components/api/Danbooru"),Page_1=require("../../components/data/Page"),ModuleController_1=require("../../components/ModuleController"),Post_1=require("../../components/post/Post"),PostActions_1=require("../../components/post/PostActions"),RE6Module_1=require("../../components/RE6Module"),Util_1=require("../../components/utility/Util"),UtilSize_1=require("../../components/utility/UtilSize"),ThemeCustomizer_1=require("../general/ThemeCustomizer");class PostViewer extends RE6Module_1.RE6Module{constructor(){super([Page_1.PageDefinition.post,Page_1.PageDefinition.changes,Page_1.PageDefinition.iqdb],!0);const reqPage=Page_1.PageDefinition.post;this.registerHotkeys({keys:"hotkeyUpvote",fnct:this.triggerUpvote,page:reqPage},{keys:"hotkeyUpvoteNU",fnct:this.triggerUpvoteNU,page:reqPage},{keys:"hotkeyDownvote",fnct:this.triggerDownvote,page:reqPage},{keys:"hotkeyDownvoteNU",fnct:this.triggerDownvoteNU,page:reqPage},{keys:"hotkeyFavorite",fnct:this.toggleFavorite,page:reqPage},{keys:"hotkeyAddFavorite",fnct:this.addFavorite,page:reqPage},{keys:"hotkeyRemoveFavorite",fnct:this.removeFavorite,page:reqPage},{keys:"hotkeyHideNotes",fnct:()=>{this.toggleNotes()},page:reqPage},{keys:"hotkeyNewNote",fnct:this.switchNewNote,page:reqPage},{keys:"hotkeyAddSet",fnct:this.openSetDialogue,page:reqPage},{keys:"hotkeyAddPool",fnct:this.openPoolDialogue,page:reqPage},{keys:"hotkeyToggleSetLatest",fnct:this.toggleSetLatest,page:reqPage},{keys:"hotkeyAddSetLatest",fnct:this.addSetLatest,page:reqPage},{keys:"hotkeyRemoveSetLatest",fnct:this.removeSetLatest,page:reqPage},{keys:"hotkeyAddSetCustom1",fnct:()=>{this.addSetCustom("hotkeyAddSetCustom1_data")},page:reqPage},{keys:"hotkeyAddSetCustom2",fnct:()=>{this.addSetCustom("hotkeyAddSetCustom2_data")},page:reqPage},{keys:"hotkeyAddSetCustom3",fnct:()=>{this.addSetCustom("hotkeyAddSetCustom3_data")},page:reqPage},{keys:"hotkeyAddSetCustom4",fnct:()=>{this.addSetCustom("hotkeyAddSetCustom4_data")},page:reqPage},{keys:"hotkeyAddSetCustom5",fnct:()=>{this.addSetCustom("hotkeyAddSetCustom5_data")},page:reqPage},{keys:"hotkeyOpenHistory",fnct:this.openImageHistory},{keys:"hotkeyOpenArtist",fnct:this.openArtist,page:reqPage},{keys:"hotkeyOpenSource",fnct:this.openSource,page:reqPage},{keys:"hotkeyOpenParent",fnct:this.openParent,page:reqPage},{keys:"hotkeyToggleRel",fnct:this.toggleRelSection,page:reqPage},{keys:"hotkeyOpenIQDB",fnct:this.openIQDB},{keys:"hotkeyOpenAPI",fnct:this.openAPI},{keys:"hotkeyOpenSauceNAO",fnct:this.openSauceNAO},{keys:"hotkeyOpenKheina",fnct:this.openKheina},{keys:"hotkeyOpenGoogle",fnct:this.openGoogle},{keys:"hotkeyOpenYandex",fnct:this.openYandex},{keys:"hotkeyOpenDerpibooru",fnct:this.openDerpibooru},{keys:"hotkeyOpenInkbunny",fnct:this.openInkbunny})}getDefaultSettings(){return{enabled:!0,hotkeyUpvote:"w",hotkeyUpvoteNU:"",hotkeyDownvote:"s",hotkeyDownvoteNU:"",hotkeyFavorite:"f",hotkeyAddFavorite:"",hotkeyRemoveFavorite:"",hotkeyHideNotes:"o",hotkeyNewNote:"p",hotkeyAddSet:"",hotkeyAddPool:"",hotkeyToggleSetLatest:"",hotkeyAddSetLatest:"",hotkeyRemoveSetLatest:"",hotkeyAddSetCustom1:"",hotkeyAddSetCustom1_data:"0",hotkeyAddSetCustom2:"",hotkeyAddSetCustom2_data:"0",hotkeyAddSetCustom3:"",hotkeyAddSetCustom3_data:"0",hotkeyAddSetCustom4:"",hotkeyAddSetCustom4_data:"0",hotkeyAddSetCustom5:"",hotkeyAddSetCustom5_data:"0",hotkeyOpenHistory:"",hotkeyOpenArtist:"",hotkeyOpenSource:"",hotkeyOpenParent:"",hotkeyToggleRel:"",hotkeyOpenIQDB:"",hotkeyOpenAPI:"",hotkeyOpenSauceNAO:"",hotkeyOpenKheina:"",hotkeyOpenGoogle:"",hotkeyOpenYandex:"",hotkeyOpenDerpibooru:"",hotkeyOpenInkbunny:"",upvoteOnFavorite:!0,hideNotes:!1,moveChildThumbs:!0,boldenTags:!0,betterImageSearch:!0}}create(){if(super.create(),!Page_1.Page.matches(Page_1.PageDefinition.post))return;this.post=Post_1.Post.getViewingPost();const $addToContainer=$("<div>").attr("id","image-add-links").insertAfter("div#image-download-link");$("li#add-to-set-list > a").addClass("image-add-set").addClass("button btn-neutral").html("+ Set").appendTo($addToContainer),$("li#add-to-pool-list > a").addClass("image-add-pool").addClass("button btn-neutral").html("+ Pool").appendTo($addToContainer);const $noteToggleContainer=$("<div>").attr("id","image-toggle-notes").insertAfter("div#image-add-links");$("<a>").attr({id:"image-note-button",href:"#"}).addClass("button btn-neutral").html(this.fetchSettings("hideNotes")?"Notes: OFF":"Notes: ON").appendTo($noteToggleContainer).on("click",(event=>{event.preventDefault(),this.toggleNotes()}));const $noteContainer=$("#note-container").css("display","").attr("data-hidden",this.fetchSettings("hideNotes"));if($("#note-preview").insertBefore("#page"),$("#translate").appendTo("#image-toggle-notes").addClass("button btn-neutral").html("+ Note").on("click",(async()=>{await Danbooru_1.Danbooru.Note.TranslationMode.active()&&"true"==$noteContainer.attr("data-hidden")&&this.toggleNotes(!1)})),this.fetchSettings("moveChildThumbs")&&$(".parent-children").addClass("children-moved").insertAfter($("#search-box")),Page_1.Page.matches(Page_1.PageDefinition.post)){const navbarContainer=$("#nav-links-top");if(navbarContainer.length>0){navbarContainer.clone().insertAfter("#re621-search").attr("id","nav-links-left");for(const el of $("#nav-links-left").find("li.post-nav").get()){const navbar=$(el),lower=$("<div>").addClass("nav-left-down").appendTo(navbar);navbar.find("div.post-nav-spacer").remove(),navbar.find(".first, .prev, .next, .last").appendTo(lower)}}"left"==Util_1.Util.LS.getItem("re621-theme-nav")?($("body").attr("re621-data-th-nav","true"),ThemeCustomizer_1.ThemeCustomizer.trigger("switch.navbar","left")):$("body").attr("re621-data-th-nav","false")}if(this.toggleBoldenedTags(this.fetchSettings("boldenTags")),$("#add-fav-button, #add-to-favorites").on("click",(()=>{this.fetchSettings("upvoteOnFavorite")&&!$("a.post-vote-up-link span").hasClass("score-positive")&&Danbooru_1.Danbooru.Post.vote(this.post.id,1,!0)})),0==$("#post-related-images").length)$("<section>").attr("id","post-related-images").html(`\n                    <h1>Related</h1>\n                    <ul>\n                        <li><a href="/post_sets?post_id=${this.post.id}">Sets with this post</a></li>\n                        <li><a href="/iqdb_queries?post_id=${this.post.id}">Visually similar on E6</a></li>\n                    </ul>\n                `).insertAfter("#post-history");else{const useSample=!this.fetchSettings("betterImageSearch"),links=[["/post_sets?post_id="+this.post.id,"Sets with this post",!0],["/iqdb_queries?post_id="+this.post.id,"Visually similar on E6",!0],null,["https://saucenao.com/search.php?url="+this.getSourceLink(UtilSize_1.RISSizeLimit.SauceNAO,useSample),"SauceNAO"],["https://kheina.com/?url="+this.getSourceLink(UtilSize_1.RISSizeLimit.Kheina,useSample),"Kheina"],["https://www.google.com/searchbyimage?image_url="+this.getSourceLink(UtilSize_1.RISSizeLimit.Google,useSample)+"&client=e621","Google"],["https://yandex.ru/images/search?url="+this.getSourceLink(UtilSize_1.RISSizeLimit.Yandex,useSample)+"&rpt=imageview","Yandex"],null,["https://derpibooru.org/search/reverse?url="+this.getSourceLink(UtilSize_1.RISSizeLimit.Derpibooru,useSample),"Derpibooru"],["https://inkbunny.net/search_process.php?text="+this.post.file.md5+"&md5=yes","Inkbunny"]];$("#post-related-images ul").html((()=>{const htmlContent=[];for(const link of links)htmlContent.push(null==link?'<li class="list-break"></li>':`<li><a href="${link[0]}" ${link[2]?"":'target="_blank" rel="noopener noreferrer"'} lookup="${link[1]}">${link[1]}</a></li>`);return htmlContent.join("\n")}))}}getSourceLink(limit,useSample){return useSample||!limit.test(this.post)?this.post.file.sample:this.post.file.original}toggleBoldenedTags(state=!0){$("#tag-list").toggleClass("tags-boldened",state)}triggerUpvote(){Danbooru_1.Danbooru.Post.vote(Post_1.Post.getViewingPost().id,1)}triggerUpvoteNU(){const id=Post_1.Post.getViewingPost().id;PostActions_1.PostActions.vote(id,1,!0).then((response=>{response.success?($("span.post-vote-up-"+id).removeClass("score-neutral").addClass("score-positive"),$("span.post-vote-down-"+id).removeClass("score-negative").addClass("score-neutral"),$("span.post-score-"+id).removeClass("score-positive score-negative score-neutral").addClass(PostViewer.getScoreClass(response.score)).attr("title",response.up+" up / "+response.down+" down").html(response.score+""),response.score>0&&Danbooru_1.Danbooru.notice("Post Score Updated")):Danbooru_1.Danbooru.error("An error occurred while processing votes")}))}triggerDownvote(){Danbooru_1.Danbooru.Post.vote(Post_1.Post.getViewingPost().id,-1)}triggerDownvoteNU(){const id=Post_1.Post.getViewingPost().id;PostActions_1.PostActions.vote(id,-1,!0).then((response=>{response.success?($("span.post-vote-down-"+id).addClass("score-negative").removeClass("score-neutral"),$("span.post-vote-up-"+id).removeClass("score-positive").addClass("score-neutral"),$("span.post-score-"+id).removeClass("score-positive score-negative score-neutral").addClass(PostViewer.getScoreClass(response.score)).attr("title",response.up+" up / "+response.down+" down").html(response.score+""),response.score<0&&Danbooru_1.Danbooru.notice("Post Score Updated")):Danbooru_1.Danbooru.error("An error occurred while processing votes")}))}static getScoreClass(score){return score>0?"score-positive":score<0?"score-negative":"score-neutral"}toggleFavorite(){$("div.fav-buttons").hasClass("fav-buttons-false")?$("#add-fav-button")[0].click():$("#remove-fav-button")[0].click()}addFavorite(){$("div.fav-buttons").hasClass("fav-buttons-false")&&$("#add-fav-button")[0].click()}removeFavorite(){$("div.fav-buttons").hasClass("fav-buttons-false")||$("#remove-fav-button")[0].click()}async toggleNotes(updateSettings=!0){const module=ModuleController_1.ModuleController.get(PostViewer),hideNotes=module.fetchSettings("hideNotes");hideNotes?($("#note-container").attr("data-hidden","false"),$("a#image-note-button").html("Notes: ON")):($("#note-container").attr("data-hidden","true"),$("a#image-note-button").html("Notes: OFF")),updateSettings&&await module.pushSettings("hideNotes",!hideNotes)}async switchNewNote(){$("#note-container").attr("data-hidden","false"),$("a#image-note-button").html("Notes: ON"),await ModuleController_1.ModuleController.get(PostViewer).pushSettings("hideNotes",!1),Danbooru_1.Danbooru.Note.TranslationMode.toggle()}openSetDialogue(){$("a#set")[0].click()}toggleSetLatest(){const lastSet=parseInt(window.localStorage.getItem("set"));lastSet?PostActions_1.PostActions.toggleSet(lastSet,Post_1.Post.getViewingPost().id):Danbooru_1.Danbooru.error("Error: no set selected")}addSetLatest(){const lastSet=parseInt(window.localStorage.getItem("set"));lastSet?PostActions_1.PostActions.addSet(lastSet,Post_1.Post.getViewingPost().id):Danbooru_1.Danbooru.error("Error: no set selected")}removeSetLatest(){const lastSet=parseInt(window.localStorage.getItem("set"));lastSet?PostActions_1.PostActions.removeSet(lastSet,Post_1.Post.getViewingPost().id):Danbooru_1.Danbooru.error("Error: no set selected")}addSetCustom(dataKey){PostActions_1.PostActions.addSet(this.fetchSettings(dataKey),Post_1.Post.getViewingPost().id)}async openPoolDialogue(){await Util_1.Util.sleep(50),$("a#pool")[0].click()}openImageHistory(){if(Page_1.Page.matches(Page_1.PageDefinition.post))location.href="/post_versions?search[post_id]="+Page_1.Page.getPageID();else if(Page_1.Page.matches(Page_1.PageDefinition.iqdb)){if(!Page_1.Page.hasQueryParameter("post_id"))return;location.href="/post_versions?search[post_id]="+Page_1.Page.getQueryParameter("post_id")}else if(Page_1.Page.matches(Page_1.PageDefinition.changes)){if(!Page_1.Page.hasQueryParameter("search[post_id]"))return;location.href="/posts/"+Page_1.Page.getQueryParameter("search[post_id]")}}static lookupClick(query){const lookup=$(query).first();0!=lookup.length&&lookup[0].click()}openArtist(){PostViewer.lookupClick("li.category-1 a.search-tag")}openSource(){PostViewer.lookupClick("div.source-link a")}openParent(){PostViewer.lookupClick("#has-parent-relationship-preview a, #has-children-relationship-preview a")}toggleRelSection(){PostViewer.lookupClick("#has-children-relationship-preview-link, #has-parent-relationship-preview-link")}openIQDB(){if(Page_1.Page.matches(Page_1.PageDefinition.post))location.href="/iqdb_queries?post_id="+Page_1.Page.getPageID();else if(Page_1.Page.matches(Page_1.PageDefinition.iqdb)){if(!Page_1.Page.hasQueryParameter("post_id"))return;location.href="/posts/"+Page_1.Page.getQueryParameter("post_id")}else if(Page_1.Page.matches(Page_1.PageDefinition.changes)){if(!Page_1.Page.hasQueryParameter("search[post_id]"))return;location.href="/iqdb_queries?post_id="+Page_1.Page.getQueryParameter("search[post_id]")}}static openSourceLookup(source){if(!Page_1.Page.matches(Page_1.PageDefinition.post))return;const link=$(`a[lookup="${source}"]`).first();link.length&&link[0].click()}openSauceNAO(){PostViewer.openSourceLookup("SauceNAO")}openKheina(){PostViewer.openSourceLookup("Kheina")}openGoogle(){PostViewer.openSourceLookup("Google")}openYandex(){PostViewer.openSourceLookup("Yandex")}openDerpibooru(){PostViewer.openSourceLookup("Derpibooru")}openInkbunny(){PostViewer.openSourceLookup("Inkbunny")}openAPI(){location.href=location.origin+location.pathname+".json"+location.search}}exports.PostViewer=PostViewer},{"../../components/ModuleController":1,"../../components/RE6Module":2,"../../components/api/Danbooru":3,"../../components/data/Page":20,"../../components/post/Post":23,"../../components/post/PostActions":24,"../../components/utility/Util":38,"../../components/utility/UtilSize":43,"../general/ThemeCustomizer":57}],68:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.TitleCustomizer=void 0;const Page_1=require("../../components/data/Page"),Post_1=require("../../components/post/Post"),RE6Module_1=require("../../components/RE6Module");class TitleCustomizer extends RE6Module_1.RE6Module{constructor(){super(Page_1.PageDefinition.post,!0)}getDefaultSettings(){return{enabled:!0,template:"#%postid% by %artist% (%copyright%) - %character%",symbolsEnabled:!0,symbolFav:"♥",symbolVoteUp:"↑",symbolVoteDown:"↓"}}create(){super.create(),this.post=Post_1.Post.getViewingPost(),this.refreshPageTitle()}refreshPageTitle(){document.title=this.parseTemplate()}parseTemplate(){let prefix="";return this.fetchSettings("symbolsEnabled")&&(this.post.is_favorited&&(prefix+=this.fetchSettings("symbolFav")),this.post.user_score>0?prefix+=this.fetchSettings("symbolVoteUp"):this.post.user_score<0&&(prefix+=this.fetchSettings("symbolVoteDown")),prefix&&(prefix+=" ")),prefix+this.fetchSettings("template").replace(/%postid%/g,this.post.id).replace(/%artist%/g,tagSetToString(this.post.tags.real_artist)).replace(/%copyright%/g,tagSetToString(this.post.tags.copyright)).replace(/%character%/g,tagSetToString(this.post.tags.character)).replace(/%species%/g,tagSetToString(this.post.tags.species)).replace(/%general%/g,tagSetToString(this.post.tags.general)).replace(/%all%/g,this.post.tagString).replace(/%meta%/g,tagSetToString(this.post.tags.meta)).replace(/[ ]{2,}/g," ").replace(/( (?:- ){2,})/g," - ").replace(/\(\)|( - )$/g,"").replace(/^ | $/g,"")+" - "+Page_1.Page.getSiteName();function tagSetToString(tags){return[...tags].join(", ")}}}exports.TitleCustomizer=TitleCustomizer},{"../../components/RE6Module":2,"../../components/data/Page":20,"../../components/post/Post":23}],69:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.ImageClickAction=exports.ImageLoadMethod=exports.BetterSearch=void 0;const Danbooru_1=require("../../components/api/Danbooru"),E621_1=require("../../components/api/E621"),APIPost_1=require("../../components/api/responses/APIPost"),XM_1=require("../../components/api/XM"),Blacklist_1=require("../../components/data/Blacklist"),Page_1=require("../../components/data/Page"),User_1=require("../../components/data/User"),ModuleController_1=require("../../components/ModuleController"),Post_1=require("../../components/post/Post"),PostActions_1=require("../../components/post/PostActions"),RE6Module_1=require("../../components/RE6Module"),Debug_1=require("../../components/utility/Debug"),Util_1=require("../../components/utility/Util"),DownloadCustomizer_1=require("../post/DownloadCustomizer"),BlacklistEnhancer_1=require("./BlacklistEnhancer");class BetterSearch extends RE6Module_1.RE6Module{constructor(){super([Page_1.PageDefinition.search,Page_1.PageDefinition.favorites],!0,!0,[BlacklistEnhancer_1.BlacklistEnhancer])}getDefaultSettings(){return{enabled:!0,imageLoadMethod:ImageLoadMethod.Disabled,autoPlayGIFs:!0,maxPlayingGIFs:5,imageSizeChange:!1,imageWidth:150,imageRatioChange:!1,imageRatio:.9,imageMinWidth:50,compactMode:!0,hoverTags:!1,ribbonsRel:!0,ribbonsFlag:!0,ribbonsAlt:!1,buttonsVote:!0,buttonsFav:!0,clickAction:ImageClickAction.Disabled,infiniteScroll:!0,loadAutomatically:!0,loadPrevPages:!1,hidePageBreaks:!0,highlightVisited:!0,hideSmartAliasOutput:!1,hideInfoBar:!1,colorFavCount:!0,customFlagsExpanded:!1,thumbnailResizeButtons:!0}}async prepare(){await super.prepare();const enabled=this.fetchSettings("enabled");Util_1.Util.LS.setItem("re621.bs.enabled",enabled+""),enabled&&this.pageMatchesFilter()&&(this.queryPage=Page_1.Page.getQueryParameter("page")||"1",this.queryTags=(Page_1.Page.getQueryParameter("tags")||"").split(" ").filter((el=>""!=el)),this.queryLimit=parseInt(Page_1.Page.getQueryParameter("limit"))||void 0,BetterSearch.originalTags=$("#tags").val()+"",console.log("original tags",BetterSearch.originalTags),this.pageResult=this.fetchPosts(),$("#content").attr("loading","true"))}create(){super.create();const paginator=$("#paginator-old, div.paginator menu").first(),curPage=parseInt(paginator.find(".current-page").text())||-1,lastPage=parseInt(paginator.find(".numbered-page").last().text())||-1;if(paginator.remove(),this.lastPage=Math.max(curPage,lastPage),Util_1.Util.Math.isNumeric(this.queryPage)){const currentPage=Util_1.Util.Math.clamp(parseInt(this.queryPage),1,750);this.queryPage=currentPage+"",this.lastPage<currentPage&&(this.lastPage=currentPage),this.hasMorePages=750==currentPage||currentPage<this.lastPage}else this.queryPage.match(/(?:a|b)\d+/g)?this.hasMorePages=!0:(this.queryPage="-1",this.hasMorePages=!1);this.createStructure(),this.updateContentHeader(),this.updatePageTitle(this.queryPage);const preloadEnabled=this.fetchSettings("loadPrevPages")&&"true"!==Page_1.Page.getQueryParameter("nopreload");let timer;Page_1.Page.removeQueryParameter("nopreload"),$(window).on("scroll.re621.gen resize.re621.gen",(()=>{timer||(null==timer&&BetterSearch.trigger("scroll"),timer=window.setTimeout((()=>{timer=void 0,BetterSearch.trigger("scroll")}),250))})),this.$content.on("re621:render","post",(event=>{Post_1.Post.get(event.currentTarget).render()})).on("re621:reset","post",(event=>{Post_1.Post.get(event.currentTarget).reset()})).on("re621:filters","post",(event=>{Post_1.Post.get(event.currentTarget).updateFilters()})).on("re621:visibility","post",(event=>{Post_1.Post.get(event.currentTarget).updateVisibility()})),BetterSearch.on("postcount",(()=>{this.updatePostCount()})),BetterSearch.on("paginator",(()=>{this.reloadPaginator()}));const intersecting=new Set;let selectedPage=this.queryPage;this.observer=new IntersectionObserver((entries=>{entries.forEach((value=>{const post=Post_1.Post.get(value.target),has=intersecting.has(post.id);has&&!value.isIntersecting&&(intersecting.delete(post.id),post.reset()),!has&&value.isIntersecting&&(intersecting.add(post.id),window.setTimeout((()=>{intersecting.has(post.id)&&(post.render(),post.page!=selectedPage&&(selectedPage=post.page,Page_1.Page.setQueryParameter("page",selectedPage+""),this.updatePageTitle(selectedPage)))}),100))}))}),{root:null,rootMargin:"100% 50% 100% 50%",threshold:.5}),new Promise((async resolve=>{let pagesLoaded=0;const pageResult=await this.pageResult;this.pageResultCount=pageResult.length;const stats=$("<search-stats>").appendTo(this.$content);if(Util_1.Util.Math.isNumeric(this.queryPage)){const postsPerPage=this.queryLimit?this.queryLimit:User_1.User.postsPerPage,searchStatsCount=$("<span>").attr({id:"search-stats-count"}).on("re621:update",(()=>{const results=(this.lastPage-1)*postsPerPage+this.pageResultCount,queryPageNum=parseInt(this.queryPage),isLastPage=this.lastPage==queryPageNum;searchStatsCount.attr("title",""),queryPageNum?750==this.lastPage?searchStatsCount.text(">"+results+" Posts").attr("title",`Over ${Util_1.Util.formatK(results)} posts found`):isLastPage?searchStatsCount.text(results+" Posts").attr("title",`${results} posts found`):searchStatsCount.text("~"+Util_1.Util.formatK(results-Math.ceil(.5*postsPerPage))+" Posts").attr("title",`Between ${results-postsPerPage} and ${results} posts were found.\nGo to the last page of the search to get the exact number.`):searchStatsCount.html("")})).appendTo(stats);searchStatsCount.trigger("re621:update")}const order=this.queryTags.find((el=>el.includes("order:")));if(Page_1.Page.matches(Page_1.PageDefinition.search)&&pageResult.length>1&&(!order||"order:id_desc"==order)){const diffData=BetterSearch.getPostDiffs(pageResult);$("<span>").attr({id:"search-stats-frequency",title:`Page refresh frequency\nNew page every ${(diffData.refresh/Util_1.Util.Time.DAY).toFixed(1)} days`}).html(Util_1.Util.Time.formatPeriod(diffData.refresh)).appendTo(stats);const graphContainer=$("<span>");graphContainer.attr({id:"search-stats-graph",title:`Post upload frequency\nNew post every ${Util_1.Util.Time.formatPeriod(diffData.average)}\nAt most every ${Util_1.Util.Time.formatPeriod(diffData.largest)}`}).html("").appendTo(stats);for(const point of diffData.data)$("<span>").css("height",(.9*(.5+point)).toFixed(2)+"em").appendTo(graphContainer)}if(pageResult.length>0){const imageRatioChange=this.fetchSettings("imageRatioChange");if(Util_1.Util.Math.isNumeric(this.queryPage)){const currentPage=parseInt(this.queryPage);let result=[];for(let i=preloadEnabled?Math.max(currentPage-BetterSearch.PAGES_PRELOAD,1):currentPage;i<currentPage;i++){result=await this.fetchPosts(i);for(const post of result){const postData=Post_1.Post.make(post,i+"",imageRatioChange);null!==postData&&(this.$content.append(postData.$ref),this.observer.observe(postData.$ref[0]))}$("<post-break>").attr("id","page-"+(i+1)).html(`Page&nbsp;${i+1}`).appendTo(this.$content),pagesLoaded++}}for(const post of pageResult){const postData=Post_1.Post.make(post,this.queryPage,imageRatioChange);null!==postData&&(this.$content.append(postData.$ref),this.observer.observe(postData.$ref[0]))}pagesLoaded++}this.$wrapper.removeAttr("loading").attr("infscroll","ready"),resolve(pagesLoaded)})).then((pagesLoaded=>{this.reloadPaginator(),this.reloadEventListeners();const scrollTo=$(`[page=${this.queryPage}]:visible:first`);preloadEnabled&&pagesLoaded>1&&0!==scrollTo.length&&$([document.documentElement,document.body]).animate({scrollTop:scrollTo.offset().top-30},200),BlacklistEnhancer_1.BlacklistEnhancer.update(),this.updatePostCount(),BetterSearch.trigger("ready")})),BetterSearch.createResizeButtons(),this.fetchSettings("thumbnailResizeButtons")&&this.fetchSettings("imageSizeChange")||BetterSearch.toggleResizeButtons(!1)}static isPaused(){return BetterSearch.paused}static setPaused(state){BetterSearch.paused=state,BetterSearch.trigger("paginator")}updatePageTitle(page){document.title=(0==this.queryTags.length?"Posts":this.queryTags.join(" ").replace(/_/g," "))+("1"!=page?" - Page "+page:"")+" - "+Page_1.Page.getSiteName()}createStructure(){this.$wrapper=$("#content").attr("loading","true"),$("<search-loading>").html('<span><div class="lds-ellipsis"><div></div><div></div><div></div><div></div></div></span>').appendTo(this.$wrapper),$('<option value="open">Fullscreen</option>').insertAfter("#mode-box-mode option[value=edit]"),$('<option value="download">Download</option>').insertAfter("#mode-box-mode option[value=remove-fav]"),$('<option value="blacklist">Blacklist</option>').insertAfter("#mode-box-mode option[value=remove-fav]"),this.$quickEdit=$("<form>").attr({id:"re621-quick-tags",postid:"invalid"}).addClass("simple_form").html('<input type="hidden" name="_method" value="put"><div class="quick-tags-toolbar">   <input type="submit" name="submit" value="Submit">   <input type="button" name="cancel" value="Cancel">   <input type="text" name="reason" placeholder="Edit Reason" title="Edit Reason" id="re621_qedit_reason">   <input type="text" name="parent" placeholder="Parent ID" title="Parent ID" id="re621_qedit_parent">   <select name="post[rating]" title="Rating" id="re621_qedit_rating">\n                        <option value="s">Safe</option>\n                        <option value="q">Questionable</option>\n                        <option value="e">Explicit</option>\n                    </select>   <select name="quick-edit-mode" id="re621_qedit_mode">\n                        <option value="overview">Full Tags</option>\n                        <option value="changes">Changes</option>\n                    </select>   <div class="quick-tags-info">       <span id="re621-qedit-dimensions"></span>       <span id="re621-qedit-flags" class="display-none-important"></span>       <a id="re621-qedit-history" href="post_versions">history</a>   </div></div><div class="quick-tags-container">   <div class="post-thumbnail" id="quick-tags-thumbnail">       <img id="quick-tags-image" src="" />   </div>   <div>       <textarea name="post[tag_string]" id="re621_qedit_tags" data-autocomplete="tag-edit" class="ui-autocomplete-input" autocomplete="off"></textarea>   </div></div>').on("re621:redraw",(()=>{const post=this.$quickEdit.data("wfpost");if(!post)return;const ratio=Util_1.Util.formatRatio(post.img.width,post.img.height);this.$quickEdit.data("info").html(`${post.img.width} x ${post.img.height} (${ratio[0]}:${ratio[1]}), ${Util_1.Util.Size.format(post.file.size)}`),this.$quickEdit.data("flags").toggleClass("display-none-important",0==post.flags.size).html(post.flags.size>0?[...post.flags].join(", "):""),this.$quickEdit.data("history").attr("href",`https://e621.net/post_versions?search[post_id]=${post.id}`),this.$quickEdit.data("thumb").data("wfpost",post).attr({"data-id":post.id}),this.$quickEdit.data("image").attr("src",post.file.sample),"overview"==this.$quickEdit.data("mode").val()?this.$quickEdit.data("tags").attr("placeholder","").val(post.tagString+" "):this.$quickEdit.data("tags").val("").attr({placeholder:"Tags listed here will be added to the post.\nPreface a tag with a minus (-) to remove it instead."}),this.$quickEdit.data("tags").data("originalTags",post.tags.all).trigger("re621:input").focus(),this.$quickEdit.data("reason").val(""),this.$quickEdit.data("parent").val(post.rel.parent),this.$quickEdit.data("rating").val(post.rating)})).appendTo(this.$wrapper).hide(),this.$quickEdit.data({token:$("#re621_qedit_token"),info:$("#re621-qedit-dimensions"),flags:$("#re621-qedit-flags"),history:$("#re621-qedit-history"),thumb:$("#quick-tags-thumbnail"),image:$("#quick-tags-image"),tags:$("#re621_qedit_tags"),reason:$("#re621_qedit_reason"),parent:$("#re621_qedit_parent"),rating:$("#re621_qedit_rating"),mode:$("#re621_qedit_mode")}),this.$quickEdit.data("mode").on("change",(()=>{const mode=this.$quickEdit.data("mode").val(),post=this.$quickEdit.data("wfpost");post&&(Util_1.Util.LS.setItem("re621.BetterSearch.QuickEditMode",mode),this.$quickEdit.data("tags").attr({placeholder:"overview"==mode?"":"Tags listed here will be added to the post.\nPreface a tag with a minus (-) to remove it instead."}).val((()=>"changes"===mode?"":post.tagString+" ")).trigger("re621:input"))})).val(Util_1.Util.LS.getItem("re621.BetterSearch.QuickEditMode")||"overview").trigger("change"),this.$quickEdit.find("input[name=cancel]").on("click",(()=>{this.$quickEdit.hide("fast")})),Danbooru_1.Danbooru.Autocomplete.initialize_all(),this.$quickEdit.on("submit",(event=>{event.preventDefault();const postID=parseInt(this.$quickEdit.attr("postid")),post=this.$quickEdit.data("wfpost"),formData={edit_reason:this.$quickEdit.data("reason").val()+"",parent_id:this.$quickEdit.data("parent").val()+"",rating:APIPost_1.PostRating.fromValue(this.$quickEdit.data("rating").val()+"")};switch(this.$quickEdit.data("mode").val()){case"changes":formData.tag_string_diff=this.$quickEdit.data("tags").val()+"";break;case"overview":formData.tag_string=this.$quickEdit.data("tags").val()+"",formData.old_tag_string=post.tagString;break;default:return void Danbooru_1.Danbooru.error("An error occurred while updating a post")}E621_1.E621.Post.id(postID).patch({post:formData}).then((response=>{Debug_1.Debug.log(response),Post_1.Post.get(postID).update(response[0].post).render(),Danbooru_1.Danbooru.notice(`Post <a href="/posts/${postID}" target="_blank" rel="noopener noreferrer">#${postID}</a> updated (<a href="/post_versions?search[post_id]=${postID}">history</a>)`),this.$quickEdit.hide("fast")}),(error=>{Danbooru_1.Danbooru.error("An error occurred while updating a post"),console.log(error),this.$quickEdit.hide("fast")}))})),this.$content=$("<search-content>").appendTo(this.$wrapper);const infscroll=$("<paginator-container>").appendTo(this.$wrapper);$("<span>").addClass("paginator-loading").html('<div class="lds-ellipsis"><div></div><div></div><div></div><div></div></div>').appendTo(infscroll),this.$paginator=$("<paginator>").html("").appendTo(infscroll)}updatePostCount(){this.$content.attr("posts",$("post:visible").length)}reloadRenderedPosts(){Post_1.Post.find("rendered").each((post=>post.render()))}updateContentHeader(){const conf=this.fetchSettings(["imageSizeChange","imageWidth","imageRatioChange","imageRatio","imageMinWidth","compactMode","ribbonsAlt","hidePageBreaks","highlightVisited","hideSmartAliasOutput","hideInfoBar","colorFavCount","thumbnailResizeButtons"]);this.$content.removeAttr("style"),conf.imageSizeChange&&this.$content.css("--img-width",conf.imageWidth+"px"),conf.imageRatioChange?this.$content.css("--img-ratio",conf.imageRatio):this.$content.css("--img-fit",Util_1.Util.Math.clamp(conf.imageMinWidth,10,100)+"%"),conf.compactMode&&this.$content.css("--img-maxheight",(conf.imageSizeChange?conf.imageWidth:150)+"px"),conf.hideSmartAliasOutput?$("section#content").attr("hide-smart-alias-output","true"):$("section#content").removeAttr("hide-smart-alias-output");const searchContent=this.$content;function setContentParameter(param,value){param?searchContent.attr(value,"true"):searchContent.removeAttr(value)}setContentParameter(conf.ribbonsAlt,"ribbons-alt"),setContentParameter(conf.hidePageBreaks,"hide-page-breaks"),setContentParameter(conf.highlightVisited,"highlight-visited"),setContentParameter(conf.hideInfoBar,"hide-info-bar"),setContentParameter(conf.colorFavCount,"color-fav-count"),BetterSearch.toggleResizeButtons(conf.thumbnailResizeButtons)}reloadEventListeners(){this.reloadModeSwitchListener(),this.reloadInfScrollListeners()}reloadModeSwitchListener(){this.$content.on("click","post a",(event=>{executeListener(event)})).on("pseudoclick","post",(event=>{executeListener(event)}));const $quickEdit=this.$quickEdit;function executeListener(event){const mode=$("#mode-box-mode").val();if("view"==mode||!mode)return;event.preventDefault();const $target=$(event.currentTarget),$article=$target.is("post")?$target:$target.parent(),post=Post_1.Post.get($article);switch(mode){case"rating-q":case"rating-s":case"rating-e":case"lock-rating":case"lock-note":case"delete":case"undelete":case"approve":post.flags.delete(APIPost_1.PostFlag.Pending);case"remove-parent":case"tag-script":case"add-to-set":case"remove-from-set":case"fake-click":{const $tempArticle=$("<article>").addClass("post-preview display-none-important").attr({id:"post_"+post.id,"data-id":post.id,"data-tags":post.tagString,"data-flags":Array.from(post.flags).join(" ")}).appendTo("body");$("<a>").appendTo($tempArticle).one("click",(event=>{Danbooru_1.Danbooru.PostModeMenu.click(event),window.setTimeout((()=>{$tempArticle.remove()}),500)}))[0].click(),post.$ref.trigger("re621:sync");break}case"open":XM_1.XM.Util.openInTab(post.file.original,!1);break;case"download":XM_1.XM.Connect.browserDownload({url:post.file.original,name:DownloadCustomizer_1.DownloadCustomizer.getFileName(post),saveAs:ModuleController_1.ModuleController.fetchSettings(DownloadCustomizer_1.DownloadCustomizer,"confirmDownload")});break;case"blacklist":Blacklist_1.Blacklist.toggleBlacklistTag("id:"+post.id);break;case"vote-up":{const firstVote=null==post.$ref.attr("vote");PostActions_1.PostActions.vote(post.id,1,firstVote).then((response=>{Debug_1.Debug.log(response),0==response.action?firstVote?post.$ref.attr("vote","1"):post.$ref.attr("vote","0"):post.$ref.attr("vote",response.action),post.score={up:response.up||0,down:response.down||0,total:response.score||0},post.$ref.trigger("re621:update")}),(error=>{Danbooru_1.Danbooru.error("An error occurred while recording the vote"),console.log(error)}));break}case"vote-down":{const firstVote=null==post.$ref.attr("vote");PostActions_1.PostActions.vote(post.id,-1,!1).then((response=>{Debug_1.Debug.log(response),0==response.action?firstVote?post.$ref.attr("vote","1"):post.$ref.attr("vote","0"):post.$ref.attr("vote",response.action),post.score={up:response.up||0,down:response.down||0,total:response.score||0},post.$ref.trigger("re621:update")}),(error=>{Danbooru_1.Danbooru.error("An error occurred while recording the vote"),console.log(error)}));break}case"add-fav":E621_1.E621.Favorites.post({post_id:post.id}),post.is_favorited=!0,post.$ref.attr("fav","true");break;case"remove-fav":E621_1.E621.Favorite.id(post.id).delete(),post.is_favorited=!1,post.$ref.removeAttr("fav");break;case"edit":"true"==$("body").attr("data-sticky-header")?$quickEdit.css("top",$("#top").height()+"px"):$quickEdit.css("top",""),$quickEdit.show("fast"),$quickEdit.attr("postid",post.id),$quickEdit.data("wfpost",post),$quickEdit.trigger("re621:redraw");break;default:Danbooru_1.Danbooru.error("Unknown mode")}}}reloadInfScrollListeners(){const fullpage=$(document),viewport=$(window);BetterSearch.off("scroll.infscroll"),this.fetchSettings("infiniteScroll")&&this.fetchSettings("loadAutomatically")&&void 0===this.queryLimit&&BetterSearch.on("scroll.infscroll",(()=>{if(!this.hasMorePages)return void BetterSearch.off("scroll.infscroll");if(BetterSearch.paused)return;if(this.loadingPosts)return;const pageHeight=fullpage.height(),viewHeight=viewport.height();viewport.scrollTop()+viewHeight<Math.max(pageHeight-viewHeight,.9*fullpage.height())||$("#infscroll-next")[0].click()}))}async fetchPosts(page){if(Page_1.Page.matches(Page_1.PageDefinition.favorites)){const userID=Page_1.Page.getQueryParameter("user_id")||User_1.User.userID;return E621_1.E621.Favorites.get({user_id:userID,page:page||this.queryPage,limit:this.queryLimit},500)}const parsedTags=[];for(const tag of this.queryTags)try{parsedTags.push(decodeURIComponent(tag))}catch(error){return[]}return E621_1.E621.Posts.get({tags:parsedTags,page:page||this.queryPage,limit:this.queryLimit},500)}async loadNextPage(){this.queryPage=Util_1.Util.Math.isNumeric(this.queryPage)?this.queryPage=parseInt(this.queryPage)+1+"":this.queryPage="b"+Post_1.Post.get($("post:last")).id;const search=await this.fetchPosts(this.queryPage);if(this.pageResultCount=search.length,$("#search-stats-count").trigger("re621:update"),0==search.length)return Promise.resolve(!1);const imageRatioChange=this.fetchSettings("imageRatioChange");$("<post-break>").attr("id","page-"+this.queryPage).html(`Page&nbsp;${this.queryPage}`).appendTo(this.$content);for(const post of search){if(null!==Post_1.Post.get(post.id))continue;const postData=Post_1.Post.make(post,this.queryPage,imageRatioChange);null!==postData&&(this.$content.append(postData.$ref),this.observer.observe(postData.$ref[0]))}return Page_1.Page.setQueryParameter("page",this.queryPage+""),BetterSearch.trigger("tracker.update"),BlacklistEnhancer_1.BlacklistEnhancer.update(),this.updatePostCount(),BetterSearch.trigger("pageload"),Util_1.Util.Math.isNumeric(this.queryPage)?Promise.resolve(parseInt(this.queryPage)<this.lastPage):Promise.resolve(!0)}reloadPaginator(){if(this.$paginator.html(""),"1"==this.queryPage?$("<span>").html('<i class="fas fa-angle-double-left"></i> Previous').addClass("paginator-prev").appendTo(this.$paginator):$("<a>").attr("href",function(page){if(Util_1.Util.Math.isNumeric(page))return getPageURL(parseInt(page)-1);const lookup=$("post:first");return 0==lookup.length?null:getPageURL("a"+Post_1.Post.get(lookup).id)}(this.queryPage)).html('<i class="fas fa-angle-double-left"></i> Previous').addClass("paginator-prev").appendTo(this.$paginator),this.fetchSettings("infiniteScroll")){const loadMoreWrap=$("<span>").addClass("infscroll-next-wrap").appendTo(this.$paginator),loadMoreCont=$("<span>").addClass("infscroll-next-cont").appendTo(loadMoreWrap);this.hasMorePages?($("<a>").html("Load More").attr("id","infscroll-next").appendTo(loadMoreCont).one("click",(event=>{event.preventDefault(),this.loadingPosts=!0,this.$wrapper.attr("infscroll","loading"),this.loadNextPage().then((result=>{this.hasMorePages=result,this.$wrapper.attr("infscroll","ready"),this.reloadPaginator(),this.loadingPosts=!1}))})),$("<span>").addClass("infscroll-manual").html(BetterSearch.paused||!this.fetchSettings("loadAutomatically")?"Manual Mode":"&nbsp;").appendTo(loadMoreCont)):$("<span>").html("No More Posts").attr("id","infscroll-next").appendTo(loadMoreCont)}else $("<span>").appendTo(this.$paginator);this.hasMorePages?$("<a>").attr("href",function(page){if(Util_1.Util.Math.isNumeric(page)){if(parseInt(page)<750)return getPageURL(parseInt(page)+1)}const lookup=$("post:last");return 0==lookup.length?null:getPageURL("b"+Post_1.Post.get(lookup).id)}(this.queryPage)).html('Next <i class="fas fa-angle-double-right"></i>').addClass("paginator-next").appendTo(this.$paginator):$("<span>").html('Next <i class="fas fa-angle-double-right"></i>').addClass("paginator-next").appendTo(this.$paginator);const pages=$("<div>").addClass("paginator-numbers").appendTo(this.$paginator);if(Util_1.Util.Math.isNumeric(this.queryPage)){const currentPage=parseInt(this.queryPage),pageNum=[];let count=0;for(let i=1;i<=this.lastPage;i++)Util_1.Util.Math.between(i,0,currentPage<5?5:3)||Util_1.Util.Math.between(i,currentPage-2,currentPage+2)||Util_1.Util.Math.between(i,currentPage<5?this.lastPage-5:this.lastPage-3,this.lastPage)?(pageNum.push(i),count++):null!==pageNum[count-1]&&(pageNum.push(null),count++);for(const page of pageNum)null==page?$("<span>").html(". . .").appendTo(pages):page==currentPage?$("<span>").html(`<b>${page}</b>`).appendTo(pages):$("<a>").attr("href",getPageURL(page)).html(`${page}`).appendTo(pages)}function getPageURL(page){const url=new URL(window.location.toString());return url.searchParams.set("page",page+""),url.searchParams.set("nopreload","true"),url.pathname+url.search}}static getPostDiffs(posts,chunks=10){const response={refresh:getDiff(posts[0],posts[posts.length-1]),largest:1,average:1,data:[]},period=Math.ceil(posts.length/chunks),intervals=[];let largest=1,smallest=1,average=0;for(let i=0;i<posts.length-period;i+=period){const diff=getDiff(posts[i],posts[i+period]);intervals.push(diff),diff>largest&&(largest=diff),(diff<smallest||1==smallest)&&(smallest=diff),average+=diff}average/=posts.length;const range=largest-smallest,intervalData=[];for(const entry of intervals)intervalData.push(Util_1.Util.Math.round((entry-smallest)/range*-1+.5));return response.largest=largest,response.average=average,response.data=intervalData,response;function getDiff(one,two){return new Date(one.created_at).getTime()-new Date(two.created_at).getTime()}}static createResizeButtons(){const betterSearch=ModuleController_1.ModuleController.get(BetterSearch);async function disableResizeButton(){const cur=await betterSearch.fetchSettings("imageWidth");cur<=150?$("#subnav-button-decrease").addClass("resize-disabled"):$("#subnav-button-decrease").removeClass("resize-disabled"),cur>=$("#content").innerWidth()?$("#subnav-button-increase").addClass("resize-disabled"):$("#subnav-button-increase").removeClass("resize-disabled")}Util_1.Util.DOM.addSettingsButton({id:"subnav-button-increase",name:'<i class="fas fa-plus"></i>',title:"Increase Image Size",tabClass:"float-right",onClick:async()=>{const cur=await betterSearch.fetchSettings("imageWidth");await betterSearch.pushSettings("imageWidth",Math.min($("#content").innerWidth(),cur+100)),await disableResizeButton(),betterSearch.isInitialized()&&betterSearch.updateContentHeader()}},"nav#nav menu:last-child"),Util_1.Util.DOM.addSettingsButton({id:"subnav-button-decrease",name:'<i class="fas fa-minus"></i>',title:"Decrease Image Size",tabClass:"float-right",onClick:async()=>{const cur=await betterSearch.fetchSettings("imageWidth");await betterSearch.pushSettings("imageWidth",Math.max(150,cur-100)),await disableResizeButton(),betterSearch.isInitialized()&&betterSearch.updateContentHeader()}},"nav#nav menu:last-child"),disableResizeButton()}static toggleResizeButtons(buttonsEnabled){buttonsEnabled?$("menu:last-child li.float-right").attr("hide-resize-buttons","false"):$("menu:last-child li.float-right").attr("hide-resize-buttons","true")}}var ImageLoadMethod,ImageClickAction;exports.BetterSearch=BetterSearch,BetterSearch.PAGES_PRELOAD=3,BetterSearch.CLICK_DELAY=200,BetterSearch.paused=!1,function(ImageLoadMethod){ImageLoadMethod.Disabled="disabled",ImageLoadMethod.Hover="hover",ImageLoadMethod.Always="always"}(ImageLoadMethod=exports.ImageLoadMethod||(exports.ImageLoadMethod={})),function(ImageClickAction){ImageClickAction.Disabled="disabled",ImageClickAction.NewTab="newtab",ImageClickAction.CopyID="copyid",ImageClickAction.Blacklist="blacklist",ImageClickAction.AddToSet="addtoset",ImageClickAction.ToggleSet="toggleset"}(ImageClickAction=exports.ImageClickAction||(exports.ImageClickAction={}))},{"../../components/ModuleController":1,"../../components/RE6Module":2,"../../components/api/Danbooru":3,"../../components/api/E621":5,"../../components/api/XM":7,"../../components/api/responses/APIPost":12,"../../components/data/Blacklist":18,"../../components/data/Page":20,"../../components/data/User":22,"../../components/post/Post":23,"../../components/post/PostActions":24,"../../components/utility/Debug":34,"../../components/utility/Util":38,"../post/DownloadCustomizer":64,"./BlacklistEnhancer":70}],70:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.BlacklistEnhancer=void 0;const Danbooru_1=require("../../components/api/Danbooru"),Blacklist_1=require("../../components/data/Blacklist"),Page_1=require("../../components/data/Page"),Post_1=require("../../components/post/Post"),RE6Module_1=require("../../components/RE6Module"),Util_1=require("../../components/utility/Util"),BetterSearch_1=require("./BetterSearch");class BlacklistEnhancer extends RE6Module_1.RE6Module{constructor(){super([Page_1.PageDefinition.search,Page_1.PageDefinition.favorites],!0,!1,[BetterSearch_1.BetterSearch])}getDefaultSettings(){return{enabled:!0,favorites:!1,uploads:!1,whitelist:""}}create(){super.create(),Danbooru_1.Danbooru.Blacklist.stub_vanilla_functions(),Danbooru_1.Danbooru.Blacklist.initialize_disable_all_blacklists(),$("#blacklisted-hider").remove(),BlacklistEnhancer.$wrapper=$("#blacklist-box").attr({open:!1,count:0,discount:0,collapsed:"1"==Util_1.Util.LS.getItem("bc")}).removeAttr("style").removeAttr("class").appendTo("#re621-search").html(""),BlacklistEnhancer.$header=$("<blacklist-header>").html("Blacklisted").appendTo(BlacklistEnhancer.$wrapper).on("click.re621",(()=>{const collapsed=!("true"==BlacklistEnhancer.$wrapper.attr("collapsed"));BlacklistEnhancer.$wrapper.attr("collapsed",collapsed+""),Util_1.Util.LS.setItem("bc",collapsed?"1":"0"),$("#sidebar").trigger("re621:reflow")})),BlacklistEnhancer.$content=$("<blacklist-content>").appendTo(BlacklistEnhancer.$wrapper),BlacklistEnhancer.$content.on("click.re621","a",(event=>{event.preventDefault();const $target=$(event.currentTarget).parent(),enabled=!("true"==$target.attr("enabled")),filter=$target.data("filter");filter.setEnabled(enabled),$target.attr("enabled",enabled+""),BlacklistEnhancer.updateHeader(),BlacklistEnhancer.updateToggleSwitch();for(const match of filter.getMatches())$("#entry_"+match).trigger("re621:visibility");BetterSearch_1.BetterSearch.trigger("postcount")}));const toggleContainer=$("<blacklist-toggle>").appendTo(BlacklistEnhancer.$wrapper);BlacklistEnhancer.$toggle=$("<a>").attr("id","disable-all-blacklists").html("Disable All Filters").appendTo(toggleContainer).on("click.re621",(()=>{"re-enable-all-blacklists"==BlacklistEnhancer.$toggle.attr("id")?(Blacklist_1.Blacklist.enableAll(),BlacklistEnhancer.$toggle.attr("id","disable-all-blacklists"),Post_1.Post.find("all").each((post=>post.updateVisibility()))):(Blacklist_1.Blacklist.disableAll(),Post_1.Post.find("blacklisted").each((post=>post.updateVisibility())),BlacklistEnhancer.$toggle.attr("id","re-enable-all-blacklists"),BlacklistEnhancer.$wrapper.attr("collapsed","false"),Util_1.Util.LS.setItem("bc","0"),$("#sidebar").trigger("re621:reflow")),BlacklistEnhancer.update(),BetterSearch_1.BetterSearch.trigger("postcount")}))}static update(){BlacklistEnhancer.updateFilterList(),BlacklistEnhancer.updateHeader(),BlacklistEnhancer.updateToggleSwitch(),$("#sidebar").trigger("re621:reflow")}static updateHeader(){let filteredPosts=new Set,unfilteredPosts=new Set;for(const filter of Blacklist_1.Blacklist.getActiveFilters().values())filter.isEnabled()?filteredPosts=new Set([...filteredPosts,...filter.getMatches()]):unfilteredPosts=new Set([...unfilteredPosts,...filter.getMatches()]);BlacklistEnhancer.$header.html(`Blacklisted (${filteredPosts.size})`),BlacklistEnhancer.$wrapper.attr({count:filteredPosts.size,discount:unfilteredPosts.size})}static updateFilterList(){BlacklistEnhancer.$content.html("");for(const[tags,filter]of Blacklist_1.Blacklist.getActiveFilters()){const count=filter.getMatchesCount(),entry=$("<filter>").attr({count:count,enabled:filter.isEnabled()}).data("filter",filter).appendTo(BlacklistEnhancer.$content).on("click",(function(e){e.target==this&&$(e.target).find("a:first")[0].click()}));$("<a>").attr("href","/posts?tags="+tags.replace(" ","+")).html(tags.replace(/_/g,"&#8203;_").replace(/ -/," &#8209;")).appendTo(entry),$("<span>").html(count+"").appendTo(entry)}$("#sidebar").trigger("re621:reflow")}static updateToggleSwitch(){"0"==BlacklistEnhancer.$wrapper.attr("count")&&"0"==BlacklistEnhancer.$wrapper.attr("discount")||(BlacklistEnhancer.$content.find("filter[enabled=false]").length>0?(BlacklistEnhancer.$toggle.html("Enable All Filters").attr("id","re-enable-all-blacklists"),Util_1.Util.LS.setItem("dab","1")):(BlacklistEnhancer.$toggle.html("Disable All Filters").attr("id","disable-all-blacklists"),Util_1.Util.LS.setItem("dab","0")))}}exports.BlacklistEnhancer=BlacklistEnhancer},{"../../components/RE6Module":2,"../../components/api/Danbooru":3,"../../components/data/Blacklist":18,"../../components/data/Page":20,"../../components/post/Post":23,"../../components/utility/Util":38,"./BetterSearch":69}],71:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.CustomFlagger=void 0;const Page_1=require("../../components/data/Page"),ModuleController_1=require("../../components/ModuleController"),Post_1=require("../../components/post/Post"),PostFilter_1=require("../../components/post/PostFilter"),RE6Module_1=require("../../components/RE6Module");class CustomFlagger extends RE6Module_1.RE6Module{constructor(){super(Page_1.PageDefinition.post,!0)}getDefaultSettings(){return{enabled:!0,flags:[{name:"CHARS",color:"#800000",tags:"-solo -duo -group -zero_pictured",show:!1},{name:"SEXES",color:"#000080",tags:"-zero_pictured -male -female -herm -maleherm -andromorph -gynomorph -intersex -ambiguous_gender",show:!1},{name:"NTAGS",color:"#008000",tags:"tagcount:<5",show:!1},{name:"INVAL",color:"#FFA500",tags:"invtags:>0",show:!1}]}}create(){super.create();const post=Post_1.Post.getViewingPost();CustomFlagger.addPost(post);const flagContainer=$("<div>").insertBefore("div.input#tags-container");let activeFlags=0;for(const flag of CustomFlagger.getFlags(post))$("<div>").addClass("custom-flag").html(`<span class="custom-flag-title" style="--flag-color: ${flag.color}">${flag.name}</span> ${flag.tags}`).appendTo(flagContainer),activeFlags++;activeFlags>0&&$("<b>").html("Flags").addClass("display-block").prependTo(flagContainer)}static get(){return null==CustomFlagger.filters&&CustomFlagger.regenerateFlagDefinitions(),CustomFlagger.filters}static regenerateFlagDefinitions(){CustomFlagger.filters=new Map;for(const flag of ModuleController_1.ModuleController.fetchSettings(CustomFlagger,"flags")){if(CustomFlagger.filters.get(flag.tags))continue;null==flag.show&&(flag.show=!0);""!=(flag.tags?flag.tags.trim():"")&&CustomFlagger.filters.set(flag.tags,{data:flag,filter:new PostFilter_1.PostFilter(flag.tags,!0),show:flag.show})}}static addPost(...posts){let count=0;for(const filterPair of CustomFlagger.get().values())filterPair.filter.update(posts)&&count++;return count}static updatePost(...posts){return CustomFlagger.addPost(...posts)}static getFlags(post){"number"!=typeof post&&(post=post.id);const output=[];for(const filterPair of CustomFlagger.get().values())filterPair.filter.matchesID(post)&&filterPair.show&&output.push(filterPair.data);return output}}exports.CustomFlagger=CustomFlagger},{"../../components/ModuleController":1,"../../components/RE6Module":2,"../../components/data/Page":20,"../../components/post/Post":23,"../../components/post/PostFilter":25}],72:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.ImageZoomMode=exports.HoverZoom=void 0;const APIPost_1=require("../../components/api/responses/APIPost"),XM_1=require("../../components/api/XM"),Blacklist_1=require("../../components/data/Blacklist"),User_1=require("../../components/data/User"),ModuleController_1=require("../../components/ModuleController"),Post_1=require("../../components/post/Post"),RE6Module_1=require("../../components/RE6Module"),Debug_1=require("../../components/utility/Debug"),Util_1=require("../../components/utility/Util"),DownloadCustomizer_1=require("../post/DownloadCustomizer");class HoverZoom extends RE6Module_1.RE6Module{constructor(){super([],!0),this.shiftPressed=!1,this.pageX=0,this.pageY=0,this.registerHotkeys({keys:"hotkeyDownload",fnct:this.downloadCurPost,ignoreShift:!0},{keys:"hotkeyFullscreen",fnct:this.fullscreenCurPost,ignoreShift:!0})}getDefaultSettings(){return{enabled:!0,mode:ImageZoomMode.OnShift,tags:!0,time:!0,zoomDelay:0,stickyShift:!1,audio:!1,hotkeyDownload:"",hotkeyFullscreen:""}}create(){super.create(),this.createStructure(),this.reloadEventListeners(),this.initFunctionality()}createStructure(){this.$zoomBlock=$("<zoom-container>").attr("status","waiting").appendTo("body"),this.$zoomInfo=$("<div>").attr("id","zoom-info").appendTo(this.$zoomBlock),this.$zoomImage=$("<img>").attr("src",Util_1.Util.DOM.getPlaceholderImage()).addClass("display-none").appendTo(this.$zoomBlock),this.$zoomVideo=$("<video controls autoplay loop></video>").attr({poster:"",src:""}).prop("muted",0==this.fetchSettings("audio")).addClass("display-none").appendTo(this.$zoomBlock),this.$zoomTags=$("<div>").attr("id","zoom-tags").appendTo(this.$zoomBlock)}reloadEventListeners(){const zoomMode=this.fetchSettings("mode"),stickyShift=this.fetchSettings("stickyShift");if($(document).off("scroll.re621.zoom").off("keydown.re621.zoom").off("keyup.re621.zoom").off("mousemove.re621.zoom"),$(window).off("blur.re621.zoom").off("contextmenu.re621.zoom"),$("#page").off("mouseenter.re621.zoom","post, .post-preview, div.post-thumbnail, sb-ctwrap subitem[data-id] img").off("mouseleave.re621.zoom","post, .post-preview, div.post-thumbnail, sb-ctwrap subitem[data-id] img"),zoomMode==ImageZoomMode.Disabled)return;let throttled=!1;$(document).on("mousemove.re621.zoom",(event=>{throttled||(throttled=!0,window.setTimeout((()=>{throttled=!1}),25),this.pageX=event.pageX,this.pageY=event.pageY,HoverZoom.trigger("mousemove",{x:event.pageX,y:event.pageY}))}));let timer=0,scrolling=!1;const zoomDelay=this.fetchSettings("zoomDelay");$("#page").on("mouseenter.re621.zoom","post, .post-preview, div.post-thumbnail, sb-ctwrap subitem[data-id] img",(event=>{if(scrolling)return;let $ref=$(event.currentTarget);$ref.attr("hztarget")&&($ref=$ref.parents($ref.attr("hztarget"))),$ref.attr("hovering","true"),HoverZoom.curPost=$ref.is("post")?Post_1.Post.get($ref):Post_1.PostData.fromThumbnail($ref),window.clearTimeout(timer),timer=window.setTimeout((()=>{HoverZoom.trigger("zoom.start",{post:HoverZoom.curPost.id,pageX:event.pageX,pageY:event.pageY})}),zoomDelay)})).on("mouseleave.re621.zoom","post, .post-preview, div.post-thumbnail, sb-ctwrap subitem[data-id] img",(event=>{let $ref=$(event.currentTarget);$ref.attr("hztarget")&&($ref=$ref.parents($ref.attr("hztarget"))),$ref.removeAttr("hovering"),HoverZoom.curPost=null,window.clearTimeout(timer),HoverZoom.trigger("zoom.stop",{post:$ref.data("id"),pageX:event.pageX,pageY:event.pageY})}));let scrollTimer=0;function resetOnUnshift(){HoverZoom.curPost&&(HoverZoom.trigger("zoom.stop",{post:HoverZoom.curPost.id,pageX:null,pageY:null}),HoverZoom.curPost=null)}$(document).on("scroll.re621.zoom",(()=>{scrollTimer&&window.clearTimeout(scrollTimer),scrollTimer=window.setTimeout((()=>{scrolling=!1}),100),scrolling=!0})),zoomMode===ImageZoomMode.OnShift&&($(document).on("keydown.re621.zoom",(event=>{if(!this.shiftPressed&&"Shift"===event.originalEvent.key){this.shiftPressed=!0;for(const el of $("[hovering=true]")){const $el=$(el);$el.attr("hztrigger")?$el.find($el.attr("hztrigger")).trigger("mouseenter.re621.zoom"):$(el).trigger("mouseenter.re621.zoom")}}})).on("keyup.re621.zoom",(event=>{this.shiftPressed&&"Shift"===event.originalEvent.key&&(this.shiftPressed=!1,stickyShift||resetOnUnshift())})),$(window).on("blur.re621.zoom",(()=>{this.shiftPressed=!1,stickyShift||resetOnUnshift()})),$(window).on("contextmenu.re621.zoom",(()=>{this.shiftPressed=!1,stickyShift||resetOnUnshift()})))}initFunctionality(){let videoTimeout;const viewport=$(window);HoverZoom.on("zoom.start",((event,data)=>{const mode=this.fetchSettings("mode");if(HoverZoom.paused||mode==ImageZoomMode.OnShift&&!this.shiftPressed)return;const $ref=$(`#entry_${data.post}, #post_${data.post}, div.post-thumbnail[data-id=${data.post}], subitem[data-id=${data.post}]`).first();let post;if($ref.is("post")?post=Post_1.Post.get($ref):(post=Post_1.PostData.fromThumbnail($ref),Blacklist_1.Blacklist.addPost(post)),this.fetchSettings("skipBlacklisted")&&(post.$ref?Blacklist_1.Blacklist.checkPost(post):"/images/blacklisted-preview.png"==$ref.find("img:first").attr("src")))return;if(post.flags.has(APIPost_1.PostFlag.Deleted)&&!User_1.User.canSeeDeletedPosts||"swf"==post.file.ext)return;const $img=$ref.find("img").first();$ref.data("stored-title",$img.attr("title")||""),$img.removeAttr("title"),this.$zoomBlock.attr("status","loading");let width=Math.min(post.img.width,.5*viewport.width()-50),height=width*post.img.ratio;function alignWindow(viewport,zoomBlock,x,y){const imgHeight=zoomBlock.height(),imgWidth=zoomBlock.width(),cursorX=x,cursorY=y-viewport.scrollTop(),left=cursorX<viewport.width()/2?cursorX+50:cursorX-imgWidth-50,top=Util_1.Util.Math.clamp(cursorY-imgHeight/2,10,viewport.height()-imgHeight-10);zoomBlock.css({left:`${left}px`,top:`${top}px`})}height>.75*viewport.height()&&(height=.75*viewport.height(),width=height/post.img.ratio),this.$zoomImage.css({width:width+"px",height:height+"px"}),"webm"==post.file.ext?(this.$zoomVideo.removeClass("display-none").css("background-image",`url("${post.file.sample}")`).attr({src:post.file.original,poster:post.file.sample}),videoTimeout=window.setTimeout((()=>{this.$zoomVideo.prop("muted",0==this.fetchSettings("audio"))}),100),this.$zoomBlock.attr("status","ready")):this.$zoomImage.removeClass("display-none").css("background-image",`url("${post.file.preview}")`).attr("src",post.file.sample).one("load",(()=>{this.$zoomBlock.attr("status","ready"),this.$zoomImage.css("background-image","")})),this.$zoomInfo.html(""),post.img.width&&post.img.height&&$("<span>").text(`${post.img.width} x ${post.img.height}`+(post.file.size>0?`, ${Util_1.Util.Size.format(post.file.size)}`:"")).appendTo(this.$zoomInfo),post.rating&&$("<span>").addClass("post-info-rating rating-"+post.rating).text(post.rating).appendTo(this.$zoomInfo),"0"!==post.date.iso&&$("<span>").text(this.fetchSettings("time")?post.date.ago:Util_1.Util.Time.format(post.date.iso)).appendTo(this.$zoomInfo),this.fetchSettings("tags")&&this.$zoomTags.text(post.tagString).css({"max-width":width+"px"}),HoverZoom.on("mousemove.tracking",(()=>{alignWindow(viewport,this.$zoomBlock,this.pageX,this.pageY)})),alignWindow(viewport,this.$zoomBlock,this.pageX,this.pageY)})),HoverZoom.on("zoom.stop",((event,data)=>{HoverZoom.off("mousemove.tracking");const $ref=$(`#entry_${data.post}, #post_${data.post}, div.post-thumbnail[data-id=${data.post}]`).first(),$img=$ref.find("img").first();$ref.data("stored-title")&&$img.attr("title",$ref.data("stored-title")),this.$zoomBlock.attr("status","waiting").css({left:0,top:"100vh"}),this.$zoomInfo.html(""),this.$zoomImage.addClass("display-none").removeAttr("style").attr("src",Util_1.Util.DOM.getPlaceholderImage()),this.$zoomVideo.addClass("display-none").prop("muted",0==this.fetchSettings("audio")),""!==this.$zoomVideo.attr("src")&&this.$zoomVideo.attr({poster:"",src:""}),window.clearTimeout(videoTimeout),this.$zoomTags.removeAttr("style").html("")}))}downloadCurPost(){Debug_1.Debug.log("hovering over",HoverZoom.curPost),null!=HoverZoom.curPost&&XM_1.XM.Connect.browserDownload({url:HoverZoom.curPost.file.original,name:DownloadCustomizer_1.DownloadCustomizer.getFileName(HoverZoom.curPost),saveAs:ModuleController_1.ModuleController.fetchSettings(DownloadCustomizer_1.DownloadCustomizer,"confirmDownload")})}fullscreenCurPost(){if(Debug_1.Debug.log("hovering over",HoverZoom.curPost),null==HoverZoom.curPost)return;window.open(HoverZoom.curPost.file.original,"_blank").focus()}}var ImageZoomMode;exports.HoverZoom=HoverZoom,HoverZoom.paused=!1,HoverZoom.curPost=null,function(ImageZoomMode){ImageZoomMode.Disabled="disabled",ImageZoomMode.Hover="hover",ImageZoomMode.OnShift="onshift"}(ImageZoomMode=exports.ImageZoomMode||(exports.ImageZoomMode={}))},{"../../components/ModuleController":1,"../../components/RE6Module":2,"../../components/api/XM":7,"../../components/api/responses/APIPost":12,"../../components/data/Blacklist":18,"../../components/data/User":22,"../../components/post/Post":23,"../../components/utility/Debug":34,"../../components/utility/Util":38,"../post/DownloadCustomizer":64}],73:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.InstantFilters=void 0;const Page_1=require("../../components/data/Page"),Post_1=require("../../components/post/Post"),PostFilter_1=require("../../components/post/PostFilter"),RE6Module_1=require("../../components/RE6Module"),Util_1=require("../../components/utility/Util"),BetterSearch_1=require("./BetterSearch");class InstantFilters extends RE6Module_1.RE6Module{constructor(){super([Page_1.PageDefinition.search,Page_1.PageDefinition.favorites],!0,!1,[BetterSearch_1.BetterSearch])}getDefaultSettings(){return{enabled:!1}}create(){super.create(),$("search-content").on("re621:insearch","post",(event=>{const $article=$(event.currentTarget),post=Post_1.Post.get($article);null==InstantFilters.filter?$article.removeAttr("filtered"):(InstantFilters.filter.update(post),InstantFilters.filter.matches(post)?$article.removeAttr("filtered"):$article.attr("filtered","true"))}));const $section=$("<section>").attr("id","re621-insearch").html("<h1>Filter</h1>").insertAfter("#search-box"),$searchForm=$("<form>").appendTo($section).on("submit",(event=>{event.preventDefault()}));let typingTimeout;this.$searchbox=$("<input>").attr("id","re621-insearch-input").attr("type","text").val(Page_1.Page.getQueryParameter("insearch")||"").appendTo($searchForm).on("input",(()=>{clearTimeout(typingTimeout),typingTimeout=window.setTimeout((()=>{this.applyFilter()}),500)})),this.$searchbox.trigger("input"),$("<button>").attr("type","submit").html('<i class="fas fa-search"></i>').appendTo($searchForm),$("#sidebar").trigger("re621:reflow")}destroy(){super.destroy(),this.$searchbox.val(""),this.applyFilter(),$("#re621-insearch").remove(),$("search-content").off("re621:insearch","post"),$("#sidebar").trigger("re621:reflow")}static get(){return InstantFilters.filter}static addPost(...posts){const filter=InstantFilters.get();return!!filter&&filter.update(posts)}applyFilter(){let filterText=Util_1.Util.getTagString(this.$searchbox);filterText=filterText?filterText.trim():"",0==filterText.length?InstantFilters.filter=void 0:InstantFilters.filter=new PostFilter_1.PostFilter(filterText),$("post").trigger("re621:insearch")}}exports.InstantFilters=InstantFilters},{"../../components/RE6Module":2,"../../components/data/Page":20,"../../components/post/Post":23,"../../components/post/PostFilter":25,"../../components/utility/Util":38,"./BetterSearch":69}],74:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.PostSuggester=void 0;const E621_1=require("../../components/api/E621"),APIPost_1=require("../../components/api/responses/APIPost"),Page_1=require("../../components/data/Page"),User_1=require("../../components/data/User"),RE6Module_1=require("../../components/RE6Module"),Modal_1=require("../../components/structure/Modal");class PostSuggester extends RE6Module_1.RE6Module{constructor(){super(Page_1.PageDefinition.search)}getDefaultSettings(){return{enabled:!0}}create(){if(super.create(),!User_1.User.loggedIn)return;const listItem=$("<li>").appendTo("ul#related-list"),button=$("<a>").attr({id:"recommended-posts",title:"Show posts similar to your favorites"}).html("Recommended").appendTo(listItem),modalContent=$("<div>").addClass("post-suggester");this.status=$("<div>").addClass("post-suggester-status").appendTo(modalContent),this.content=$("<div>").addClass("post-suggester-content").appendTo(modalContent);const modal=new Modal_1.Modal({title:"Post Recommendations",triggers:[{element:button}],fixed:!0,content:modalContent,position:{my:"center",at:"center"}});let triggered=!1;modal.getElement().on("dialogopen",(()=>{triggered||(triggered=!0,this.handleRecommendation())}))}async handleRecommendation(){this.status.html("Compiling favorites data");const data={};let result;for(let i=1;i<=PostSuggester.maxPages&&(this.status.html(`Analyzing favorites [ page ${i} ]`),result=await E621_1.E621.Favorites.get({user_id:User_1.User.userID,page:i},500),result.forEach((post=>{APIPost_1.APIPost.getTags(post).forEach((tag=>{data[tag]?data[tag]=data[tag]+1:data[tag]=1}))})),100===result.length);i++);this.status.html("Lookup complete");let processedData=[];for(const tag in data)processedData.push([tag,data[tag]]);processedData=processedData.sort(((a,b)=>b[1]-a[1]));for(let year=1973;year<=(new Date).getFullYear();year++)PostSuggester.removedTags.push(year+"");processedData=processedData.filter((entry=>!PostSuggester.removedTags.includes(entry[0])&&entry[1]>PostSuggester.minTagCount)),processedData.length>100&&(processedData.length=100),this.content[0].innerHTML="";let checkedNum=0,shouldCheck=!0;for(const[tag,count]of processedData){const container=$("<span>").appendTo(this.content);shouldCheck=checkedNum<10&&!PostSuggester.ignoredTags.includes(tag),shouldCheck&&checkedNum++,$("<input>").attr({type:"checkbox",name:"post-suggester-selector",value:tag,id:"tag-"+tag,"data-tag":tag,"data-count":count}).prop("checked",shouldCheck).appendTo(container),$("<label>").attr({for:"tag-"+tag}).html(tag.replace(/_/g," ")).appendTo(container),$("<a>").attr("href","/posts?tags="+tag).html("?").appendTo(container),$("<span>").addClass("tag-count").html(""+count).appendTo(container)}return this.status[0].innerHTML="",$("<a>").html("Search").addClass("button btn-neutral post-suggester-search").appendTo(this.status).on("click",(event=>{event.preventDefault();const checkedEls=$("input[name=post-suggester-selector]:checked").get(),query=[];for(const checkedEl of checkedEls)query.push("~"+encodeURIComponent($(checkedEl).attr("data-tag")));query.length=Math.min(query.length,37),query.push(encodeURIComponent("-fav:"+User_1.User.username),encodeURIComponent("order:random"),encodeURIComponent("score:>10")),window.location.href="/posts?tags="+query.join("+")})),Promise.resolve(!0)}}exports.PostSuggester=PostSuggester,PostSuggester.maxPages=5,PostSuggester.minTagCount=10,PostSuggester.removedTags=["hi_res","absurd_res","digital_media_(artwork)","solo","duo","group","simple_background","detailed_background","text","english_text"],PostSuggester.ignoredTags=["male","female","intersex","mammal","scalie","biped","anthro","feral","genitals","penis","balls","animal_genitalia","humanoid_penis","erection","pussy","butt","anus","breasts","nipples","non-mammal_breasts","genital_fluids","bodily_fluids","cum","wings","membrane_(anatomy)","membranous_wings","claws","horn","scales","teeth","smile","tongue","feathers","toes","hair","fur","clothing","clothed","nude","sex","penetration","male_penetrating"]},{"../../components/RE6Module":2,"../../components/api/E621":5,"../../components/api/responses/APIPost":12,"../../components/data/Page":20,"../../components/data/User":22,"../../components/structure/Modal":30}],75:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.ProgressTracker=void 0;const Page_1=require("../../components/data/Page"),Post_1=require("../../components/post/Post"),RE6Module_1=require("../../components/RE6Module"),BetterSearch_1=require("./BetterSearch");class ProgressTracker extends RE6Module_1.RE6Module{constructor(){super(Page_1.PageDefinition.search,!0,!0,[BetterSearch_1.BetterSearch])}getDefaultSettings(){return{enabled:!0,data:{}}}create(){super.create();const data=this.fetchSettings("data"),tags=(Page_1.Page.getQueryParameter("tags")||"").trim().toLowerCase();""!=tags&&BetterSearch_1.BetterSearch.one("ready",(()=>{this.createDOM(data,tags)}))}createDOM(data,tags){const lastPost=data[tags],page=Page_1.Page.getQueryParameter("page")||"1",container=$("<span>").prependTo("search-stats"),trackButton=$("<a>").on("click",(async()=>{null==(data=await this.fetchSettings("data",!0))[tags]?(data[tags]=getNewPost(),this.pushSettings("data",data),trackButton.html("Untrack")):(delete data[tags],this.pushSettings("data",data),trackButton.html("Track"))})).html(null==lastPost?"Track":"Untrack").attr("title","Highlight previously unseen posts").prependTo(container);function getNewPost(){const post=Post_1.Post.get("first"),page=Page_1.Page.getQueryParameter("page")||"1";return null==post||"1"!==page?-1:post.id}null!=lastPost&&"1"==page&&(data[tags]=getNewPost(),this.pushSettings("data",data),-1!=lastPost&&Post_1.Post.find(lastPost).each((post=>{post.$ref.attr("new","true")})))}}exports.ProgressTracker=ProgressTracker},{"../../components/RE6Module":2,"../../components/data/Page":20,"../../components/post/Post":23,"./BetterSearch":69}],76:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.SearchUtilities=void 0;const Danbooru_1=require("../../components/api/Danbooru"),Blacklist_1=require("../../components/data/Blacklist"),Page_1=require("../../components/data/Page"),RE6Module_1=require("../../components/RE6Module"),Util_1=require("../../components/utility/Util");class SearchUtilities extends RE6Module_1.RE6Module{constructor(){super([Page_1.PageDefinition.search,Page_1.PageDefinition.post,Page_1.PageDefinition.favorites]),this.registerHotkeys({keys:"hotkeyFocusSearch",fnct:this.focusSearchbar},{keys:"hotkeyRandomPost",fnct:this.randomPost},{keys:"hotkeySwitchModeView",fnct:this.switchModeView},{keys:"hotkeySwitchModeEdit",fnct:this.switchModeEdit},{keys:"hotkeySwitchModeOpen",fnct:this.switchModeOpen},{keys:"hotkeySwitchModeAddFav",fnct:this.switchModeAddFav},{keys:"hotkeySwitchModeRemFav",fnct:this.switchModeRemFav},{keys:"hotkeySwitchModeBlacklist",fnct:this.switchModeBlacklist},{keys:"hotkeySwitchModeAddSet",fnct:this.switchModeAddSet},{keys:"hotkeySwitchModeRemSet",fnct:this.switchModeRemSet},{keys:"hotkeySwitchModeScript",fnct:this.switchModeScript},{keys:"hotkeyScriptOne",fnct:()=>{SearchUtilities.switchScript(1)}},{keys:"hotkeyScriptTwo",fnct:()=>{SearchUtilities.switchScript(2)}},{keys:"hotkeyScriptThree",fnct:()=>{SearchUtilities.switchScript(3)}},{keys:"hotkeyScriptFour",fnct:()=>{SearchUtilities.switchScript(4)}},{keys:"hotkeyScriptFive",fnct:()=>{SearchUtilities.switchScript(5)}},{keys:"hotkeyScriptSix",fnct:()=>{SearchUtilities.switchScript(6)}},{keys:"hotkeyScriptSeven",fnct:()=>{SearchUtilities.switchScript(7)}},{keys:"hotkeyScriptEight",fnct:()=>{SearchUtilities.switchScript(8)}},{keys:"hotkeyScriptNine",fnct:()=>{SearchUtilities.switchScript(9)}},{keys:"hotkeyScriptTen",fnct:()=>{SearchUtilities.switchScript(0)}})}getDefaultSettings(){return{enabled:!0,improveTagCount:!0,shortenTagNames:!0,hidePlusMinusIcons:!1,autoFocusSearch:!1,collapseCategories:!0,categoryData:[],persistentTags:"",quickBlacklist:!0,trimQueryParameters:!0,hotkeyFocusSearch:"q",hotkeyRandomPost:"r",hotkeySwitchModeView:"",hotkeySwitchModeEdit:"",hotkeySwitchModeOpen:"",hotkeySwitchModeAddFav:"",hotkeySwitchModeRemFav:"",hotkeySwitchModeAddSet:"",hotkeySwitchModeRemSet:"",hotkeySwitchModeBlacklist:"",hotkeySwitchModeScript:"",hotkeyScriptOne:"alt+1|",hotkeyScriptTwo:"alt+2|",hotkeyScriptThree:"alt+3|",hotkeyScriptFour:"alt+4|",hotkeyScriptFive:"alt+5|",hotkeyScriptSix:"alt+6|",hotkeyScriptSeven:"alt+7|",hotkeyScriptEight:"alt+8|",hotkeyScriptNine:"alt+9|",hotkeyScriptTen:"alt+0|"}}create(){if(super.create(),Page_1.Page.matches(Page_1.PageDefinition.search)&&this.fetchSettings("autoFocusSearch")){const searchbox=$("section#search-box input");""==searchbox.val()&&searchbox.trigger("focus")}const queryParams=(Page_1.Page.getQueryParameter("tags")||Page_1.Page.getQueryParameter("q")||"").split(" ").filter((n=>n)),queryEncoded=[];for(const part of queryParams)queryEncoded.push(encodeURIComponent(part));if(SearchUtilities.randomPostURL="/posts/random"+(queryEncoded.length?"?tags="+queryEncoded.join("+"):""),Page_1.Page.matches(Page_1.PageDefinition.post)&&this.fetchSettings("trimQueryParameters")){const qParam=Page_1.Page.getQueryParameter("q");if(Page_1.Page.removeQueryParameter(["q","tags"]),qParam)for(const link of $("#has-children-relationship-preview article a, #has-parent-relationship-preview article a").get())$(link).on("click",(()=>{Page_1.Page.setQueryParameter("q",qParam)}))}Page_1.Page.matches([Page_1.PageDefinition.search,Page_1.PageDefinition.post])&&(this.improveTagCount(this.fetchSettings("improveTagCount")),this.shortenTagNames(this.fetchSettings("shortenTagNames")),this.hidePlusMinusIcons(this.fetchSettings("hidePlusMinusIcons"))),!0===this.fetchSettings("collapseCategories")&&Page_1.Page.matches(Page_1.PageDefinition.post)&&this.collapseTagCategories();const persistentTags=this.fetchSettings("persistentTags").trim().toLowerCase();if(""!==persistentTags&&Page_1.Page.matches([Page_1.PageDefinition.search,Page_1.PageDefinition.post,Page_1.PageDefinition.favorites])){const $tagInput=$("input#tags");$tagInput.val(($tagInput.val()+"").replace(persistentTags,"")),$("section#search-box form").on("submit",(()=>($tagInput.val($tagInput.val()+" "+persistentTags),!0))),$("a.search-tag").each(((index,el)=>{const $el=$(el);$el.attr("href",$el.attr("href")+"+"+persistentTags.split(" ").join("+"))}))}this.initQuickBlacklist(this.fetchSettings("quickBlacklist")),Page_1.Page.matches([Page_1.PageDefinition.search,Page_1.PageDefinition.favorites])&&this.handleSidebarCollapse(),Page_1.Page.matches([Page_1.PageDefinition.post])&&this.handleSidebarCollapsePost()}async improveTagCount(state=!0){const source=state?"data-count":"data-count-short";$("span.re621-post-count").each((function(index,element){const tag=$(element);tag.text(tag.attr(source))}))}shortenTagNames(state=!0){$("section#tag-box, section#tag-list").attr("data-shorten-tagnames",state+"")}hidePlusMinusIcons(state=!0){$("section#tag-box, section#tag-list").attr("data-hide-plusminus",state+"")}async collapseTagCategories(){let storedCats=new Set(await this.fetchSettings("categoryData",!0));for(const element of $("section#tag-list .tag-list-header").get()){const $header=$(element),cat=$header.attr("data-category");storedCats.has(cat)&&$header.get(0).click(),$header.on("click.danbooru",(async()=>{storedCats=new Set(await this.fetchSettings("categoryData",!0)),$header.hasClass("hidden-category")?storedCats.add(cat):storedCats.delete(cat),await this.pushSettings("categoryData",Array.from(storedCats))}))}}focusSearchbar(event){event.preventDefault(),$("section#search-box input").trigger("focus")}randomPost(){location.href=SearchUtilities.randomPostURL}switchModeView(){SearchUtilities.switchMode("view")}switchModeEdit(){SearchUtilities.switchMode("edit")}switchModeOpen(){SearchUtilities.switchMode("open")}switchModeAddFav(){SearchUtilities.switchMode("add-fav")}switchModeRemFav(){SearchUtilities.switchMode("remove-fav")}switchModeBlacklist(){SearchUtilities.switchMode("blacklist")}switchModeAddSet(){SearchUtilities.switchMode("add-to-set"),$("#set-id").trigger("focus")}switchModeRemSet(){SearchUtilities.switchMode("remove-from-set"),$("#set-id").trigger("focus")}switchModeScript(){SearchUtilities.switchMode("tag-script")}static switchMode(mode){$("select#mode-box-mode").val(mode),Danbooru_1.Danbooru.PostModeMenu.change()}static switchScript(script){Danbooru_1.Danbooru.PostModeMenu.change_tag_script(script)}initQuickBlacklist(state=!0){if(state)for(const element of $("div.tag-actions span.tag-action-blacklist").get()){const $container=$(element);$("<a>").attr({href:"#",title:"Blacklist Tag"}).addClass("blacklist-tag-toggle").html('<i class="fas fa-times"></i>').prependTo($container).on("click",(event=>{event.preventDefault(),Blacklist_1.Blacklist.toggleBlacklistTag($container.parent().attr("data-tag"))}))}else $("div.tag-actions span.tag-action-blacklist").html("")}handleSidebarCollapse(){const sidebar=$("#sidebar"),button=$("<a>").attr({id:"sidebar-collapse"}).insertBefore(sidebar).on("click",(()=>{sidebar.toggleClass("collapsed"),button.toggleClass("collapsed")}))}handleSidebarCollapsePost(){let collapsed="true"==Util_1.Util.LS.getItem("re621.sidebar");const sidebar=$("#sidebar"),button=$("<a>").attr({id:"sidebar-collapse"}).insertBefore(sidebar).on("click",(()=>{sidebar.toggleClass("collapsed"),button.toggleClass("collapsed"),collapsed=!collapsed,collapsed?Util_1.Util.LS.setItem("re621.sidebar","true"):Util_1.Util.LS.removeItem("re621.sidebar")}));collapsed&&(sidebar.toggleClass("collapsed"),button.toggleClass("collapsed"))}}exports.SearchUtilities=SearchUtilities,SearchUtilities.randomPostURL=""},{"../../components/RE6Module":2,"../../components/api/Danbooru":3,"../../components/data/Blacklist":18,"../../components/data/Page":20,"../../components/utility/Util":38}],77:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.ThumbnailTweaks=void 0;const APIPost_1=require("../../components/api/responses/APIPost"),ModuleController_1=require("../../components/ModuleController"),Post_1=require("../../components/post/Post"),RE6Module_1=require("../../components/RE6Module"),Debug_1=require("../../components/utility/Debug"),BetterSearch_1=require("./BetterSearch"),CustomFlagger_1=require("./CustomFlagger");class ThumbnailTweaks extends RE6Module_1.RE6Module{constructor(){super([],!0)}getDefaultSettings(){return{enabled:!0}}create(){super.create();const conf=ModuleController_1.ModuleController.get(BetterSearch_1.BetterSearch).fetchSettings(["ribbonsRel","ribbonsFlag"]);let count=0;for(const element of $(".post-preview").get())ThumbnailTweaks.modify($(element),conf.ribbonsRel,conf.ribbonsFlag),count++;Debug_1.Debug.log(`ThumbnailTweaks: ${count} elements`)}static modify($article,ribbonsRel,ribbonsFlag){const post=Post_1.PostData.fromThumbnail($article);CustomFlagger_1.CustomFlagger.addPost(post);let $picture=$article.find("picture");if(0==$picture.length){const $img=$article.find("img");$picture=$("<picture>").insertAfter($img).append($img)}$picture.addClass("picture-container");const $ribbons=$("<img-ribbons>").appendTo($picture);if(ribbonsRel){const relRibbon=$("<ribbon>").addClass("left").html("<span></span>").appendTo($ribbons),relRibbonText=[];post.has.children&&(relRibbon.addClass("has-children"),relRibbonText.push("Child posts")),post.has.parent&&(relRibbon.addClass("has-parent"),relRibbonText.push("Parent posts")),relRibbonText.length>0?relRibbon.attr("title",relRibbonText.join("\n")):relRibbon.remove()}if(ribbonsFlag){const flagRibbon=$("<ribbon>").addClass("right").html("<span></span>").appendTo($ribbons),flagRibbonText=[];post.flags.has(APIPost_1.PostFlag.Flagged)&&(flagRibbon.addClass("is-flagged"),flagRibbonText.push("Flagged")),post.flags.has(APIPost_1.PostFlag.Pending)&&(flagRibbon.addClass("is-pending"),flagRibbonText.push("Pending")),flagRibbonText.length>0?flagRibbon.attr("title",flagRibbonText.join("\n")):flagRibbon.remove()}0==$ribbons.children().length&&$ribbons.remove();const $flagBox=$("<post-flags>").appendTo($picture);for(const flag of CustomFlagger_1.CustomFlagger.getFlags(post))$("<span>").addClass("custom-flag-thumb").css("--flag-color",flag.color).attr("title",flag.tags).html(flag.name).appendTo($flagBox)}}exports.ThumbnailTweaks=ThumbnailTweaks},{"../../components/ModuleController":1,"../../components/RE6Module":2,"../../components/api/responses/APIPost":12,"../../components/post/Post":23,"../../components/utility/Debug":34,"./BetterSearch":69,"./CustomFlagger":71}],78:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.CommentTracker=void 0;const E621_1=require("../../components/api/E621"),APIPost_1=require("../../components/api/responses/APIPost"),XM_1=require("../../components/api/XM"),Page_1=require("../../components/data/Page"),Post_1=require("../../components/post/Post"),PostParts_1=require("../../components/post/PostParts"),Util_1=require("../../components/utility/Util"),_SubscriptionManager_1=require("./_SubscriptionManager"),_SubscriptionTracker_1=require("./_SubscriptionTracker");class CommentTracker extends _SubscriptionTracker_1.SubscriptionTracker{constructor(){super(...arguments),this.buttonSelect={major:{regex:[Page_1.PageDefinition.post],selector:"menu#post-sections"}}}getDefaultSettings(){return{...super.getDefaultSettings(),cacheSize:20}}fetchMajorSubscriptionName(){return Page_1.Page.getPageID()}async fetchUpdatedEntries(){const result={};this.clearStatus(),this.writeStatus("Updating Pool Subscriptions"),this.writeStatus(". . . retrieving settings");const subscriptions=this.slist.get();if(0==subscriptions.size)return result;this.writeStatus(". . . sending an API request");const subscriptionsChunks=Util_1.Util.chunkArray(subscriptions,this.batchSize),apiResponse=[];for(const[index,chunk]of subscriptionsChunks.entries())10==index&&this.writeStatus('&nbsp; &nbsp; &nbsp; <span style="color:gold">connection throttled</span>'),subscriptionsChunks.length>1&&this.writeStatus(`&nbsp; &nbsp; - processing batch #${index} [<a href="/comments?search[post_id]=${chunk.join(",")}&group_by=comment" target="_blank">${chunk.length}</a>]`),apiResponse.push(...await E621_1.E621.Comments.get({group_by:"comment","search[post_id]":chunk.join(",")},500)),_SubscriptionManager_1.SubscriptionManager.trigger("inprogress."+this.trackerID,1);this.writeStatus(". . . sorting results");const data=new Map;for(const comment of apiResponse)(!data.has(comment.post_id)||data.get(comment.post_id).created_at<comment.created_at)&&data.set(comment.post_id,comment);this.writeStatus(". . . fetching post data");const postData=new Map;for(const postID of data.keys()){void 0===(this.slist.getExtraData(postID+"")||{}).data&&postData.set(postID,null)}if(postData.size>0){const postsChunks=Util_1.Util.chunkArray(Array.from(postData.keys()),100,"chunk");for(const[index,chunk]of postsChunks.entries()){10==index&&this.writeStatus('&nbsp; &nbsp; &nbsp; <span style="color:gold">connection throttled</span>'),subscriptionsChunks.length>1&&this.writeStatus(`&nbsp; &nbsp; - processing batch #${index} [<a href="/posts?tags=id:${chunk.join(",")}" target="_blank">${chunk.length}</a>]`);for(const post of await E621_1.E621.Posts.get({tags:"id:"+chunk.join(","),limit:320},index<10?500:1e3))postData.set(post.id,post);_SubscriptionManager_1.SubscriptionManager.trigger("inprogress."+this.trackerID,1)}}const lastUpdate=this.fetchSettings("lastUpdate")||0;this.writeStatus(". . . formatting output");for(const[postID,comment]of data.entries()){const postExtra=this.slist.getExtraData(postID+"")||{};if(void 0===postExtra.data){const postAPI=postData.get(postID)||await E621_1.E621.Post.id(postID).first();if(postAPI){const post=Post_1.PostData.fromAPI(postAPI);postExtra.data=("swf"==post.file.ext||post.flags.has(APIPost_1.PostFlag.Deleted)?"":post.file.md5)+"|"+post.has.sample+"|"+post.file.ext+"|"+post.rating+"|"+post.img.width+"|"+post.img.height+"|"+post.file.size}}const createdAt=new Date(comment.created_at).getTime();createdAt>lastUpdate&&(result[createdAt]={uid:comment.id,md5:postExtra.data,ext:encodeURIComponent(Util_1.Util.stripDText(comment.body).slice(0,256))+"|"+postID+"|"+comment.creator_name,par:postID,new:!0}),this.slist.addExtraData(postID+"",postExtra)}return this.slist.pushSubscriptions(),this.writeStatus(". . . displaying results"),result}drawUpdateEntry(data,timestamp,deleteFunction){const commentData=data.ext.split("|"),imageData=data.md5.split("|"),result=$("<subitem>").attr({new:data.new,uid:timestamp,"data-id":data.uid,"data-md5":imageData[0],"data-preview-url":getPreviewLink(imageData[0]),"data-large-file-url":getSampleLink(imageData[0],"true"==imageData[1],imageData[2]),"data-file-ext":imageData[2],"data-rating":imageData[3]||"e","data-created-at":new Date(timestamp).toString(),"data-width":imageData[4],"data-height":imageData[5],"data-filesize":imageData[6],hztrigger:"img"}).on("re621:render",(()=>{const link=$("<a>").addClass("img-link").attr({href:"/posts/"+commentData[1]}).appendTo(result);PostParts_1.PostParts.bootstrapDoubleClick(link,(()=>{XM_1.XM.Util.openInTab(window.location.origin+link.attr("href"),!1)}));const image=$("<img>").attr({src:getPreviewLink(imageData[0]),hztarget:"subitem"}).one("load",(()=>{this.loadLargeThumbs&&image.attr("src",getSampleLink(imageData[0],"true"==imageData[1],imageData[2]))})).one("error",(()=>{image.attr("src","https://e621.net/images/deleted-preview.png"),this.slist.deleteExtraData(commentData[1]),this.slist.pushSubscriptions()})).appendTo(link),mainSection=$("<div>").addClass("info-section").appendTo(result);$("<a>").html(commentData[2]+" said:").attr({href:`/posts/${commentData[1]}#comment-${data.uid}`}).appendTo(mainSection),$("<div>").addClass("comment-body").html(decodeURIComponent(commentData[0])).appendTo(mainSection),$("<div>").html("Posted "+Util_1.Util.Time.ago(timestamp)).appendTo(mainSection),$("<a>").addClass("delete-link").html('<span><i class="fas fa-times"></i></span>').appendTo(result).on("click",(event=>{event.preventDefault,deleteFunction(timestamp,result)}))})).on("re621:reset",(()=>{result.html("")}));return result;function getPreviewLink(md5){return md5?`https://static1.e621.net/data/preview/${md5.substr(0,2)}/${md5.substr(2,2)}/${md5}.jpg`:"https://e621.net/images/deleted-preview.png"}function getSampleLink(md5,hasSample,ext="jpg"){return md5?hasSample?`https://static1.e621.net/data/sample/${md5.substr(0,2)}/${md5.substr(2,2)}/${md5}.jpg`:`https://static1.e621.net/data/${md5.substr(0,2)}/${md5.substr(2,2)}/${md5}.${ext}`:"https://e621.net/images/deleted-preview.png"}}formatSubscriptionListEntry(id,value,unsub){const result=$("<sb-enitem>").attr({content:"post #"+id,sort:id});return $("<a>").addClass("sb-unsub").html('<i class="fas fa-times"></i>').attr({title:"Unsubscribe"}).appendTo(result).on("click",(event=>{event.preventDefault(),unsub(id)})),$("<a>").html(`post #${id}`).attr({href:`/posts/${id}`}).appendTo(result),result}}exports.CommentTracker=CommentTracker},{"../../components/api/E621":5,"../../components/api/XM":7,"../../components/api/responses/APIPost":12,"../../components/data/Page":20,"../../components/post/Post":23,"../../components/post/PostParts":26,"../../components/utility/Util":38,"./_SubscriptionManager":84,"./_SubscriptionTracker":85}],79:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.ForumTracker=void 0;const E621_1=require("../../components/api/E621"),Page_1=require("../../components/data/Page"),User_1=require("../../components/data/User"),Util_1=require("../../components/utility/Util"),_SubscriptionManager_1=require("./_SubscriptionManager"),_SubscriptionTracker_1=require("./_SubscriptionTracker");class ForumTracker extends _SubscriptionTracker_1.SubscriptionTracker{constructor(){super(...arguments),this.buttonSelect={major:{regex:[Page_1.PageDefinition.forumPost],selector:"#c-forum-topics > #a-show > h1:first"}}}getDefaultSettings(){return{...super.getDefaultSettings(),cacheSize:20}}fetchMajorSubscriptionName(){return Page_1.Page.getPageID()}async fetchUpdatedEntries(){const result={};this.clearStatus(),this.writeStatus("Updating Pool Subscriptions"),this.writeStatus(". . . retrieving settings");const subscriptions=this.slist.get();if(0==subscriptions.size)return result;this.writeStatus(". . . sending an API request");const subscriptionsChunks=Util_1.Util.chunkArray(subscriptions,this.batchSize),apiResponse=[];for(const[index,chunk]of subscriptionsChunks.entries())10==index&&this.writeStatus('&nbsp; &nbsp; &nbsp; <span style="color:gold">connection throttled</span>'),subscriptionsChunks.length>1&&this.writeStatus(`&nbsp; &nbsp; - processing batch #${index} [<a href="/forum_topics?search[id]=${chunk.join(",")}" target="_blank">${chunk.length}</a>]`),apiResponse.push(...await E621_1.E621.ForumTopics.get({"search[id]":chunk.join(",")},index<10?500:1e3)),_SubscriptionManager_1.SubscriptionManager.trigger("inprogress."+this.trackerID,1);this.writeStatus(". . . formatting output");const lastUpdate=this.fetchSettings("lastUpdate")||0;for(const thread of apiResponse){const responseCount=thread.response_count;if(0==responseCount)continue;const threadExtra=this.slist.getExtraData(thread.id+"")||{};threadExtra.name=thread.title,new Date(thread.updated_at).getTime()>lastUpdate&&thread.updater_id!==User_1.User.userID&&(result[new Date(thread.updated_at).getTime()]={uid:thread.id,ext:encodeURIComponent(thread.title.replace(/_/g," "))+"|"+responseCount,new:!0}),this.slist.addExtraData(thread.id+"",threadExtra)}return this.slist.pushSubscriptions(),this.writeStatus(". . . displaying results"),result}drawUpdateEntry(data,timestamp,deleteFunction){const threadData=data.ext.split("|"),result=$("<subitem>").attr({new:data.new,uid:timestamp}).on("re621:render",(()=>{const mainSection=$("<div>").addClass("info-section").appendTo(result);$("<a>").html(decodeURIComponent(threadData[0])).attr({href:`/forum_topics/${data.uid}?page=${Math.ceil(parseInt(threadData[1]||"1")/75)}`}).appendTo(mainSection),$("<div>").html("Updated "+Util_1.Util.Time.ago(timestamp)).appendTo(mainSection),$("<a>").addClass("delete-link").html('<span><i class="fas fa-times"></i></span>').appendTo(result).on("click",(event=>{event.preventDefault,deleteFunction(timestamp,result)}))})).on("re621:reset",(()=>{result.html("")}));return result}formatSubscriptionListEntry(id,value,unsub){const threadData=this.slist.getExtraData(id)||{},result=$("<sb-enitem>").attr({content:id+(threadData.name?" "+threadData.name.toLowerCase():""),sort:threadData.name?threadData.name.toLowerCase():id});return $("<a>").addClass("sb-unsub").html('<i class="fas fa-times"></i>').attr({title:"Unsubscribe"}).appendTo(result).on("click",(event=>{event.preventDefault(),unsub(id)})),$("<a>").html(threadData.name?threadData.name:`thread #${id}`).attr({href:`/forum_topics/${id}`}).appendTo(result),result}}exports.ForumTracker=ForumTracker},{"../../components/api/E621":5,"../../components/data/Page":20,"../../components/data/User":22,"../../components/utility/Util":38,"./_SubscriptionManager":84,"./_SubscriptionTracker":85}],80:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.PoolTracker=void 0;const E621_1=require("../../components/api/E621"),APIPost_1=require("../../components/api/responses/APIPost"),XM_1=require("../../components/api/XM"),Page_1=require("../../components/data/Page"),Post_1=require("../../components/post/Post"),PostParts_1=require("../../components/post/PostParts"),Util_1=require("../../components/utility/Util"),_SubscriptionManager_1=require("./_SubscriptionManager"),_SubscriptionTracker_1=require("./_SubscriptionTracker");class PoolTracker extends _SubscriptionTracker_1.SubscriptionTracker{constructor(){super(...arguments),this.buttonSelect={major:{regex:[Page_1.PageDefinition.pool],selector:"#c-pools > #a-show > h2:first",method:"before"}}}getDefaultSettings(){return{...super.getDefaultSettings(),cacheSize:20}}fetchMajorSubscriptionName(){return Page_1.Page.getPageID()}async fetchUpdatedEntries(){const result={};this.clearStatus(),this.writeStatus("Updating Pool Subscriptions"),this.writeStatus(". . . retrieving settings");const subscriptions=this.slist.get();if(0==subscriptions.size)return result;this.writeStatus(". . . sending an API request");const subscriptionsChunks=Util_1.Util.chunkArray(subscriptions,this.batchSize),apiResponse=[];for(const[index,chunk]of subscriptionsChunks.entries())10==index&&this.writeStatus('&nbsp; &nbsp; &nbsp; <span style="color:gold">connection throttled</span>'),subscriptionsChunks.length>1&&this.writeStatus(`&nbsp; &nbsp; - processing batch #${index} [<a href="/pools?search[id]=${chunk.join(",")}" target="_blank">${chunk.length}</a>]`),apiResponse.push(...await E621_1.E621.Pools.get({"search[id]":chunk.join(",")},index<10?500:1e3)),_SubscriptionManager_1.SubscriptionManager.trigger("inprogress."+this.trackerID,1);this.writeStatus(". . . fetching post data");const postData=new Map;for(const pool of apiResponse){if(0==pool.post_count)continue;void 0===(this.slist.getExtraData(pool.id+"")||{}).data&&postData.set(pool.post_ids[0],null)}if(postData.size>0){const postsChunks=Util_1.Util.chunkArray(Array.from(postData.keys()),100,"chunk");for(const[index,chunk]of postsChunks.entries()){10==index&&this.writeStatus('&nbsp; &nbsp; &nbsp; <span style="color:gold">connection throttled</span>'),subscriptionsChunks.length>1&&this.writeStatus(`&nbsp; &nbsp; - processing batch #${index} [<a href="/posts?tags=id:${chunk.join(",")}" target="_blank">${chunk.length}</a>]`);for(const post of await E621_1.E621.Posts.get({tags:"id:"+chunk.join(","),limit:320},index<10?500:1e3))postData.set(post.id,post);_SubscriptionManager_1.SubscriptionManager.trigger("inprogress."+this.trackerID,1)}}this.writeStatus(". . . formatting output");for(const pool of apiResponse){if(0==pool.post_count)continue;const poolExtra=this.slist.getExtraData(pool.id+"")||{};if(poolExtra.name=pool.name.replace(/_/g," "),void 0===poolExtra.data){const postAPI=postData.get(pool.post_ids[0])||await E621_1.E621.Post.id(pool.post_ids[0]).first();if(postAPI){const post=Post_1.PostData.fromAPI(postAPI);poolExtra.data=("swf"==post.file.ext||post.flags.has(APIPost_1.PostFlag.Deleted)?"":post.file.md5)+"|"+post.has.sample+"|"+post.file.ext+"|"+post.rating+"|"+post.img.width+"|"+post.img.height+"|"+post.file.size}}poolExtra.last||(poolExtra.last=pool.post_ids.slice(-1)[0]),pool.post_ids.length-1>pool.post_ids.indexOf(poolExtra.last)&&(result[new Date(pool.updated_at).getTime()]={uid:pool.id,md5:poolExtra.data,ext:encodeURIComponent(pool.name.replace(/_/g," "))+"|"+pool.post_count,new:!0},poolExtra.last=pool.post_ids.slice(-1)[0]),this.slist.addExtraData(pool.id+"",poolExtra)}return this.slist.pushSubscriptions(),this.writeStatus(". . . displaying results"),result}drawUpdateEntry(data,timestamp,deleteFunction){const poolData=data.ext.split("|"),imageData=data.md5.split("|");let extraData=this.slist.getExtraData(data.uid+"")||{};const result=$("<subitem>").attr({new:data.new,uid:timestamp,"data-id":data.uid,"data-md5":imageData[0],"data-preview-url":getPreviewLink(imageData[0]),"data-large-file-url":getSampleLink(imageData[0],"true"==imageData[1],imageData[2]),"data-file-ext":imageData[2],"data-rating":imageData[3]||"e","data-created-at":new Date(timestamp).toString(),"data-width":imageData[4],"data-height":imageData[5],"data-filesize":imageData[6],hztrigger:"img"}).on("re621:render",(()=>{console.log("rendering");const link=$("<a>").addClass("img-link").attr({href:"/pools/"+data.uid}).appendTo(result);PostParts_1.PostParts.bootstrapDoubleClick(link,(()=>{XM_1.XM.Util.openInTab(window.location.origin+link.attr("href"),!1)}));const image=$("<img>").attr({src:getPreviewLink(imageData[0]),hztarget:"subitem"}).one("load",(()=>{this.loadLargeThumbs&&image.attr("src",getSampleLink(imageData[0],"true"==imageData[1],imageData[2]))})).one("error",(()=>{image.attr("src","https://e621.net/images/deleted-preview.png"),extraData=this.slist.getExtraData(data.uid+"")||{},delete extraData.data,this.slist.addExtraData(data.uid+"",extraData),this.slist.pushSubscriptions()})).appendTo(link),mainSection=$("<div>").addClass("info-section").appendTo(result);$("<a>").html(decodeURIComponent(poolData[0])).attr({href:extraData.last?`/posts/${extraData.last}?pool_id=${data.uid}`:`/pools/${data.uid}`}).appendTo(mainSection),$("<div>").html("Updated "+Util_1.Util.Time.ago(timestamp)).appendTo(mainSection),$("<a>").addClass("all-link").attr("href",`/pools/${data.uid}`).html(`View all ${poolData[1]} posts`).appendTo(result),$("<a>").addClass("delete-link").html('<span><i class="fas fa-times"></i></span>').appendTo(result).on("click",(event=>{event.preventDefault,deleteFunction(timestamp,result)}))})).on("re621:reset",(()=>{result.html("")}));return result;function getPreviewLink(md5){return md5?`https://static1.e621.net/data/preview/${md5.substr(0,2)}/${md5.substr(2,2)}/${md5}.jpg`:"https://e621.net/images/deleted-preview.png"}function getSampleLink(md5,hasSample,ext="jpg"){return md5?hasSample?`https://static1.e621.net/data/sample/${md5.substr(0,2)}/${md5.substr(2,2)}/${md5}.jpg`:`https://static1.e621.net/data/${md5.substr(0,2)}/${md5.substr(2,2)}/${md5}.${ext}`:"https://e621.net/images/deleted-preview.png"}}formatSubscriptionListEntry(id,value,unsub){const poolData=this.slist.getExtraData(id)||{},result=$("<sb-enitem>").attr({content:id+(poolData.name?" "+poolData.name.toLowerCase():""),sort:poolData.name?poolData.name.toLowerCase():id});return $("<a>").addClass("sb-unsub").html('<i class="fas fa-times"></i>').attr({title:"Unsubscribe"}).appendTo(result).on("click",(event=>{event.preventDefault(),unsub(id)})),$("<a>").html(poolData.name?poolData.name:`pool #${id}`).attr({href:`/pools/${id}`}).appendTo(result),result}}exports.PoolTracker=PoolTracker},{"../../components/api/E621":5,"../../components/api/XM":7,"../../components/api/responses/APIPost":12,"../../components/data/Page":20,"../../components/post/Post":23,"../../components/post/PostParts":26,"../../components/utility/Util":38,"./_SubscriptionManager":84,"./_SubscriptionTracker":85}],81:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.TagTracker=void 0;const E621_1=require("../../components/api/E621"),APIPost_1=require("../../components/api/responses/APIPost"),XM_1=require("../../components/api/XM"),Blacklist_1=require("../../components/data/Blacklist"),Page_1=require("../../components/data/Page"),ModuleController_1=require("../../components/ModuleController"),Post_1=require("../../components/post/Post"),PostActions_1=require("../../components/post/PostActions"),PostParts_1=require("../../components/post/PostParts"),Util_1=require("../../components/utility/Util"),WikiEnhancer_1=require("../misc/WikiEnhancer"),BetterSearch_1=require("../search/BetterSearch"),_SubscriptionManager_1=require("./_SubscriptionManager"),_SubscriptionTracker_1=require("./_SubscriptionTracker");class TagTracker extends _SubscriptionTracker_1.SubscriptionTracker{constructor(){super(...arguments),this.batchSize=40,this.quickSubEnabled=!0,this.buttonSelect={minor:{regex:[Page_1.PageDefinition.search,Page_1.PageDefinition.post],selector:"#tag-box li span.tag-action-subscribe, #tag-list li span.tag-action-subscribe"},major:{regex:[Page_1.PageDefinition.wiki,Page_1.PageDefinition.wikiNA,Page_1.PageDefinition.artist],selector:"#c-wiki-pages > #a-show > #content > h1:first, #c-artists > #a-show > h1:first"}}}getDefaultSettings(){return{...super.getDefaultSettings(),cacheSize:500}}fetchMinorSubscriptionName(element){return element.parent().attr("data-tag")}fetchMajorSubscriptionName(element){return WikiEnhancer_1.WikiEnhancer.sanitizeWikiTagName(element.find("a:first").text())}async fetchUpdatedEntries(){const result={};this.clearStatus(),this.writeStatus("Updating Tag Subscriptions"),this.writeStatus(". . . retrieving settings");const subscriptions=this.slist.get(),lastUpdate=await this.fetchSettings("lastUpdate",!0);if(0==subscriptions.size)return result;this.writeStatus(". . . sending an API request");const subscriptionsChunks=Util_1.Util.chunkArray(subscriptions,this.batchSize),apiResponse={};for(const[index,chunk]of subscriptionsChunks.entries()){const processedChunk=chunk.map((el=>"~"+el));10==index&&this.writeStatus('&nbsp; &nbsp; &nbsp; <span style="color:gold">connection throttled</span>'),subscriptionsChunks.length>1&&this.writeStatus(`&nbsp; &nbsp; - processing batch #${index} [<a href="/posts?tags=${processedChunk.join("+")}" target="_blank">${chunk.length}</a>]`);for(const post of await E621_1.E621.Posts.get({tags:processedChunk,limit:320},index<10?500:1e3))apiResponse[new Date(post.created_at).getTime()]=post;_SubscriptionManager_1.SubscriptionManager.trigger("inprogress."+this.trackerID,1)}this.writeStatus(". . . formatting output");for(const index of Object.keys(apiResponse).sort()){const post=Post_1.PostData.fromAPI(apiResponse[index]),timestamp=post.date.obj.getTime();timestamp<lastUpdate||(Blacklist_1.Blacklist.addPost(post),Blacklist_1.Blacklist.checkPost(post.id,!0)||(result[timestamp]={uid:post.id,md5:("swf"==post.file.ext||post.flags.has(APIPost_1.PostFlag.Deleted)?"":post.file.md5)+"|"+post.has.sample+"|"+post.file.ext+"|"+post.rating+"|"+post.img.width+"|"+post.img.height+"|"+post.file.size,new:!0}))}return this.writeStatus(". . . displaying results"),result}drawUpdateEntry(data,timestamp,deleteFunction){if(!data.md5)return void console.error("Error: Invalid data in cache");const imageData=data.md5.split("|"),result=$("<subitem>").attr({new:data.new,uid:timestamp,"data-id":data.uid,"data-md5":imageData[0],"data-preview-url":getPreviewLink(imageData[0]),"data-large-file-url":getSampleLink(imageData[0],"true"==imageData[1],imageData[2]),"data-file-ext":imageData[2],"data-rating":imageData[3]||"e","data-created-at":new Date(timestamp).toString(),"data-width":imageData[4],"data-height":imageData[5],"data-filesize":imageData[6],hztrigger:"img"}).on("re621:render",(()=>{const link=$("<a>").attr({href:"/posts/"+data.uid}).appendTo(result);PostParts_1.PostParts.bootstrapDoubleClick(link,(()=>{switch(ModuleController_1.ModuleController.fetchSettings(BetterSearch_1.BetterSearch,"clickAction")){case BetterSearch_1.ImageClickAction.NewTab:XM_1.XM.Util.openInTab(window.location.origin+link.attr("href"),!1);break;case BetterSearch_1.ImageClickAction.CopyID:XM_1.XM.Util.setClipboard(data.uid+"","text"),Danbooru.notice(`Copied post ID to clipboard: <a href="/posts/${data.uid}" target="_blank" rel="noopener noreferrer">#${data.uid}</a>`);break;case BetterSearch_1.ImageClickAction.Blacklist:Blacklist_1.Blacklist.toggleBlacklistTag("id:"+data.uid);break;case BetterSearch_1.ImageClickAction.AddToSet:{const lastSet=parseInt(window.localStorage.getItem("set"));lastSet?PostActions_1.PostActions.addSet(lastSet,data.uid):Danbooru.error("Error: no set selected");break}case BetterSearch_1.ImageClickAction.ToggleSet:{const lastSet=parseInt(window.localStorage.getItem("set"));lastSet?PostActions_1.PostActions.toggleSet(lastSet,data.uid):Danbooru.error("Error: no set selected");break}default:link.off("click.re621.dbl-extra"),link[0].click()}}));const image=$("<img>").attr({src:getPreviewLink(imageData[0]),hztarget:"subitem"}).appendTo(link).one("load",(()=>{this.loadLargeThumbs&&!image.attr("error")&&image.attr("src",getSampleLink(imageData[0],"true"==imageData[1],imageData[2])).one("error",(()=>{image.attr("src","https://e621.net/images/deleted-preview.png")}))})).one("error",(()=>{image.attr("error","true"),image.attr("src","https://e621.net/images/deleted-preview.png")}));$("<a>").addClass("delete-link").html('<span><i class="fas fa-times"></i></span>').appendTo(result).on("click",(event=>{event.preventDefault,deleteFunction(timestamp,result)}))})).on("re621:reset",(()=>{result.html("")}));return result;function getPreviewLink(md5){return md5?`https://static1.e621.net/data/preview/${md5.substr(0,2)}/${md5.substr(2,2)}/${md5}.jpg`:"https://e621.net/images/deleted-preview.png"}function getSampleLink(md5,hasSample,ext="jpg"){return md5?hasSample?`https://static1.e621.net/data/sample/${md5.substr(0,2)}/${md5.substr(2,2)}/${md5}.jpg`:`https://static1.e621.net/data/${md5.substr(0,2)}/${md5.substr(2,2)}/${md5}.${ext}`:"https://e621.net/images/deleted-preview.png"}}formatSubscriptionListEntry(id,value,unsub){const formattedID=id.replace(/_/g," ").toLowerCase(),result=$("<sb-enitem>").attr({content:id+" "+formattedID,sort:id.toLowerCase()});return $("<a>").addClass("sb-unsub").html('<i class="fas fa-times"></i>').attr({title:"Unsubscribe"}).appendTo(result).on("click",(event=>{event.preventDefault(),unsub(id)})),$("<a>").html(id).attr({href:"/wiki_pages/show_or_new?title="+id}).appendTo(result),result}}exports.TagTracker=TagTracker},{"../../components/ModuleController":1,"../../components/api/E621":5,"../../components/api/XM":7,"../../components/api/responses/APIPost":12,"../../components/data/Blacklist":18,"../../components/data/Page":20,"../../components/post/Post":23,"../../components/post/PostActions":24,"../../components/post/PostParts":26,"../../components/utility/Util":38,"../misc/WikiEnhancer":63,"../search/BetterSearch":69,"./_SubscriptionManager":84,"./_SubscriptionTracker":85}],82:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.SubscriptionCache=void 0;const XM_1=require("../../components/api/XM"),Util_1=require("../../components/utility/Util"),_SubscriptionManager_1=require("./_SubscriptionManager");exports.SubscriptionCache=class{constructor(tracker){this.tracker=tracker,this.storageTag="re621."+tracker.getSettingsTag()+".cache",this.extraTag="re621."+tracker.getSettingsTag()+".extra",this.data={},this.index=[]}async init(){await _SubscriptionManager_1.SubscriptionManager.isCacheValid()||(Util_1.Util.LS.setItem(this.storageTag,"{}"),Util_1.Util.LS.setItem(this.extraTag,"{}")),this.load()}async load(){try{this.data=JSON.parse(Util_1.Util.LS.getItem(this.storageTag)||"{}")}catch(error){return await this.clear(),Promise.resolve(!1)}return this.updateIndex(),Promise.resolve(!0)}async save(){return Util_1.Util.LS.setItem(this.storageTag,JSON.stringify(this.data)),XM_1.XM.Storage.setValue(this.storageTag,Util_1.Util.Time.now())}async clear(){return this.data={},this.index=[],this.save()}async fetch(){const updates=await this.tracker.fetchUpdatedEntries();return 0==Object.keys(updates).length&&Promise.resolve(!1),Object.keys(updates).forEach((key=>{this.data[key]=updates[key]})),this.updateIndex(),this.trim(),this.save()}getItem(timestamp){return this.data[timestamp]}async deleteItem(timestamp){const el=this.index.indexOf(timestamp);return console.log("locating",timestamp,el),-1!=el&&(delete this.data[timestamp],this.updateIndex(),this.save())}count(){return this.index.length}async purgeNew(){for(const timestamp of this.index)delete this.data[timestamp].new;return this.save()}updateIndex(){this.index=Object.keys(this.data).map((x=>parseInt(x))).sort(((a,b)=>b-a))}trim(){const params=this.tracker.fetchSettings(["cacheMaxAge","cacheSize"]),ageLimit=0===params.cacheMaxAge?0:Util_1.Util.Time.now()-params.cacheMaxAge,uniqueKeys=new Set,uniqueParentKeys=new Set;this.index.forEach((timestamp=>{const update=this.data[timestamp];timestamp<ageLimit&&!update.new?delete this.data[timestamp]:(uniqueKeys.has(update.uid)?delete this.data[timestamp]:uniqueKeys.add(update.uid),update.par&&(uniqueParentKeys.has(update.par)?delete this.data[timestamp]:uniqueParentKeys.add(update.par)))})),this.updateIndex();const chunks=Util_1.Util.chunkArray(this.index,params.cacheSize,"split");this.index=chunks[0],chunks[1].forEach((entry=>{delete this.data[entry]}))}forEach(fn){this.index.forEach((timestamp=>{const result=fn(this.data[timestamp],timestamp);void 0!==result&&(this.data[timestamp]=result)}))}}},{"../../components/api/XM":7,"../../components/utility/Util":38,"./_SubscriptionManager":84}],83:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.SubscriptionList=void 0;const XM_1=require("../../components/api/XM"),Util_1=require("../../components/utility/Util"),_SubscriptionManager_1=require("./_SubscriptionManager");exports.SubscriptionList=class{constructor(instance){this.instance=instance,this.storageTag="re621."+instance.getSettingsTag()+".list",this.extraTag="re621."+instance.getSettingsTag()+".extra",this.subscriptions=new Set,this.extra={},XM_1.XM.Storage.addListener(this.storageTag,(async()=>{console.log(`Sub${this.instance.getTrackerID()}: List Update`),await this.fetchSubscriptions(),_SubscriptionManager_1.SubscriptionManager.trigger("listupdate."+this.instance.getTrackerID())}))}async fetchSubscriptions(){let data=await XM_1.XM.Storage.getValue(this.storageTag,[]);if(!Array.isArray(data)){XM_1.XM.Storage.setValue(this.storageTag+".backup",data),console.error("An error occurred while de-serializing subscriptions. Data has been recovered, but old values are still available on "+this.storageTag+".backup");const recovery=Array.from(data);data=0!=recovery.length?recovery:data[0]?Object.values(data):[]}const extracted=data.pop();extracted&&!extracted.startsWith("re621:")&&data.push(extracted),this.subscriptions=new Set(data),this.extra=JSON.parse(Util_1.Util.LS.getItem(this.extraTag)||"{}")}async pushSubscriptions(){Util_1.Util.LS.setItem(this.extraTag,JSON.stringify(this.extra));const data=Array.from(this.subscriptions);data.push("re621:"+Util_1.Util.ID.rand()),await XM_1.XM.Storage.setValue(this.storageTag,data)}get(){return this.subscriptions}getStorageTag(){return this.storageTag}count(){return this.subscriptions.size}isSubscribed(id){return this.subscriptions.has(id)}async subscribe(id){return this.subscriptions.add(id),this.pushSubscriptions()}async unsubscribe(id){return this.subscriptions.delete(id),delete this.extra[id],this.pushSubscriptions()}getExtraData(name){return this.extra[name]}addExtraData(uid,data){this.extra[uid]=data}deleteExtraData(name){delete this.extra[name]}clearExtraData(){this.extra={}}}},{"../../components/api/XM":7,"../../components/utility/Util":38,"./_SubscriptionManager":84}],84:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.SubscriptionManager=void 0;const XM_1=require("../../components/api/XM"),ModuleController_1=require("../../components/ModuleController"),RE6Module_1=require("../../components/RE6Module"),Form_1=require("../../components/structure/Form"),Modal_1=require("../../components/structure/Modal"),Tabbed_1=require("../../components/structure/Tabbed"),Util_1=require("../../components/utility/Util"),TagTracker_1=require("./TagTracker"),_SubscriptionTracker_1=require("./_SubscriptionTracker");class SubscriptionManager extends RE6Module_1.RE6Module{constructor(){super(),this.registerHotkeys({keys:"hotkeyOpenNotifications",fnct:this.openNotifications})}getDefaultSettings(){return{enabled:!0,cacheVersion:0,loadLargeThumbs:!1,windowWidth:"37",thumbWidth:"8.75",thumbCols:"4",hotkeyOpenNotifications:""}}create(){super.create();const openSubscriptionsButton=Util_1.Util.DOM.addSettingsButton({id:"header-button-notifications",name:'<i class="fas fa-bell"></i>',title:"Notifications",attr:{"data-loading":"false","data-updates":"0"},linkClass:"update-notification",onClick:()=>{SubscriptionManager.trigger("windowOpen")}}),observer=new IntersectionObserver((entries=>{entries.forEach((value=>{SubscriptionManager.trigger("intersect."+$(value.target).parent().attr("content"),value.isIntersecting)}))})),trackerPages=[],trackerIDs=[];for(const tracker of SubscriptionManager.trackers)$((()=>{tracker.appendSubscribeButton()})),trackerPages.push({name:tracker.getOutputTab(),content:tracker.getOutputContainer()}),trackerIDs.push(tracker.getTrackerID()),observer.observe(tracker.getCanvasElement()[0]);this.tabbed=new Tabbed_1.Tabbed({name:"notifications-tabs",class:"config-tabs",content:[...trackerPages,{name:"Settings",content:this.createSettingsPage().render()}]}).render(),this.rebuildTabbedSettings();let windowAlreadyOpened=!1;new IntersectionObserver((entries=>{const tabbed=entries[0];SubscriptionManager.windowOpen=tabbed.isIntersecting,windowAlreadyOpened||(windowAlreadyOpened=!0)})).observe(this.tabbed[0]),this.tabbed.on("tabsactivate",(()=>{SubscriptionManager.activeTab=trackerIDs[this.tabbed.tabs("option","active")]})),SubscriptionManager.activeTab=trackerIDs[this.tabbed.tabs("option","active")],SubscriptionManager.on("notification",(()=>{let loading=!1,updates=0,index=0;for(const trackerTab of trackerPages)"string"!=typeof trackerTab.name&&("true"==trackerTab.name.attr("loading")&&(loading=!0),updates+=parseInt(trackerTab.name.attr("updates"))||0,!windowAlreadyOpened&&updates>0&&(windowAlreadyOpened=!0,this.tabbed.tabs("option","active",index)),index++);openSubscriptionsButton.attr({"data-loading":loading,"data-updates":updates})}));const modal=new Modal_1.Modal({title:"Notifications",triggers:[{element:openSubscriptionsButton}],escapable:!1,fixed:!0,reserveHeight:!0,content:this.tabbed,position:{my:"right",at:"right"}});modal.getElement().addClass("subscription-wrapper"),SubscriptionManager.on("windowOpen",(async()=>{const modalEl=modal.getElement().parent();modalEl.addClass("vis-hidden"),await Util_1.Util.sleep(50);const $page=$("#page"),pageOffset=$page.offset();modalEl.css("left",pageOffset.left+$page.outerWidth()-modalEl.outerWidth()+"px"),modalEl.css("top",pageOffset.top+"px"),modalEl.removeClass("vis-hidden")}));for(const tracker of SubscriptionManager.trackers)tracker.draw();setInterval((()=>{SubscriptionManager.trigger("heartbeat")}),Util_1.Util.Time.MINUTE),SubscriptionManager.trigger("heartbeat")}static async register(moduleList){Array.isArray(moduleList)||(moduleList=[moduleList]);for(const moduleClass of moduleList){const instance=moduleClass.getInstance();await instance.init(),this.trackers.push(instance)}return Promise.resolve(this.trackers.length)}static getAllTrackers(){return this.trackers}createSettingsPage(){const subSections=[],trackerConfig=[],tagTracker=ModuleController_1.ModuleController.get(TagTracker_1.TagTracker);for(const subscription of SubscriptionManager.trackers)subSections.push(makeSubscriptionSection(subscription)),trackerConfig.push(makeTrackerConfig(subscription));return new Form_1.Form({name:"subscriptions-controls",columns:2,width:2},[Form_1.Form.header("Subscriptions",2),...subSections,Form_1.Form.hr(2),Form_1.Form.header("Settings",2),Form_1.Form.section({wrapper:"subscription-settings",columns:2,width:2},trackerConfig),Form_1.Form.spacer(2,!0),Form_1.Form.text("Interval: How often should the subscriptions be checked for updates",2,"subscription-tutorial"),Form_1.Form.text("Cache Size: Maximum number of updates stored, between 10 and 500",2,"subscription-tutorial"),Form_1.Form.text("Cache Age: Updates older than this are removed automatically",2,"subscription-tutorial"),Form_1.Form.hr(2),Form_1.Form.subheader("Notifications Window Width","At least 37, no more than 99",1),Form_1.Form.input({value:this.fetchSettings("windowWidth"),width:1,pattern:"^(3[7-9]|[4-9][0-9])(\\.\\d{1,2})?$"},(async(data,input)=>{""!=input.val()&&input.get()[0].checkValidity()&&(await this.pushSettings("windowWidth",data),this.rebuildTabbedSettings())})),Form_1.Form.subheader("Thumbnail Columns","Number of columns in the grid",1),Form_1.Form.input({value:this.fetchSettings("thumbCols"),width:1,pattern:"^[1-9]$"},(async(data,input)=>{""!=input.val()&&input.get()[0].checkValidity()&&(await this.pushSettings("thumbCols",data),this.rebuildTabbedSettings())})),Form_1.Form.subheader("Thumbnail Height","Vertical dimension of the thumbnails",1),Form_1.Form.input({value:this.fetchSettings("thumbWidth"),width:1,pattern:"^[1-9][0-9]?(\\.\\d{1,2})?$"},(async(data,input)=>{""!=input.val()&&input.get()[0].checkValidity()&&(await this.pushSettings("thumbWidth",data),this.rebuildTabbedSettings())})),Form_1.Form.checkbox({value:this.fetchSettings("loadLargeThumbs"),label:"<b>Load Large Thumbnails</b><br />Use the larger animation-enabled thumbnails instead of the default ones",width:2},(async data=>{await this.pushSettings("loadLargeThumbs",data)})),Form_1.Form.spacer(2,!0),Form_1.Form.checkbox({value:tagTracker.fetchSettings("hideMinorButton"),label:"<b>Hide Quick Subscribe Buttons</b><br />Don't show <3 buttons in the sidebar",width:1},(async data=>{await tagTracker.pushSettings("hideMinorButton",data)})),Form_1.Form.requiresReload(),Form_1.Form.spacer(2,!0)]);function makeSubscriptionSection(instance){let toggleLock=!1;return Form_1.Form.collapse({title:instance.getTrackerID(),columns:2,width:2,badge:instance.getSubscriptionBadge()},[Form_1.Form.div({value:instance.getSubscriptionList(),width:2})],(id=>{if(!toggleLock){toggleLock=!0;for(const el of $("#subscriptions-controls h3.collapse-header").get()){const $el=$(el);$el.attr("id")!=id&&"true"===$el.attr("aria-expanded")&&$el[0].click()}toggleLock=!1}}))}function makeTrackerConfig(instance){let updateInterval=instance.fetchSettings("updateInterval");(updateInterval>24*Util_1.Util.Time.HOUR||updateInterval<Util_1.Util.Time.HOUR&&-1!=updateInterval)&&(updateInterval=Util_1.Util.Time.HOUR,instance.pushSettings("updateInterval",updateInterval)),-1!==updateInterval&&(updateInterval/=Util_1.Util.Time.HOUR);let working=!1;return Form_1.Form.section({columns:1,width:1},[Form_1.Form.header(instance.getTrackerID(),1),Form_1.Form.select({label:"Interval",value:updateInterval+"",title:"How often should the subscriptions be checked for updates"},{"-1":"Manual Only",1:"1 hour",6:"6 hours",12:"12 hours",24:"24 hours"},(async data=>{(data=Math.max(parseFloat(data)*Util_1.Util.Time.HOUR,-1))<Util_1.Util.Time.HOUR&&-1!=data&&(data=Util_1.Util.Time.HOUR),await instance.pushSettings("updateInterval",data),SubscriptionManager.trigger("timer."+instance.getTrackerID())})),Form_1.Form.input({label:"Cache Size",value:instance.fetchSettings("cacheSize"),pattern:"^([1-9][0-9]|[1-4][0-9][0-9]|500)$",title:"Number of items kept in the update cache. Must be at least 10, but no more than 500"},(async(data,input)=>{input.get()[0].checkValidity()&&await instance.pushSettings("cacheSize",parseInt(data))})),Form_1.Form.select({label:"Max Age",value:instance.fetchSettings("cacheMaxAge")/Util_1.Util.Time.WEEK,title:"Updates older than this are removed automatically"},{0:"None",7:"1 week",2:"2 weeks",4:"1 month",24:"6 months"},(async data=>{await instance.pushSettings("cacheMaxAge",parseInt(data)*Util_1.Util.Time.WEEK)})),Form_1.Form.input({label:"Next Update",value:$el=>{$el.val("Initializing");let eventLock=!1;function leftpad(value){return(value<10?"0":"")+value}SubscriptionManager.on("timer."+instance.getTrackerID(),(async()=>{if(eventLock)return;eventLock=!0;let timer=parseInt($el.data("timer")||"0");if(clearInterval(timer),$el.removeData("timer"),instance.isUpdateInProgress())return $el.val("In Progress").attr("title","An update is currently in progress.\nPlease, stand by."),void(eventLock=!1);if(instance.isNetworkOffline())return $el.val("Error").attr("title","At least one update request failed to complete.").addClass("failed-attempt"),void(eventLock=!1);await instance.refreshSettings();const period=instance.fetchSettings("updateInterval");if(-1==period)return $el.val("Never"),void(eventLock=!1);const lastUpdate=instance.fetchSettings("lastUpdate"),lastAttempt=instance.fetchSettings("lastAttempt"),date=lastAttempt?lastAttempt+_SubscriptionTracker_1.SubscriptionTracker.attemptCooldown:lastUpdate+period;if($el.toggleClass("failed-attempt",lastAttempt>0),$el.attr("title",(lastAttempt?"Previous update attempt failed.\n":"")+(lastAttempt?`Last attempt: ${Util_1.Util.Time.format(lastAttempt)}\n`:"")+(lastUpdate?`Last update: ${Util_1.Util.Time.format(lastUpdate)}\n`:"")+`Next update: ${Util_1.Util.Time.format(date)}`),timer=parseInt($el.data("timer")||"0"),timer)return void(eventLock=!1);let tick=!0;timer=setInterval((()=>{const now=Util_1.Util.Time.now(),distance=date-now,hours=Math.floor(distance/Util_1.Util.Time.HOUR),minutes=Math.floor(distance%Util_1.Util.Time.HOUR/Util_1.Util.Time.MINUTE),seconds=Math.floor(distance%Util_1.Util.Time.MINUTE/Util_1.Util.Time.SECOND),parts=[leftpad(minutes),leftpad(seconds)];hours&&parts.unshift(leftpad(hours)),$el.val(parts.join(tick?"   ":" : ")),tick=!tick,distance<0&&(clearInterval(timer),$el.removeData("timer").val("Pending").attr("title","An update has been scheduled."))}),.5*Util_1.Util.Time.SECOND),$el.data("timer",timer),eventLock=!1})),SubscriptionManager.trigger("timer."+instance.getTrackerID())},disabled:!0,wrapper:"update-timer"}),Form_1.Form.section({wrapper:"subscription-control-btn",width:1,columns:1},[Form_1.Form.button({value:"Manual Update"},(async(value,button)=>{working||(working=!0,button.html('<i class="fas fa-spinner fa-spin"></i>'),await instance.update(),button.html("Done!"),await Util_1.Util.sleep(1e3),button.html("Manual Update"),working=!1)})),Form_1.Form.button({value:"Clear Cache"},(async(value,button)=>{working||(working=!0,button.html('<i class="fas fa-spinner fa-spin"></i>'),await instance.clear(),button.html("Done!"),await Util_1.Util.sleep(1e3),button.html("Clear Cache"),working=!1)}))])])}}rebuildTabbedSettings(){const conf=this.fetchSettings(["windowWidth","thumbWidth","thumbCols"]);this.tabbed.removeAttr("style").css({"--window-width":conf.windowWidth+"rem","--thumb-width":conf.thumbWidth+"rem","--thumb-cols":conf.thumbCols})}static async isCacheValid(){if(void 0!==SubscriptionManager.cacheValid)return SubscriptionManager.cacheValid;const settings=await XM_1.XM.Storage.getValue("re621.SubscriptionManager",{});return SubscriptionManager.cacheValid=SubscriptionManager.cacheVersion==(settings.cacheVersion||0),SubscriptionManager.cacheValid||(settings.cacheVersion=SubscriptionManager.cacheVersion,await XM_1.XM.Storage.setValue("re621.SubscriptionManager",settings)),SubscriptionManager.cacheValid}openNotifications(){$("a#header-button-notifications")[0].click()}}exports.SubscriptionManager=SubscriptionManager,SubscriptionManager.cacheVersion=3,SubscriptionManager.trackers=[],SubscriptionManager.windowOpen=!1},{"../../components/ModuleController":1,"../../components/RE6Module":2,"../../components/api/XM":7,"../../components/structure/Form":29,"../../components/structure/Modal":30,"../../components/structure/Tabbed":33,"../../components/utility/Util":38,"./TagTracker":81,"./_SubscriptionTracker":85}],85:[function(require,module,exports){"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.SubscriptionTracker=void 0;const XM_1=require("../../components/api/XM"),Page_1=require("../../components/data/Page"),ModuleController_1=require("../../components/ModuleController"),RE6Module_1=require("../../components/RE6Module"),ErrorHandler_1=require("../../components/utility/ErrorHandler"),Util_1=require("../../components/utility/Util"),_SubscriptionCache_1=require("./_SubscriptionCache"),_SubscriptionList_1=require("./_SubscriptionList"),_SubscriptionManager_1=require("./_SubscriptionManager");class SubscriptionTracker extends RE6Module_1.RE6Module{constructor(){super(),this.batchSize=100,this.quickSubEnabled=!1,this.buttonSelect={},this.updateInProgress=!1,this.isVisible=!1,this.networkOffline=!1,this.loadLargeThumbs=!1,this.cache=new _SubscriptionCache_1.SubscriptionCache(this),this.slist=new _SubscriptionList_1.SubscriptionList(this),this.trackerID=this.getSettingsTag().replace("Tracker","")+"s"}async init(){await this.cache.init(),await this.slist.fetchSubscriptions(),_SubscriptionManager_1.SubscriptionManager.on("heartbeat."+this.trackerID,(async()=>{await this.isUpdateRequired()&&await this.update(),_SubscriptionManager_1.SubscriptionManager.trigger("timer."+this.trackerID)})),_SubscriptionManager_1.SubscriptionManager.on("inprogress."+this.trackerID,((event,statusCode)=>{2==statusCode&&this.pushSettings("lastUpdate",Util_1.Util.Time.now()),this.pushSettings("lastAttempt",2==statusCode?0:Util_1.Util.Time.now()),1!=statusCode&&_SubscriptionManager_1.SubscriptionManager.trigger("timer."+this.trackerID)})),_SubscriptionManager_1.SubscriptionManager.on("attributes."+this.trackerID,(()=>{const ctwrap=this.getOutputContainer();ctwrap.attr({posts:this.canvas.find("subitem").length,added:this.canvas.find("subitem[new]").length}),this.tabbtn.attr({loading:ctwrap.attr("state")==TrackerState.Load,updates:this.canvas.find("subitem[new=true]").length}),_SubscriptionManager_1.SubscriptionManager.trigger("notification")})),_SubscriptionManager_1.SubscriptionManager.on("intersect."+this.trackerID,(async(event,isIntersecting)=>{this.isVisible=isIntersecting,this.getOutputContainer();for(const el of this.canvas.find("subitem").get()){const $el=$(el);isIntersecting&&"true"==$el.attr("new")?$el.attr("new","maybe"):"maybe"==$el.attr("new")&&$el.removeAttr("new")}isIntersecting&&(document.hasFocus()&&parseInt(this.ctwrap.attr("added"))>0&&this.cache.purgeNew(),this.loadLargeThumbs=ModuleController_1.ModuleController.fetchSettings(_SubscriptionManager_1.SubscriptionManager,"loadLargeThumbs")),await Util_1.Util.sleep(500),_SubscriptionManager_1.SubscriptionManager.trigger("attributes."+this.trackerID)})),XM_1.XM.Storage.addListener("re621."+this.getSettingsTag()+".cache",(async(name,oldValue,newValue,remote)=>{remote&&(this.clearStatus(),this.writeStatus("... synchronizing data"),this.ctwrap.attr({state:TrackerState.Sync}),this.networkOffline=!1,await Util_1.Util.sleep(100),await this.cache.load(),this.draw(),_SubscriptionManager_1.SubscriptionManager.trigger("timer."+this.trackerID))})),_SubscriptionManager_1.SubscriptionManager.on("listupdate."+this.trackerID,(()=>{this.getSubscriptionList().trigger("re621:update"),this.getSubscriptionBadge().trigger("re621:update"),$("a.subscribe-button-major, a.subscribe-button-minor").trigger("re621:update")}))}getDefaultSettings(){return{enabled:!0,updateInterval:Util_1.Util.Time.HOUR,cacheMaxAge:0,cacheSize:50,hideMinorButton:!1,lastUpdate:0,lastAttempt:0}}exportSubscriptionsList(){return{name:this.slist.getStorageTag(),data:Array.from(this.slist.get())}}getTrackerID(){return this.trackerID}isNetworkOffline(){return this.networkOffline}isUpdateInProgress(){return this.updateInProgress}async isUpdateRequired(){if(this.updateInProgress)return!1;const time=await this.fetchSettings(["lastUpdate","lastAttempt","updateInterval"],!0),now=Util_1.Util.Time.now();return-1!=time.updateInterval&&(0!==time.lastAttempt?now-time.lastAttempt>=SubscriptionTracker.attemptCooldown:now-time.lastUpdate>=time.updateInterval)}appendSubscribeButton(){if(this.buttonSelect.minor&&Page_1.Page.matches(this.buttonSelect.minor.regex)&&!this.fetchSettings("hideMinorButton"))for(const el of $(this.buttonSelect.minor.selector).get()){const $el=$(el),button=this.createSubscribeMinorButton(this.fetchMinorSubscriptionName($el),(id=>{this.slist.subscribe(id)}),(id=>{this.slist.unsubscribe(id)}));switch(this.buttonSelect.minor.method){case"before":button.insertBefore($el);break;case"after":button.insertAfter($el);break;case"prepend":button.prependTo($el);break;default:button.appendTo($el)}}if(this.buttonSelect.major&&Page_1.Page.matches(this.buttonSelect.major.regex))for(const el of $(this.buttonSelect.major.selector).get()){const $el=$(el),button=this.createSubscribeMajorButton(this.fetchMajorSubscriptionName($el),(id=>{this.slist.subscribe(id)}),(id=>{this.slist.unsubscribe(id)}));switch(this.buttonSelect.major.method){case"before":button.insertBefore($el);break;case"after":button.insertAfter($el);break;case"prepend":button.prependTo($el);break;default:button.appendTo($el)}}}createSubscribeMinorButton(id,subscribe,unsubscribe){const result=$("<a>").attr({name:id,title:"Subscribe to this tag"}).addClass("subscribe-button-minor").on("click",(event=>{event.preventDefault(),"true"==result.attr("subscribed")?unsubscribe(result.attr("name")):subscribe(result.attr("name"))})).on("re621:update",(()=>{result.attr("subscribed",this.slist.isSubscribed(id)+"")}));return result.trigger("re621:update"),result}fetchMinorSubscriptionName(parent){return"unknown"}createSubscribeMajorButton(id,subscribe,unsubscribe){let eventLock=!1;const result=$("<a>").attr("name",id).addClass("subscribe-button-major").on("click",(async event=>{event.preventDefault(),eventLock||(eventLock=!0,"true"==result.attr("subscribed")?unsubscribe(result.attr("name")):subscribe(result.attr("name")),eventLock=!1)})).on("re621:update",(()=>{const subscribed=this.slist.isSubscribed(id);result.html(subscribed?"Unsubscribe":"Subscribe").attr("subscribed",subscribed+"")}));return result.trigger("re621:update"),result}fetchMajorSubscriptionName(parent){return"unknown"}getOutputTab(){return void 0!==this.tabbtn||(this.tabbtn=$("<a>").attr({loading:!1,updates:0}).addClass("notification").html(this.getTrackerID())),this.tabbtn}getOutputContainer(){return void 0!==this.ctwrap||(this.ctwrap=$("<sb-ctwrap>").attr({content:this.getTrackerID(),state:TrackerState.Init}),this.canvas=$("<sb-canvas>").appendTo(this.ctwrap),this.status=$("<sb-status>").appendTo(this.ctwrap),this.writeStatus(". . . Initializing")),this.ctwrap}getCanvasElement(){return null==this.canvas&&this.getOutputContainer(),this.canvas}async fetchUpdatedEntries(){return Promise.resolve({})}async update(){this.ctwrap.attr("state",TrackerState.Load),_SubscriptionManager_1.SubscriptionManager.trigger("attributes."+this.trackerID),this.updateInProgress=!0,_SubscriptionManager_1.SubscriptionManager.trigger("inprogress."+this.trackerID,0);try{this.execPreUpdate(),await this.cache.fetch(),this.execPostUpdate(),this.networkOffline=!1,this.updateInProgress=!1,_SubscriptionManager_1.SubscriptionManager.trigger("inprogress."+this.trackerID,2)}catch(error){ErrorHandler_1.ErrorHandler.error(this,JSON.stringify(error),"update"),this.networkOffline=!0,this.updateInProgress=!1,_SubscriptionManager_1.SubscriptionManager.trigger("inprogress."+this.trackerID,3)}await this.draw()}execPreUpdate(){}execPostUpdate(){}async draw(){this.observer&&this.observer.disconnect();const intersecting=new Set;this.observer=new IntersectionObserver((entries=>{for(const object of entries){const element=$(object.target),id=parseInt(element.attr("uid")),has=intersecting.has(id);id&&(has&&!object.isIntersecting&&(intersecting.delete(id),element.trigger("re621:reset")),!has&&object.isIntersecting&&(intersecting.add(id),window.setTimeout((()=>{intersecting.has(id)&&element.trigger("re621:render")}),100)))}}),{root:this.ctwrap.parents("div.subscription-wrapper")[0],rootMargin:"100% 50% 100% 50%",threshold:.5}),this.canvas.html(""),this.ctwrap.attr({state:TrackerState.Draw}),_SubscriptionManager_1.SubscriptionManager.trigger("attributes."+this.trackerID),this.execPreDraw(),this.canvas.append(this.drawNewUpdatesDivider()),this.canvas.append(this.drawNoNotificationsMessage()),this.cache.forEach(((data,timestamp)=>{const entry=this.drawUpdateEntry(data,timestamp,((timestamp,result)=>{this.cache.deleteItem(timestamp),result.remove(),_SubscriptionManager_1.SubscriptionManager.trigger("attributes."+this.trackerID)}));this.observer.observe(entry[0]),this.canvas.append(entry)})),this.execPostDraw(),this.ctwrap.attr({state:TrackerState.Done}),_SubscriptionManager_1.SubscriptionManager.trigger("attributes."+this.trackerID)}execPreDraw(){}execPostDraw(){}async clear(){await this.cache.clear(),this.slist.clearExtraData(),this.slist.pushSubscriptions(),this.canvas.html(""),this.ctwrap.attr({state:TrackerState.Done}),_SubscriptionManager_1.SubscriptionManager.trigger("attributes."+this.trackerID)}drawUpdateEntry(data,timestamp,deleteFunction){return $(`<subitem uid="${data.uid}">post #${data.uid} (${timestamp})</subitem>`)}drawNewUpdatesDivider(){return $("<subdivider>Older Updates</subdivider>")}drawNoNotificationsMessage(){return $("<subnotif><div>No notifications yet!</div>Once one of your subscriptions receives updates, they will appear here.</subnotif>")}clearStatus(){this.status.html("")}writeStatus(text){return $("<div>").html(text).appendTo(this.status)}getSubscriptionList(){if(void 0!==this.sblist)return this.sblist;let quickAddCont,quickAddLink;const sbcont=$("<sb-encont>"),search=$("<input>").addClass("sb-enfind").attr({placeholder:"Search"}).on("input",(()=>{const value=(search.val()+"").toLowerCase();""==value?(this.sblist.find("sb-enitem").each(((index,el)=>{$(el).removeClass("display-none")})),this.quickSubEnabled&&quickAddCont.addClass("display-none")):(this.sblist.find("sb-enitem").each(((index,el)=>{$(el).addClass("display-none")})),this.sblist.find(`sb-enitem[content*="${value}"]`).removeClass("display-none"),this.quickSubEnabled&&(quickAddLink.text(`Subscribe to ${value}`).attr({tag:value,href:`/wiki_pages/show_or_new?title=${value}`}),quickAddCont.removeClass("display-none")))}));return this.sblist=$("<sb-enwrap>").attr("content",this.trackerID).append(search).append(sbcont).on("re621:update",(()=>{sbcont.html("");let list=[];for(const name of this.slist.get())list.push(this.formatSubscriptionListEntry(name,this.slist.getExtraData(name)||{},(name=>{this.slist.unsubscribe(name)})));list=list.sort(((a,b)=>$(a).attr("sort").localeCompare($(b).attr("sort")))),quickAddCont=$("<sb-enitem>").addClass("sb-quicksub display-none").appendTo(this.sblist),quickAddLink=$("<a>").on("click",(event=>{event.preventDefault();const value=quickAddLink.attr("tag");value&&(this.slist.subscribe(value),search.val(""),quickAddCont.addClass("display-none"),this.sblist.trigger("re621:update"))})).appendTo(quickAddCont),sbcont.append(list)})),this.sblist.trigger("re621:update"),this.sblist}formatSubscriptionListEntry(id,value,unsub){const result=$("<sb-enitem>").attr({content:id+(value.text?value.text:"")}).html(value.text?value.text:id);return $("<a>").addClass("sb-unsub").html('<i class="fas fa-times"></i>').attr({title:"Unsubscribe"}).prependTo(result).on("click",(event=>{event.preventDefault(),unsub(id)})),result}getSubscriptionBadge(){return void 0!==this.sbadge||(this.sbadge=$("<sb-badge>").html("0").on("re621:update",(()=>{this.sbadge.html(this.slist.count()+"")})),this.sbadge.trigger("re621:update")),this.sbadge}}var TrackerState;exports.SubscriptionTracker=SubscriptionTracker,SubscriptionTracker.attemptCooldown=5*Util_1.Util.Time.MINUTE,function(TrackerState){TrackerState.Init="init",TrackerState.Load="load",TrackerState.Sync="sync",TrackerState.Draw="draw",TrackerState.Done="done"}(TrackerState||(TrackerState={}))},{"../../components/ModuleController":1,"../../components/RE6Module":2,"../../components/api/XM":7,"../../components/data/Page":20,"../../components/utility/ErrorHandler":35,"../../components/utility/Util":38,"./_SubscriptionCache":82,"./_SubscriptionList":83,"./_SubscriptionManager":84}]},{},[46]);