diff --git a/html/static/esquemadorg.js b/html/static/esquemadorg.js new file mode 100644 index 0000000..3865509 --- /dev/null +++ b/html/static/esquemadorg.js @@ -0,0 +1,271 @@ +// Adapted from: +// +// esquemadorg.js +// +// m3.2010 Daniel Clemente Laboreo. http://www.danielclemente.com/ +// +// Initially based on org-info-jq from Sebastian Rose (2009): http://github.com/SebastianRose/org-info-js/blob/master/org-info-jq.js +// +// Released under the GNU General Public License version 3 +// see: http://www.gnu.org/licenses/ +// + + +var HOW_TO_HIDE = 'hide'; + +function isHideable(div_obj) { + try { + // Ignore for TOC since it is handled differently + if (div_obj.id == "text-table-of-contents") return false; + if (div_obj.id == "table-of-contents") return false; + // No point in hiding top level + if (div_obj.classList.contains("outline-2")) return false; + if (div_obj.classList.contains("outline-text-2")) return false; + } catch (e) { + console.log(div_obj) + console.log(e) + } + + return true +} + +function scrollSmoothlyToObj(obj,id) { + // This line comes from: *** Anchor Slider by Cedric Dugas *** Http://www.position-absolute.com *** Thanks! + $("html:not(:animated),body:not(:animated)").animate({ scrollTop: obj.offset().top}, 1100, function() { + window.location.hash = id; + }); +} + +function focusSection(id_anchor){ + // anchor: the id (text, without '#') of the h2/h3/h4/h5/h6/h7 which is to be made visible (together with its parents). The page will also scroll to focus that section + + var anchor1='#'+id_anchor; + var anchor2='*[id=' + id_anchor + ']'; // this is equivalent to $("#id"), which strangely seems not to work + var obj_anchor=$(anchor2); + + // Remove any other highlighted section which was the target of a previous link. + // It does nothing if it's the first click + $("div.orgjq-targeted").removeClass("orgjq-targeted"); + // Now highlight the target section and its parents. You may Use .css("background","orange") to test + obj_anchor.parents("div.orgjq-contracted").addClass("orgjq-targeted"); + // Expand its parents so that the target section is connected to the root of the tree + obj_anchor.parents("div.orgjq-contracted").each( + function() { + $(this).removeClass("orgjq-contracted").addClass("orgjq-expanded"); + $(this).children("div").show(); + } + ); + // move the browser focus to that section + scrollSmoothlyToObj(obj_anchor,anchor1); +} + + +function hideForOrg_whenclicked(div_obj) { + if (!isHideable(div_obj[0])) return; + + div_obj.parent().removeClass("orgjq-expanded").addClass("orgjq-contracted"); + if(HOW_TO_HIDE=='hide'){ + div_obj.nextAll().hide("fast"); // "normal" es más lento + div_obj.hide(); + } else if(HOW_TO_HIDE=='shrink'){ + //div_obj.css("zoom","0.25"); + // div_obj.nextAll().css("zoom","0.25"); + div_obj.css("font-size","50%"); + div_obj.nextAll().css("font-size","50%"); + } else if(HOW_TO_HIDE=='opacity'){ + div_obj.css("opacity","0.5"); + div_obj.nextAll().css("opacity","0.5"); + } else if(HOW_TO_HIDE=='scrollbar'){ + div_obj.parent().css({"height":"100px","overflow-y":"auto","opacity":"0.3"}); + } else { + console.error("Not impl."); + } + +} +function showForOrg_whenclicked(div_obj) { + div_obj.parent().removeClass("orgjq-contracted").addClass("orgjq-expanded"); + if(HOW_TO_HIDE=='hide'){ + div_obj.parents().show("normal"); + div_obj.nextAll().show("normal");div_obj.show(); + } else if(HOW_TO_HIDE=='shrink'){ + //div_obj.css("zoom","1"); + // div_obj.nextAll().css("zoom","1"); + div_obj.css("font-size","100%"); + div_obj.nextAll().css("font-size","100%"); + } else if(HOW_TO_HIDE=='opacity'){ + div_obj.css("opacity","1"); + div_obj.nextAll().css("opacity","1"); + } else if(HOW_TO_HIDE=='scrollbar'){ + div_obj.parents().css({"height":"auto","min-height":"100px","overflow-y":"inherit","opacity":"1"}); + } else { + console.error("Not impl."); + } +} +function toggleForOrg_whenclicked(div_obj) { + if(div_obj.parent().hasClass("orgjq-expanded")) + hideForOrg_whenclicked(div_obj); + else + showForOrg_whenclicked(div_obj); +} + +// faster methods than calling the individual methods in a loop +function close_all_sections() { + //$('.orgjq-expanded').removeClass("orgjq-expanded").addClass("orgjq-contracted"); + + for(var i=2;i<=7;++i) { + let divs = $(".outline-text-"+i) + divs.each(idx => { + if (isHideable(divs[idx])) { + $("#" + divs[idx].id).parent().removeClass("orgjs-expanded").addClass("orgjq-contracted"); + $("#" + divs[idx].id).hide() + } + }) + } + + // inside the h2 headers, all (now unseen) headers are also contracted + for(var i=2;i<=7;++i) { + $("h"+i).each( + function(){ + if (isHideable($(this).parent()[0])) { + $(this).parent().removeClass("orgjq-expanded").addClass("orgjq-contracted"); + $(this).next("div").nextAll().hide();$(this).next("div").hide(); + } + }); + } + +} +function open_all_sections() { + $('div#content .orgjq-contracted').not("#table-of-contents").removeClass("orgjq-contracted").addClass("orgjq-expanded"); + $('div#content').find(":hidden").not("#table-of-contents div").show(); +} + +function disable_global_outlining() { + // not really used anymore + + // affect only the main (first level) sections + var org= $("div#table-of-contents, div#content>div[id^='outline-container-']"); + //test: org.css({border: "2px solid red"}); + + // show everything (all sections, …) + org.find(":hidden").show(); + + // remove classes and thus colors + $(".orgjq-contracted").removeClass("orgjq-contracted"); + $(".orgjq-expanded").removeClass("orgjq-expanded"); + $(".orgjq-targeted").removeClass("orgjq-targeted"); + + // headers are not clickable + org.find("h1,h2,h3,h4,h5,h6,h7").css({cursor: "default"}).unbind("click"); + // links to sections no longer highlight the target + $("a[href^='#']").unbind('click'); + // hide expand link + $("div#outline-container-1 >h2 >a.expandAll").remove(); + + + // information + alert("He cambiado al estilo tradicional: todo seguido. Si quieres volver a usar el esquemado con cabeceras clicables, recarga la página"); +} + +function enable_global_outlining() { + // Called once e.g. the first time the page is loaded + + // handle the click event for each header + for(var i=2;i<=7;++i) { + $("h"+i).each( + function(){ + $(this).css({cursor: "pointer"}); + $(this).bind('click', function(){ toggleForOrg_whenclicked( $(this).parent().children("div").eq(0) ); }); + }); + } + + /* + // add link to deactive outlining. I wanted 2 links, „expand all“ and „contract all“, but the second one isn't of much use (and reloading the page does the same) + // otros posibles nombres: "(expandir completamente)" + var expAll_link = $( document.createElement('a') ).text("(ver todo seguido, sin esquemado)").addClass("expandAll").click(disable_global_outlining); + $( $("div.outline-2")[0] ).find(">h2") .append(expAll_link); + */ + + + /* + // start with contracted TOC and headers ← m5.2017: disabled because it has a huge penalty towards Google (hidden content won't be indexed) + + if(HOW_TO_HIDE=='hide'){ + $("#text-table-of-contents").hide(); + } else { + console.error("Not impl."); + } + for(var i=2;i<=7;++i) { + $(".outline-text-"+i).parent().addClass("orgjq-contracted"); + if(HOW_TO_HIDE=='hide'){ + ///// $(".outline-text-"+i).hide(); + $(".outline-text-"+i).hide(); + } else if(HOW_TO_HIDE=='scrollbar'){ + //$(".outline-text-"+i).css({"height":"100px","overflow-y":"auto","opacity":"0.3"}); + // $(".outline-text-"+i).parent().css({"height":"100px","overflow-y":"auto","opacity":"0.3"}); + // console.error("nada"); + } else { + console.error("Not impl."); + } + } + + // inside the h2 headers, all (now unseen) headers are also contracted + for(var i=2;i<=7;++i) { + $("h"+i).each( + function(){ + $(this).parent().removeClass("orgjq-expanded").addClass("orgjq-contracted"); + if(HOW_TO_HIDE=='hide'){ + $(this).next("div").nextAll().hide();$(this).next("div").hide(); + } else if(HOW_TO_HIDE=='scrollbar'){ + // $(this).next("div").nextAll().css({"height":"100px","overflow-y":"auto","opacity":"0.3"}); + $(this).next("div").nextAll().css({"height":"100px","overflow-y":"auto","opacity":"0.3"}); + // console.error("nada2."); + } else { + console.error("Not impl."); + } + + }); + } + */ + + // alternatively: mark everything as open + for(var i=2;i<=7;++i) { + $("h"+i).each( + function(){ + $(this).parent().removeClass("orgjq-contracted").addClass("orgjq-expanded"); + }); + } + // except TOC + $("div#table-of-contents").removeClass("orgjq-expanded").addClass("orgjq-contracted"); + + + + // If provided #fragment in URL, we must locate and open the corresponding header and its parents + var url = document.location.toString(); + if (url.match('#')) { // the URL contains an anchor + var id_anchor = url.split('#')[1]; + focusSection(id_anchor); + } + + + // internal links to anchors, e.g. , should also expand the destination section before scrolling there + //Test: $("a[href^='#']").css("border","2px dotted red"); + $("a[href^='#']").each(function(){ + var caller=this; + $(caller).click(function (event) { + var href=$(caller).attr("href"); + var id_href=href.substr(1); + focusSection(id_href); + return false; + }); + + }); + + // the page is now ready to be used + +} + +// Code starts here + +$(document).ready(enable_global_outlining); + + diff --git a/html/static/fonts.css b/html/static/fonts.css new file mode 100644 index 0000000..d396a64 --- /dev/null +++ b/html/static/fonts.css @@ -0,0 +1,205 @@ +@font-face { + font-family: Libre Baskerville; + src: url('fonts/LibreBaskerville-Regular.ttf'); +} + +@font-face { + font-family: Cambria; + src: url('fonts/Cambria.ttf'); +} + + +@font-face { + font-family: 'Source Sans Pro'; + font-weight: 200; + font-style: normal; + src: url('fonts/SourceSansPro-ExtraLight.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Sans Pro'; + font-weight: 200; + font-style: italic; + src: url('fonts/SourceSansPro-ExtraLightItalic.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Sans Pro'; + font-weight: 300; + font-style: normal; + src: url('fonts/SourceSansPro-Light.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Sans Pro'; + font-weight: 300; + font-style: italic; + src: url('fonts/SourceSansPro-LightItalic.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Sans Pro'; + font-weight: 400; + font-style: normal; + src: url('fonts/SourceSansPro-Regular.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Sans Pro'; + font-weight: 400; + font-style: italic; + src: url('fonts/SourceSansPro-RegularItalic.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Sans Pro'; + font-weight: 600; + font-style: normal; + src: url('fonts/SourceSansPro-Semibold.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Sans Pro'; + font-weight: 600; + font-style: italic; + src: url('fonts/SourceSansPro-SemiboldItalic.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Sans Pro'; + font-weight: 700; + font-style: normal; + src: url('fonts/SourceSansPro-Bold.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Sans Pro'; + font-weight: 700; + font-style: italic; + src: url('fonts/SourceSansPro-BoldItalic.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Sans Pro'; + font-weight: 900; + font-style: normal; + src: url('fonts/SourceSansPro-Black.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Sans Pro'; + font-weight: 900; + font-style: italic; + src: url('fonts/SourceSansPro-BlackItalic.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} + + +@font-face { + font-family: 'Source Serif Pro'; + font-weight: 200; + font-style: normal; + src: url('fonts/SourceSerifPro-ExtraLight.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Serif Pro'; + font-weight: 200; + font-style: italic; + src: url('fonts/SourceSerifPro-ExtraLightItalic.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Serif Pro'; + font-weight: 300; + font-style: normal; + src: url('fonts/SourceSerifPro-Light.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Serif Pro'; + font-weight: 300; + font-style: italic; + src: url('fonts/SourceSerifPro-LightItalic.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Serif Pro'; + font-weight: 400; + font-style: normal; + src: url('fonts/SourceSerifPro-Regular.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Serif Pro'; + font-weight: 400; + font-style: italic; + src: url('fonts/SourceSerifPro-Italic.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Serif Pro'; + font-weight: 600; + font-style: normal; + src: url('fonts/SourceSerifPro-Semibold.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Serif Pro'; + font-weight: 600; + font-style: italic; + src: url('fonts/SourceSerifPro-SemiboldItalic.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Serif Pro'; + font-weight: 700; + font-style: normal; + src: url('fonts/SourceSerifPro-Bold.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Serif Pro'; + font-weight: 700; + font-style: italic; + src: url('fonts/SourceSerifPro-BoldItalic.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Serif Pro'; + font-weight: 900; + font-style: normal; + src: url('fonts/SourceSerifPro-Black.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Serif Pro'; + font-weight: 900; + font-style: italic; + src: url('fonts/SourceSerifPro-BlackItalic.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} diff --git a/html/static/fonts/BASKE1.ttf b/html/static/fonts/BASKE1.ttf new file mode 100644 index 0000000..0f41f62 Binary files /dev/null and b/html/static/fonts/BASKE1.ttf differ diff --git a/html/static/fonts/BASKE10.ttf b/html/static/fonts/BASKE10.ttf new file mode 100644 index 0000000..8d9d0f6 Binary files /dev/null and b/html/static/fonts/BASKE10.ttf differ diff --git a/html/static/fonts/BASKE9.ttf b/html/static/fonts/BASKE9.ttf new file mode 100644 index 0000000..6a19df8 Binary files /dev/null and b/html/static/fonts/BASKE9.ttf differ diff --git a/html/static/fonts/BASKRV_L.ttf b/html/static/fonts/BASKRV_L.ttf new file mode 100644 index 0000000..44e7d9a Binary files /dev/null and b/html/static/fonts/BASKRV_L.ttf differ diff --git a/html/static/fonts/Baskerville Bold font.ttf b/html/static/fonts/Baskerville Bold font.ttf new file mode 100644 index 0000000..0f41f62 Binary files /dev/null and b/html/static/fonts/Baskerville Bold font.ttf differ diff --git a/html/static/fonts/BaskervilleBT.ttf b/html/static/fonts/BaskervilleBT.ttf new file mode 100644 index 0000000..14e6917 Binary files /dev/null and b/html/static/fonts/BaskervilleBT.ttf differ diff --git a/html/static/fonts/BaskervilleBoldBT.ttf b/html/static/fonts/BaskervilleBoldBT.ttf new file mode 100644 index 0000000..6c864e6 Binary files /dev/null and b/html/static/fonts/BaskervilleBoldBT.ttf differ diff --git a/html/static/fonts/BaskervilleBoldItalicBT.ttf b/html/static/fonts/BaskervilleBoldItalicBT.ttf new file mode 100644 index 0000000..5d8b25e Binary files /dev/null and b/html/static/fonts/BaskervilleBoldItalicBT.ttf differ diff --git a/html/static/fonts/BaskervilleItalicBT.ttf b/html/static/fonts/BaskervilleItalicBT.ttf new file mode 100644 index 0000000..74ca8f0 Binary files /dev/null and b/html/static/fonts/BaskervilleItalicBT.ttf differ diff --git a/html/static/fonts/Cambria-Font-For Android.ttf b/html/static/fonts/Cambria-Font-For Android.ttf new file mode 100644 index 0000000..ab88fb4 Binary files /dev/null and b/html/static/fonts/Cambria-Font-For Android.ttf differ diff --git a/html/static/fonts/Cambria-Font-For-Linux.ttf b/html/static/fonts/Cambria-Font-For-Linux.ttf new file mode 100644 index 0000000..ab88fb4 Binary files /dev/null and b/html/static/fonts/Cambria-Font-For-Linux.ttf differ diff --git a/html/static/fonts/Cambria-Font-For-MAC.ttf b/html/static/fonts/Cambria-Font-For-MAC.ttf new file mode 100644 index 0000000..ab88fb4 Binary files /dev/null and b/html/static/fonts/Cambria-Font-For-MAC.ttf differ diff --git a/html/static/fonts/Cambria.ttf b/html/static/fonts/Cambria.ttf new file mode 100644 index 0000000..ab88fb4 Binary files /dev/null and b/html/static/fonts/Cambria.ttf differ diff --git a/html/static/fonts/LibreBaskerville-Bold.ttf b/html/static/fonts/LibreBaskerville-Bold.ttf new file mode 100644 index 0000000..f415f3e Binary files /dev/null and b/html/static/fonts/LibreBaskerville-Bold.ttf differ diff --git a/html/static/fonts/LibreBaskerville-Italic.ttf b/html/static/fonts/LibreBaskerville-Italic.ttf new file mode 100644 index 0000000..152c1e3 Binary files /dev/null and b/html/static/fonts/LibreBaskerville-Italic.ttf differ diff --git a/html/static/fonts/LibreBaskerville-Regular.ttf b/html/static/fonts/LibreBaskerville-Regular.ttf new file mode 100644 index 0000000..8b87139 Binary files /dev/null and b/html/static/fonts/LibreBaskerville-Regular.ttf differ diff --git a/html/static/fonts/OFL.txt b/html/static/fonts/OFL.txt new file mode 100644 index 0000000..02ce918 --- /dev/null +++ b/html/static/fonts/OFL.txt @@ -0,0 +1,93 @@ +Copyright 2014 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries. + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/html/static/fonts/SourceSansPro-Black.ttf b/html/static/fonts/SourceSansPro-Black.ttf new file mode 100644 index 0000000..1c93e9e Binary files /dev/null and b/html/static/fonts/SourceSansPro-Black.ttf differ diff --git a/html/static/fonts/SourceSansPro-BlackItalic.ttf b/html/static/fonts/SourceSansPro-BlackItalic.ttf new file mode 100644 index 0000000..928aa37 Binary files /dev/null and b/html/static/fonts/SourceSansPro-BlackItalic.ttf differ diff --git a/html/static/fonts/SourceSansPro-Bold.ttf b/html/static/fonts/SourceSansPro-Bold.ttf new file mode 100644 index 0000000..b8879af Binary files /dev/null and b/html/static/fonts/SourceSansPro-Bold.ttf differ diff --git a/html/static/fonts/SourceSansPro-BoldItalic.ttf b/html/static/fonts/SourceSansPro-BoldItalic.ttf new file mode 100644 index 0000000..b38bae9 Binary files /dev/null and b/html/static/fonts/SourceSansPro-BoldItalic.ttf differ diff --git a/html/static/fonts/SourceSansPro-ExtraLight.ttf b/html/static/fonts/SourceSansPro-ExtraLight.ttf new file mode 100644 index 0000000..8074e3a Binary files /dev/null and b/html/static/fonts/SourceSansPro-ExtraLight.ttf differ diff --git a/html/static/fonts/SourceSansPro-ExtraLightItalic.ttf b/html/static/fonts/SourceSansPro-ExtraLightItalic.ttf new file mode 100644 index 0000000..db759e0 Binary files /dev/null and b/html/static/fonts/SourceSansPro-ExtraLightItalic.ttf differ diff --git a/html/static/fonts/SourceSansPro-Italic.ttf b/html/static/fonts/SourceSansPro-Italic.ttf new file mode 100644 index 0000000..7dbece7 Binary files /dev/null and b/html/static/fonts/SourceSansPro-Italic.ttf differ diff --git a/html/static/fonts/SourceSansPro-Light.ttf b/html/static/fonts/SourceSansPro-Light.ttf new file mode 100644 index 0000000..9b0e83d Binary files /dev/null and b/html/static/fonts/SourceSansPro-Light.ttf differ diff --git a/html/static/fonts/SourceSansPro-LightItalic.ttf b/html/static/fonts/SourceSansPro-LightItalic.ttf new file mode 100644 index 0000000..5af0659 Binary files /dev/null and b/html/static/fonts/SourceSansPro-LightItalic.ttf differ diff --git a/html/static/fonts/SourceSansPro-Regular.ttf b/html/static/fonts/SourceSansPro-Regular.ttf new file mode 100644 index 0000000..98e8579 Binary files /dev/null and b/html/static/fonts/SourceSansPro-Regular.ttf differ diff --git a/html/static/fonts/SourceSansPro-SemiBold.ttf b/html/static/fonts/SourceSansPro-SemiBold.ttf new file mode 100644 index 0000000..99dcc81 Binary files /dev/null and b/html/static/fonts/SourceSansPro-SemiBold.ttf differ diff --git a/html/static/fonts/SourceSansPro-SemiBoldItalic.ttf b/html/static/fonts/SourceSansPro-SemiBoldItalic.ttf new file mode 100644 index 0000000..9c3891b Binary files /dev/null and b/html/static/fonts/SourceSansPro-SemiBoldItalic.ttf differ diff --git a/html/static/fonts/SourceSerifPro-Black.ttf b/html/static/fonts/SourceSerifPro-Black.ttf new file mode 100644 index 0000000..f7b483c Binary files /dev/null and b/html/static/fonts/SourceSerifPro-Black.ttf differ diff --git a/html/static/fonts/SourceSerifPro-BlackItalic.ttf b/html/static/fonts/SourceSerifPro-BlackItalic.ttf new file mode 100644 index 0000000..ff6397a Binary files /dev/null and b/html/static/fonts/SourceSerifPro-BlackItalic.ttf differ diff --git a/html/static/fonts/SourceSerifPro-Bold.ttf b/html/static/fonts/SourceSerifPro-Bold.ttf new file mode 100644 index 0000000..47e7d80 Binary files /dev/null and b/html/static/fonts/SourceSerifPro-Bold.ttf differ diff --git a/html/static/fonts/SourceSerifPro-BoldItalic.ttf b/html/static/fonts/SourceSerifPro-BoldItalic.ttf new file mode 100644 index 0000000..1461f4a Binary files /dev/null and b/html/static/fonts/SourceSerifPro-BoldItalic.ttf differ diff --git a/html/static/fonts/SourceSerifPro-ExtraLight.ttf b/html/static/fonts/SourceSerifPro-ExtraLight.ttf new file mode 100644 index 0000000..0255e81 Binary files /dev/null and b/html/static/fonts/SourceSerifPro-ExtraLight.ttf differ diff --git a/html/static/fonts/SourceSerifPro-ExtraLightItalic.ttf b/html/static/fonts/SourceSerifPro-ExtraLightItalic.ttf new file mode 100644 index 0000000..d1bde71 Binary files /dev/null and b/html/static/fonts/SourceSerifPro-ExtraLightItalic.ttf differ diff --git a/html/static/fonts/SourceSerifPro-Italic.ttf b/html/static/fonts/SourceSerifPro-Italic.ttf new file mode 100644 index 0000000..4baaf1d Binary files /dev/null and b/html/static/fonts/SourceSerifPro-Italic.ttf differ diff --git a/html/static/fonts/SourceSerifPro-Light.ttf b/html/static/fonts/SourceSerifPro-Light.ttf new file mode 100644 index 0000000..5405cc0 Binary files /dev/null and b/html/static/fonts/SourceSerifPro-Light.ttf differ diff --git a/html/static/fonts/SourceSerifPro-LightItalic.ttf b/html/static/fonts/SourceSerifPro-LightItalic.ttf new file mode 100644 index 0000000..b202bd5 Binary files /dev/null and b/html/static/fonts/SourceSerifPro-LightItalic.ttf differ diff --git a/html/static/fonts/SourceSerifPro-Regular.ttf b/html/static/fonts/SourceSerifPro-Regular.ttf new file mode 100644 index 0000000..5c593b9 Binary files /dev/null and b/html/static/fonts/SourceSerifPro-Regular.ttf differ diff --git a/html/static/fonts/SourceSerifPro-SemiBold.ttf b/html/static/fonts/SourceSerifPro-SemiBold.ttf new file mode 100644 index 0000000..f0776c7 Binary files /dev/null and b/html/static/fonts/SourceSerifPro-SemiBold.ttf differ diff --git a/html/static/fonts/SourceSerifPro-SemiBoldItalic.ttf b/html/static/fonts/SourceSerifPro-SemiBoldItalic.ttf new file mode 100644 index 0000000..040e7fc Binary files /dev/null and b/html/static/fonts/SourceSerifPro-SemiBoldItalic.ttf differ diff --git a/html/static/fonts/baskervi.ttf b/html/static/fonts/baskervi.ttf new file mode 100644 index 0000000..17149d4 Binary files /dev/null and b/html/static/fonts/baskervi.ttf differ diff --git a/html/static/fonts/baskerville bold bt.ttf b/html/static/fonts/baskerville bold bt.ttf new file mode 100644 index 0000000..6c864e6 Binary files /dev/null and b/html/static/fonts/baskerville bold bt.ttf differ diff --git a/html/static/fonts/baskvl.ttf b/html/static/fonts/baskvl.ttf new file mode 100644 index 0000000..5a66bde Binary files /dev/null and b/html/static/fonts/baskvl.ttf differ diff --git a/html/static/jquery-3.6.4.slim.min.js b/html/static/jquery-3.6.4.slim.min.js new file mode 100644 index 0000000..aead5d2 --- /dev/null +++ b/html/static/jquery-3.6.4.slim.min.js @@ -0,0 +1,2 @@ +/*! jQuery v3.6.4 -ajax,-ajax/jsonp,-ajax/load,-ajax/script,-ajax/var/location,-ajax/var/nonce,-ajax/var/rquery,-ajax/xhr,-manipulation/_evalUrl,-deprecated/ajax-event-alias,-effects,-effects/animatedSelector,-effects/Tween | (c) OpenJS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(g,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,v=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,y=n.hasOwnProperty,a=y.toString,l=a.call(Object),m={},b=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},x=function(e){return null!=e&&e===e.window},w=g.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function C(e,t,n){var r,i,o=(n=n||w).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function T(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.6.4 -ajax,-ajax/jsonp,-ajax/load,-ajax/script,-ajax/var/location,-ajax/var/nonce,-ajax/var/rquery,-ajax/xhr,-manipulation/_evalUrl,-deprecated/ajax-event-alias,-effects,-effects/animatedSelector,-effects/Tween",E=function(e,t){return new E.fn.init(e,t)};function d(e){var t=!!e&&"length"in e&&e.length,n=T(e);return!b(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+R+")"+R+"*"),U=new RegExp(R+"|>"),V=new RegExp(W),X=new RegExp("^"+B+"$"),Q={ID:new RegExp("^#("+B+")"),CLASS:new RegExp("^\\.("+B+")"),TAG:new RegExp("^("+B+"|[*])"),ATTR:new RegExp("^"+M),PSEUDO:new RegExp("^"+W),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+R+"*(even|odd|(([+-]|)(\\d*)n|)"+R+"*(?:([+-]|)"+R+"*(\\d+)|))"+R+"*\\)|)","i"),bool:new RegExp("^(?:"+I+")$","i"),needsContext:new RegExp("^"+R+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+R+"*((?:-\\d)?\\d*)"+R+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,G=/^(?:input|select|textarea|button)$/i,K=/^h\d$/i,J=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+R+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){C()},ae=xe(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{O.apply(t=P.call(d.childNodes),d.childNodes),t[d.childNodes.length].nodeType}catch(e){O={apply:t.length?function(e,t){q.apply(e,P.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,d=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==d&&9!==d&&11!==d)return n;if(!r&&(C(e),e=e||T,E)){if(11!==d&&(u=Z.exec(t)))if(i=u[1]){if(9===d){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return O.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&p.getElementsByClassName&&e.getElementsByClassName)return O.apply(n,e.getElementsByClassName(i)),n}if(p.qsa&&!k[t+" "]&&(!v||!v.test(t))&&(1!==d||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===d&&(U.test(t)||_.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&p.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=A)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+be(l[o]);c=l.join(",")}try{return O.apply(n,f.querySelectorAll(c)),n}catch(e){k(t,!0)}finally{s===A&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>x.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[A]=!0,e}function ce(e){var t=T.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)x.attrHandle[n[r]]=t}function de(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function pe(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in p=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},C=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:d;return r!=T&&9===r.nodeType&&r.documentElement&&(a=(T=r).documentElement,E=!i(T),d!=T&&(n=T.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),p.scope=ce(function(e){return a.appendChild(e).appendChild(T.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),p.cssHas=ce(function(){try{return T.querySelector(":has(*,:jqfake)"),!1}catch(e){return!0}}),p.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),p.getElementsByTagName=ce(function(e){return e.appendChild(T.createComment("")),!e.getElementsByTagName("*").length}),p.getElementsByClassName=J.test(T.getElementsByClassName),p.getById=ce(function(e){return a.appendChild(e).id=A,!T.getElementsByName||!T.getElementsByName(A).length}),p.getById?(x.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},x.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(x.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},x.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),x.find.TAG=p.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):p.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},x.find.CLASS=p.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(p.qsa=J.test(T.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+R+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+R+"*(?:value|"+I+")"),e.querySelectorAll("[id~="+A+"-]").length||v.push("~="),(t=T.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+R+"*name"+R+"*="+R+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+A+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=T.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+R+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(p.matchesSelector=J.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){p.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",W)}),p.cssHas||v.push(":has"),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=J.test(a.compareDocumentPosition),y=t||J.test(a.contains)?function(e,t){var n=9===e.nodeType&&e.documentElement||e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!p.sortDetached&&t.compareDocumentPosition(e)===n?e==T||e.ownerDocument==d&&y(d,e)?-1:t==T||t.ownerDocument==d&&y(d,t)?1:u?H(u,e)-H(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==T?-1:t==T?1:i?-1:o?1:u?H(u,e)-H(u,t):0;if(i===o)return de(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?de(a[r],s[r]):a[r]==d?-1:s[r]==d?1:0}),T},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(C(e),p.matchesSelector&&E&&!k[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||p.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){k(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return Q.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&V.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+R+")"+e+"("+R+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function D(e,n,r){return b(n)?E.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?E.grep(e,function(e){return e===n!==r}):"string"!=typeof n?E.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(E.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||L,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:j.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof E?t[0]:t,E.merge(this,E.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:w,!0)),k.test(r[1])&&E.isPlainObject(t))for(r in t)b(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=w.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):b(e)?void 0!==n.ready?n.ready(e):e(E):E.makeArray(e,this)}).prototype=E.fn,L=E(w);var q=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};function P(e,t){while((e=e[t])&&1!==e.nodeType);return e}E.fn.extend({has:function(e){var t=E(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,pe=/^$|^module$|\/(?:java|ecma)script/i;le=w.createDocumentFragment().appendChild(w.createElement("div")),(ce=w.createElement("input")).setAttribute("type","radio"),ce.setAttribute("checked","checked"),ce.setAttribute("name","t"),le.appendChild(ce),m.checkClone=le.cloneNode(!0).cloneNode(!0).lastChild.checked,le.innerHTML="",m.noCloneChecked=!!le.cloneNode(!0).lastChild.defaultValue,le.innerHTML="",m.option=!!le.lastChild;var he={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ge(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&S(e,t)?E.merge([e],n):n}function ve(e,t){for(var n=0,r=e.length;n",""]);var ye=/<|&#?\w+;/;function me(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),d=[],p=0,h=e.length;p\s*$/g;function ke(e,t){return S(e,"table")&&S(11!==t.nodeType?t:t.firstChild,"tr")&&E(e).children("tbody")[0]||e}function De(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Le(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function je(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n
",2===ft.childNodes.length),E.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(m.createHTMLDocument?((r=(t=w.implementation.createHTMLDocument("")).createElement("base")).href=w.location.href,t.head.appendChild(r)):t=w),o=!n&&[],(i=k.exec(e))?[t.createElement(i[1])]:(i=me([e],t,o),o&&o.length&&E(o).remove(),E.merge([],i.childNodes)));var r,i,o},E.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=E.css(e,"position"),c=E(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=E.css(e,"top"),u=E.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),b(t)&&(t=t.call(e,n,E.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},E.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){E.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===E.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===E.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=E(e).offset()).top+=E.css(e,"borderTopWidth",!0),i.left+=E.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-E.css(r,"marginTop",!0),left:t.left-i.left-E.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===E.css(e,"position"))e=e.offsetParent;return e||re})}}),E.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;E.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),E.each(["top","left"],function(e,n){E.cssHooks[n]=$e(m.pixelPosition,function(e,t){if(t)return t=Fe(e,n),Pe.test(t)?E(e).position()[n]+"px":t})}),E.each({Height:"height",Width:"width"},function(a,s){E.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){E.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?E.css(e,t,i):E.style(e,t,n,i)},s,n?e:void 0,n)}})}),E.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),E.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){E.fn[n]=function(e,t){return 0 + +* Spicy, Spicy Abortions +** I +Let me preface this by saying diff --git a/org/posts/drafts/drug-guide.org b/org/posts/drafts/drug-guide.org new file mode 100644 index 0000000..d3c0f99 --- /dev/null +++ b/org/posts/drafts/drug-guide.org @@ -0,0 +1,28 @@ +#+TITLE: The Reasonable Person's Guide to Drugs +#+DATE: <2023-04-22 Sat 07:27> + +#+BEGIN_EXPORT html + +#+END_EXPORT + +* The Reasonable Person's Guide to Drugs +** Introduction +this is the introduction hehe +** Paraphrenelia +** Sourcing +*** Research Chemicals +*** Dark Web +*** Trusted Dealer +*** Random People +**** Memes +** Safety +** Drug Effects +** Drug Classes +*** Psychedelics +*** Stimulants +*** Depressants +*** Deliriants +*** Entactogens +*** Weed diff --git a/org/posts/drafts/met-trip-report.org b/org/posts/drafts/met-trip-report.org new file mode 100644 index 0000000..2b79d61 --- /dev/null +++ b/org/posts/drafts/met-trip-report.org @@ -0,0 +1,32 @@ +#+TITLE: MET Trip Report +#+DATE: <2023-04-15 Sat 19:16> + +* MET Trip Report +I dosed 125mg of [[https://psychonautwiki.org/wiki/MET][MET]] fumarate orally, mixed into ginger beer. MET is a rather niche tryptamine and there are not many trip reports online; it is also more common to vaporize it than ingest it orally. Contrary to the information on PsychonautWiki it came on fast and hard, taking 20-30 minutes for visuals and body load to appear. The body load was on the heavier side of things and came with a strong urge to vomit, but dissipated rather quickly, being mostly gone an hour or so into the trip. + +Visuals were very spacious and clear, with colors appearing vibrant and smooth and edges appearing crisp and well-defined. The visual experience was similar to DMT albeit more glossy and digital feeling. There was a sense of simplicity and cleanliness to everything, as though noisy detail had been removed, giving the distinct sense of a fourier transform with the high frequencies chopped off; in fact the distinct continuous, analog, wave-like nature of subjective experience was on my mind throughout the trip, no doubt inspired by the [[https://qri.org/][QRI]] whose writings I have been exploring recently. + +The most astonishing feature of MET to me is the headspace, which is extraordinarily clear, clearer than my usual headspace. My ability to reason and mental acuity were enhanced and I found myself to be very talkative. Curiosity and a sense of wonder were also prominent elements of the experience - I wonder if "a sense of wonder" is how neuroplasticity feels from the inside? I did not find this substance the least bit debilitating, though I also feel the dose I took was not particularly high. This seems like a great compound for learning, creativity, exploring or social activity. It's less suitable for deep spiritual work, I think. + +Another aspect that was quite pronounced was an increase in empathy and sociability and such, feelings reminiscent of compounds like MDMA, albeit less intensely. + +Overall I found the substance quite stimulating but not forceful. It does come in waves of stimulation and sedation, similar to psilocybin and friends, and mental acuity definitely goes down during the waves of sedation, but I found the waves of sedation to be quite short and so not a very large part of the overall trip. + +I reached peak effects quickly after which effects started to very slowly taper off. About 3 hours into the trip I smoked a small amount of cannabis which increased the vibrancy of colors and general glossiness and added more of a fractally nature to the experience while muddling the headspace somewhat, bringing the experience closer to LSD. I only had a tiny bit of weed left so I was not able to inspect this further. + +It was a beautiful day, so about 4 hours into the experience I took my bicycle out into the countryside. At this point perspective distortions became very obvious; everything seemed to be much further away than it was, and it was near impossible to judge distances accurately. Thankfully I can get to the countryside while only encountering an absolute minimum of traffic, otherwise this would be quite dangerous. Cycling on this compound gave the pleasant sensation of going fast as fuck. At the time I described the experience as "using elytra at Quake Pro FOV in Minecraft". + +[TODO insert image, remember to strip exif data] + +The bicycle trip was very pleasant. I had a significantly enhanced sense of what my own body was doing as well as a better sense of my bicycle. Moving around and enjoying the spaciousness was very pleasant; I usually stay inside when I take psychedelics because I usually find them quite debilitating and I get very anxious about potentially having social interactions, but the headspace on this compound was so clear that this did not worry me. There was something very siple and pure to the experience, just being outside on a nice spring day, moving around, enjoying the beauty of the countryside. The experience was cathartic and euthymic. I also really enjoyed messaging my boyfriend throughout the experience; once again, this makes for a great social drug. + +I stopped by the grocery store on my way back and then settled in back home. At this point a quite pronounced headache started developing. I was able to sleep, though not very well or very long. I usually struggle a lot with sleeping after psychedelics and cannot sleep at all after taking a compound like LSD, but this compound didn't seem that disruptive. I slept for a little bit, then spent a few hours at night reading things on my phone feeling quite alright but unable to sleep, and then slept again for a few hours in the morning. + +The next day (i.e. today) I have a bit of a hangover with a headache and an uneasy stomach. It's not super debilitating but it is noticably present and seems to be the main downside of this compound. At the time of writing, almost 30 hours after I took the substance, I still experience some residual visuals and such, but it should be noted that my body is unusually slow at clearing psychedelics and I usually have after effects the next day on LSD as well. + +Overall this is a pretty interesting substance. I've always really enjoyed the idea of being more active and doing creative things while under the influence of psychedelics, but most psychedelics create a lot of confusion and noise which makes this difficult; this drug seems very functional. The hangover is a distinct disadvantage, though; this substance feels like it is quite hard on the body. + + + +* blurk +xxxx how to deal with brain fug diff --git a/static/esquemadorg.js b/static/esquemadorg.js new file mode 100644 index 0000000..3865509 --- /dev/null +++ b/static/esquemadorg.js @@ -0,0 +1,271 @@ +// Adapted from: +// +// esquemadorg.js +// +// m3.2010 Daniel Clemente Laboreo. http://www.danielclemente.com/ +// +// Initially based on org-info-jq from Sebastian Rose (2009): http://github.com/SebastianRose/org-info-js/blob/master/org-info-jq.js +// +// Released under the GNU General Public License version 3 +// see: http://www.gnu.org/licenses/ +// + + +var HOW_TO_HIDE = 'hide'; + +function isHideable(div_obj) { + try { + // Ignore for TOC since it is handled differently + if (div_obj.id == "text-table-of-contents") return false; + if (div_obj.id == "table-of-contents") return false; + // No point in hiding top level + if (div_obj.classList.contains("outline-2")) return false; + if (div_obj.classList.contains("outline-text-2")) return false; + } catch (e) { + console.log(div_obj) + console.log(e) + } + + return true +} + +function scrollSmoothlyToObj(obj,id) { + // This line comes from: *** Anchor Slider by Cedric Dugas *** Http://www.position-absolute.com *** Thanks! + $("html:not(:animated),body:not(:animated)").animate({ scrollTop: obj.offset().top}, 1100, function() { + window.location.hash = id; + }); +} + +function focusSection(id_anchor){ + // anchor: the id (text, without '#') of the h2/h3/h4/h5/h6/h7 which is to be made visible (together with its parents). The page will also scroll to focus that section + + var anchor1='#'+id_anchor; + var anchor2='*[id=' + id_anchor + ']'; // this is equivalent to $("#id"), which strangely seems not to work + var obj_anchor=$(anchor2); + + // Remove any other highlighted section which was the target of a previous link. + // It does nothing if it's the first click + $("div.orgjq-targeted").removeClass("orgjq-targeted"); + // Now highlight the target section and its parents. You may Use .css("background","orange") to test + obj_anchor.parents("div.orgjq-contracted").addClass("orgjq-targeted"); + // Expand its parents so that the target section is connected to the root of the tree + obj_anchor.parents("div.orgjq-contracted").each( + function() { + $(this).removeClass("orgjq-contracted").addClass("orgjq-expanded"); + $(this).children("div").show(); + } + ); + // move the browser focus to that section + scrollSmoothlyToObj(obj_anchor,anchor1); +} + + +function hideForOrg_whenclicked(div_obj) { + if (!isHideable(div_obj[0])) return; + + div_obj.parent().removeClass("orgjq-expanded").addClass("orgjq-contracted"); + if(HOW_TO_HIDE=='hide'){ + div_obj.nextAll().hide("fast"); // "normal" es más lento + div_obj.hide(); + } else if(HOW_TO_HIDE=='shrink'){ + //div_obj.css("zoom","0.25"); + // div_obj.nextAll().css("zoom","0.25"); + div_obj.css("font-size","50%"); + div_obj.nextAll().css("font-size","50%"); + } else if(HOW_TO_HIDE=='opacity'){ + div_obj.css("opacity","0.5"); + div_obj.nextAll().css("opacity","0.5"); + } else if(HOW_TO_HIDE=='scrollbar'){ + div_obj.parent().css({"height":"100px","overflow-y":"auto","opacity":"0.3"}); + } else { + console.error("Not impl."); + } + +} +function showForOrg_whenclicked(div_obj) { + div_obj.parent().removeClass("orgjq-contracted").addClass("orgjq-expanded"); + if(HOW_TO_HIDE=='hide'){ + div_obj.parents().show("normal"); + div_obj.nextAll().show("normal");div_obj.show(); + } else if(HOW_TO_HIDE=='shrink'){ + //div_obj.css("zoom","1"); + // div_obj.nextAll().css("zoom","1"); + div_obj.css("font-size","100%"); + div_obj.nextAll().css("font-size","100%"); + } else if(HOW_TO_HIDE=='opacity'){ + div_obj.css("opacity","1"); + div_obj.nextAll().css("opacity","1"); + } else if(HOW_TO_HIDE=='scrollbar'){ + div_obj.parents().css({"height":"auto","min-height":"100px","overflow-y":"inherit","opacity":"1"}); + } else { + console.error("Not impl."); + } +} +function toggleForOrg_whenclicked(div_obj) { + if(div_obj.parent().hasClass("orgjq-expanded")) + hideForOrg_whenclicked(div_obj); + else + showForOrg_whenclicked(div_obj); +} + +// faster methods than calling the individual methods in a loop +function close_all_sections() { + //$('.orgjq-expanded').removeClass("orgjq-expanded").addClass("orgjq-contracted"); + + for(var i=2;i<=7;++i) { + let divs = $(".outline-text-"+i) + divs.each(idx => { + if (isHideable(divs[idx])) { + $("#" + divs[idx].id).parent().removeClass("orgjs-expanded").addClass("orgjq-contracted"); + $("#" + divs[idx].id).hide() + } + }) + } + + // inside the h2 headers, all (now unseen) headers are also contracted + for(var i=2;i<=7;++i) { + $("h"+i).each( + function(){ + if (isHideable($(this).parent()[0])) { + $(this).parent().removeClass("orgjq-expanded").addClass("orgjq-contracted"); + $(this).next("div").nextAll().hide();$(this).next("div").hide(); + } + }); + } + +} +function open_all_sections() { + $('div#content .orgjq-contracted').not("#table-of-contents").removeClass("orgjq-contracted").addClass("orgjq-expanded"); + $('div#content').find(":hidden").not("#table-of-contents div").show(); +} + +function disable_global_outlining() { + // not really used anymore + + // affect only the main (first level) sections + var org= $("div#table-of-contents, div#content>div[id^='outline-container-']"); + //test: org.css({border: "2px solid red"}); + + // show everything (all sections, …) + org.find(":hidden").show(); + + // remove classes and thus colors + $(".orgjq-contracted").removeClass("orgjq-contracted"); + $(".orgjq-expanded").removeClass("orgjq-expanded"); + $(".orgjq-targeted").removeClass("orgjq-targeted"); + + // headers are not clickable + org.find("h1,h2,h3,h4,h5,h6,h7").css({cursor: "default"}).unbind("click"); + // links to sections no longer highlight the target + $("a[href^='#']").unbind('click'); + // hide expand link + $("div#outline-container-1 >h2 >a.expandAll").remove(); + + + // information + alert("He cambiado al estilo tradicional: todo seguido. Si quieres volver a usar el esquemado con cabeceras clicables, recarga la página"); +} + +function enable_global_outlining() { + // Called once e.g. the first time the page is loaded + + // handle the click event for each header + for(var i=2;i<=7;++i) { + $("h"+i).each( + function(){ + $(this).css({cursor: "pointer"}); + $(this).bind('click', function(){ toggleForOrg_whenclicked( $(this).parent().children("div").eq(0) ); }); + }); + } + + /* + // add link to deactive outlining. I wanted 2 links, „expand all“ and „contract all“, but the second one isn't of much use (and reloading the page does the same) + // otros posibles nombres: "(expandir completamente)" + var expAll_link = $( document.createElement('a') ).text("(ver todo seguido, sin esquemado)").addClass("expandAll").click(disable_global_outlining); + $( $("div.outline-2")[0] ).find(">h2") .append(expAll_link); + */ + + + /* + // start with contracted TOC and headers ← m5.2017: disabled because it has a huge penalty towards Google (hidden content won't be indexed) + + if(HOW_TO_HIDE=='hide'){ + $("#text-table-of-contents").hide(); + } else { + console.error("Not impl."); + } + for(var i=2;i<=7;++i) { + $(".outline-text-"+i).parent().addClass("orgjq-contracted"); + if(HOW_TO_HIDE=='hide'){ + ///// $(".outline-text-"+i).hide(); + $(".outline-text-"+i).hide(); + } else if(HOW_TO_HIDE=='scrollbar'){ + //$(".outline-text-"+i).css({"height":"100px","overflow-y":"auto","opacity":"0.3"}); + // $(".outline-text-"+i).parent().css({"height":"100px","overflow-y":"auto","opacity":"0.3"}); + // console.error("nada"); + } else { + console.error("Not impl."); + } + } + + // inside the h2 headers, all (now unseen) headers are also contracted + for(var i=2;i<=7;++i) { + $("h"+i).each( + function(){ + $(this).parent().removeClass("orgjq-expanded").addClass("orgjq-contracted"); + if(HOW_TO_HIDE=='hide'){ + $(this).next("div").nextAll().hide();$(this).next("div").hide(); + } else if(HOW_TO_HIDE=='scrollbar'){ + // $(this).next("div").nextAll().css({"height":"100px","overflow-y":"auto","opacity":"0.3"}); + $(this).next("div").nextAll().css({"height":"100px","overflow-y":"auto","opacity":"0.3"}); + // console.error("nada2."); + } else { + console.error("Not impl."); + } + + }); + } + */ + + // alternatively: mark everything as open + for(var i=2;i<=7;++i) { + $("h"+i).each( + function(){ + $(this).parent().removeClass("orgjq-contracted").addClass("orgjq-expanded"); + }); + } + // except TOC + $("div#table-of-contents").removeClass("orgjq-expanded").addClass("orgjq-contracted"); + + + + // If provided #fragment in URL, we must locate and open the corresponding header and its parents + var url = document.location.toString(); + if (url.match('#')) { // the URL contains an anchor + var id_anchor = url.split('#')[1]; + focusSection(id_anchor); + } + + + // internal links to anchors, e.g. , should also expand the destination section before scrolling there + //Test: $("a[href^='#']").css("border","2px dotted red"); + $("a[href^='#']").each(function(){ + var caller=this; + $(caller).click(function (event) { + var href=$(caller).attr("href"); + var id_href=href.substr(1); + focusSection(id_href); + return false; + }); + + }); + + // the page is now ready to be used + +} + +// Code starts here + +$(document).ready(enable_global_outlining); + + diff --git a/static/fonts.css b/static/fonts.css new file mode 100644 index 0000000..d396a64 --- /dev/null +++ b/static/fonts.css @@ -0,0 +1,205 @@ +@font-face { + font-family: Libre Baskerville; + src: url('fonts/LibreBaskerville-Regular.ttf'); +} + +@font-face { + font-family: Cambria; + src: url('fonts/Cambria.ttf'); +} + + +@font-face { + font-family: 'Source Sans Pro'; + font-weight: 200; + font-style: normal; + src: url('fonts/SourceSansPro-ExtraLight.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Sans Pro'; + font-weight: 200; + font-style: italic; + src: url('fonts/SourceSansPro-ExtraLightItalic.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Sans Pro'; + font-weight: 300; + font-style: normal; + src: url('fonts/SourceSansPro-Light.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Sans Pro'; + font-weight: 300; + font-style: italic; + src: url('fonts/SourceSansPro-LightItalic.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Sans Pro'; + font-weight: 400; + font-style: normal; + src: url('fonts/SourceSansPro-Regular.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Sans Pro'; + font-weight: 400; + font-style: italic; + src: url('fonts/SourceSansPro-RegularItalic.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Sans Pro'; + font-weight: 600; + font-style: normal; + src: url('fonts/SourceSansPro-Semibold.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Sans Pro'; + font-weight: 600; + font-style: italic; + src: url('fonts/SourceSansPro-SemiboldItalic.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Sans Pro'; + font-weight: 700; + font-style: normal; + src: url('fonts/SourceSansPro-Bold.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Sans Pro'; + font-weight: 700; + font-style: italic; + src: url('fonts/SourceSansPro-BoldItalic.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Sans Pro'; + font-weight: 900; + font-style: normal; + src: url('fonts/SourceSansPro-Black.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Sans Pro'; + font-weight: 900; + font-style: italic; + src: url('fonts/SourceSansPro-BlackItalic.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} + + +@font-face { + font-family: 'Source Serif Pro'; + font-weight: 200; + font-style: normal; + src: url('fonts/SourceSerifPro-ExtraLight.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Serif Pro'; + font-weight: 200; + font-style: italic; + src: url('fonts/SourceSerifPro-ExtraLightItalic.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Serif Pro'; + font-weight: 300; + font-style: normal; + src: url('fonts/SourceSerifPro-Light.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Serif Pro'; + font-weight: 300; + font-style: italic; + src: url('fonts/SourceSerifPro-LightItalic.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Serif Pro'; + font-weight: 400; + font-style: normal; + src: url('fonts/SourceSerifPro-Regular.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Serif Pro'; + font-weight: 400; + font-style: italic; + src: url('fonts/SourceSerifPro-Italic.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Serif Pro'; + font-weight: 600; + font-style: normal; + src: url('fonts/SourceSerifPro-Semibold.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Serif Pro'; + font-weight: 600; + font-style: italic; + src: url('fonts/SourceSerifPro-SemiboldItalic.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Serif Pro'; + font-weight: 700; + font-style: normal; + src: url('fonts/SourceSerifPro-Bold.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Serif Pro'; + font-weight: 700; + font-style: italic; + src: url('fonts/SourceSerifPro-BoldItalic.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Serif Pro'; + font-weight: 900; + font-style: normal; + src: url('fonts/SourceSerifPro-Black.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} +@font-face { + font-family: 'Source Serif Pro'; + font-weight: 900; + font-style: italic; + src: url('fonts/SourceSerifPro-BlackItalic.ttf') format('truetype'); + font-display: swap; + unicode-range: U+0020-007E, U+00A0-00FF, U+2010, U+2013-2014, U+2018-2019, U+201C-201D, U+2212; +} diff --git a/static/fonts/Cambria-Font-For Android.ttf b/static/fonts/Cambria-Font-For Android.ttf new file mode 100644 index 0000000..ab88fb4 Binary files /dev/null and b/static/fonts/Cambria-Font-For Android.ttf differ diff --git a/static/fonts/Cambria-Font-For-Linux.ttf b/static/fonts/Cambria-Font-For-Linux.ttf new file mode 100644 index 0000000..ab88fb4 Binary files /dev/null and b/static/fonts/Cambria-Font-For-Linux.ttf differ diff --git a/static/fonts/Cambria-Font-For-MAC.ttf b/static/fonts/Cambria-Font-For-MAC.ttf new file mode 100644 index 0000000..ab88fb4 Binary files /dev/null and b/static/fonts/Cambria-Font-For-MAC.ttf differ diff --git a/static/fonts/Cambria.ttf b/static/fonts/Cambria.ttf new file mode 100644 index 0000000..ab88fb4 Binary files /dev/null and b/static/fonts/Cambria.ttf differ diff --git a/static/fonts/LibreBaskerville-Bold.ttf b/static/fonts/LibreBaskerville-Bold.ttf new file mode 100644 index 0000000..f415f3e Binary files /dev/null and b/static/fonts/LibreBaskerville-Bold.ttf differ diff --git a/static/fonts/LibreBaskerville-Italic.ttf b/static/fonts/LibreBaskerville-Italic.ttf new file mode 100644 index 0000000..152c1e3 Binary files /dev/null and b/static/fonts/LibreBaskerville-Italic.ttf differ diff --git a/static/fonts/LibreBaskerville-Regular.ttf b/static/fonts/LibreBaskerville-Regular.ttf new file mode 100644 index 0000000..8b87139 Binary files /dev/null and b/static/fonts/LibreBaskerville-Regular.ttf differ diff --git a/static/fonts/SourceSansPro-Black.ttf b/static/fonts/SourceSansPro-Black.ttf new file mode 100644 index 0000000..1c93e9e Binary files /dev/null and b/static/fonts/SourceSansPro-Black.ttf differ diff --git a/static/fonts/SourceSansPro-BlackItalic.ttf b/static/fonts/SourceSansPro-BlackItalic.ttf new file mode 100644 index 0000000..928aa37 Binary files /dev/null and b/static/fonts/SourceSansPro-BlackItalic.ttf differ diff --git a/static/fonts/SourceSansPro-Bold.ttf b/static/fonts/SourceSansPro-Bold.ttf new file mode 100644 index 0000000..b8879af Binary files /dev/null and b/static/fonts/SourceSansPro-Bold.ttf differ diff --git a/static/fonts/SourceSansPro-BoldItalic.ttf b/static/fonts/SourceSansPro-BoldItalic.ttf new file mode 100644 index 0000000..b38bae9 Binary files /dev/null and b/static/fonts/SourceSansPro-BoldItalic.ttf differ diff --git a/static/fonts/SourceSansPro-ExtraLight.ttf b/static/fonts/SourceSansPro-ExtraLight.ttf new file mode 100644 index 0000000..8074e3a Binary files /dev/null and b/static/fonts/SourceSansPro-ExtraLight.ttf differ diff --git a/static/fonts/SourceSansPro-ExtraLightItalic.ttf b/static/fonts/SourceSansPro-ExtraLightItalic.ttf new file mode 100644 index 0000000..db759e0 Binary files /dev/null and b/static/fonts/SourceSansPro-ExtraLightItalic.ttf differ diff --git a/static/fonts/SourceSansPro-Italic.ttf b/static/fonts/SourceSansPro-Italic.ttf new file mode 100644 index 0000000..7dbece7 Binary files /dev/null and b/static/fonts/SourceSansPro-Italic.ttf differ diff --git a/static/fonts/SourceSansPro-Light.ttf b/static/fonts/SourceSansPro-Light.ttf new file mode 100644 index 0000000..9b0e83d Binary files /dev/null and b/static/fonts/SourceSansPro-Light.ttf differ diff --git a/static/fonts/SourceSansPro-LightItalic.ttf b/static/fonts/SourceSansPro-LightItalic.ttf new file mode 100644 index 0000000..5af0659 Binary files /dev/null and b/static/fonts/SourceSansPro-LightItalic.ttf differ diff --git a/static/fonts/SourceSansPro-Regular.ttf b/static/fonts/SourceSansPro-Regular.ttf new file mode 100644 index 0000000..98e8579 Binary files /dev/null and b/static/fonts/SourceSansPro-Regular.ttf differ diff --git a/static/fonts/SourceSansPro-SemiBold.ttf b/static/fonts/SourceSansPro-SemiBold.ttf new file mode 100644 index 0000000..99dcc81 Binary files /dev/null and b/static/fonts/SourceSansPro-SemiBold.ttf differ diff --git a/static/fonts/SourceSansPro-SemiBoldItalic.ttf b/static/fonts/SourceSansPro-SemiBoldItalic.ttf new file mode 100644 index 0000000..9c3891b Binary files /dev/null and b/static/fonts/SourceSansPro-SemiBoldItalic.ttf differ diff --git a/static/fonts/SourceSerifPro-Black.ttf b/static/fonts/SourceSerifPro-Black.ttf new file mode 100644 index 0000000..f7b483c Binary files /dev/null and b/static/fonts/SourceSerifPro-Black.ttf differ diff --git a/static/fonts/SourceSerifPro-BlackItalic.ttf b/static/fonts/SourceSerifPro-BlackItalic.ttf new file mode 100644 index 0000000..ff6397a Binary files /dev/null and b/static/fonts/SourceSerifPro-BlackItalic.ttf differ diff --git a/static/fonts/SourceSerifPro-Bold.ttf b/static/fonts/SourceSerifPro-Bold.ttf new file mode 100644 index 0000000..47e7d80 Binary files /dev/null and b/static/fonts/SourceSerifPro-Bold.ttf differ diff --git a/static/fonts/SourceSerifPro-BoldItalic.ttf b/static/fonts/SourceSerifPro-BoldItalic.ttf new file mode 100644 index 0000000..1461f4a Binary files /dev/null and b/static/fonts/SourceSerifPro-BoldItalic.ttf differ diff --git a/static/fonts/SourceSerifPro-ExtraLight.ttf b/static/fonts/SourceSerifPro-ExtraLight.ttf new file mode 100644 index 0000000..0255e81 Binary files /dev/null and b/static/fonts/SourceSerifPro-ExtraLight.ttf differ diff --git a/static/fonts/SourceSerifPro-ExtraLightItalic.ttf b/static/fonts/SourceSerifPro-ExtraLightItalic.ttf new file mode 100644 index 0000000..d1bde71 Binary files /dev/null and b/static/fonts/SourceSerifPro-ExtraLightItalic.ttf differ diff --git a/static/fonts/SourceSerifPro-Italic.ttf b/static/fonts/SourceSerifPro-Italic.ttf new file mode 100644 index 0000000..4baaf1d Binary files /dev/null and b/static/fonts/SourceSerifPro-Italic.ttf differ diff --git a/static/fonts/SourceSerifPro-Light.ttf b/static/fonts/SourceSerifPro-Light.ttf new file mode 100644 index 0000000..5405cc0 Binary files /dev/null and b/static/fonts/SourceSerifPro-Light.ttf differ diff --git a/static/fonts/SourceSerifPro-LightItalic.ttf b/static/fonts/SourceSerifPro-LightItalic.ttf new file mode 100644 index 0000000..b202bd5 Binary files /dev/null and b/static/fonts/SourceSerifPro-LightItalic.ttf differ diff --git a/static/fonts/SourceSerifPro-Regular.ttf b/static/fonts/SourceSerifPro-Regular.ttf new file mode 100644 index 0000000..5c593b9 Binary files /dev/null and b/static/fonts/SourceSerifPro-Regular.ttf differ diff --git a/static/fonts/SourceSerifPro-SemiBold.ttf b/static/fonts/SourceSerifPro-SemiBold.ttf new file mode 100644 index 0000000..f0776c7 Binary files /dev/null and b/static/fonts/SourceSerifPro-SemiBold.ttf differ diff --git a/static/fonts/SourceSerifPro-SemiBoldItalic.ttf b/static/fonts/SourceSerifPro-SemiBoldItalic.ttf new file mode 100644 index 0000000..040e7fc Binary files /dev/null and b/static/fonts/SourceSerifPro-SemiBoldItalic.ttf differ diff --git a/static/jquery-3.6.4.slim.min.js b/static/jquery-3.6.4.slim.min.js new file mode 100644 index 0000000..aead5d2 --- /dev/null +++ b/static/jquery-3.6.4.slim.min.js @@ -0,0 +1,2 @@ +/*! jQuery v3.6.4 -ajax,-ajax/jsonp,-ajax/load,-ajax/script,-ajax/var/location,-ajax/var/nonce,-ajax/var/rquery,-ajax/xhr,-manipulation/_evalUrl,-deprecated/ajax-event-alias,-effects,-effects/animatedSelector,-effects/Tween | (c) OpenJS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(g,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,v=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,y=n.hasOwnProperty,a=y.toString,l=a.call(Object),m={},b=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},x=function(e){return null!=e&&e===e.window},w=g.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function C(e,t,n){var r,i,o=(n=n||w).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function T(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.6.4 -ajax,-ajax/jsonp,-ajax/load,-ajax/script,-ajax/var/location,-ajax/var/nonce,-ajax/var/rquery,-ajax/xhr,-manipulation/_evalUrl,-deprecated/ajax-event-alias,-effects,-effects/animatedSelector,-effects/Tween",E=function(e,t){return new E.fn.init(e,t)};function d(e){var t=!!e&&"length"in e&&e.length,n=T(e);return!b(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+R+")"+R+"*"),U=new RegExp(R+"|>"),V=new RegExp(W),X=new RegExp("^"+B+"$"),Q={ID:new RegExp("^#("+B+")"),CLASS:new RegExp("^\\.("+B+")"),TAG:new RegExp("^("+B+"|[*])"),ATTR:new RegExp("^"+M),PSEUDO:new RegExp("^"+W),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+R+"*(even|odd|(([+-]|)(\\d*)n|)"+R+"*(?:([+-]|)"+R+"*(\\d+)|))"+R+"*\\)|)","i"),bool:new RegExp("^(?:"+I+")$","i"),needsContext:new RegExp("^"+R+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+R+"*((?:-\\d)?\\d*)"+R+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,G=/^(?:input|select|textarea|button)$/i,K=/^h\d$/i,J=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+R+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){C()},ae=xe(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{O.apply(t=P.call(d.childNodes),d.childNodes),t[d.childNodes.length].nodeType}catch(e){O={apply:t.length?function(e,t){q.apply(e,P.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,d=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==d&&9!==d&&11!==d)return n;if(!r&&(C(e),e=e||T,E)){if(11!==d&&(u=Z.exec(t)))if(i=u[1]){if(9===d){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return O.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&p.getElementsByClassName&&e.getElementsByClassName)return O.apply(n,e.getElementsByClassName(i)),n}if(p.qsa&&!k[t+" "]&&(!v||!v.test(t))&&(1!==d||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===d&&(U.test(t)||_.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&p.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=A)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+be(l[o]);c=l.join(",")}try{return O.apply(n,f.querySelectorAll(c)),n}catch(e){k(t,!0)}finally{s===A&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>x.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[A]=!0,e}function ce(e){var t=T.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)x.attrHandle[n[r]]=t}function de(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function pe(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in p=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},C=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:d;return r!=T&&9===r.nodeType&&r.documentElement&&(a=(T=r).documentElement,E=!i(T),d!=T&&(n=T.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),p.scope=ce(function(e){return a.appendChild(e).appendChild(T.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),p.cssHas=ce(function(){try{return T.querySelector(":has(*,:jqfake)"),!1}catch(e){return!0}}),p.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),p.getElementsByTagName=ce(function(e){return e.appendChild(T.createComment("")),!e.getElementsByTagName("*").length}),p.getElementsByClassName=J.test(T.getElementsByClassName),p.getById=ce(function(e){return a.appendChild(e).id=A,!T.getElementsByName||!T.getElementsByName(A).length}),p.getById?(x.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},x.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(x.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},x.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),x.find.TAG=p.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):p.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},x.find.CLASS=p.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(p.qsa=J.test(T.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+R+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+R+"*(?:value|"+I+")"),e.querySelectorAll("[id~="+A+"-]").length||v.push("~="),(t=T.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+R+"*name"+R+"*="+R+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+A+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=T.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+R+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(p.matchesSelector=J.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){p.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",W)}),p.cssHas||v.push(":has"),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=J.test(a.compareDocumentPosition),y=t||J.test(a.contains)?function(e,t){var n=9===e.nodeType&&e.documentElement||e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!p.sortDetached&&t.compareDocumentPosition(e)===n?e==T||e.ownerDocument==d&&y(d,e)?-1:t==T||t.ownerDocument==d&&y(d,t)?1:u?H(u,e)-H(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==T?-1:t==T?1:i?-1:o?1:u?H(u,e)-H(u,t):0;if(i===o)return de(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?de(a[r],s[r]):a[r]==d?-1:s[r]==d?1:0}),T},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(C(e),p.matchesSelector&&E&&!k[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||p.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){k(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return Q.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&V.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+R+")"+e+"("+R+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function D(e,n,r){return b(n)?E.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?E.grep(e,function(e){return e===n!==r}):"string"!=typeof n?E.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(E.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||L,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:j.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof E?t[0]:t,E.merge(this,E.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:w,!0)),k.test(r[1])&&E.isPlainObject(t))for(r in t)b(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=w.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):b(e)?void 0!==n.ready?n.ready(e):e(E):E.makeArray(e,this)}).prototype=E.fn,L=E(w);var q=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};function P(e,t){while((e=e[t])&&1!==e.nodeType);return e}E.fn.extend({has:function(e){var t=E(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,pe=/^$|^module$|\/(?:java|ecma)script/i;le=w.createDocumentFragment().appendChild(w.createElement("div")),(ce=w.createElement("input")).setAttribute("type","radio"),ce.setAttribute("checked","checked"),ce.setAttribute("name","t"),le.appendChild(ce),m.checkClone=le.cloneNode(!0).cloneNode(!0).lastChild.checked,le.innerHTML="",m.noCloneChecked=!!le.cloneNode(!0).lastChild.defaultValue,le.innerHTML="",m.option=!!le.lastChild;var he={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ge(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&S(e,t)?E.merge([e],n):n}function ve(e,t){for(var n=0,r=e.length;n",""]);var ye=/<|&#?\w+;/;function me(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),d=[],p=0,h=e.length;p\s*$/g;function ke(e,t){return S(e,"table")&&S(11!==t.nodeType?t:t.firstChild,"tr")&&E(e).children("tbody")[0]||e}function De(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Le(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function je(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n
",2===ft.childNodes.length),E.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(m.createHTMLDocument?((r=(t=w.implementation.createHTMLDocument("")).createElement("base")).href=w.location.href,t.head.appendChild(r)):t=w),o=!n&&[],(i=k.exec(e))?[t.createElement(i[1])]:(i=me([e],t,o),o&&o.length&&E(o).remove(),E.merge([],i.childNodes)));var r,i,o},E.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=E.css(e,"position"),c=E(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=E.css(e,"top"),u=E.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),b(t)&&(t=t.call(e,n,E.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},E.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){E.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===E.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===E.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=E(e).offset()).top+=E.css(e,"borderTopWidth",!0),i.left+=E.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-E.css(r,"marginTop",!0),left:t.left-i.left-E.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===E.css(e,"position"))e=e.offsetParent;return e||re})}}),E.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;E.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),E.each(["top","left"],function(e,n){E.cssHooks[n]=$e(m.pixelPosition,function(e,t){if(t)return t=Fe(e,n),Pe.test(t)?E(e).position()[n]+"px":t})}),E.each({Height:"height",Width:"width"},function(a,s){E.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){E.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?E.css(e,t,i):E.style(e,t,n,i)},s,n?e:void 0,n)}})}),E.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),E.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){E.fn[n]=function(e,t){return 0