diff --git a/application/assets/css/main.css b/application/assets/css/main.css index b48323a..480ed1e 100644 --- a/application/assets/css/main.css +++ b/application/assets/css/main.css @@ -319,7 +319,7 @@ article { font-size: 0.7rem; border: 2px solid black; border-radius: 8px; - padding: 3px; + padding: 5px; line-height: 0.4rem; } diff --git a/application/assets/js/helper.js b/application/assets/js/helper.js index 1288e68..776e407 100644 --- a/application/assets/js/helper.js +++ b/application/assets/js/helper.js @@ -19,8 +19,8 @@ export let setTabindex = () => { export let load_ads = function () { getKaiAd({ publisher: "4408b6fa-4e1d-438f-af4d-f3be2fa97208", - app: "flop", - slot: "flop", + app: "feedolin", + slot: "feedolin", test: 0, timeout: 10000, h: 120, diff --git a/application/index.js b/application/index.js index f7d61f3..33684fe 100644 --- a/application/index.js +++ b/application/index.js @@ -15,7 +15,6 @@ import { mastodon_account_info, reblog } from "./assets/js/mastodon.js"; import localforage from "localforage"; import { detectMobileOS } from "./assets/js/helper.js"; import m from "mithril"; -import { v4 as uuidv4 } from "uuid"; import * as sanitizeHtml from "sanitize-html"; import dayjs from "dayjs"; import duration from "dayjs/plugin/duration"; @@ -79,6 +78,8 @@ let default_settings = { "proxy_url": "https://corsproxy.io/?", "cache_time": 1000, }; +//store all articles id to compare +let articlesID = []; export let settings = {}; let channels = []; @@ -324,6 +325,12 @@ let clean = (i) => { }); }; +let raw = (i) => { + return sanitizeHtml(i, { + allowedTags: [], + allowedAttributes: {}, + }); +}; const fetchOPML = async (url) => { try { const uniqueUrl = `${url}?t=${new Date().getTime()}`; @@ -430,7 +437,6 @@ const fetchContent = async (feed_download_list) => { localforage .setItem("articles", articles) .then(() => { - console.log("feeds cached"); articles.sort((a, b) => new Date(b.isoDate) - new Date(a.isoDate)); articles.forEach((e) => { @@ -736,6 +742,7 @@ let load_mastodon = () => { articles.push(f); }); channels.push("Mastodon"); + side_toaster("Logged in as " + status.mastodon_logged, 4000); }); }; @@ -750,10 +757,9 @@ let start_loading = () => { .then((f) => { status.mastodon_logged = f.display_name; load_mastodon(); + setTimeout(() => {}, 5000); }) - .catch((e) => { - alert(e); - }); + .catch((e) => {}); } channel_filter = localStorage.getItem("last_channel_filter"); @@ -940,6 +946,10 @@ var start = { (h) => channel_filter === "" || channel_filter === h.channel ); + articles.forEach((e) => { + articlesID.push(e.id); + }); + return m( "div", { @@ -1026,6 +1036,9 @@ var start = { clean(h.feed_title) ), m("h3", clean(h.title)), + h.type == "mastodon" + ? m("h3", raw(h.content.substring(0, 30)) + "...") + : null, ] ); }) @@ -1451,7 +1464,7 @@ try { } // Function to play and update audio -let playedAudio = async (url, time) => { +let playedAudio = async (url, time, id) => { const index = hasPlayedAudio.findIndex((e) => e.url === url); if (index !== -1) { @@ -1459,13 +1472,17 @@ let playedAudio = async (url, time) => { hasPlayedAudio[index].time = time; } else { // If the URL does not exist, push a new object - hasPlayedAudio.push({ url, time }); + hasPlayedAudio.push({ url, time, id }); } + clean_hasPlayedaudio(); + // Save the updated hasPlayedAudio array to localforage - localforage.setItem("hasPlayedAudio", hasPlayedAudio).then(() => { - console.log(hasPlayedAudio); - }); + localforage.setItem("hasPlayedAudio", hasPlayedAudio).then(() => {}); +}; + +let clean_hasPlayedaudio = () => { + hasPlayedAudio = hasPlayedAudio.filter((e) => articlesID.includes(e.id)); }; let startX = 0; // Initial X position @@ -1490,7 +1507,7 @@ const AudioPlayerView = { hasPlayedAudio.map((e) => { if (e.url === globalAudioElement.src) { - if (confirm("contiune playing ?") == true) { + if (confirm("continue playing ?") == true) { globalAudioElement.currentTime = e.time; } } @@ -1507,8 +1524,12 @@ const AudioPlayerView = { AudioPlayerView.currentTime = globalAudioElement.currentTime; //store audio url to contiune to play - playedAudio(globalAudioElement.src, globalAudioElement.currentTime); - + playedAudio( + globalAudioElement.src, + globalAudioElement.currentTime, + attrs.id + ); + status.player = true; m.redraw(); }; @@ -2513,7 +2534,7 @@ document.addEventListener("DOMContentLoaded", function (e) { m.route.set( `/AudioPlayerView?url=${encodeURIComponent( current_article.enclosure["@_url"] - )}` + )}&id=${current_article.id}` ); if (current_article.type == "video") @@ -2743,7 +2764,6 @@ try { //KaiOS3 handel mastodon oauth sw_channel.addEventListener("message", (event) => { let result = event.data.oauth_success; - console.log(result); if (result) { var myHeaders = new Headers(); diff --git a/application/manifest.webapp b/application/manifest.webapp index 5d27093..bb4dfce 100644 --- a/application/manifest.webapp +++ b/application/manifest.webapp @@ -1,5 +1,5 @@ { - "version": "2.0.7", + "version": "2.0.8", "name": "feedolin", "description": "Feedolin is an RSS / Atom / Mastodon reader and podcast player. It is intended for users who already use an rss reader client and want to read their feeds on a kaios device. the list of subscribed websites / podcasts is managed locally or online in an opml file.", "launch_path": "/index.html", diff --git a/application/manifest.webmanifest b/application/manifest.webmanifest index e52d740..831013e 100644 --- a/application/manifest.webmanifest +++ b/application/manifest.webmanifest @@ -1,14 +1,14 @@ { - "name": "Feedolin", - "id": "feedolin", - "description": "Feedolin is an RSS / Atom reader and podcast player. It is intended for users who already use an rss reader client and want to read their feeds on a kaios device. the list of subscribed websites / podcasts is managed locally or online in an opml file.", + "name": "Pictick", + "id": "Pictick", + "description": "PicTick is an app with which you can search for climbing areas and climbing routes. you can also ‘tick’ your routes to create an overview of the routes you have climbed. The data that is searched comes from openbeta.io a free climbing database..", "lang": "en-US", "start_url": "/index.html", - "short_name": "Feedolin", - "categories": ["News", "Social"], + "short_name": "Pictick", + "categories": ["Sport"], "display": "standalone", "theme_color": "#ffffff", - "userAgentInfo": "feedolin written by strukturart@gmail.com", + "userAgentInfo": "Pictick written by strukturart@gmail.com", "icons": [ { @@ -24,7 +24,7 @@ ], "b2g_features": { - "version": "1.8.112", + "version": "1.8.117", "id": "feedolin", "subtitle": "RSS Reader and Mastodon Reader", "core": true, diff --git a/application/sw.js b/application/sw.js index 66ec1db..4044e85 100644 --- a/application/sw.js +++ b/application/sw.js @@ -31,7 +31,7 @@ self.addEventListener("systemmessage", async (evt) => { const userAgent = navigator.userAgent || ""; if (userAgent && !userAgent.includes("KAIOS")) { - const CACHE_NAME = "pwa-cache-v0.1169"; + const CACHE_NAME = "pwa-cache-v0.1175"; const FILE_LIST_URL = "/file-list.json"; // URL of the JSON file containing the array of files self.addEventListener("install", (event) => { diff --git a/docs/index.339e55c4.js b/docs/index.339e55c4.js index af6a678..fd57cd3 100644 --- a/docs/index.339e55c4.js +++ b/docs/index.339e55c4.js @@ -1,4 +1,4 @@ -!function(){function e(e,t,r,n){Object.defineProperty(e,t,{get:r,set:n,enumerable:!0,configurable:!0})}function t(e){return e&&e.__esModule?e.default:e}var r,n,i,o,a,s,u,c,l,f,d,h,p,m,v,g,y,b,w,x,E,S,k,A,I,T,N,O,_,C,P,L,D,M,R,B,q,U,j,F,V,$,z,H,W,G,Y,K,Z,Q,J,X,ee,et,er,en,ei,eo,ea,es,eu,ec,el,ef,ed,eh,ep,em,ev,eg,ey,eb,ew,ex,eE,eS,ek,eA,eI,eT,eN,eO,e_,eC,eP,eL,eD,eM,eR,eB,eq,eU,ej,eF,eV="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:"undefined"!=typeof global?global:{},e$={},ez={},eH=eV.parcelRequire5393;null==eH&&((eH=function(e){if(e in e$)return e$[e].exports;if(e in ez){var t=ez[e];delete ez[e];var r={id:e,exports:{}};return e$[e]=r,t.call(r.exports,r,r.exports),r.exports}var n=Error("Cannot find module '"+e+"'");throw n.code="MODULE_NOT_FOUND",n}).register=function(e,t){ez[e]=t},eV.parcelRequire5393=eH);var eW=eH.register;function eG(e,t,r,n,i,o,a){try{var s=e[o](a),u=s.value}catch(e){r(e);return}s.done?t(u):Promise.resolve(u).then(n,i)}function eY(e){return function(){var t=this,r=arguments;return new Promise(function(n,i){var o=e.apply(t,r);function a(e){eG(o,n,i,a,s,"next",e)}function s(e){eG(o,n,i,a,s,"throw",e)}a(void 0)})}}function eK(e){function t(e){if(Object(e)!==e)return Promise.reject(TypeError(e+" is not an object."));var t=e.done;return Promise.resolve(e.value).then(function(e){return{value:e,done:t}})}return(eK=function(e){this.s=e,this.n=e.next}).prototype={s:null,n:null,next:function(){return t(this.n.apply(this.s,arguments))},return:function(e){var r=this.s.return;return void 0===r?Promise.resolve({value:e,done:!0}):t(r.apply(this.s,arguments))},throw:function(e){var r=this.s.return;return void 0===r?Promise.reject(e):t(r.apply(this.s,arguments))}},new eK(e)}eW("ilwPy",function(e,t){function r(e,t,r,n,i,o){return{tag:e,key:t,attrs:r,children:n,text:i,dom:o,domSize:void 0,state:void 0,events:void 0,instance:void 0}}r.normalize=function(e){return Array.isArray(e)?r("[",void 0,void 0,r.normalizeChildren(e),void 0,void 0):null==e||"boolean"==typeof e?null:"object"==typeof e?e:r("#",void 0,void 0,String(e),void 0,void 0)},r.normalizeChildren=function(e){var t=[];if(e.length){for(var n=null!=e[0]&&null!=e[0].key,i=1;i'+t.children+"",a=a.firstChild):a.innerHTML=t.children,t.dom=a.firstChild,t.domSize=a.childNodes.length;for(var u=s(e).createDocumentFragment();i=a.firstChild;)u.appendChild(i);x(e,u,n)}function v(e,t,r,n,i,o){if(t!==r&&(null!=t||null!=r)){if(null==t||0===t.length)d(e,r,0,r.length,n,i,o);else if(null==r||0===r.length)S(e,t,0,t.length);else{var a=null!=t[0]&&null!=t[0].key,s=null!=r[0]&&null!=r[0].key,u=0,c=0;if(!a)for(;c=c&&A>=u&&(m=t[E],v=r[A],m.key===v.key);)m!==v&&g(e,m,v,n,i,o),null!=v.dom&&(i=v.dom),E--,A--;for(;E>=c&&A>=u&&(f=t[c],p=r[u],f.key===p.key);)c++,u++,f!==p&&g(e,f,p,n,b(t,c,i),o);for(;E>=c&&A>=u&&u!==A&&f.key===v.key&&m.key===p.key;)w(e,m,x=b(t,c,i)),m!==p&&g(e,m,p,n,x,o),++u<=--A&&w(e,f,i),f!==v&&g(e,f,v,n,i,o),null!=v.dom&&(i=v.dom),c++,m=t[--E],v=r[A],f=t[c],p=r[u];for(;E>=c&&A>=u&&m.key===v.key;)m!==v&&g(e,m,v,n,i,o),null!=v.dom&&(i=v.dom),E--,A--,m=t[E],v=r[A];if(u>A)S(e,t,c,E+1);else if(c>E)d(e,r,u,A+1,n,i,o);else{var l,I,T=i,N=A-u+1,O=Array(N),_=0,C=0,P=0x7fffffff,L=0;for(C=0;C=u;C--){null==l&&(l=function(e,t,r){for(var n=Object.create(null);t>>1)+(n>>>1)+(r&n&1);e[t[s]]0&&(y[i]=t[r-1]),t[r]=i)}for(r=t.length,n=t[r-1];r-- >0;)t[r]=n,n=y[n];return y.length=0,t}(O)).length-1,C=A;C>=u;C--)p=r[C],-1===O[C-u]?h(e,p,n,o,i):I[_]===C-u?_--:w(e,p,i),null!=p.dom&&(i=r[C].dom);else for(C=A;C>=u;C--)p=r[C],-1===O[C-u]&&h(e,p,n,o,i),null!=p.dom&&(i=r[C].dom)}}else{var M=t.lengthM&&S(e,t,u,t.length),r.length>M&&d(e,r,u,r.length,n,i,o)}}}}function g(e,t,n,i,o,a){var s,c,d=t.tag;if(d===n.tag){if(n.state=t.state,n.events=t.events,function(e,t){do{if(null!=e.attrs&&"function"==typeof e.attrs.onbeforeupdate){var r=l.call(e.attrs.onbeforeupdate,e,t);if(void 0!==r&&!r)break}if("string"!=typeof e.tag&&"function"==typeof e.state.onbeforeupdate){var r=l.call(e.state.onbeforeupdate,e,t);if(void 0!==r&&!r)break}return!1}while(!1)return e.dom=t.dom,e.domSize=t.domSize,e.instance=t.instance,e.attrs=t.attrs,e.children=t.children,e.text=t.text,!0}(n,t))return;if("string"==typeof d)switch(null!=n.attrs&&B(n.attrs,n,i),d){case"#":t.children.toString()!==n.children.toString()&&(t.dom.nodeValue=n.children),n.dom=t.dom;break;case"<":t.children!==n.children?(A(e,t,void 0),m(e,n,a,o)):(n.dom=t.dom,n.domSize=t.domSize);break;case"[":(function(e,t,r,n,i,o){v(e,t.children,r.children,n,i,o);var a=0,s=r.children;if(r.dom=null,null!=s){for(var u=0;u-1||null!=e.attrs&&e.attrs.is||"href"!==t&&"list"!==t&&"form"!==t&&"width"!==t&&"height"!==t)&&t in e.dom}var _=/[A-Z]/g;function C(e){return"-"+e.toLowerCase()}function P(e){return"-"===e[0]&&"-"===e[1]?e:"cssFloat"===e?"float":e.replace(_,C)}function L(e,t,r){if(t===r);else if(null==r)e.style="";else if("object"!=typeof r)e.style=r;else if(null==t||"object"!=typeof t)for(var n in e.style.cssText="",r){var i=r[n];null!=i&&e.style.setProperty(P(n),String(i))}else{for(var n in r){var i=r[n];null!=i&&(i=String(i))!==String(t[n])&&e.style.setProperty(P(n),i)}for(var n in t)null!=t[n]&&null==r[n]&&e.style.removeProperty(P(n))}}function D(){this._=e}function M(t,r,n){null!=t.events?(t.events._=e,t.events[r]!==n&&(null!=n&&("function"==typeof n||"object"==typeof n)?(null==t.events[r]&&t.dom.addEventListener(r.slice(2),t.events,!1),t.events[r]=n):(null!=t.events[r]&&t.dom.removeEventListener(r.slice(2),t.events,!1),t.events[r]=void 0))):null!=n&&("function"==typeof n||"object"==typeof n)&&(t.events=new D,t.dom.addEventListener(r.slice(2),t.events,!1),t.events[r]=n)}function R(e,t,r){"function"==typeof e.oninit&&l.call(e.oninit,t),"function"==typeof e.oncreate&&r.push(l.bind(e.oncreate,t))}function B(e,t,r){"function"==typeof e.onupdate&&r.push(l.bind(e.onupdate,t))}return D.prototype=Object.create(null),D.prototype.handleEvent=function(e){var t,r=this["on"+e.type];"function"==typeof r?t=r.call(e.currentTarget,e):"function"==typeof r.handleEvent&&r.handleEvent(e),this._&&!1!==e.redraw&&(0,this._)(),!1===t&&(e.preventDefault(),e.stopPropagation())},function(i,o,a){if(!i)throw TypeError("DOM element being rendered to does not exist.");if(null!=n&&i.contains(n))throw TypeError("Node is currently being rendered to and thus is locked.");var s=e,u=n,c=[],l=f(i),d=i.namespaceURI;n=i,e="function"==typeof a?a:void 0,t={};try{null==i.vnodes&&(i.textContent=""),o=r.normalizeChildren(Array.isArray(o)?o:[o]),v(i,i.vnodes,o,c,null,"http://www.w3.org/1999/xhtml"===d?void 0:d),i.vnodes=o,null!=l&&f(i)!==l&&"function"==typeof l.focus&&l.focus();for(var h=0;h1&&void 0!==u[1]?u[1]:{},i=e.dom,o=e.domSize,a=t.generation,!(null!=i))return[3,5];r.label=1;case 1:if(s=i.nextSibling,n.get(i)!==a)return[3,3];return[4,i];case 2:r.sent(),o--,r.label=3;case 3:i=s,r.label=4;case 4:if(o)return[3,1];r.label=5;case 5:return[2]}})}}}),eW("bgUiC",function(t,r){function n(e,t){var r,n,i,o={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]},a=Object.create(("function"==typeof Iterator?Iterator:Object).prototype);return a.next=s(0),a.throw=s(1),a.return=s(2),"function"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function s(s){return function(u){return function(s){if(r)throw TypeError("Generator is already executing.");for(;a&&(a=0,s[0]&&(o=0)),o;)try{if(r=1,n&&(i=2&s[0]?n.return:s[0]?n.throw||((i=n.return)&&i.call(n),0):n.next)&&!(i=i.call(n,s[1])).done)return i;switch(n=0,i&&(s=[2&s[0],i.value]),s[0]){case 0:case 1:i=s;break;case 4:return o.label++,{value:s[1],done:!1};case 5:o.label++,n=s[1],s=[0];continue;case 7:s=o.ops.pop(),o.trys.pop();continue;default:if(!(i=(i=o.trys).length>0&&i[i.length-1])&&(6===s[0]||2===s[0])){o=0;continue}if(3===s[0]&&(!i||s[1]>i[0]&&s[1]=e.length&&(e=void 0),{value:e&&e[n++],done:!e}}};throw TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")}e(t.exports,"__generator",function(){return n}),e(t.exports,"__values",function(){return i}),eH("2L7Ke"),"function"==typeof SuppressedError&&SuppressedError}),eW("2L7Ke",function(t,r){e(t.exports,"_",function(){return n});function n(e){return e&&"undefined"!=typeof Symbol&&e.constructor===Symbol?"symbol":typeof e}}),eW("8IMbs",function(e,t){var r=eH("ilwPy");e.exports=function(e,t,n){var i=[],o=!1,a=-1;function s(){for(a=0;a=0&&(i.splice(o,2),o<=a&&(a-=2),e(t,[])),null!=n&&(i.push(t,n),e(t,r(n),u))},redraw:u}}}),eW("ar5FS",function(e,t){var r=eH("gOSId"),n=eH("7KoNz");e.exports=function(e,t){function i(e){return new Promise(e)}function o(e,t){for(var r in e.headers)if(n.call(e.headers,r)&&r.toLowerCase()===t)return!0;return!1}return i.prototype=Promise.prototype,i.__proto__=Promise,{request:function(a,s){"string"!=typeof a?(s=a,a=a.url):null==s&&(s={});var u,c,l=(u=a,c=s,new Promise(function(t,i){u=r(u,c.params);var a,s=null!=c.method?c.method.toUpperCase():"GET",l=c.body,f=(null==c.serialize||c.serialize===JSON.serialize)&&!(l instanceof e.FormData||l instanceof e.URLSearchParams),d=c.responseType||("function"==typeof c.extract?"":"json"),h=new e.XMLHttpRequest,p=!1,m=!1,v=h,g=h.abort;for(var y in h.abort=function(){p=!0,g.call(this)},h.open(s,u,!1!==c.async,"string"==typeof c.user?c.user:void 0,"string"==typeof c.password?c.password:void 0),f&&null!=l&&!o(c,"content-type")&&h.setRequestHeader("Content-Type","application/json; charset=utf-8"),"function"==typeof c.deserialize||o(c,"accept")||h.setRequestHeader("Accept","application/json, text/*"),c.withCredentials&&(h.withCredentials=c.withCredentials),c.timeout&&(h.timeout=c.timeout),h.responseType=d,c.headers)n.call(c.headers,y)&&h.setRequestHeader(y,c.headers[y]);h.onreadystatechange=function(e){if(!p&&4===e.target.readyState)try{var r,n=e.target.status>=200&&e.target.status<300||304===e.target.status||/^file:\/\//i.test(u),o=e.target.response;if("json"===d){if(!e.target.responseType&&"function"!=typeof c.extract)try{o=JSON.parse(e.target.responseText)}catch(e){o=null}}else d&&"text"!==d||null!=o||(o=e.target.responseText);if("function"==typeof c.extract?(o=c.extract(e.target,c),n=!0):"function"==typeof c.deserialize&&(o=c.deserialize(o)),n){if("function"==typeof c.type){if(Array.isArray(o))for(var a=0;a=0&&(h+=e.slice(i,a)),l>=0&&(h+=(i<0?"?":"&")+c.slice(l,d));var p=r(u);return p&&(h+=(i<0&&l<0?"?":"&")+p),o>=0&&(h+=e.slice(o)),f>=0&&(h+=(o<0?"":"&")+c.slice(f)),h}}),eW("4L5Fm",function(e,t){e.exports=function(e){if("[object Object]"!==Object.prototype.toString.call(e))return"";var t=[];for(var r in e)(function e(r,n){if(Array.isArray(n))for(var i=0;i0&&(i.className=n.join(" ")),a[e]={tag:r,attrs:i}}(e),t):(t.tag=e,t)}}),eW("a26rS",function(e,t){var r=eH("goS5k");e.exports=function(e){var t=e.indexOf("?"),n=e.indexOf("#"),i=n<0?e.length:n,o=e.slice(0,t<0?i:t).replace(/\/{2,}/g,"/");return o?"/"!==o[0]&&(o="/"+o):o="/",{path:o,params:t<0?{}:r(e.slice(t+1,i))}}}),eW("goS5k",function(e,t){function r(e){try{return decodeURIComponent(e)}catch(t){return e}}e.exports=function(e){if(""===e||null==e)return{};"?"===e.charAt(0)&&(e=e.slice(1));for(var t=e.split("&"),n={},i={},o=0;o-1&&c.pop();for(var f=0;ft.indexOf(o)&&(i[o]=e[o]);else for(var o in e)r.call(e,o)&&!n.test(o)&&(i[o]=e[o]);return i}}),eW("bWx8M",function(e,t){Object.defineProperty(e.exports,"__esModule",{value:!0}),e.exports.default=new Uint16Array('ᵁ<Õıʊҝջאٵ۞ޢߖࠏ੊ઑඡ๭༉༦჊ረዡᐕᒝᓃᓟᔥ\0\0\0\0\0\0ᕫᛍᦍᰒᷝ὾⁠↰⊍⏀⏻⑂⠤⤒ⴈ⹈⿎〖㊺㘹㞬㣾㨨㩱㫠㬮ࠀEMabcfglmnoprstu\\bfms„‹•˜¦³¹ÈÏlig耻Æ䃆P耻&䀦cute耻Á䃁reve;䄂Āiyx}rc耻Â䃂;䐐r;쀀\ud835\udd04rave耻À䃀pha;䎑acr;䄀d;橓Āgp¡on;䄄f;쀀\ud835\udd38plyFunction;恡ing耻Å䃅Ācs¾Ãr;쀀\ud835\udc9cign;扔ilde耻Ã䃃ml耻Ä䃄ЀaceforsuåûþėĜĢħĪĀcrêòkslash;或Ŷöø;櫧ed;挆y;䐑ƀcrtąċĔause;戵noullis;愬a;䎒r;쀀\ud835\udd05pf;쀀\ud835\udd39eve;䋘còēmpeq;扎܀HOacdefhilorsuōőŖƀƞƢƵƷƺǜȕɳɸɾcy;䐧PY耻©䂩ƀcpyŝŢźute;䄆Ā;iŧŨ拒talDifferentialD;慅leys;愭ȀaeioƉƎƔƘron;䄌dil耻Ç䃇rc;䄈nint;戰ot;䄊ĀdnƧƭilla;䂸terDot;䂷òſi;䎧rcleȀDMPTLJNjǑǖot;抙inus;抖lus;投imes;抗oĀcsǢǸkwiseContourIntegral;戲eCurlyĀDQȃȏoubleQuote;思uote;怙ȀlnpuȞȨɇɕonĀ;eȥȦ户;橴ƀgitȯȶȺruent;扡nt;戯ourIntegral;戮ĀfrɌɎ;愂oduct;成nterClockwiseContourIntegral;戳oss;樯cr;쀀\ud835\udc9epĀ;Cʄʅ拓ap;才րDJSZacefiosʠʬʰʴʸˋ˗ˡ˦̳ҍĀ;oŹʥtrahd;椑cy;䐂cy;䐅cy;䐏ƀgrsʿ˄ˇger;怡r;憡hv;櫤Āayː˕ron;䄎;䐔lĀ;t˝˞戇a;䎔r;쀀\ud835\udd07Āaf˫̧Ācm˰̢riticalȀADGT̖̜̀̆cute;䂴oŴ̋̍;䋙bleAcute;䋝rave;䁠ilde;䋜ond;拄ferentialD;慆Ѱ̽\0\0\0͔͂\0Ѕf;쀀\ud835\udd3bƀ;DE͈͉͍䂨ot;惜qual;扐blèCDLRUVͣͲ΂ϏϢϸontourIntegraìȹoɴ͹\0\0ͻ»͉nArrow;懓Āeo·ΤftƀARTΐΖΡrrow;懐ightArrow;懔eåˊngĀLRΫτeftĀARγιrrow;柸ightArrow;柺ightArrow;柹ightĀATϘϞrrow;懒ee;抨pɁϩ\0\0ϯrrow;懑ownArrow;懕erticalBar;戥ǹABLRTaВЪаўѿͼrrowƀ;BUНОТ憓ar;椓pArrow;懵reve;䌑eft˒к\0ц\0ѐightVector;楐eeVector;楞ectorĀ;Bљњ憽ar;楖ightǔѧ\0ѱeeVector;楟ectorĀ;BѺѻ懁ar;楗eeĀ;A҆҇护rrow;憧ĀctҒҗr;쀀\ud835\udc9frok;䄐ࠀNTacdfglmopqstuxҽӀӄӋӞӢӧӮӵԡԯԶՒ՝ՠեG;䅊H耻Ð䃐cute耻É䃉ƀaiyӒӗӜron;䄚rc耻Ê䃊;䐭ot;䄖r;쀀\ud835\udd08rave耻È䃈ement;戈ĀapӺӾcr;䄒tyɓԆ\0\0ԒmallSquare;旻erySmallSquare;斫ĀgpԦԪon;䄘f;쀀\ud835\udd3csilon;䎕uĀaiԼՉlĀ;TՂՃ橵ilde;扂librium;懌Āci՗՚r;愰m;橳a;䎗ml耻Ë䃋Āipժկsts;戃onentialE;慇ʀcfiosօֈ֍ֲ׌y;䐤r;쀀\ud835\udd09lledɓ֗\0\0֣mallSquare;旼erySmallSquare;斪Ͱֺ\0ֿ\0\0ׄf;쀀\ud835\udd3dAll;戀riertrf;愱cò׋؀JTabcdfgorstר׬ׯ׺؀ؒؖ؛؝أ٬ٲcy;䐃耻>䀾mmaĀ;d׷׸䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀\ud835\udd0a;拙pf;쀀\ud835\udd3eeater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀\ud835\udca2;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇܎ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀\ud835\udd40a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ޷޼߂ߐĀiyޱ޵rc;䄴;䐙r;쀀\ud835\udd0dpf;쀀\ud835\udd41ǣ߇\0ߌr;쀀\ud835\udca5rcy;䐈kcy;䐄΀HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶߻dil;䄶;䐚r;쀀\ud835\udd0epf;쀀\ud835\udd42cr;쀀\ud835\udca6րJTaceflmostࠥࠩࠬࡐࡣ঳সে্਷ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗ࡜ࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४Ānrࢃ࢏gleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀\ud835\udd0fĀ;eঽা拘ftarrow;懚idot;䄿ƀnpw৔ਖਛgȀLRlr৞৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀\ud835\udd43erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼੝੠੷੼અઋ઎p;椅y;䐜Ādl੥੯iumSpace;恟lintrf;愳r;쀀\ud835\udd10nusPlus;戓pf;쀀\ud835\udd44cò੶;䎜ҀJacefostuણધભીଔଙඑ඗ඞcy;䐊cute;䅃ƀaey઴હાron;䅇dil;䅅;䐝ƀgswે૰଎ativeƀMTV૓૟૨ediumSpace;怋hiĀcn૦૘ë૙eryThiî૙tedĀGL૸ଆreaterGreateòٳessLesóੈLine;䀊r;쀀\ud835\udd11ȀBnptଢନଷ଺reak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪୼஡௫ఄ౞಄ದ೘ൡඅ櫬Āou୛୤ngruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊ஛ement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater΀;EFGLSTஶஷ஽௉௓௘௥扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲௽ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ೒拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨೹setĀ;E೰ೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀\ud835\udca9ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂ෉෕ෛ෠෧෼ขภยา฿ไlig;䅒cute耻Ó䃓Āiy෎ීrc耻Ô䃔;䐞blac;䅐r;쀀\ud835\udd12rave耻Ò䃒ƀaei෮ෲ෶cr;䅌ga;䎩cron;䎟pf;쀀\ud835\udd46enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀\ud835\udcaaash耻Ø䃘iŬื฼de耻Õ䃕es;樷ml耻Ö䃖erĀBP๋๠Āar๐๓r;怾acĀek๚๜;揞et;掴arenthesis;揜Ҁacfhilors๿ງຊຏຒດຝະ໼rtialD;戂y;䐟r;쀀\ud835\udd13i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ໠໤檻cedesȀ;EST່້໏໚扺qual;檯lantEqual;扼ilde;找me;怳Ādp໩໮uct;戏ortionĀ;aȥ໹l;戝Āci༁༆r;쀀\ud835\udcab;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀\ud835\udd14pf;愚cr;쀀\ud835\udcac؀BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁࿫࿳ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL࿜࿝࿡憒ar;懥eftArrow;懄eiling;按oǵ࿹\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀\ud835\udd16ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»࿝pArrow;憑gma;䎣allCircle;战pf;쀀\ud835\udd4aɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀\ud835\udcaear;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄ቉ቕ቞ቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHc቎ቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀\ud835\udd17Āeiቻ኉Dzኀ\0ኇefore;戴a;䎘Ācn኎ኘkSpace;쀀  Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀\ud835\udd4bipleDot;惛Āctዖዛr;쀀\ud835\udcafrok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0᏿ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0጖y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀\ud835\udd18rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻፿on;䅲f;쀀\ud835\udd4cЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀\ud835\udcb0ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀\ud835\udd19pf;쀀\ud835\udd4dcr;쀀\ud835\udcb1dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀\ud835\udd1apf;쀀\ud835\udd4ecr;쀀\ud835\udcb2Ȁfiosᓋᓐᓒᓘr;쀀\ud835\udd1b;䎞pf;쀀\ud835\udd4fcr;쀀\ud835\udcb3ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀\ud835\udd1cpf;쀀\ud835\udd50cr;쀀\ud835\udcb4ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtè૙a;䎖r;愨pf;愤cr;쀀\ud835\udcb5௡ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀\ud835\udd1erave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚΀;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀\ud835\udd52΀;Eaeiop዁ᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;e዁ᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀\ud835\udcb6;䀪mpĀ;e዁ᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰ᜼ᝃᝈ᝸᝽០៦ᠹᡐᜍ᤽᥈ᥰot;櫭Ācrᛶ᜞kȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e᜚᜛戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;t፜᜷brk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓ᝛ᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯ᝱ᝳ;䎲;愶een;扬r;쀀\ud835\udd1fg΀costuvwឍឝឳេ៕៛៞ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀako៭ᠦᠵĀcn៲ᠣkƀlst៺֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘᠝斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀\ud835\udd53Ā;tᏋᡣom»Ꮜtie;拈؀DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬ᣿ᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教΀;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ᣷᣹᣻᣽;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ᤟;敛;敘;攘;攔΀;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģ᥂bar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀\ud835\udcb7mi;恏mĀ;e᜚᜜lƀ;bhᥨᥩᥫ䁜;槅sub;柈Ŭᥴ᥾lĀ;e᥹᥺怢t»᥺pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭍᭒\0᯽\0ᰌƀcpr᦭ᦲ᧝ute;䄇̀;abcdsᦿᧀᧄ᧊᧕᧙戩nd;橄rcup;橉Āau᧏᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀\ud835\udd20ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r΀;Ecefms᩟᩠ᩢᩫ᪤᪪᪮旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖᪚᪟»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇᫔᫺\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ᫙\0\0᫢aĀ;t᫞᫟䀬;䁀ƀ;fl᫨᫩᫫戁îᅠeĀmx᫱᫶ent»᫩eóɍǧ᫾\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀\ud835\udd54oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀\ud835\udcb8Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯΀delprvw᭠᭬᭷ᮂᮬᯔ᯹arrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;p᭿ᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰸᰻᰿ᱝᱩᱵᲊᲞᲬᲷ᳻᳿ᴍᵻᶑᶫᶻ᷆᷍rò΁ar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀\ud835\udd21arĀlrᲳᲵ»ࣜ»သʀaegsv᳂͸᳖᳜᳠mƀ;oș᳊᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀\ud835\udd55ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀\ud835\udcb9;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄ὎὚ĀDoḆᴴoôᲉĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀\ud835\udd22ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀\ud835\udd56ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»Ṻƀaeiἒ἖Ἒls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀\ud835\udd23lig;耀filig;쀀fjƀaltῙ῜ῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀\ud835\udd57ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao‌⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧‪‬\0‮耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀\ud835\udcbbࢀEabcdefgijlnorstv₂₉₟₥₰₴⃰⃵⃺⃿℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕ₝ute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽⃉ƀ;qsؾٌ⃄lanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀\ud835\udd24Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀\ud835\udd58Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqr׮ⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0↎proø₞r;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀\ud835\udd25sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀\ud835\udd59bar;怕ƀclt≯≴≸r;쀀\ud835\udcbdasè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀\ud835\udd26rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀\ud835\udd5aa;䎹uest耻¿䂿Āci⎊⎏r;쀀\ud835\udcbenʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀\ud835\udd27ath;䈷pf;쀀\ud835\udd5bǣ⏬\0⏱r;쀀\ud835\udcbfrcy;䑘kcy;䑔Ѐacfghjos␋␖␢␧␭␱␵␻ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀\ud835\udd28reen;䄸cy;䑅cy;䑜pf;쀀\ud835\udd5ccr;쀀\ud835\udcc0஀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼rò৆òΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonó྘quigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀\ud835\udd29Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀\ud835\udd5dus;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d྘➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀\ud835\udcc1mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ᠛旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀\ud835\udd2ao;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀\ud835\udd5eĀct⣸⣽r;쀀\ud835\udcc2pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐௏쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop඄⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roø඄urĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓΀;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨í஘istĀ;s஠டr;쀀\ud835\udd2bȀEest௅⩦⩹⩼ƀ;qs஼⩭௡ƀ;qs஼௅⩴lanô௢ií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚΀AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs఻⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs఻⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀\ud835\udd5f膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast୻⭕⭚⭟lleì୻l;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖ΀chimpqu⮽⯍⯙⬄୸⯤⯯Ȁ;cerല⯆ഷ⯉uå൅;쀀\ud835\udcc3ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭å೸åഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñ೗Ā;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰⳴ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥ⵲ⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;c᪞ⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācr⵩⵭ir;榿;쀀\ud835\udd2cͯ⵹\0\0⵼\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕ⶘ⶥⶨrò᪀Āir⶝ⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀\ud835\udd60ƀaelⷔ⷗ǒr;榷rp;榹΀;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ⹞\0⹽\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ⹧⹲຅脀¶;l⹭⹮䂶leìЃɩ⹸\0\0⹻m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀\ud835\udd2dƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳⻴ᤈ⻹⻽⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀\ud835\udd61nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp໬⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t໻⾴ï໻rel;抰Āci⿀⿅r;쀀\ud835\udcc5;䏈ncsp;怈̀fiopsu⿚⋢⿟⿥⿫⿱r;쀀\ud835\udd2epf;쀀\ud835\udd62rime;恗cr;쀀\ud835\udcc6ƀaeo⿸〉〓tĀei⿾々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔઀ABHabcdefhilmnoprstux぀けさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤΀cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstw࿜ガクシスゼゾダッデナp;極Ā;f࿠ゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes㄂㄄;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ì࿲âヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀\ud835\udd2fĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘㇤㇮rrowĀ;t࿜ㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowó࿪arpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓rò࿪aòՑ;怏oustĀ;a㈞㈟掱che»㈟mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀\ud835\udd63us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀\ud835\udcc7Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦΀Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼਴t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀\ud835\udd30Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì⹯耻­䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;q኱ኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀\ud835\udd64aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀\ud835\udcc8tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫ਩war;椪lig耻ß䃟௡㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rë๟ƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀\ud835\udd31Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproø዁im»ኬsðኞĀas㚺㚮ð዁rn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀\ud835\udd65rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈ΀adempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀\ud835\udcc9;䑆cy;䑛rok;䅧Āio㞋㞎xô᝷headĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀\ud835\udd32rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀\ud835\udd66̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀\ud835\udccaƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜΀eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀\ud835\udd33tré㦮suĀbp㧯㧱»ജ»൙pf;쀀\ud835\udd67roð໻tré㦴Ācu㨆㨋r;쀀\ud835\udccbĀbp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚΀cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀\ud835\udd34pf;쀀\ud835\udd68Ā;eᑹ㩦atèᑹcr;쀀\ud835\udcccૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜ៟tré៑r;쀀\ud835\udd35ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀\ud835\udd69imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀\ud835\udccdĀpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀\ud835\udd36cy;䑗pf;쀀\ud835\udd6acr;쀀\ud835\udcceĀcm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀\ud835\udd37cy;䐶grarr;懝pf;쀀\ud835\udd6bcr;쀀\ud835\udccfĀjn㮅㮇;怍j;怌'.split("").map(function(e){return e.charCodeAt(0)}))}),eW("9PbbU",function(e,t){Object.defineProperty(e.exports,"__esModule",{value:!0}),e.exports.default=new Uint16Array("Ȁaglq \x15\x18\x1bɭ\x0f\0\0\x12p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map(function(e){return e.charCodeAt(0)}))}),eW("izz4O",function(e,t){Object.defineProperty(e.exports,"__esModule",{value:!0}),e.exports.replaceCodePoint=e.exports.fromCodePoint=void 0;var r,n=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]);function i(e){var t;return e>=55296&&e<=57343||e>1114111?65533:null!==(t=n.get(e))&&void 0!==t?t:e}e.exports.fromCodePoint=null!==(r=String.fromCodePoint)&&void 0!==r?r:function(e){var t="";return e>65535&&(e-=65536,t+=String.fromCharCode(e>>>10&1023|55296),e=56320|1023&e),t+=String.fromCharCode(e)},e.exports.replaceCodePoint=i,e.exports.default=function(t){return(0,e.exports.fromCodePoint)(i(t))}});var eZ=(eH("bgUiC"),eH("bgUiC")),eQ=function(){document.querySelectorAll('.item:not([style*="display: none"])').forEach(function(e,t){"none"!==getComputedStyle(e).display?e.setAttribute("tabindex",t):e.removeAttribute("tabindex")})},eJ=function(){getKaiAd({publisher:"4408b6fa-4e1d-438f-af4d-f3be2fa97208",app:"flop",slot:"flop",test:0,timeout:1e4,h:120,w:240,container:document.getElementById("KaiOSads-Wrapper"),onerror:function(e){return console.error("Error:",e)},onready:function(e){e.on("click",function(){return console.log("click event")}),e.on("close",function(){return console.log("close event")}),e.on("display",function(){eQ()}),e.call("display",{navClass:"item",tabindex:3,display:"block"})}})};window.NodeList&&!NodeList.prototype.forEach&&(NodeList.prototype.forEach=Array.prototype.forEach);var eX=function(e,t){try{var r=navigator.getDeviceStorage("sdcard").enumerate();r.onsuccess=function(){if(this.result||console.log("finished"),null!==r.result.name){var n=r.result,i=n.name.split(".");i[i.length-1]==e&&t(n.name),this.continue()}},r.onerror=function(){console.warn("No file found: "+this.error)}}catch(e){console.log(e)}if("b2g"in navigator)try{var n=navigator.b2g.getDeviceStorage("sdcard").enumerate();function i(){return(i=eY(function(){var r,i,o,a,s,u,c,l;return(0,eZ.__generator)(this,function(f){switch(f.label){case 0:r=!1,i=!1,f.label=1;case 1:f.trys.push([1,6,7,12]),a=function(e){var t,r,n,i=2;for("undefined"!=typeof Symbol&&(r=Symbol.asyncIterator,n=Symbol.iterator);i--;){if(r&&null!=(t=e[r]))return t.call(e);if(n&&null!=(t=e[n]))return new eK(t.call(e));r="@@asyncIterator",n="@@iterator"}throw TypeError("Object is not async iterable")}(n),f.label=2;case 2:return[4,a.next()];case 3:if(!(r=!(s=f.sent()).done))return[3,5];(c=(u=s.value).name.split("."))[c.length-1]==e&&t(u.name),f.label=4;case 4:return r=!1,[3,2];case 5:return[3,12];case 6:return l=f.sent(),i=!0,o=l,[3,12];case 7:if(f.trys.push([7,,10,11]),!(r&&null!=a.return))return[3,9];return[4,a.return()];case 8:f.sent(),f.label=9;case 9:return[3,11];case 10:if(i)throw o;return[7];case 11:return[7];case 12:return[2]}})})).apply(this,arguments)}!function(){i.apply(this,arguments)}()}catch(e){console.log(e)}};"b2g"in navigator&&setTimeout(function e(){var t=new lib_session.Session,r={};navigator.volumeManager=null,r.onsessionconnected=function(){lib_audiovolume.AudioVolumeManager.get(t).then(function(e){navigator.volumeManager=e}).catch(function(e){navigator.volumeManager=null})},r.onsessiondisconnected=function(){e()},t.open("websocket","localhost","secrettoken",r,!0)},5e3);var e0=function(){if("b2g"in navigator)try{navigator.volumeManager.requestVolumeShow(),oq.window_status="volume",setTimeout(function(){oq.window_status=""},2e3)}catch(e){}},e1=function(e,t){window.Notification.requestPermission().then(function(r){var n=new window.Notification(e,{body:t});"denied"===Notification.permission?console.error("Notification permission is denied"):"default"===Notification.permission&&Notification.requestPermission().then(function(e){}),n.onerror=function(e){console.log(e)},n.onclick=function(e){if(window.navigator.mozApps){var t=window.navigator.mozApps.getSelf();t.onsuccess=function(){t.result&&(n.close(),t.result.launch())}}else window.open(document.location.origin,"_blank")},n.onshow=function(){}})};navigator.mozSetMessageHandler&&navigator.mozSetMessageHandler("alarm",function(e){e1("Greg",e.data.note)});var e3=function(e){if(navigator.mozApps){var t=navigator.mozApps.getSelf();t.onsuccess=function(){e(t.result)},t.onerror=function(){}}else fetch("/manifest.webmanifest").then(function(e){return e.json()}).then(function(t){return e(t)})},e2=[],e5=[],e8=function(e,t){e5.push({text:e,time:t}),1===e5.length&&e6(e,t)},e6=function(e,t){var r=document.querySelector("div#side-toast");r.style.opacity="100",r.innerHTML=e5[0].text,r.style.transform="translate(0vh, 0vw)",setTimeout(function(){r.style.transform="translate(-100vw,0px)",(e5=e2.slice(1)).length>0&&setTimeout(function(){e6(e,t)},1e3)},t)},e4=function(e,t,r){document.querySelector("div#bottom-bar div.button-left").innerHTML=e,document.querySelector("div#bottom-bar div.button-center").innerHTML=t,document.querySelector("div#bottom-bar div.button-right").innerHTML=r,""==e&&""==t&&""==r?document.querySelector("div#bottom-bar").style.display="none":document.querySelector("div#bottom-bar").style.display="block"},e9=function(e,t,r){document.querySelector("div#top-bar div.button-left").innerHTML=e,document.querySelector("div#top-bar div.button-center").innerHTML=t,document.querySelector("div#top-bar div.button-right").innerHTML=r,""==e&&""==t&&""==r?document.querySelector("div#top-bar").style.display="none":document.querySelector("div#top-bar").style.display="block"},e7=function(e){try{var t=new MozActivity({name:"pick",data:{type:["application/xml"]}});t.onsuccess=function(t){console.log("success"+this.result),e(this.result)},t.onerror=function(){console.log("The activity encounter en error: "+this.error)}}catch(e){console.log(e)}if("b2g"in navigator&&new WebActivity("pick").start().then(function(t){e(t)},function(e){console.log(e)}),oq.notKaiOS){var r=document.createElement("input");r.type="file",r.accept=".opml,application/xml",r.style.display="none",document.body.appendChild(r),r.click(),r.addEventListener("change",function(t){var r=t.target.files[0];r&&e({blob:r,filename:r.name,filetype:r.type})})}},eZ=eH("bgUiC"),te=(B=eY(function(e,t){var r;return(0,eZ.__generator)(this,function(n){switch(n.label){case 0:return[4,fetch(e+"/api/v1/accounts/verify_credentials",{headers:{Authorization:"Bearer ".concat(t),"Content-Type":"application/json"}})];case 1:return(r=n.sent()).ok||console.log("Network response was not OK"),[4,r.json()];case 2:return[2,n.sent()]}})}),function(e,t){return B.apply(this,arguments)}),tt={},tr=eH("2L7Ke");tt=(function e(t,r,n){function i(a,s){if(!r[a]){if(!t[a]){var u=void 0;if(!s&&u)return u(a,!0);if(o)return o(a,!0);var c=Error("Cannot find module '"+a+"'");throw c.code="MODULE_NOT_FOUND",c}var l=r[a]={exports:{}};t[a][0].call(l.exports,function(e){return i(t[a][1][e]||e)},l,l.exports,e,t,r,n)}return r[a].exports}for(var o=void 0,a=0;ae.db.version;if(n&&(e.version!==t&&console.warn('The database "'+e.name+"\" can't be downgraded from version "+e.db.version+" to version "+e.version+"."),e.version=e.db.version),i||r){if(r){var o=e.db.version+1;o>e.version&&(e.version=o)}return!0}return!1}function E(e){return o([function(e){for(var t=e.length,r=new ArrayBuffer(t),n=new Uint8Array(r),i=0;i0&&(!e.db||"InvalidStateError"===i.name||"NotFoundError"===i.name))return a.resolve().then(function(){if(!e.db||"NotFoundError"===i.name&&!e.db.objectStoreNames.contains(e.storeName)&&e.version<=e.db.version)return e.db&&(e.version=e.db.version+1),w(e,!0)}).then(function(){return(function(e){g(e);for(var t=h[e.name],r=t.forages,n=0;n=43)}}).catch(function(){return!1}).then(function(e){return d=e})).then(function(e){return e?t:new a(function(e,r){var n=new FileReader;n.onerror=r,n.onloadend=function(r){e({__local_forage_encoded_blob:!0,data:btoa(r.target.result||""),type:t.type})},n.readAsBinaryString(t)})}):t}).then(function(t){A(n._dbInfo,v,function(o,a){if(o)return i(o);try{var s=a.objectStore(n._dbInfo.storeName);null===t&&(t=void 0);var u=s.put(t,e);a.oncomplete=function(){void 0===t&&(t=null),r(t)},a.onabort=a.onerror=function(){var e=u.error?u.error:u.transaction.error;i(e)}}catch(e){i(e)}})}).catch(i)});return s(i,r),i},removeItem:function(e,t){var r=this;e=c(e);var n=new a(function(t,n){r.ready().then(function(){A(r._dbInfo,v,function(i,o){if(i)return n(i);try{var a=o.objectStore(r._dbInfo.storeName).delete(e);o.oncomplete=function(){t()},o.onerror=function(){n(a.error)},o.onabort=function(){var e=a.error?a.error:a.transaction.error;n(e)}}catch(e){n(e)}})}).catch(n)});return s(n,t),n},clear:function(e){var t=this,r=new a(function(e,r){t.ready().then(function(){A(t._dbInfo,v,function(n,i){if(n)return r(n);try{var o=i.objectStore(t._dbInfo.storeName).clear();i.oncomplete=function(){e()},i.onabort=i.onerror=function(){var e=o.error?o.error:o.transaction.error;r(e)}}catch(e){r(e)}})}).catch(r)});return s(r,e),r},length:function(e){var t=this,r=new a(function(e,r){t.ready().then(function(){A(t._dbInfo,m,function(n,i){if(n)return r(n);try{var o=i.objectStore(t._dbInfo.storeName).count();o.onsuccess=function(){e(o.result)},o.onerror=function(){r(o.error)}}catch(e){r(e)}})}).catch(r)});return s(r,e),r},key:function(e,t){var r=this,n=new a(function(t,n){if(e<0){t(null);return}r.ready().then(function(){A(r._dbInfo,m,function(i,o){if(i)return n(i);try{var a=o.objectStore(r._dbInfo.storeName),s=!1,u=a.openKeyCursor();u.onsuccess=function(){var r=u.result;if(!r){t(null);return}0===e?t(r.key):s?t(r.key):(s=!0,r.advance(e))},u.onerror=function(){n(u.error)}}catch(e){n(e)}})}).catch(n)});return s(n,t),n},keys:function(e){var t=this,r=new a(function(e,r){t.ready().then(function(){A(t._dbInfo,m,function(n,i){if(n)return r(n);try{var o=i.objectStore(t._dbInfo.storeName).openKeyCursor(),a=[];o.onsuccess=function(){var t=o.result;if(!t){e(a);return}a.push(t.key),t.continue()},o.onerror=function(){r(o.error)}}catch(e){r(e)}})}).catch(r)});return s(r,e),r},dropInstance:function(e,t){t=l.apply(this,arguments);var r,n=this.config();if((e="function"!=typeof e&&e||{}).name||(e.name=e.name||n.name,e.storeName=e.storeName||n.storeName),e.name){var o=e.name===n.name&&this._dbInfo.db?a.resolve(this._dbInfo.db):w(e,!1).then(function(t){var r=h[e.name],n=r.forages;r.db=t;for(var i=0;i>4,l[u++]=(15&n)<<4|i>>2,l[u++]=(3&i)<<6|63&o;return c}function W(e){var t,r=new Uint8Array(e),n="";for(t=0;t>2],n+=N[(3&r[t])<<4|r[t+1]>>4],n+=N[(15&r[t+1])<<2|r[t+2]>>6],n+=N[63&r[t+2]];return r.length%3==2?n=n.substring(0,n.length-1)+"=":r.length%3==1&&(n=n.substring(0,n.length-2)+"=="),n}var G={serialize:function(e,t){var r="";if(e&&(r=z.call(e)),e&&("[object ArrayBuffer]"===r||e.buffer&&"[object ArrayBuffer]"===z.call(e.buffer))){var n,i=_;e instanceof ArrayBuffer?(n=e,i+=P):(n=e.buffer,"[object Int8Array]"===r?i+=D:"[object Uint8Array]"===r?i+=M:"[object Uint8ClampedArray]"===r?i+=R:"[object Int16Array]"===r?i+=B:"[object Uint16Array]"===r?i+=U:"[object Int32Array]"===r?i+=q:"[object Uint32Array]"===r?i+=j:"[object Float32Array]"===r?i+=F:"[object Float64Array]"===r?i+=V:t(Error("Failed to get type for BinaryArray"))),t(i+W(n))}else if("[object Blob]"===r){var o=new FileReader;o.onload=function(){t(_+L+("~~local_forage_type~"+e.type)+"~"+W(this.result))},o.readAsArrayBuffer(e)}else try{t(JSON.stringify(e))}catch(r){console.error("Couldn't convert value into a JSON string: ",e),t(null,r)}},deserialize:function(e){if(e.substring(0,C)!==_)return JSON.parse(e);var t,r=e.substring($),n=e.substring(C,$);if(n===L&&O.test(r)){var i=r.match(O);t=i[1],r=r.substring(i[0].length)}var a=H(r);switch(n){case P:return a;case L:return o([a],{type:t});case D:return new Int8Array(a);case M:return new Uint8Array(a);case R:return new Uint8ClampedArray(a);case B:return new Int16Array(a);case U:return new Uint16Array(a);case q:return new Int32Array(a);case j:return new Uint32Array(a);case F:return new Float32Array(a);case V:return new Float64Array(a);default:throw Error("Unkown type: "+n)}},stringToBuffer:H,bufferToString:W};function Y(e,t,r,n){e.executeSql("CREATE TABLE IF NOT EXISTS "+t.storeName+" (id INTEGER PRIMARY KEY, key unique, value)",[],r,n)}function K(e,t,r,n,i,o){e.executeSql(r,n,i,function(e,a){a.code===a.SYNTAX_ERR?e.executeSql("SELECT name FROM sqlite_master WHERE type='table' AND name = ?",[t.storeName],function(e,s){s.rows.length?o(e,a):Y(e,t,function(){e.executeSql(r,n,i,o)},o)},o):o(e,a)},o)}function Z(e,t,r,n){var i=this;e=c(e);var o=new a(function(o,a){i.ready().then(function(){void 0===t&&(t=null);var s=t,u=i._dbInfo;u.serializer.serialize(t,function(t,c){c?a(c):u.db.transaction(function(r){K(r,u,"INSERT OR REPLACE INTO "+u.storeName+" (key, value) VALUES (?, ?)",[e,t],function(){o(s)},function(e,t){a(t)})},function(t){if(t.code===t.QUOTA_ERR){if(n>0){o(Z.apply(i,[e,s,r,n-1]));return}a(t)}})})}).catch(a)});return s(o,r),o}var Q={_driver:"webSQLStorage",_initStorage:function(e){var t=this,r={db:null};if(e)for(var n in e)r[n]="string"!=typeof e[n]?e[n].toString():e[n];var i=new a(function(e,n){try{r.db=openDatabase(r.name,String(r.version),r.description,r.size)}catch(e){return n(e)}r.db.transaction(function(i){Y(i,r,function(){t._dbInfo=r,e()},function(e,t){n(t)})},n)});return r.serializer=G,i},_support:"function"==typeof openDatabase,iterate:function(e,t){var r=this,n=new a(function(t,n){r.ready().then(function(){var i=r._dbInfo;i.db.transaction(function(r){K(r,i,"SELECT * FROM "+i.storeName,[],function(r,n){for(var o=n.rows,a=o.length,s=0;s '__WebKitDatabaseInfoTable__'",[],function(t,n){for(var i=[],o=0;o0)?(this._dbInfo=t,t.serializer=G,a.resolve()):a.reject()},_support:function(){try{return"undefined"!=typeof localStorage&&"setItem"in localStorage&&!!localStorage.setItem}catch(e){return!1}}(),iterate:function(e,t){var r=this,n=r.ready().then(function(){for(var t=r._dbInfo,n=t.keyPrefix,i=n.length,o=localStorage.length,a=1,s=0;s=0;r--){var n=localStorage.key(r);0===n.indexOf(e)&&localStorage.removeItem(n)}});return s(r,e),r},length:function(e){var t=this.keys().then(function(e){return e.length});return s(t,e),t},key:function(e,t){var r=this,n=r.ready().then(function(){var t,n=r._dbInfo;try{t=localStorage.key(e)}catch(e){t=null}return t&&(t=t.substring(n.keyPrefix.length)),t});return s(n,t),n},keys:function(e){var t=this,r=t.ready().then(function(){for(var e=t._dbInfo,r=localStorage.length,n=[],i=0;i=0;t--){var r=localStorage.key(t);0===r.indexOf(e)&&localStorage.removeItem(r)}}):a.reject("Invalid arguments"),t),r}},ee=function(e,t){for(var r,n=e.length,i=0;i=ea.ZERO&&e<=ea.NINE}tp.decodeCodePoint=tx.default,Object.defineProperty(tp,"replaceCodePoint",{enumerable:!0,get:function(){return eH("izz4O").replaceCodePoint}}),Object.defineProperty(tp,"fromCodePoint",{enumerable:!0,get:function(){return eH("izz4O").fromCodePoint}}),(q=ea||(ea={}))[q.NUM=35]="NUM",q[q.SEMI=59]="SEMI",q[q.EQUALS=61]="EQUALS",q[q.ZERO=48]="ZERO",q[q.NINE=57]="NINE",q[q.LOWER_A=97]="LOWER_A",q[q.LOWER_F=102]="LOWER_F",q[q.LOWER_X=120]="LOWER_X",q[q.LOWER_Z=122]="LOWER_Z",q[q.UPPER_A=65]="UPPER_A",q[q.UPPER_F=70]="UPPER_F",q[q.UPPER_Z=90]="UPPER_Z",(U=es=tp.BinTrieFlags||(tp.BinTrieFlags={}))[U.VALUE_LENGTH=49152]="VALUE_LENGTH",U[U.BRANCH_LENGTH=16256]="BRANCH_LENGTH",U[U.JUMP_TABLE=127]="JUMP_TABLE",(j=eu||(eu={}))[j.EntityStart=0]="EntityStart",j[j.NumericStart=1]="NumericStart",j[j.NumericDecimal=2]="NumericDecimal",j[j.NumericHex=3]="NumericHex",j[j.NamedEntity=4]="NamedEntity",(F=ec=tp.DecodingMode||(tp.DecodingMode={}))[F.Legacy=0]="Legacy",F[F.Strict=1]="Strict",F[F.Attribute=2]="Attribute";var tS=function(){function e(e,t,r){this.decodeTree=e,this.emitCodePoint=t,this.errors=r,this.state=eu.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=ec.Strict}return e.prototype.startEntity=function(e){this.decodeMode=e,this.state=eu.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1},e.prototype.write=function(e,t){switch(this.state){case eu.EntityStart:if(e.charCodeAt(t)===ea.NUM)return this.state=eu.NumericStart,this.consumed+=1,this.stateNumericStart(e,t+1);return this.state=eu.NamedEntity,this.stateNamedEntity(e,t);case eu.NumericStart:return this.stateNumericStart(e,t);case eu.NumericDecimal:return this.stateNumericDecimal(e,t);case eu.NumericHex:return this.stateNumericHex(e,t);case eu.NamedEntity:return this.stateNamedEntity(e,t)}},e.prototype.stateNumericStart=function(e,t){return t>=e.length?-1:(32|e.charCodeAt(t))===ea.LOWER_X?(this.state=eu.NumericHex,this.consumed+=1,this.stateNumericHex(e,t+1)):(this.state=eu.NumericDecimal,this.stateNumericDecimal(e,t))},e.prototype.addToNumericResult=function(e,t,r,n){if(t!==r){var i=r-t;this.result=this.result*Math.pow(n,i)+parseInt(e.substr(t,i),n),this.consumed+=i}},e.prototype.stateNumericHex=function(e,t){for(var r=t;t=ea.UPPER_A)||!(n<=ea.UPPER_F))&&(!(n>=ea.LOWER_A)||!(n<=ea.LOWER_F)))return this.addToNumericResult(e,r,t,16),this.emitNumericEntity(i,3);t+=1}return this.addToNumericResult(e,r,t,16),-1},e.prototype.stateNumericDecimal=function(e,t){for(var r=t;t>14;t=ea.UPPER_A&&t<=ea.UPPER_Z||t>=ea.LOWER_A&&t<=ea.LOWER_Z||tE(t)}(o))?0:this.emitNotTerminatedNamedEntity();if(0!=(i=((n=r[this.treeIndex])&es.VALUE_LENGTH)>>14)){if(o===ea.SEMI)return this.emitNamedEntityData(this.treeIndex,i,this.consumed+this.excess);this.decodeMode!==ec.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return -1},e.prototype.emitNotTerminatedNamedEntity=function(){var e,t=this.result,r=(this.decodeTree[t]&es.VALUE_LENGTH)>>14;return this.emitNamedEntityData(t,r,this.consumed),null===(e=this.errors)||void 0===e||e.missingSemicolonAfterCharacterReference(),this.consumed},e.prototype.emitNamedEntityData=function(e,t,r){var n=this.decodeTree;return this.emitCodePoint(1===t?n[e]&~es.VALUE_LENGTH:n[e+1],r),3===t&&this.emitCodePoint(n[e+2],r),r},e.prototype.end=function(){var e;switch(this.state){case eu.NamedEntity:return 0!==this.result&&(this.decodeMode!==ec.Attribute||this.result===this.treeIndex)?this.emitNotTerminatedNamedEntity():0;case eu.NumericDecimal:return this.emitNumericEntity(0,2);case eu.NumericHex:return this.emitNumericEntity(0,3);case eu.NumericStart:return null===(e=this.errors)||void 0===e||e.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case eu.EntityStart:return 0}},e}();function tk(e){var t="",r=new tS(e,function(e){return t+=(0,tx.fromCodePoint)(e)});return function(e,n){for(var i=0,o=0;(o=e.indexOf("&",o))>=0;){t+=e.slice(i,o),r.startEntity(n);var a=r.write(e,o+1);if(a<0){i=o+r.end();break}i=o+a,o=0===a?i+1:i}var s=t+e.slice(i);return t="",s}}function tA(e,t,r,n){var i=(t&es.BRANCH_LENGTH)>>7,o=t&es.JUMP_TABLE;if(0===i)return 0!==o&&n===o?r:-1;if(o){var a=n-o;return a<0||a>=i?-1:e[r+a]-1}for(var s=r,u=s+i-1;s<=u;){var c=s+u>>>1,l=e[c];if(ln))return e[c+i];u=c-1}}return -1}tp.EntityDecoder=tS,tp.determineBranch=tA;var tI=tk(tb.default),tT=tk(tw.default);function tN(e){return e===el.Space||e===el.NewLine||e===el.Tab||e===el.FormFeed||e===el.CarriageReturn}function tO(e){return e===el.Slash||e===el.Gt||tN(e)}function t_(e){return e>=el.Zero&&e<=el.Nine}tp.decodeHTML=function(e,t){return void 0===t&&(t=ec.Legacy),tI(e,t)},tp.decodeHTMLAttribute=function(e){return tI(e,ec.Attribute)},tp.decodeHTMLStrict=function(e){return tI(e,ec.Strict)},tp.decodeXML=function(e){return tT(e,ec.Strict)},(V=el||(el={}))[V.Tab=9]="Tab",V[V.NewLine=10]="NewLine",V[V.FormFeed=12]="FormFeed",V[V.CarriageReturn=13]="CarriageReturn",V[V.Space=32]="Space",V[V.ExclamationMark=33]="ExclamationMark",V[V.Number=35]="Number",V[V.Amp=38]="Amp",V[V.SingleQuote=39]="SingleQuote",V[V.DoubleQuote=34]="DoubleQuote",V[V.Dash=45]="Dash",V[V.Slash=47]="Slash",V[V.Zero=48]="Zero",V[V.Nine=57]="Nine",V[V.Semi=59]="Semi",V[V.Lt=60]="Lt",V[V.Eq=61]="Eq",V[V.Gt=62]="Gt",V[V.Questionmark=63]="Questionmark",V[V.UpperA=65]="UpperA",V[V.LowerA=97]="LowerA",V[V.UpperF=70]="UpperF",V[V.LowerF=102]="LowerF",V[V.UpperZ=90]="UpperZ",V[V.LowerZ=122]="LowerZ",V[V.LowerX=120]="LowerX",V[V.OpeningSquareBracket=91]="OpeningSquareBracket",($=ef||(ef={}))[$.Text=1]="Text",$[$.BeforeTagName=2]="BeforeTagName",$[$.InTagName=3]="InTagName",$[$.InSelfClosingTag=4]="InSelfClosingTag",$[$.BeforeClosingTagName=5]="BeforeClosingTagName",$[$.InClosingTagName=6]="InClosingTagName",$[$.AfterClosingTagName=7]="AfterClosingTagName",$[$.BeforeAttributeName=8]="BeforeAttributeName",$[$.InAttributeName=9]="InAttributeName",$[$.AfterAttributeName=10]="AfterAttributeName",$[$.BeforeAttributeValue=11]="BeforeAttributeValue",$[$.InAttributeValueDq=12]="InAttributeValueDq",$[$.InAttributeValueSq=13]="InAttributeValueSq",$[$.InAttributeValueNq=14]="InAttributeValueNq",$[$.BeforeDeclaration=15]="BeforeDeclaration",$[$.InDeclaration=16]="InDeclaration",$[$.InProcessingInstruction=17]="InProcessingInstruction",$[$.BeforeComment=18]="BeforeComment",$[$.CDATASequence=19]="CDATASequence",$[$.InSpecialComment=20]="InSpecialComment",$[$.InCommentLike=21]="InCommentLike",$[$.BeforeSpecialS=22]="BeforeSpecialS",$[$.SpecialStartSequence=23]="SpecialStartSequence",$[$.InSpecialTag=24]="InSpecialTag",$[$.BeforeEntity=25]="BeforeEntity",$[$.BeforeNumericEntity=26]="BeforeNumericEntity",$[$.InNamedEntity=27]="InNamedEntity",$[$.InNumericEntity=28]="InNumericEntity",$[$.InHexEntity=29]="InHexEntity",(z=ed||(ed={}))[z.NoValue=0]="NoValue",z[z.Unquoted=1]="Unquoted",z[z.Single=2]="Single",z[z.Double=3]="Double";var tC={Cdata:new Uint8Array([67,68,65,84,65,91]),CdataEnd:new Uint8Array([93,93,62]),CommentEnd:new Uint8Array([45,45,62]),ScriptEnd:new Uint8Array([60,47,115,99,114,105,112,116]),StyleEnd:new Uint8Array([60,47,115,116,121,108,101]),TitleEnd:new Uint8Array([60,47,116,105,116,108,101])},tP=/*#__PURE__*/function(){function e(t,r){var n=t.xmlMode,i=void 0!==n&&n,o=t.decodeEntities;tf(this,e),this.cbs=r,this.state=ef.Text,this.buffer="",this.sectionStart=0,this.index=0,this.baseState=ef.Text,this.isSpecial=!1,this.running=!0,this.offset=0,this.currentSequence=void 0,this.sequenceIndex=0,this.trieIndex=0,this.trieCurrent=0,this.entityResult=0,this.entityExcess=0,this.xmlMode=i,this.decodeEntities=void 0===o||o,this.entityTrie=i?tp.xmlDecodeTree:tp.htmlDecodeTree}return th(e,[{key:"reset",value:function(){this.state=ef.Text,this.buffer="",this.sectionStart=0,this.index=0,this.baseState=ef.Text,this.currentSequence=void 0,this.running=!0,this.offset=0}},{key:"write",value:function(e){this.offset+=this.buffer.length,this.buffer=e,this.parse()}},{key:"end",value:function(){this.running&&this.finish()}},{key:"pause",value:function(){this.running=!1}},{key:"resume",value:function(){this.running=!0,this.indexthis.sectionStart&&this.cbs.ontext(this.sectionStart,this.index),this.state=ef.BeforeTagName,this.sectionStart=this.index):this.decodeEntities&&e===el.Amp&&(this.state=ef.BeforeEntity)}},{key:"stateSpecialStartSequence",value:function(e){var t=this.sequenceIndex===this.currentSequence.length;if(t?tO(e):(32|e)===this.currentSequence[this.sequenceIndex]){if(!t){this.sequenceIndex++;return}}else this.isSpecial=!1;this.sequenceIndex=0,this.state=ef.InTagName,this.stateInTagName(e)}},{key:"stateInSpecialTag",value:function(e){if(this.sequenceIndex===this.currentSequence.length){if(e===el.Gt||tN(e)){var t=this.index-this.currentSequence.length;if(this.sectionStart=el.LowerA&&e<=el.LowerZ||e>=el.UpperA&&e<=el.UpperZ}},{key:"startSpecial",value:function(e,t){this.isSpecial=!0,this.currentSequence=e,this.sequenceIndex=t,this.state=ef.SpecialStartSequence}},{key:"stateBeforeTagName",value:function(e){if(e===el.ExclamationMark)this.state=ef.BeforeDeclaration,this.sectionStart=this.index+1;else if(e===el.Questionmark)this.state=ef.InProcessingInstruction,this.sectionStart=this.index+1;else if(this.isTagStartChar(e)){var t=32|e;this.sectionStart=this.index,this.xmlMode||t!==tC.TitleEnd[2]?this.state=this.xmlMode||t!==tC.ScriptEnd[2]?ef.InTagName:ef.BeforeSpecialS:this.startSpecial(tC.TitleEnd,3)}else e===el.Slash?this.state=ef.BeforeClosingTagName:(this.state=ef.Text,this.stateText(e))}},{key:"stateInTagName",value:function(e){tO(e)&&(this.cbs.onopentagname(this.sectionStart,this.index),this.sectionStart=-1,this.state=ef.BeforeAttributeName,this.stateBeforeAttributeName(e))}},{key:"stateBeforeClosingTagName",value:function(e){tN(e)||(e===el.Gt?this.state=ef.Text:(this.state=this.isTagStartChar(e)?ef.InClosingTagName:ef.InSpecialComment,this.sectionStart=this.index))}},{key:"stateInClosingTagName",value:function(e){(e===el.Gt||tN(e))&&(this.cbs.onclosetag(this.sectionStart,this.index),this.sectionStart=-1,this.state=ef.AfterClosingTagName,this.stateAfterClosingTagName(e))}},{key:"stateAfterClosingTagName",value:function(e){(e===el.Gt||this.fastForwardTo(el.Gt))&&(this.state=ef.Text,this.baseState=ef.Text,this.sectionStart=this.index+1)}},{key:"stateBeforeAttributeName",value:function(e){e===el.Gt?(this.cbs.onopentagend(this.index),this.isSpecial?(this.state=ef.InSpecialTag,this.sequenceIndex=0):this.state=ef.Text,this.baseState=this.state,this.sectionStart=this.index+1):e===el.Slash?this.state=ef.InSelfClosingTag:tN(e)||(this.state=ef.InAttributeName,this.sectionStart=this.index)}},{key:"stateInSelfClosingTag",value:function(e){e===el.Gt?(this.cbs.onselfclosingtag(this.index),this.state=ef.Text,this.baseState=ef.Text,this.sectionStart=this.index+1,this.isSpecial=!1):tN(e)||(this.state=ef.BeforeAttributeName,this.stateBeforeAttributeName(e))}},{key:"stateInAttributeName",value:function(e){(e===el.Eq||tO(e))&&(this.cbs.onattribname(this.sectionStart,this.index),this.sectionStart=-1,this.state=ef.AfterAttributeName,this.stateAfterAttributeName(e))}},{key:"stateAfterAttributeName",value:function(e){e===el.Eq?this.state=ef.BeforeAttributeValue:e===el.Slash||e===el.Gt?(this.cbs.onattribend(ed.NoValue,this.index),this.state=ef.BeforeAttributeName,this.stateBeforeAttributeName(e)):tN(e)||(this.cbs.onattribend(ed.NoValue,this.index),this.state=ef.InAttributeName,this.sectionStart=this.index)}},{key:"stateBeforeAttributeValue",value:function(e){e===el.DoubleQuote?(this.state=ef.InAttributeValueDq,this.sectionStart=this.index+1):e===el.SingleQuote?(this.state=ef.InAttributeValueSq,this.sectionStart=this.index+1):tN(e)||(this.sectionStart=this.index,this.state=ef.InAttributeValueNq,this.stateInAttributeValueNoQuotes(e))}},{key:"handleInAttributeValue",value:function(e,t){e===t||!this.decodeEntities&&this.fastForwardTo(t)?(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(t===el.DoubleQuote?ed.Double:ed.Single,this.index),this.state=ef.BeforeAttributeName):this.decodeEntities&&e===el.Amp&&(this.baseState=this.state,this.state=ef.BeforeEntity)}},{key:"stateInAttributeValueDoubleQuotes",value:function(e){this.handleInAttributeValue(e,el.DoubleQuote)}},{key:"stateInAttributeValueSingleQuotes",value:function(e){this.handleInAttributeValue(e,el.SingleQuote)}},{key:"stateInAttributeValueNoQuotes",value:function(e){tN(e)||e===el.Gt?(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(ed.Unquoted,this.index),this.state=ef.BeforeAttributeName,this.stateBeforeAttributeName(e)):this.decodeEntities&&e===el.Amp&&(this.baseState=this.state,this.state=ef.BeforeEntity)}},{key:"stateBeforeDeclaration",value:function(e){e===el.OpeningSquareBracket?(this.state=ef.CDATASequence,this.sequenceIndex=0):this.state=e===el.Dash?ef.BeforeComment:ef.InDeclaration}},{key:"stateInDeclaration",value:function(e){(e===el.Gt||this.fastForwardTo(el.Gt))&&(this.cbs.ondeclaration(this.sectionStart,this.index),this.state=ef.Text,this.sectionStart=this.index+1)}},{key:"stateInProcessingInstruction",value:function(e){(e===el.Gt||this.fastForwardTo(el.Gt))&&(this.cbs.onprocessinginstruction(this.sectionStart,this.index),this.state=ef.Text,this.sectionStart=this.index+1)}},{key:"stateBeforeComment",value:function(e){e===el.Dash?(this.state=ef.InCommentLike,this.currentSequence=tC.CommentEnd,this.sequenceIndex=2,this.sectionStart=this.index+1):this.state=ef.InDeclaration}},{key:"stateInSpecialComment",value:function(e){(e===el.Gt||this.fastForwardTo(el.Gt))&&(this.cbs.oncomment(this.sectionStart,this.index,0),this.state=ef.Text,this.sectionStart=this.index+1)}},{key:"stateBeforeSpecialS",value:function(e){var t=32|e;t===tC.ScriptEnd[3]?this.startSpecial(tC.ScriptEnd,4):t===tC.StyleEnd[3]?this.startSpecial(tC.StyleEnd,4):(this.state=ef.InTagName,this.stateInTagName(e))}},{key:"stateBeforeEntity",value:function(e){this.entityExcess=1,this.entityResult=0,e===el.Number?this.state=ef.BeforeNumericEntity:e===el.Amp||(this.trieIndex=0,this.trieCurrent=this.entityTrie[0],this.state=ef.InNamedEntity,this.stateInNamedEntity(e))}},{key:"stateInNamedEntity",value:function(e){if(this.entityExcess+=1,this.trieIndex=(0,tp.determineBranch)(this.entityTrie,this.trieCurrent,this.trieIndex+1,e),this.trieIndex<0){this.emitNamedEntity(),this.index--;return}this.trieCurrent=this.entityTrie[this.trieIndex];var t=this.trieCurrent&tp.BinTrieFlags.VALUE_LENGTH;if(t){var r=(t>>14)-1;if(this.allowLegacyEntity()||e===el.Semi){var n=this.index-this.entityExcess+1;n>this.sectionStart&&this.emitPartial(this.sectionStart,n),this.entityResult=this.trieIndex,this.trieIndex+=r,this.entityExcess=0,this.sectionStart=this.index+1,0===r&&this.emitNamedEntity()}else this.trieIndex+=r}}},{key:"emitNamedEntity",value:function(){if(this.state=this.baseState,0!==this.entityResult)switch((this.entityTrie[this.entityResult]&tp.BinTrieFlags.VALUE_LENGTH)>>14){case 1:this.emitCodePoint(this.entityTrie[this.entityResult]&~tp.BinTrieFlags.VALUE_LENGTH);break;case 2:this.emitCodePoint(this.entityTrie[this.entityResult+1]);break;case 3:this.emitCodePoint(this.entityTrie[this.entityResult+1]),this.emitCodePoint(this.entityTrie[this.entityResult+2])}}},{key:"stateBeforeNumericEntity",value:function(e){(32|e)===el.LowerX?(this.entityExcess++,this.state=ef.InHexEntity):(this.state=ef.InNumericEntity,this.stateInNumericEntity(e))}},{key:"emitNumericEntity",value:function(e){var t=this.index-this.entityExcess-1;t+2+Number(this.state===ef.InHexEntity)!==this.index&&(t>this.sectionStart&&this.emitPartial(this.sectionStart,t),this.sectionStart=this.index+Number(e),this.emitCodePoint((0,tp.replaceCodePoint)(this.entityResult))),this.state=this.baseState}},{key:"stateInNumericEntity",value:function(e){e===el.Semi?this.emitNumericEntity(!0):t_(e)?(this.entityResult=10*this.entityResult+(e-el.Zero),this.entityExcess++):(this.allowLegacyEntity()?this.emitNumericEntity(!1):this.state=this.baseState,this.index--)}},{key:"stateInHexEntity",value:function(e){e===el.Semi?this.emitNumericEntity(!0):t_(e)?(this.entityResult=16*this.entityResult+(e-el.Zero),this.entityExcess++):e>=el.UpperA&&e<=el.UpperF||e>=el.LowerA&&e<=el.LowerF?(this.entityResult=16*this.entityResult+((32|e)-el.LowerA+10),this.entityExcess++):(this.allowLegacyEntity()?this.emitNumericEntity(!1):this.state=this.baseState,this.index--)}},{key:"allowLegacyEntity",value:function(){return!this.xmlMode&&(this.baseState===ef.Text||this.baseState===ef.InSpecialTag)}},{key:"cleanup",value:function(){this.running&&this.sectionStart!==this.index&&(this.state===ef.Text||this.state===ef.InSpecialTag&&0===this.sequenceIndex?(this.cbs.ontext(this.sectionStart,this.index),this.sectionStart=this.index):(this.state===ef.InAttributeValueDq||this.state===ef.InAttributeValueSq||this.state===ef.InAttributeValueNq)&&(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=this.index))}},{key:"shouldContinue",value:function(){return this.index1&&void 0!==arguments[1]?arguments[1]:{};tf(this,e),this.options=s,this.startIndex=0,this.endIndex=0,this.openTagStart=0,this.tagname="",this.attribname="",this.attribvalue="",this.attribs=null,this.stack=[],this.foreignContext=[],this.buffers=[],this.bufferOffset=0,this.writeIndex=0,this.ended=!1,this.cbs=null!=t?t:{},this.lowerCaseTagNames=null!==(r=s.lowerCaseTags)&&void 0!==r?r:!s.xmlMode,this.lowerCaseAttributeNames=null!==(n=s.lowerCaseAttributeNames)&&void 0!==n?n:!s.xmlMode,this.tokenizer=new(null!==(i=s.Tokenizer)&&void 0!==i?i:tP)(this.options,this),null===(a=(o=this.cbs).onparserinit)||void 0===a||a.call(o,this)}return th(e,[{key:"ontext",value:function(e,t){var r,n,i=this.getSlice(e,t);this.endIndex=t-1,null===(n=(r=this.cbs).ontext)||void 0===n||n.call(r,i),this.startIndex=t}},{key:"ontextentity",value:function(e){var t,r,n=this.tokenizer.getSectionStart();this.endIndex=n-1,null===(r=(t=this.cbs).ontext)||void 0===r||r.call(t,(0,tp.fromCodePoint)(e)),this.startIndex=n}},{key:"isVoidElement",value:function(e){return!this.options.xmlMode&&tU.has(e)}},{key:"onopentagname",value:function(e,t){this.endIndex=t;var r=this.getSlice(e,t);this.lowerCaseTagNames&&(r=r.toLowerCase()),this.emitOpenTag(r)}},{key:"emitOpenTag",value:function(e){this.openTagStart=this.startIndex,this.tagname=e;var t,r,n,i,o=!this.options.xmlMode&&tq.get(e);if(o)for(;this.stack.length>0&&o.has(this.stack[this.stack.length-1]);){var a=this.stack.pop();null===(r=(t=this.cbs).onclosetag)||void 0===r||r.call(t,a,!0)}!this.isVoidElement(e)&&(this.stack.push(e),tj.has(e)?this.foreignContext.push(!0):tF.has(e)&&this.foreignContext.push(!1)),null===(i=(n=this.cbs).onopentagname)||void 0===i||i.call(n,e),this.cbs.onopentag&&(this.attribs={})}},{key:"endOpenTag",value:function(e){var t,r;this.startIndex=this.openTagStart,this.attribs&&(null===(r=(t=this.cbs).onopentag)||void 0===r||r.call(t,this.tagname,this.attribs,e),this.attribs=null),this.cbs.onclosetag&&this.isVoidElement(this.tagname)&&this.cbs.onclosetag(this.tagname,!0),this.tagname=""}},{key:"onopentagend",value:function(e){this.endIndex=e,this.endOpenTag(!1),this.startIndex=e+1}},{key:"onclosetag",value:function(e,t){this.endIndex=t;var r,n,i,o,a,s,u=this.getSlice(e,t);if(this.lowerCaseTagNames&&(u=u.toLowerCase()),(tj.has(u)||tF.has(u))&&this.foreignContext.pop(),this.isVoidElement(u))this.options.xmlMode||"br"!==u||(null===(n=(r=this.cbs).onopentagname)||void 0===n||n.call(r,"br"),null===(o=(i=this.cbs).onopentag)||void 0===o||o.call(i,"br",{},!0),null===(s=(a=this.cbs).onclosetag)||void 0===s||s.call(a,"br",!1));else{var c=this.stack.lastIndexOf(u);if(-1!==c){if(this.cbs.onclosetag)for(var l=this.stack.length-c;l--;)this.cbs.onclosetag(this.stack.pop(),0!==l);else this.stack.length=c}else this.options.xmlMode||"p"!==u||(this.emitOpenTag("p"),this.closeCurrentTag(!0))}this.startIndex=t+1}},{key:"onselfclosingtag",value:function(e){this.endIndex=e,this.options.xmlMode||this.options.recognizeSelfClosing||this.foreignContext[this.foreignContext.length-1]?(this.closeCurrentTag(!1),this.startIndex=e+1):this.onopentagend(e)}},{key:"closeCurrentTag",value:function(e){var t,r,n=this.tagname;this.endOpenTag(e),this.stack[this.stack.length-1]===n&&(null===(r=(t=this.cbs).onclosetag)||void 0===r||r.call(t,n,!e),this.stack.pop())}},{key:"onattribname",value:function(e,t){this.startIndex=e;var r=this.getSlice(e,t);this.attribname=this.lowerCaseAttributeNames?r.toLowerCase():r}},{key:"onattribdata",value:function(e,t){this.attribvalue+=this.getSlice(e,t)}},{key:"onattribentity",value:function(e){this.attribvalue+=(0,tp.fromCodePoint)(e)}},{key:"onattribend",value:function(e,t){var r,n;this.endIndex=t,null===(n=(r=this.cbs).onattribute)||void 0===n||n.call(r,this.attribname,this.attribvalue,e===ed.Double?'"':e===ed.Single?"'":e===ed.NoValue?void 0:null),this.attribs&&!Object.prototype.hasOwnProperty.call(this.attribs,this.attribname)&&(this.attribs[this.attribname]=this.attribvalue),this.attribvalue=""}},{key:"getInstructionName",value:function(e){var t=e.search(tV),r=t<0?e:e.substr(0,t);return this.lowerCaseTagNames&&(r=r.toLowerCase()),r}},{key:"ondeclaration",value:function(e,t){this.endIndex=t;var r=this.getSlice(e,t);if(this.cbs.onprocessinginstruction){var n=this.getInstructionName(r);this.cbs.onprocessinginstruction("!".concat(n),"!".concat(r))}this.startIndex=t+1}},{key:"onprocessinginstruction",value:function(e,t){this.endIndex=t;var r=this.getSlice(e,t);if(this.cbs.onprocessinginstruction){var n=this.getInstructionName(r);this.cbs.onprocessinginstruction("?".concat(n),"?".concat(r))}this.startIndex=t+1}},{key:"oncomment",value:function(e,t,r){var n,i,o,a;this.endIndex=t,null===(i=(n=this.cbs).oncomment)||void 0===i||i.call(n,this.getSlice(e,t-r)),null===(a=(o=this.cbs).oncommentend)||void 0===a||a.call(o),this.startIndex=t+1}},{key:"oncdata",value:function(e,t,r){this.endIndex=t;var n,i,o,a,s,u,c,l,f,d,h=this.getSlice(e,t-r);this.options.xmlMode||this.options.recognizeCDATA?(null===(i=(n=this.cbs).oncdatastart)||void 0===i||i.call(n),null===(a=(o=this.cbs).ontext)||void 0===a||a.call(o,h),null===(u=(s=this.cbs).oncdataend)||void 0===u||u.call(s)):(null===(l=(c=this.cbs).oncomment)||void 0===l||l.call(c,"[CDATA[".concat(h,"]]")),null===(d=(f=this.cbs).oncommentend)||void 0===d||d.call(f)),this.startIndex=t+1}},{key:"onend",value:function(){var e,t;if(this.cbs.onclosetag){this.endIndex=this.startIndex;for(var r=this.stack.length;r>0;this.cbs.onclosetag(this.stack[--r],!0));}null===(t=(e=this.cbs).onend)||void 0===t||t.call(e)}},{key:"reset",value:function(){var e,t,r,n;null===(t=(e=this.cbs).onreset)||void 0===t||t.call(e),this.tokenizer.reset(),this.tagname="",this.attribname="",this.attribs=null,this.stack.length=0,this.startIndex=0,this.endIndex=0,null===(n=(r=this.cbs).onparserinit)||void 0===n||n.call(r,this),this.buffers.length=0,this.bufferOffset=0,this.writeIndex=0,this.ended=!1}},{key:"parseComplete",value:function(e){this.reset(),this.end(e)}},{key:"getSlice",value:function(e,t){for(;e-this.bufferOffset>=this.buffers[0].length;)this.shiftBuffer();for(var r=this.buffers[0].slice(e-this.bufferOffset,t-this.bufferOffset);t-this.bufferOffset>this.buffers[0].length;)this.shiftBuffer(),r+=this.buffers[0].slice(0,t-this.bufferOffset);return r}},{key:"shiftBuffer",value:function(){this.bufferOffset+=this.buffers[0].length,this.writeIndex--,this.buffers.shift()}},{key:"write",value:function(e){var t,r;if(this.ended){null===(r=(t=this.cbs).onerror)||void 0===r||r.call(t,Error(".write() after done!"));return}this.buffers.push(e),this.tokenizer.running&&(this.tokenizer.write(e),this.writeIndex++)}},{key:"end",value:function(e){var t,r;if(this.ended){null===(r=(t=this.cbs).onerror)||void 0===r||r.call(t,Error(".end() after done!"));return}e&&this.write(e),this.ended=!0,this.tokenizer.end()}},{key:"pause",value:function(){this.tokenizer.pause()}},{key:"resume",value:function(){for(this.tokenizer.resume();this.tokenizer.running&&this.writeIndex0&&void 0!==arguments[0]&&arguments[0];return t7(this,e)}}]),e}(),t1=/*#__PURE__*/function(e){tH(r,e);var t=tX(r);function r(e){var n;return tf(this,r),(n=t.call(this)).data=e,n}return th(r,[{key:"nodeValue",get:function(){return this.data},set:function(e){this.data=e}}]),r}(tQ(t0)),t3=/*#__PURE__*/function(e){tH(r,e);var t=tX(r);function r(){var e;return tf(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=eh.Text,e}return th(r,[{key:"nodeType",get:function(){return 3}}]),r}(t1),t2=/*#__PURE__*/function(e){tH(r,e);var t=tX(r);function r(){var e;return tf(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=eh.Comment,e}return th(r,[{key:"nodeType",get:function(){return 8}}]),r}(t1),t5=/*#__PURE__*/function(e){tH(r,e);var t=tX(r);function r(e,n){var i;return tf(this,r),(i=t.call(this,n)).name=e,i.type=eh.Directive,i}return th(r,[{key:"nodeType",get:function(){return 1}}]),r}(t1),t8=/*#__PURE__*/function(e){tH(r,e);var t=tX(r);function r(e){var n;return tf(this,r),(n=t.call(this)).children=e,n}return th(r,[{key:"firstChild",get:function(){var e;return null!==(e=this.children[0])&&void 0!==e?e:null}},{key:"lastChild",get:function(){return this.children.length>0?this.children[this.children.length-1]:null}},{key:"childNodes",get:function(){return this.children},set:function(e){this.children=e}}]),r}(tQ(t0)),t6=/*#__PURE__*/function(e){tH(r,e);var t=tX(r);function r(){var e;return tf(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=eh.CDATA,e}return th(r,[{key:"nodeType",get:function(){return 4}}]),r}(t8),t4=/*#__PURE__*/function(e){tH(r,e);var t=tX(r);function r(){var e;return tf(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=eh.Root,e}return th(r,[{key:"nodeType",get:function(){return 9}}]),r}(t8),t9=/*#__PURE__*/function(e){tH(r,e);var t=tX(r);function r(e,n){var i,o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[],a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"script"===e?eh.Script:"style"===e?eh.Style:eh.Tag;return tf(this,r),(i=t.call(this,o)).name=e,i.attribs=n,i.type=a,i}return th(r,[{key:"nodeType",get:function(){return 1}},{key:"tagName",get:function(){return this.name},set:function(e){this.name=e}},{key:"attributes",get:function(){var e=this;return Object.keys(this.attribs).map(function(t){var r,n;return{name:t,value:e.attribs[t],namespace:null===(r=e["x-attribsNamespace"])||void 0===r?void 0:r[t],prefix:null===(n=e["x-attribsPrefix"])||void 0===n?void 0:n[t]}})}}]),r}(t8);function t7(e){var t,r=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(e.type===eh.Text)t=new t3(e.data);else if(e.type===eh.Comment)t=new t2(e.data);else if(e.type===eh.Tag||e.type===eh.Script||e.type===eh.Style){var n=r?re(e.children):[],i=new t9(e.name,tG({},e.attribs),n);n.forEach(function(e){return e.parent=i}),null!=e.namespace&&(i.namespace=e.namespace),e["x-attribsNamespace"]&&(i["x-attribsNamespace"]=tG({},e["x-attribsNamespace"])),e["x-attribsPrefix"]&&(i["x-attribsPrefix"]=tG({},e["x-attribsPrefix"])),t=i}else if(e.type===eh.CDATA){var o=r?re(e.children):[],a=new t6(o);o.forEach(function(e){return e.parent=a}),t=a}else if(e.type===eh.Root){var s=r?re(e.children):[],u=new t4(s);s.forEach(function(e){return e.parent=u}),e["x-mode"]&&(u["x-mode"]=e["x-mode"]),t=u}else if(e.type===eh.Directive){var c=new t5(e.name,e.data);null!=e["x-name"]&&(c["x-name"]=e["x-name"],c["x-publicId"]=e["x-publicId"],c["x-systemId"]=e["x-systemId"]),t=c}else throw Error("Not implemented yet: ".concat(e.type));return t.startIndex=e.startIndex,t.endIndex=e.endIndex,null!=e.sourceCodeLocation&&(t.sourceCodeLocation=e.sourceCodeLocation),t}function re(e){for(var t=e.map(function(e){return t7(e,!0)}),r=1;r䀾mmaĀ;d׷׸䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀\ud835\udd0a;拙pf;쀀\ud835\udd3eeater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀\ud835\udca2;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇܎ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀\ud835\udd40a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ޷޼߂ߐĀiyޱ޵rc;䄴;䐙r;쀀\ud835\udd0dpf;쀀\ud835\udd41ǣ߇\0ߌr;쀀\ud835\udca5rcy;䐈kcy;䐄΀HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶߻dil;䄶;䐚r;쀀\ud835\udd0epf;쀀\ud835\udd42cr;쀀\ud835\udca6րJTaceflmostࠥࠩࠬࡐࡣ঳সে্਷ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗ࡜ࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४Ānrࢃ࢏gleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀\ud835\udd0fĀ;eঽা拘ftarrow;懚idot;䄿ƀnpw৔ਖਛgȀLRlr৞৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀\ud835\udd43erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼੝੠੷੼અઋ઎p;椅y;䐜Ādl੥੯iumSpace;恟lintrf;愳r;쀀\ud835\udd10nusPlus;戓pf;쀀\ud835\udd44cò੶;䎜ҀJacefostuણધભીଔଙඑ඗ඞcy;䐊cute;䅃ƀaey઴હાron;䅇dil;䅅;䐝ƀgswે૰଎ativeƀMTV૓૟૨ediumSpace;怋hiĀcn૦૘ë૙eryThiî૙tedĀGL૸ଆreaterGreateòٳessLesóੈLine;䀊r;쀀\ud835\udd11ȀBnptଢନଷ଺reak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪୼஡௫ఄ౞಄ದ೘ൡඅ櫬Āou୛୤ngruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊ஛ement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater΀;EFGLSTஶஷ஽௉௓௘௥扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲௽ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ೒拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨೹setĀ;E೰ೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀\ud835\udca9ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂ෉෕ෛ෠෧෼ขภยา฿ไlig;䅒cute耻Ó䃓Āiy෎ීrc耻Ô䃔;䐞blac;䅐r;쀀\ud835\udd12rave耻Ò䃒ƀaei෮ෲ෶cr;䅌ga;䎩cron;䎟pf;쀀\ud835\udd46enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀\ud835\udcaaash耻Ø䃘iŬื฼de耻Õ䃕es;樷ml耻Ö䃖erĀBP๋๠Āar๐๓r;怾acĀek๚๜;揞et;掴arenthesis;揜Ҁacfhilors๿ງຊຏຒດຝະ໼rtialD;戂y;䐟r;쀀\ud835\udd13i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ໠໤檻cedesȀ;EST່້໏໚扺qual;檯lantEqual;扼ilde;找me;怳Ādp໩໮uct;戏ortionĀ;aȥ໹l;戝Āci༁༆r;쀀\ud835\udcab;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀\ud835\udd14pf;愚cr;쀀\ud835\udcac؀BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁࿫࿳ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL࿜࿝࿡憒ar;懥eftArrow;懄eiling;按oǵ࿹\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀\ud835\udd16ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»࿝pArrow;憑gma;䎣allCircle;战pf;쀀\ud835\udd4aɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀\ud835\udcaear;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄ቉ቕ቞ቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHc቎ቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀\ud835\udd17Āeiቻ኉Dzኀ\0ኇefore;戴a;䎘Ācn኎ኘkSpace;쀀  Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀\ud835\udd4bipleDot;惛Āctዖዛr;쀀\ud835\udcafrok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0᏿ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0጖y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀\ud835\udd18rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻፿on;䅲f;쀀\ud835\udd4cЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀\ud835\udcb0ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀\ud835\udd19pf;쀀\ud835\udd4dcr;쀀\ud835\udcb1dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀\ud835\udd1apf;쀀\ud835\udd4ecr;쀀\ud835\udcb2Ȁfiosᓋᓐᓒᓘr;쀀\ud835\udd1b;䎞pf;쀀\ud835\udd4fcr;쀀\ud835\udcb3ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀\ud835\udd1cpf;쀀\ud835\udd50cr;쀀\ud835\udcb4ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtè૙a;䎖r;愨pf;愤cr;쀀\ud835\udcb5௡ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀\ud835\udd1erave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚΀;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀\ud835\udd52΀;Eaeiop዁ᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;e዁ᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀\ud835\udcb6;䀪mpĀ;e዁ᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰ᜼ᝃᝈ᝸᝽០៦ᠹᡐᜍ᤽᥈ᥰot;櫭Ācrᛶ᜞kȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e᜚᜛戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;t፜᜷brk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓ᝛ᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯ᝱ᝳ;䎲;愶een;扬r;쀀\ud835\udd1fg΀costuvwឍឝឳេ៕៛៞ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀako៭ᠦᠵĀcn៲ᠣkƀlst៺֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘᠝斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀\ud835\udd53Ā;tᏋᡣom»Ꮜtie;拈؀DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬ᣿ᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教΀;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ᣷᣹᣻᣽;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ᤟;敛;敘;攘;攔΀;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģ᥂bar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀\ud835\udcb7mi;恏mĀ;e᜚᜜lƀ;bhᥨᥩᥫ䁜;槅sub;柈Ŭᥴ᥾lĀ;e᥹᥺怢t»᥺pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭍᭒\0᯽\0ᰌƀcpr᦭ᦲ᧝ute;䄇̀;abcdsᦿᧀᧄ᧊᧕᧙戩nd;橄rcup;橉Āau᧏᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀\ud835\udd20ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r΀;Ecefms᩟᩠ᩢᩫ᪤᪪᪮旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖᪚᪟»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇᫔᫺\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ᫙\0\0᫢aĀ;t᫞᫟䀬;䁀ƀ;fl᫨᫩᫫戁îᅠeĀmx᫱᫶ent»᫩eóɍǧ᫾\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀\ud835\udd54oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀\ud835\udcb8Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯΀delprvw᭠᭬᭷ᮂᮬᯔ᯹arrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;p᭿ᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰸᰻᰿ᱝᱩᱵᲊᲞᲬᲷ᳻᳿ᴍᵻᶑᶫᶻ᷆᷍rò΁ar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀\ud835\udd21arĀlrᲳᲵ»ࣜ»သʀaegsv᳂͸᳖᳜᳠mƀ;oș᳊᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀\ud835\udd55ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀\ud835\udcb9;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄ὎὚ĀDoḆᴴoôᲉĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀\ud835\udd22ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀\ud835\udd56ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»Ṻƀaeiἒ἖Ἒls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀\ud835\udd23lig;耀filig;쀀fjƀaltῙ῜ῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀\ud835\udd57ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao‌⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧‪‬\0‮耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀\ud835\udcbbࢀEabcdefgijlnorstv₂₉₟₥₰₴⃰⃵⃺⃿℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕ₝ute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽⃉ƀ;qsؾٌ⃄lanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀\ud835\udd24Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀\ud835\udd58Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqr׮ⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0↎proø₞r;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀\ud835\udd25sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀\ud835\udd59bar;怕ƀclt≯≴≸r;쀀\ud835\udcbdasè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀\ud835\udd26rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀\ud835\udd5aa;䎹uest耻¿䂿Āci⎊⎏r;쀀\ud835\udcbenʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀\ud835\udd27ath;䈷pf;쀀\ud835\udd5bǣ⏬\0⏱r;쀀\ud835\udcbfrcy;䑘kcy;䑔Ѐacfghjos␋␖␢␧␭␱␵␻ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀\ud835\udd28reen;䄸cy;䑅cy;䑜pf;쀀\ud835\udd5ccr;쀀\ud835\udcc0஀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼rò৆òΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonó྘quigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀\ud835\udd29Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀\ud835\udd5dus;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d྘➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀\ud835\udcc1mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ᠛旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀\ud835\udd2ao;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀\ud835\udd5eĀct⣸⣽r;쀀\ud835\udcc2pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐௏쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop඄⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roø඄urĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓΀;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨í஘istĀ;s஠டr;쀀\ud835\udd2bȀEest௅⩦⩹⩼ƀ;qs஼⩭௡ƀ;qs஼௅⩴lanô௢ií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚΀AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs఻⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs఻⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀\ud835\udd5f膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast୻⭕⭚⭟lleì୻l;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖ΀chimpqu⮽⯍⯙⬄୸⯤⯯Ȁ;cerല⯆ഷ⯉uå൅;쀀\ud835\udcc3ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭å೸åഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñ೗Ā;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰⳴ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥ⵲ⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;c᪞ⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācr⵩⵭ir;榿;쀀\ud835\udd2cͯ⵹\0\0⵼\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕ⶘ⶥⶨrò᪀Āir⶝ⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀\ud835\udd60ƀaelⷔ⷗ǒr;榷rp;榹΀;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ⹞\0⹽\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ⹧⹲຅脀¶;l⹭⹮䂶leìЃɩ⹸\0\0⹻m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀\ud835\udd2dƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳⻴ᤈ⻹⻽⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀\ud835\udd61nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp໬⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t໻⾴ï໻rel;抰Āci⿀⿅r;쀀\ud835\udcc5;䏈ncsp;怈̀fiopsu⿚⋢⿟⿥⿫⿱r;쀀\ud835\udd2epf;쀀\ud835\udd62rime;恗cr;쀀\ud835\udcc6ƀaeo⿸〉〓tĀei⿾々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔઀ABHabcdefhilmnoprstux぀けさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤΀cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstw࿜ガクシスゼゾダッデナp;極Ā;f࿠ゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes㄂㄄;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ì࿲âヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀\ud835\udd2fĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘㇤㇮rrowĀ;t࿜ㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowó࿪arpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓rò࿪aòՑ;怏oustĀ;a㈞㈟掱che»㈟mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀\ud835\udd63us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀\ud835\udcc7Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦΀Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼਴t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀\ud835\udd30Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì⹯耻­䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;q኱ኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀\ud835\udd64aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀\ud835\udcc8tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫ਩war;椪lig耻ß䃟௡㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rë๟ƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀\ud835\udd31Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproø዁im»ኬsðኞĀas㚺㚮ð዁rn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀\ud835\udd65rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈ΀adempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀\ud835\udcc9;䑆cy;䑛rok;䅧Āio㞋㞎xô᝷headĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀\ud835\udd32rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀\ud835\udd66̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀\ud835\udccaƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜΀eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀\ud835\udd33tré㦮suĀbp㧯㧱»ജ»൙pf;쀀\ud835\udd67roð໻tré㦴Ācu㨆㨋r;쀀\ud835\udccbĀbp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚΀cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀\ud835\udd34pf;쀀\ud835\udd68Ā;eᑹ㩦atèᑹcr;쀀\ud835\udcccૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜ៟tré៑r;쀀\ud835\udd35ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀\ud835\udd69imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀\ud835\udccdĀpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀\ud835\udd36cy;䑗pf;쀀\ud835\udd6acr;쀀\ud835\udcceĀcm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀\ud835\udd37cy;䐶grarr;懝pf;쀀\ud835\udd6bcr;쀀\ud835\udccfĀjn㮅㮇;怍j;怌'.split("").map(function(e){return e.charCodeAt(0)})),rn=new Uint16Array("Ȁaglq \x15\x18\x1bɭ\x0f\0\0\x12p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map(function(e){return e.charCodeAt(0)})),ri=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]),ro=null!==(ep=String.fromCodePoint)&&void 0!==ep?ep:function(e){var t="";return e>65535&&(e-=65536,t+=String.fromCharCode(e>>>10&1023|55296),e=56320|1023&e),t+=String.fromCharCode(e)};function ra(e){return e>=em.ZERO&&e<=em.NINE}(W=em||(em={}))[W.NUM=35]="NUM",W[W.SEMI=59]="SEMI",W[W.EQUALS=61]="EQUALS",W[W.ZERO=48]="ZERO",W[W.NINE=57]="NINE",W[W.LOWER_A=97]="LOWER_A",W[W.LOWER_F=102]="LOWER_F",W[W.LOWER_X=120]="LOWER_X",W[W.LOWER_Z=122]="LOWER_Z",W[W.UPPER_A=65]="UPPER_A",W[W.UPPER_F=70]="UPPER_F",W[W.UPPER_Z=90]="UPPER_Z",(G=ev||(ev={}))[G.VALUE_LENGTH=49152]="VALUE_LENGTH",G[G.BRANCH_LENGTH=16256]="BRANCH_LENGTH",G[G.JUMP_TABLE=127]="JUMP_TABLE",(Y=eg||(eg={}))[Y.EntityStart=0]="EntityStart",Y[Y.NumericStart=1]="NumericStart",Y[Y.NumericDecimal=2]="NumericDecimal",Y[Y.NumericHex=3]="NumericHex",Y[Y.NamedEntity=4]="NamedEntity",(K=ey||(ey={}))[K.Legacy=0]="Legacy",K[K.Strict=1]="Strict",K[K.Attribute=2]="Attribute";var rs=/*#__PURE__*/function(){function e(t,r,n){tf(this,e),this.decodeTree=t,this.emitCodePoint=r,this.errors=n,this.state=eg.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=ey.Strict}return th(e,[{key:"startEntity",value:function(e){this.decodeMode=e,this.state=eg.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1}},{key:"write",value:function(e,t){switch(this.state){case eg.EntityStart:if(e.charCodeAt(t)===em.NUM)return this.state=eg.NumericStart,this.consumed+=1,this.stateNumericStart(e,t+1);return this.state=eg.NamedEntity,this.stateNamedEntity(e,t);case eg.NumericStart:return this.stateNumericStart(e,t);case eg.NumericDecimal:return this.stateNumericDecimal(e,t);case eg.NumericHex:return this.stateNumericHex(e,t);case eg.NamedEntity:return this.stateNamedEntity(e,t)}}},{key:"stateNumericStart",value:function(e,t){return t>=e.length?-1:(32|e.charCodeAt(t))===em.LOWER_X?(this.state=eg.NumericHex,this.consumed+=1,this.stateNumericHex(e,t+1)):(this.state=eg.NumericDecimal,this.stateNumericDecimal(e,t))}},{key:"addToNumericResult",value:function(e,t,r,n){if(t!==r){var i=r-t;this.result=this.result*Math.pow(n,i)+parseInt(e.substr(t,i),n),this.consumed+=i}}},{key:"stateNumericHex",value:function(e,t){for(var r=t;t=em.UPPER_A)||!(n<=em.UPPER_F))&&(!(n>=em.LOWER_A)||!(n<=em.LOWER_F)))return this.addToNumericResult(e,r,t,16),this.emitNumericEntity(i,3);t+=1}return this.addToNumericResult(e,r,t,16),-1}},{key:"stateNumericDecimal",value:function(e,t){for(var r=t;t=55296&&n<=57343||n>1114111?65533:null!==(i=ri.get(n))&&void 0!==i?i:n,this.consumed),this.errors&&(e!==em.SEMI&&this.errors.missingSemicolonAfterCharacterReference(),this.errors.validateNumericCharacterReference(this.result)),this.consumed}},{key:"stateNamedEntity",value:function(e,t){for(var r=this.decodeTree,n=r[this.treeIndex],i=(n&ev.VALUE_LENGTH)>>14;t>7,o=t&ev.JUMP_TABLE;if(0===i)return 0!==o&&n===o?r:-1;if(o){var a=n-o;return a<0||a>=i?-1:e[r+a]-1}for(var s=r,u=s+i-1;s<=u;){var c=s+u>>>1,l=e[c];if(ln))return e[c+i];u=c-1}}return -1}(r,n,this.treeIndex+Math.max(1,i),o),this.treeIndex<0)return 0===this.result||this.decodeMode===ey.Attribute&&(0===i||function(e){var t;return e===em.EQUALS||(t=e)>=em.UPPER_A&&t<=em.UPPER_Z||t>=em.LOWER_A&&t<=em.LOWER_Z||ra(t)}(o))?0:this.emitNotTerminatedNamedEntity();if(0!=(i=((n=r[this.treeIndex])&ev.VALUE_LENGTH)>>14)){if(o===em.SEMI)return this.emitNamedEntityData(this.treeIndex,i,this.consumed+this.excess);this.decodeMode!==ey.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return -1}},{key:"emitNotTerminatedNamedEntity",value:function(){var e,t=this.result,r=(this.decodeTree[t]&ev.VALUE_LENGTH)>>14;return this.emitNamedEntityData(t,r,this.consumed),null===(e=this.errors)||void 0===e||e.missingSemicolonAfterCharacterReference(),this.consumed}},{key:"emitNamedEntityData",value:function(e,t,r){var n=this.decodeTree;return this.emitCodePoint(1===t?n[e]&~ev.VALUE_LENGTH:n[e+1],r),3===t&&this.emitCodePoint(n[e+2],r),r}},{key:"end",value:function(){var e;switch(this.state){case eg.NamedEntity:return 0!==this.result&&(this.decodeMode!==ey.Attribute||this.result===this.treeIndex)?this.emitNotTerminatedNamedEntity():0;case eg.NumericDecimal:return this.emitNumericEntity(0,2);case eg.NumericHex:return this.emitNumericEntity(0,3);case eg.NumericStart:return null===(e=this.errors)||void 0===e||e.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case eg.EntityStart:return 0}}}]),e}();function ru(e){var t="",r=new rs(e,function(e){return t+=ro(e)});return function(e,n){for(var i=0,o=0;(o=e.indexOf("&",o))>=0;){t+=e.slice(i,o),r.startEntity(n);var a=r.write(e,o+1);if(a<0){i=o+r.end();break}i=o+a,o=0===a?i+1:i}var s=t+e.slice(i);return t="",s}}ru(rr),ru(rn);var rc=new Map([[34,"""],[38,"&"],[39,"'"],[60,"<"],[62,">"]]);function rl(e,t){return function(r){for(var n,i=0,o="";n=e.exec(r);)i!==n.index&&(o+=r.substring(i,n.index)),o+=t.get(n[0].charCodeAt(0)),i=n.index+1;return o+r.substring(i)}}String.prototype.codePointAt,rl(/[&<>'"]/g,rc),rl(/["&\u00A0]/g,new Map([[34,"""],[38,"&"],[160," "]])),rl(/[&<>\u00A0]/g,new Map([[38,"&"],[60,"<"],[62,">"],[160," "]])),(Z=eb||(eb={}))[Z.XML=0]="XML",Z[Z.HTML=1]="HTML",(Q=ew||(ew={}))[Q.UTF8=0]="UTF8",Q[Q.ASCII=1]="ASCII",Q[Q.Extensive=2]="Extensive",Q[Q.Attribute=3]="Attribute",Q[Q.Text=4]="Text",["altGlyph","altGlyphDef","altGlyphItem","animateColor","animateMotion","animateTransform","clipPath","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","foreignObject","glyphRef","linearGradient","radialGradient","textPath"].map(function(e){return[e.toLowerCase(),e]}),["definitionURL","attributeName","attributeType","baseFrequency","baseProfile","calcMode","clipPathUnits","diffuseConstant","edgeMode","filterUnits","glyphRef","gradientTransform","gradientUnits","kernelMatrix","kernelUnitLength","keyPoints","keySplines","keyTimes","lengthAdjust","limitingConeAngle","markerHeight","markerUnits","markerWidth","maskContentUnits","maskUnits","numOctaves","pathLength","patternContentUnits","patternTransform","patternUnits","pointsAtX","pointsAtY","pointsAtZ","preserveAlpha","preserveAspectRatio","primitiveUnits","refX","refY","repeatCount","repeatDur","requiredExtensions","requiredFeatures","specularConstant","specularExponent","spreadMethod","startOffset","stdDeviation","stitchTiles","surfaceScale","systemLanguage","tableValues","targetX","targetY","textLength","viewBox","viewTarget","xChannelSelector","yChannelSelector","zoomAndPan"].map(function(e){return[e.toLowerCase(),e]}),(J=ex||(ex={}))[J.DISCONNECTED=1]="DISCONNECTED",J[J.PRECEDING=2]="PRECEDING",J[J.FOLLOWING=4]="FOLLOWING",J[J.CONTAINS=8]="CONTAINS",J[J.CONTAINED_BY=16]="CONTAINED_BY";var rf={};/*! +!function(){function e(e,t,r,n){Object.defineProperty(e,t,{get:r,set:n,enumerable:!0,configurable:!0})}function t(e){return e&&e.__esModule?e.default:e}var r,n,i,o,a,s,u,c,l,f,d,h,p,m,v,g,y,b,w,x,E,S,k,A,I,T,N,O,_,C,P,L,D,M,R,B,q,U,j,F,V,$,z,H,W,G,Y,K,Z,Q,J,X,ee,et,er,en,ei,eo,ea,es,eu,ec,el,ef,ed,eh,ep,em,ev,eg,ey,eb,ew,ex,eE,eS,ek,eA,eI,eT,eN,eO,e_,eC,eP,eL,eD,eM,eR,eB,eq,eU,ej,eF,eV="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:"undefined"!=typeof global?global:{},e$={},ez={},eH=eV.parcelRequire5393;null==eH&&((eH=function(e){if(e in e$)return e$[e].exports;if(e in ez){var t=ez[e];delete ez[e];var r={id:e,exports:{}};return e$[e]=r,t.call(r.exports,r,r.exports),r.exports}var n=Error("Cannot find module '"+e+"'");throw n.code="MODULE_NOT_FOUND",n}).register=function(e,t){ez[e]=t},eV.parcelRequire5393=eH);var eW=eH.register;function eG(e,t,r,n,i,o,a){try{var s=e[o](a),u=s.value}catch(e){r(e);return}s.done?t(u):Promise.resolve(u).then(n,i)}function eY(e){return function(){var t=this,r=arguments;return new Promise(function(n,i){var o=e.apply(t,r);function a(e){eG(o,n,i,a,s,"next",e)}function s(e){eG(o,n,i,a,s,"throw",e)}a(void 0)})}}function eK(e){function t(e){if(Object(e)!==e)return Promise.reject(TypeError(e+" is not an object."));var t=e.done;return Promise.resolve(e.value).then(function(e){return{value:e,done:t}})}return(eK=function(e){this.s=e,this.n=e.next}).prototype={s:null,n:null,next:function(){return t(this.n.apply(this.s,arguments))},return:function(e){var r=this.s.return;return void 0===r?Promise.resolve({value:e,done:!0}):t(r.apply(this.s,arguments))},throw:function(e){var r=this.s.return;return void 0===r?Promise.reject(e):t(r.apply(this.s,arguments))}},new eK(e)}eW("ilwPy",function(e,t){function r(e,t,r,n,i,o){return{tag:e,key:t,attrs:r,children:n,text:i,dom:o,domSize:void 0,state:void 0,events:void 0,instance:void 0}}r.normalize=function(e){return Array.isArray(e)?r("[",void 0,void 0,r.normalizeChildren(e),void 0,void 0):null==e||"boolean"==typeof e?null:"object"==typeof e?e:r("#",void 0,void 0,String(e),void 0,void 0)},r.normalizeChildren=function(e){var t=[];if(e.length){for(var n=null!=e[0]&&null!=e[0].key,i=1;i'+t.children+"",a=a.firstChild):a.innerHTML=t.children,t.dom=a.firstChild,t.domSize=a.childNodes.length;for(var u=s(e).createDocumentFragment();i=a.firstChild;)u.appendChild(i);x(e,u,n)}function v(e,t,r,n,i,o){if(t!==r&&(null!=t||null!=r)){if(null==t||0===t.length)d(e,r,0,r.length,n,i,o);else if(null==r||0===r.length)S(e,t,0,t.length);else{var a=null!=t[0]&&null!=t[0].key,s=null!=r[0]&&null!=r[0].key,u=0,c=0;if(!a)for(;c=c&&A>=u&&(m=t[E],v=r[A],m.key===v.key);)m!==v&&g(e,m,v,n,i,o),null!=v.dom&&(i=v.dom),E--,A--;for(;E>=c&&A>=u&&(f=t[c],p=r[u],f.key===p.key);)c++,u++,f!==p&&g(e,f,p,n,b(t,c,i),o);for(;E>=c&&A>=u&&u!==A&&f.key===v.key&&m.key===p.key;)w(e,m,x=b(t,c,i)),m!==p&&g(e,m,p,n,x,o),++u<=--A&&w(e,f,i),f!==v&&g(e,f,v,n,i,o),null!=v.dom&&(i=v.dom),c++,m=t[--E],v=r[A],f=t[c],p=r[u];for(;E>=c&&A>=u&&m.key===v.key;)m!==v&&g(e,m,v,n,i,o),null!=v.dom&&(i=v.dom),E--,A--,m=t[E],v=r[A];if(u>A)S(e,t,c,E+1);else if(c>E)d(e,r,u,A+1,n,i,o);else{var l,I,T=i,N=A-u+1,O=Array(N),_=0,C=0,P=0x7fffffff,L=0;for(C=0;C=u;C--){null==l&&(l=function(e,t,r){for(var n=Object.create(null);t>>1)+(n>>>1)+(r&n&1);e[t[s]]0&&(y[i]=t[r-1]),t[r]=i)}for(r=t.length,n=t[r-1];r-- >0;)t[r]=n,n=y[n];return y.length=0,t}(O)).length-1,C=A;C>=u;C--)p=r[C],-1===O[C-u]?h(e,p,n,o,i):I[_]===C-u?_--:w(e,p,i),null!=p.dom&&(i=r[C].dom);else for(C=A;C>=u;C--)p=r[C],-1===O[C-u]&&h(e,p,n,o,i),null!=p.dom&&(i=r[C].dom)}}else{var M=t.lengthM&&S(e,t,u,t.length),r.length>M&&d(e,r,u,r.length,n,i,o)}}}}function g(e,t,n,i,o,a){var s,c,d=t.tag;if(d===n.tag){if(n.state=t.state,n.events=t.events,function(e,t){do{if(null!=e.attrs&&"function"==typeof e.attrs.onbeforeupdate){var r=l.call(e.attrs.onbeforeupdate,e,t);if(void 0!==r&&!r)break}if("string"!=typeof e.tag&&"function"==typeof e.state.onbeforeupdate){var r=l.call(e.state.onbeforeupdate,e,t);if(void 0!==r&&!r)break}return!1}while(!1)return e.dom=t.dom,e.domSize=t.domSize,e.instance=t.instance,e.attrs=t.attrs,e.children=t.children,e.text=t.text,!0}(n,t))return;if("string"==typeof d)switch(null!=n.attrs&&B(n.attrs,n,i),d){case"#":t.children.toString()!==n.children.toString()&&(t.dom.nodeValue=n.children),n.dom=t.dom;break;case"<":t.children!==n.children?(A(e,t,void 0),m(e,n,a,o)):(n.dom=t.dom,n.domSize=t.domSize);break;case"[":(function(e,t,r,n,i,o){v(e,t.children,r.children,n,i,o);var a=0,s=r.children;if(r.dom=null,null!=s){for(var u=0;u-1||null!=e.attrs&&e.attrs.is||"href"!==t&&"list"!==t&&"form"!==t&&"width"!==t&&"height"!==t)&&t in e.dom}var _=/[A-Z]/g;function C(e){return"-"+e.toLowerCase()}function P(e){return"-"===e[0]&&"-"===e[1]?e:"cssFloat"===e?"float":e.replace(_,C)}function L(e,t,r){if(t===r);else if(null==r)e.style="";else if("object"!=typeof r)e.style=r;else if(null==t||"object"!=typeof t)for(var n in e.style.cssText="",r){var i=r[n];null!=i&&e.style.setProperty(P(n),String(i))}else{for(var n in r){var i=r[n];null!=i&&(i=String(i))!==String(t[n])&&e.style.setProperty(P(n),i)}for(var n in t)null!=t[n]&&null==r[n]&&e.style.removeProperty(P(n))}}function D(){this._=e}function M(t,r,n){null!=t.events?(t.events._=e,t.events[r]!==n&&(null!=n&&("function"==typeof n||"object"==typeof n)?(null==t.events[r]&&t.dom.addEventListener(r.slice(2),t.events,!1),t.events[r]=n):(null!=t.events[r]&&t.dom.removeEventListener(r.slice(2),t.events,!1),t.events[r]=void 0))):null!=n&&("function"==typeof n||"object"==typeof n)&&(t.events=new D,t.dom.addEventListener(r.slice(2),t.events,!1),t.events[r]=n)}function R(e,t,r){"function"==typeof e.oninit&&l.call(e.oninit,t),"function"==typeof e.oncreate&&r.push(l.bind(e.oncreate,t))}function B(e,t,r){"function"==typeof e.onupdate&&r.push(l.bind(e.onupdate,t))}return D.prototype=Object.create(null),D.prototype.handleEvent=function(e){var t,r=this["on"+e.type];"function"==typeof r?t=r.call(e.currentTarget,e):"function"==typeof r.handleEvent&&r.handleEvent(e),this._&&!1!==e.redraw&&(0,this._)(),!1===t&&(e.preventDefault(),e.stopPropagation())},function(i,o,a){if(!i)throw TypeError("DOM element being rendered to does not exist.");if(null!=n&&i.contains(n))throw TypeError("Node is currently being rendered to and thus is locked.");var s=e,u=n,c=[],l=f(i),d=i.namespaceURI;n=i,e="function"==typeof a?a:void 0,t={};try{null==i.vnodes&&(i.textContent=""),o=r.normalizeChildren(Array.isArray(o)?o:[o]),v(i,i.vnodes,o,c,null,"http://www.w3.org/1999/xhtml"===d?void 0:d),i.vnodes=o,null!=l&&f(i)!==l&&"function"==typeof l.focus&&l.focus();for(var h=0;h1&&void 0!==u[1]?u[1]:{},i=e.dom,o=e.domSize,a=t.generation,!(null!=i))return[3,5];r.label=1;case 1:if(s=i.nextSibling,n.get(i)!==a)return[3,3];return[4,i];case 2:r.sent(),o--,r.label=3;case 3:i=s,r.label=4;case 4:if(o)return[3,1];r.label=5;case 5:return[2]}})}}}),eW("bgUiC",function(t,r){function n(e,t){var r,n,i,o={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]},a=Object.create(("function"==typeof Iterator?Iterator:Object).prototype);return a.next=s(0),a.throw=s(1),a.return=s(2),"function"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function s(s){return function(u){return function(s){if(r)throw TypeError("Generator is already executing.");for(;a&&(a=0,s[0]&&(o=0)),o;)try{if(r=1,n&&(i=2&s[0]?n.return:s[0]?n.throw||((i=n.return)&&i.call(n),0):n.next)&&!(i=i.call(n,s[1])).done)return i;switch(n=0,i&&(s=[2&s[0],i.value]),s[0]){case 0:case 1:i=s;break;case 4:return o.label++,{value:s[1],done:!1};case 5:o.label++,n=s[1],s=[0];continue;case 7:s=o.ops.pop(),o.trys.pop();continue;default:if(!(i=(i=o.trys).length>0&&i[i.length-1])&&(6===s[0]||2===s[0])){o=0;continue}if(3===s[0]&&(!i||s[1]>i[0]&&s[1]=e.length&&(e=void 0),{value:e&&e[n++],done:!e}}};throw TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")}e(t.exports,"__generator",function(){return n}),e(t.exports,"__values",function(){return i}),eH("2L7Ke"),"function"==typeof SuppressedError&&SuppressedError}),eW("2L7Ke",function(t,r){e(t.exports,"_",function(){return n});function n(e){return e&&"undefined"!=typeof Symbol&&e.constructor===Symbol?"symbol":typeof e}}),eW("8IMbs",function(e,t){var r=eH("ilwPy");e.exports=function(e,t,n){var i=[],o=!1,a=-1;function s(){for(a=0;a=0&&(i.splice(o,2),o<=a&&(a-=2),e(t,[])),null!=n&&(i.push(t,n),e(t,r(n),u))},redraw:u}}}),eW("ar5FS",function(e,t){var r=eH("gOSId"),n=eH("7KoNz");e.exports=function(e,t){function i(e){return new Promise(e)}function o(e,t){for(var r in e.headers)if(n.call(e.headers,r)&&r.toLowerCase()===t)return!0;return!1}return i.prototype=Promise.prototype,i.__proto__=Promise,{request:function(a,s){"string"!=typeof a?(s=a,a=a.url):null==s&&(s={});var u,c,l=(u=a,c=s,new Promise(function(t,i){u=r(u,c.params);var a,s=null!=c.method?c.method.toUpperCase():"GET",l=c.body,f=(null==c.serialize||c.serialize===JSON.serialize)&&!(l instanceof e.FormData||l instanceof e.URLSearchParams),d=c.responseType||("function"==typeof c.extract?"":"json"),h=new e.XMLHttpRequest,p=!1,m=!1,v=h,g=h.abort;for(var y in h.abort=function(){p=!0,g.call(this)},h.open(s,u,!1!==c.async,"string"==typeof c.user?c.user:void 0,"string"==typeof c.password?c.password:void 0),f&&null!=l&&!o(c,"content-type")&&h.setRequestHeader("Content-Type","application/json; charset=utf-8"),"function"==typeof c.deserialize||o(c,"accept")||h.setRequestHeader("Accept","application/json, text/*"),c.withCredentials&&(h.withCredentials=c.withCredentials),c.timeout&&(h.timeout=c.timeout),h.responseType=d,c.headers)n.call(c.headers,y)&&h.setRequestHeader(y,c.headers[y]);h.onreadystatechange=function(e){if(!p&&4===e.target.readyState)try{var r,n=e.target.status>=200&&e.target.status<300||304===e.target.status||/^file:\/\//i.test(u),o=e.target.response;if("json"===d){if(!e.target.responseType&&"function"!=typeof c.extract)try{o=JSON.parse(e.target.responseText)}catch(e){o=null}}else d&&"text"!==d||null!=o||(o=e.target.responseText);if("function"==typeof c.extract?(o=c.extract(e.target,c),n=!0):"function"==typeof c.deserialize&&(o=c.deserialize(o)),n){if("function"==typeof c.type){if(Array.isArray(o))for(var a=0;a=0&&(h+=e.slice(i,a)),l>=0&&(h+=(i<0?"?":"&")+c.slice(l,d));var p=r(u);return p&&(h+=(i<0&&l<0?"?":"&")+p),o>=0&&(h+=e.slice(o)),f>=0&&(h+=(o<0?"":"&")+c.slice(f)),h}}),eW("4L5Fm",function(e,t){e.exports=function(e){if("[object Object]"!==Object.prototype.toString.call(e))return"";var t=[];for(var r in e)(function e(r,n){if(Array.isArray(n))for(var i=0;i0&&(i.className=n.join(" ")),a[e]={tag:r,attrs:i}}(e),t):(t.tag=e,t)}}),eW("a26rS",function(e,t){var r=eH("goS5k");e.exports=function(e){var t=e.indexOf("?"),n=e.indexOf("#"),i=n<0?e.length:n,o=e.slice(0,t<0?i:t).replace(/\/{2,}/g,"/");return o?"/"!==o[0]&&(o="/"+o):o="/",{path:o,params:t<0?{}:r(e.slice(t+1,i))}}}),eW("goS5k",function(e,t){function r(e){try{return decodeURIComponent(e)}catch(t){return e}}e.exports=function(e){if(""===e||null==e)return{};"?"===e.charAt(0)&&(e=e.slice(1));for(var t=e.split("&"),n={},i={},o=0;o-1&&c.pop();for(var f=0;ft.indexOf(o)&&(i[o]=e[o]);else for(var o in e)r.call(e,o)&&!n.test(o)&&(i[o]=e[o]);return i}}),eW("bWx8M",function(e,t){Object.defineProperty(e.exports,"__esModule",{value:!0}),e.exports.default=new Uint16Array('ᵁ<Õıʊҝջאٵ۞ޢߖࠏ੊ઑඡ๭༉༦჊ረዡᐕᒝᓃᓟᔥ\0\0\0\0\0\0ᕫᛍᦍᰒᷝ὾⁠↰⊍⏀⏻⑂⠤⤒ⴈ⹈⿎〖㊺㘹㞬㣾㨨㩱㫠㬮ࠀEMabcfglmnoprstu\\bfms„‹•˜¦³¹ÈÏlig耻Æ䃆P耻&䀦cute耻Á䃁reve;䄂Āiyx}rc耻Â䃂;䐐r;쀀\ud835\udd04rave耻À䃀pha;䎑acr;䄀d;橓Āgp¡on;䄄f;쀀\ud835\udd38plyFunction;恡ing耻Å䃅Ācs¾Ãr;쀀\ud835\udc9cign;扔ilde耻Ã䃃ml耻Ä䃄ЀaceforsuåûþėĜĢħĪĀcrêòkslash;或Ŷöø;櫧ed;挆y;䐑ƀcrtąċĔause;戵noullis;愬a;䎒r;쀀\ud835\udd05pf;쀀\ud835\udd39eve;䋘còēmpeq;扎܀HOacdefhilorsuōőŖƀƞƢƵƷƺǜȕɳɸɾcy;䐧PY耻©䂩ƀcpyŝŢźute;䄆Ā;iŧŨ拒talDifferentialD;慅leys;愭ȀaeioƉƎƔƘron;䄌dil耻Ç䃇rc;䄈nint;戰ot;䄊ĀdnƧƭilla;䂸terDot;䂷òſi;䎧rcleȀDMPTLJNjǑǖot;抙inus;抖lus;投imes;抗oĀcsǢǸkwiseContourIntegral;戲eCurlyĀDQȃȏoubleQuote;思uote;怙ȀlnpuȞȨɇɕonĀ;eȥȦ户;橴ƀgitȯȶȺruent;扡nt;戯ourIntegral;戮ĀfrɌɎ;愂oduct;成nterClockwiseContourIntegral;戳oss;樯cr;쀀\ud835\udc9epĀ;Cʄʅ拓ap;才րDJSZacefiosʠʬʰʴʸˋ˗ˡ˦̳ҍĀ;oŹʥtrahd;椑cy;䐂cy;䐅cy;䐏ƀgrsʿ˄ˇger;怡r;憡hv;櫤Āayː˕ron;䄎;䐔lĀ;t˝˞戇a;䎔r;쀀\ud835\udd07Āaf˫̧Ācm˰̢riticalȀADGT̖̜̀̆cute;䂴oŴ̋̍;䋙bleAcute;䋝rave;䁠ilde;䋜ond;拄ferentialD;慆Ѱ̽\0\0\0͔͂\0Ѕf;쀀\ud835\udd3bƀ;DE͈͉͍䂨ot;惜qual;扐blèCDLRUVͣͲ΂ϏϢϸontourIntegraìȹoɴ͹\0\0ͻ»͉nArrow;懓Āeo·ΤftƀARTΐΖΡrrow;懐ightArrow;懔eåˊngĀLRΫτeftĀARγιrrow;柸ightArrow;柺ightArrow;柹ightĀATϘϞrrow;懒ee;抨pɁϩ\0\0ϯrrow;懑ownArrow;懕erticalBar;戥ǹABLRTaВЪаўѿͼrrowƀ;BUНОТ憓ar;椓pArrow;懵reve;䌑eft˒к\0ц\0ѐightVector;楐eeVector;楞ectorĀ;Bљњ憽ar;楖ightǔѧ\0ѱeeVector;楟ectorĀ;BѺѻ懁ar;楗eeĀ;A҆҇护rrow;憧ĀctҒҗr;쀀\ud835\udc9frok;䄐ࠀNTacdfglmopqstuxҽӀӄӋӞӢӧӮӵԡԯԶՒ՝ՠեG;䅊H耻Ð䃐cute耻É䃉ƀaiyӒӗӜron;䄚rc耻Ê䃊;䐭ot;䄖r;쀀\ud835\udd08rave耻È䃈ement;戈ĀapӺӾcr;䄒tyɓԆ\0\0ԒmallSquare;旻erySmallSquare;斫ĀgpԦԪon;䄘f;쀀\ud835\udd3csilon;䎕uĀaiԼՉlĀ;TՂՃ橵ilde;扂librium;懌Āci՗՚r;愰m;橳a;䎗ml耻Ë䃋Āipժկsts;戃onentialE;慇ʀcfiosօֈ֍ֲ׌y;䐤r;쀀\ud835\udd09lledɓ֗\0\0֣mallSquare;旼erySmallSquare;斪Ͱֺ\0ֿ\0\0ׄf;쀀\ud835\udd3dAll;戀riertrf;愱cò׋؀JTabcdfgorstר׬ׯ׺؀ؒؖ؛؝أ٬ٲcy;䐃耻>䀾mmaĀ;d׷׸䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀\ud835\udd0a;拙pf;쀀\ud835\udd3eeater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀\ud835\udca2;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇܎ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀\ud835\udd40a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ޷޼߂ߐĀiyޱ޵rc;䄴;䐙r;쀀\ud835\udd0dpf;쀀\ud835\udd41ǣ߇\0ߌr;쀀\ud835\udca5rcy;䐈kcy;䐄΀HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶߻dil;䄶;䐚r;쀀\ud835\udd0epf;쀀\ud835\udd42cr;쀀\ud835\udca6րJTaceflmostࠥࠩࠬࡐࡣ঳সে্਷ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗ࡜ࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४Ānrࢃ࢏gleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀\ud835\udd0fĀ;eঽা拘ftarrow;懚idot;䄿ƀnpw৔ਖਛgȀLRlr৞৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀\ud835\udd43erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼੝੠੷੼અઋ઎p;椅y;䐜Ādl੥੯iumSpace;恟lintrf;愳r;쀀\ud835\udd10nusPlus;戓pf;쀀\ud835\udd44cò੶;䎜ҀJacefostuણધભીଔଙඑ඗ඞcy;䐊cute;䅃ƀaey઴હાron;䅇dil;䅅;䐝ƀgswે૰଎ativeƀMTV૓૟૨ediumSpace;怋hiĀcn૦૘ë૙eryThiî૙tedĀGL૸ଆreaterGreateòٳessLesóੈLine;䀊r;쀀\ud835\udd11ȀBnptଢନଷ଺reak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪୼஡௫ఄ౞಄ದ೘ൡඅ櫬Āou୛୤ngruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊ஛ement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater΀;EFGLSTஶஷ஽௉௓௘௥扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲௽ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ೒拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨೹setĀ;E೰ೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀\ud835\udca9ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂ෉෕ෛ෠෧෼ขภยา฿ไlig;䅒cute耻Ó䃓Āiy෎ීrc耻Ô䃔;䐞blac;䅐r;쀀\ud835\udd12rave耻Ò䃒ƀaei෮ෲ෶cr;䅌ga;䎩cron;䎟pf;쀀\ud835\udd46enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀\ud835\udcaaash耻Ø䃘iŬื฼de耻Õ䃕es;樷ml耻Ö䃖erĀBP๋๠Āar๐๓r;怾acĀek๚๜;揞et;掴arenthesis;揜Ҁacfhilors๿ງຊຏຒດຝະ໼rtialD;戂y;䐟r;쀀\ud835\udd13i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ໠໤檻cedesȀ;EST່້໏໚扺qual;檯lantEqual;扼ilde;找me;怳Ādp໩໮uct;戏ortionĀ;aȥ໹l;戝Āci༁༆r;쀀\ud835\udcab;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀\ud835\udd14pf;愚cr;쀀\ud835\udcac؀BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁࿫࿳ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL࿜࿝࿡憒ar;懥eftArrow;懄eiling;按oǵ࿹\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀\ud835\udd16ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»࿝pArrow;憑gma;䎣allCircle;战pf;쀀\ud835\udd4aɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀\ud835\udcaear;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄ቉ቕ቞ቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHc቎ቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀\ud835\udd17Āeiቻ኉Dzኀ\0ኇefore;戴a;䎘Ācn኎ኘkSpace;쀀  Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀\ud835\udd4bipleDot;惛Āctዖዛr;쀀\ud835\udcafrok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0᏿ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0጖y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀\ud835\udd18rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻፿on;䅲f;쀀\ud835\udd4cЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀\ud835\udcb0ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀\ud835\udd19pf;쀀\ud835\udd4dcr;쀀\ud835\udcb1dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀\ud835\udd1apf;쀀\ud835\udd4ecr;쀀\ud835\udcb2Ȁfiosᓋᓐᓒᓘr;쀀\ud835\udd1b;䎞pf;쀀\ud835\udd4fcr;쀀\ud835\udcb3ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀\ud835\udd1cpf;쀀\ud835\udd50cr;쀀\ud835\udcb4ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtè૙a;䎖r;愨pf;愤cr;쀀\ud835\udcb5௡ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀\ud835\udd1erave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚΀;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀\ud835\udd52΀;Eaeiop዁ᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;e዁ᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀\ud835\udcb6;䀪mpĀ;e዁ᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰ᜼ᝃᝈ᝸᝽០៦ᠹᡐᜍ᤽᥈ᥰot;櫭Ācrᛶ᜞kȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e᜚᜛戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;t፜᜷brk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓ᝛ᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯ᝱ᝳ;䎲;愶een;扬r;쀀\ud835\udd1fg΀costuvwឍឝឳេ៕៛៞ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀako៭ᠦᠵĀcn៲ᠣkƀlst៺֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘᠝斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀\ud835\udd53Ā;tᏋᡣom»Ꮜtie;拈؀DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬ᣿ᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教΀;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ᣷᣹᣻᣽;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ᤟;敛;敘;攘;攔΀;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģ᥂bar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀\ud835\udcb7mi;恏mĀ;e᜚᜜lƀ;bhᥨᥩᥫ䁜;槅sub;柈Ŭᥴ᥾lĀ;e᥹᥺怢t»᥺pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭍᭒\0᯽\0ᰌƀcpr᦭ᦲ᧝ute;䄇̀;abcdsᦿᧀᧄ᧊᧕᧙戩nd;橄rcup;橉Āau᧏᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀\ud835\udd20ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r΀;Ecefms᩟᩠ᩢᩫ᪤᪪᪮旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖᪚᪟»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇᫔᫺\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ᫙\0\0᫢aĀ;t᫞᫟䀬;䁀ƀ;fl᫨᫩᫫戁îᅠeĀmx᫱᫶ent»᫩eóɍǧ᫾\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀\ud835\udd54oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀\ud835\udcb8Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯΀delprvw᭠᭬᭷ᮂᮬᯔ᯹arrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;p᭿ᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰸᰻᰿ᱝᱩᱵᲊᲞᲬᲷ᳻᳿ᴍᵻᶑᶫᶻ᷆᷍rò΁ar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀\ud835\udd21arĀlrᲳᲵ»ࣜ»သʀaegsv᳂͸᳖᳜᳠mƀ;oș᳊᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀\ud835\udd55ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀\ud835\udcb9;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄ὎὚ĀDoḆᴴoôᲉĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀\ud835\udd22ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀\ud835\udd56ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»Ṻƀaeiἒ἖Ἒls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀\ud835\udd23lig;耀filig;쀀fjƀaltῙ῜ῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀\ud835\udd57ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao‌⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧‪‬\0‮耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀\ud835\udcbbࢀEabcdefgijlnorstv₂₉₟₥₰₴⃰⃵⃺⃿℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕ₝ute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽⃉ƀ;qsؾٌ⃄lanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀\ud835\udd24Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀\ud835\udd58Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqr׮ⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0↎proø₞r;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀\ud835\udd25sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀\ud835\udd59bar;怕ƀclt≯≴≸r;쀀\ud835\udcbdasè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀\ud835\udd26rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀\ud835\udd5aa;䎹uest耻¿䂿Āci⎊⎏r;쀀\ud835\udcbenʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀\ud835\udd27ath;䈷pf;쀀\ud835\udd5bǣ⏬\0⏱r;쀀\ud835\udcbfrcy;䑘kcy;䑔Ѐacfghjos␋␖␢␧␭␱␵␻ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀\ud835\udd28reen;䄸cy;䑅cy;䑜pf;쀀\ud835\udd5ccr;쀀\ud835\udcc0஀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼rò৆òΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonó྘quigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀\ud835\udd29Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀\ud835\udd5dus;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d྘➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀\ud835\udcc1mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ᠛旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀\ud835\udd2ao;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀\ud835\udd5eĀct⣸⣽r;쀀\ud835\udcc2pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐௏쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop඄⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roø඄urĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓΀;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨í஘istĀ;s஠டr;쀀\ud835\udd2bȀEest௅⩦⩹⩼ƀ;qs஼⩭௡ƀ;qs஼௅⩴lanô௢ií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚΀AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs఻⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs఻⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀\ud835\udd5f膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast୻⭕⭚⭟lleì୻l;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖ΀chimpqu⮽⯍⯙⬄୸⯤⯯Ȁ;cerല⯆ഷ⯉uå൅;쀀\ud835\udcc3ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭å೸åഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñ೗Ā;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰⳴ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥ⵲ⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;c᪞ⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācr⵩⵭ir;榿;쀀\ud835\udd2cͯ⵹\0\0⵼\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕ⶘ⶥⶨrò᪀Āir⶝ⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀\ud835\udd60ƀaelⷔ⷗ǒr;榷rp;榹΀;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ⹞\0⹽\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ⹧⹲຅脀¶;l⹭⹮䂶leìЃɩ⹸\0\0⹻m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀\ud835\udd2dƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳⻴ᤈ⻹⻽⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀\ud835\udd61nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp໬⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t໻⾴ï໻rel;抰Āci⿀⿅r;쀀\ud835\udcc5;䏈ncsp;怈̀fiopsu⿚⋢⿟⿥⿫⿱r;쀀\ud835\udd2epf;쀀\ud835\udd62rime;恗cr;쀀\ud835\udcc6ƀaeo⿸〉〓tĀei⿾々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔઀ABHabcdefhilmnoprstux぀けさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤΀cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstw࿜ガクシスゼゾダッデナp;極Ā;f࿠ゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes㄂㄄;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ì࿲âヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀\ud835\udd2fĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘㇤㇮rrowĀ;t࿜ㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowó࿪arpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓rò࿪aòՑ;怏oustĀ;a㈞㈟掱che»㈟mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀\ud835\udd63us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀\ud835\udcc7Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦΀Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼਴t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀\ud835\udd30Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì⹯耻­䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;q኱ኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀\ud835\udd64aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀\ud835\udcc8tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫ਩war;椪lig耻ß䃟௡㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rë๟ƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀\ud835\udd31Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproø዁im»ኬsðኞĀas㚺㚮ð዁rn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀\ud835\udd65rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈ΀adempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀\ud835\udcc9;䑆cy;䑛rok;䅧Āio㞋㞎xô᝷headĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀\ud835\udd32rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀\ud835\udd66̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀\ud835\udccaƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜΀eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀\ud835\udd33tré㦮suĀbp㧯㧱»ജ»൙pf;쀀\ud835\udd67roð໻tré㦴Ācu㨆㨋r;쀀\ud835\udccbĀbp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚΀cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀\ud835\udd34pf;쀀\ud835\udd68Ā;eᑹ㩦atèᑹcr;쀀\ud835\udcccૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜ៟tré៑r;쀀\ud835\udd35ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀\ud835\udd69imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀\ud835\udccdĀpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀\ud835\udd36cy;䑗pf;쀀\ud835\udd6acr;쀀\ud835\udcceĀcm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀\ud835\udd37cy;䐶grarr;懝pf;쀀\ud835\udd6bcr;쀀\ud835\udccfĀjn㮅㮇;怍j;怌'.split("").map(function(e){return e.charCodeAt(0)}))}),eW("9PbbU",function(e,t){Object.defineProperty(e.exports,"__esModule",{value:!0}),e.exports.default=new Uint16Array("Ȁaglq \x15\x18\x1bɭ\x0f\0\0\x12p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map(function(e){return e.charCodeAt(0)}))}),eW("izz4O",function(e,t){Object.defineProperty(e.exports,"__esModule",{value:!0}),e.exports.replaceCodePoint=e.exports.fromCodePoint=void 0;var r,n=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]);function i(e){var t;return e>=55296&&e<=57343||e>1114111?65533:null!==(t=n.get(e))&&void 0!==t?t:e}e.exports.fromCodePoint=null!==(r=String.fromCodePoint)&&void 0!==r?r:function(e){var t="";return e>65535&&(e-=65536,t+=String.fromCharCode(e>>>10&1023|55296),e=56320|1023&e),t+=String.fromCharCode(e)},e.exports.replaceCodePoint=i,e.exports.default=function(t){return(0,e.exports.fromCodePoint)(i(t))}});var eZ=(eH("bgUiC"),eH("bgUiC")),eQ=function(){document.querySelectorAll('.item:not([style*="display: none"])').forEach(function(e,t){"none"!==getComputedStyle(e).display?e.setAttribute("tabindex",t):e.removeAttribute("tabindex")})},eJ=function(){getKaiAd({publisher:"4408b6fa-4e1d-438f-af4d-f3be2fa97208",app:"feedolin",slot:"feedolin",test:0,timeout:1e4,h:120,w:240,container:document.getElementById("KaiOSads-Wrapper"),onerror:function(e){return console.error("Error:",e)},onready:function(e){e.on("click",function(){return console.log("click event")}),e.on("close",function(){return console.log("close event")}),e.on("display",function(){eQ()}),e.call("display",{navClass:"item",tabindex:3,display:"block"})}})};window.NodeList&&!NodeList.prototype.forEach&&(NodeList.prototype.forEach=Array.prototype.forEach);var eX=function(e,t){try{var r=navigator.getDeviceStorage("sdcard").enumerate();r.onsuccess=function(){if(this.result||console.log("finished"),null!==r.result.name){var n=r.result,i=n.name.split(".");i[i.length-1]==e&&t(n.name),this.continue()}},r.onerror=function(){console.warn("No file found: "+this.error)}}catch(e){console.log(e)}if("b2g"in navigator)try{var n=navigator.b2g.getDeviceStorage("sdcard").enumerate();function i(){return(i=eY(function(){var r,i,o,a,s,u,c,l;return(0,eZ.__generator)(this,function(f){switch(f.label){case 0:r=!1,i=!1,f.label=1;case 1:f.trys.push([1,6,7,12]),a=function(e){var t,r,n,i=2;for("undefined"!=typeof Symbol&&(r=Symbol.asyncIterator,n=Symbol.iterator);i--;){if(r&&null!=(t=e[r]))return t.call(e);if(n&&null!=(t=e[n]))return new eK(t.call(e));r="@@asyncIterator",n="@@iterator"}throw TypeError("Object is not async iterable")}(n),f.label=2;case 2:return[4,a.next()];case 3:if(!(r=!(s=f.sent()).done))return[3,5];(c=(u=s.value).name.split("."))[c.length-1]==e&&t(u.name),f.label=4;case 4:return r=!1,[3,2];case 5:return[3,12];case 6:return l=f.sent(),i=!0,o=l,[3,12];case 7:if(f.trys.push([7,,10,11]),!(r&&null!=a.return))return[3,9];return[4,a.return()];case 8:f.sent(),f.label=9;case 9:return[3,11];case 10:if(i)throw o;return[7];case 11:return[7];case 12:return[2]}})})).apply(this,arguments)}!function(){i.apply(this,arguments)}()}catch(e){console.log(e)}};"b2g"in navigator&&setTimeout(function e(){var t=new lib_session.Session,r={};navigator.volumeManager=null,r.onsessionconnected=function(){lib_audiovolume.AudioVolumeManager.get(t).then(function(e){navigator.volumeManager=e}).catch(function(e){navigator.volumeManager=null})},r.onsessiondisconnected=function(){e()},t.open("websocket","localhost","secrettoken",r,!0)},5e3);var e0=function(){if("b2g"in navigator)try{navigator.volumeManager.requestVolumeShow(),oq.window_status="volume",setTimeout(function(){oq.window_status=""},2e3)}catch(e){}},e1=function(e,t){window.Notification.requestPermission().then(function(r){var n=new window.Notification(e,{body:t});"denied"===Notification.permission?console.error("Notification permission is denied"):"default"===Notification.permission&&Notification.requestPermission().then(function(e){}),n.onerror=function(e){console.log(e)},n.onclick=function(e){if(window.navigator.mozApps){var t=window.navigator.mozApps.getSelf();t.onsuccess=function(){t.result&&(n.close(),t.result.launch())}}else window.open(document.location.origin,"_blank")},n.onshow=function(){}})};navigator.mozSetMessageHandler&&navigator.mozSetMessageHandler("alarm",function(e){e1("Greg",e.data.note)});var e3=function(e){if(navigator.mozApps){var t=navigator.mozApps.getSelf();t.onsuccess=function(){e(t.result)},t.onerror=function(){}}else fetch("/manifest.webmanifest").then(function(e){return e.json()}).then(function(t){return e(t)})},e2=[],e5=[],e8=function(e,t){e5.push({text:e,time:t}),1===e5.length&&e6(e,t)},e6=function(e,t){var r=document.querySelector("div#side-toast");r.style.opacity="100",r.innerHTML=e5[0].text,r.style.transform="translate(0vh, 0vw)",setTimeout(function(){r.style.transform="translate(-100vw,0px)",(e5=e2.slice(1)).length>0&&setTimeout(function(){e6(e,t)},1e3)},t)},e4=function(e,t,r){document.querySelector("div#bottom-bar div.button-left").innerHTML=e,document.querySelector("div#bottom-bar div.button-center").innerHTML=t,document.querySelector("div#bottom-bar div.button-right").innerHTML=r,""==e&&""==t&&""==r?document.querySelector("div#bottom-bar").style.display="none":document.querySelector("div#bottom-bar").style.display="block"},e9=function(e,t,r){document.querySelector("div#top-bar div.button-left").innerHTML=e,document.querySelector("div#top-bar div.button-center").innerHTML=t,document.querySelector("div#top-bar div.button-right").innerHTML=r,""==e&&""==t&&""==r?document.querySelector("div#top-bar").style.display="none":document.querySelector("div#top-bar").style.display="block"},e7=function(e){try{var t=new MozActivity({name:"pick",data:{type:["application/xml"]}});t.onsuccess=function(t){console.log("success"+this.result),e(this.result)},t.onerror=function(){console.log("The activity encounter en error: "+this.error)}}catch(e){console.log(e)}if("b2g"in navigator&&new WebActivity("pick").start().then(function(t){e(t)},function(e){console.log(e)}),oq.notKaiOS){var r=document.createElement("input");r.type="file",r.accept=".opml,application/xml",r.style.display="none",document.body.appendChild(r),r.click(),r.addEventListener("change",function(t){var r=t.target.files[0];r&&e({blob:r,filename:r.name,filetype:r.type})})}},eZ=eH("bgUiC"),te=(B=eY(function(e,t){var r;return(0,eZ.__generator)(this,function(n){switch(n.label){case 0:return[4,fetch(e+"/api/v1/accounts/verify_credentials",{headers:{Authorization:"Bearer ".concat(t),"Content-Type":"application/json"}})];case 1:return(r=n.sent()).ok||console.log("Network response was not OK"),[4,r.json()];case 2:return[2,n.sent()]}})}),function(e,t){return B.apply(this,arguments)}),tt={},tr=eH("2L7Ke");tt=(function e(t,r,n){function i(a,s){if(!r[a]){if(!t[a]){var u=void 0;if(!s&&u)return u(a,!0);if(o)return o(a,!0);var c=Error("Cannot find module '"+a+"'");throw c.code="MODULE_NOT_FOUND",c}var l=r[a]={exports:{}};t[a][0].call(l.exports,function(e){return i(t[a][1][e]||e)},l,l.exports,e,t,r,n)}return r[a].exports}for(var o=void 0,a=0;ae.db.version;if(n&&(e.version!==t&&console.warn('The database "'+e.name+"\" can't be downgraded from version "+e.db.version+" to version "+e.version+"."),e.version=e.db.version),i||r){if(r){var o=e.db.version+1;o>e.version&&(e.version=o)}return!0}return!1}function E(e){return o([function(e){for(var t=e.length,r=new ArrayBuffer(t),n=new Uint8Array(r),i=0;i0&&(!e.db||"InvalidStateError"===i.name||"NotFoundError"===i.name))return a.resolve().then(function(){if(!e.db||"NotFoundError"===i.name&&!e.db.objectStoreNames.contains(e.storeName)&&e.version<=e.db.version)return e.db&&(e.version=e.db.version+1),w(e,!0)}).then(function(){return(function(e){g(e);for(var t=h[e.name],r=t.forages,n=0;n=43)}}).catch(function(){return!1}).then(function(e){return d=e})).then(function(e){return e?t:new a(function(e,r){var n=new FileReader;n.onerror=r,n.onloadend=function(r){e({__local_forage_encoded_blob:!0,data:btoa(r.target.result||""),type:t.type})},n.readAsBinaryString(t)})}):t}).then(function(t){A(n._dbInfo,v,function(o,a){if(o)return i(o);try{var s=a.objectStore(n._dbInfo.storeName);null===t&&(t=void 0);var u=s.put(t,e);a.oncomplete=function(){void 0===t&&(t=null),r(t)},a.onabort=a.onerror=function(){var e=u.error?u.error:u.transaction.error;i(e)}}catch(e){i(e)}})}).catch(i)});return s(i,r),i},removeItem:function(e,t){var r=this;e=c(e);var n=new a(function(t,n){r.ready().then(function(){A(r._dbInfo,v,function(i,o){if(i)return n(i);try{var a=o.objectStore(r._dbInfo.storeName).delete(e);o.oncomplete=function(){t()},o.onerror=function(){n(a.error)},o.onabort=function(){var e=a.error?a.error:a.transaction.error;n(e)}}catch(e){n(e)}})}).catch(n)});return s(n,t),n},clear:function(e){var t=this,r=new a(function(e,r){t.ready().then(function(){A(t._dbInfo,v,function(n,i){if(n)return r(n);try{var o=i.objectStore(t._dbInfo.storeName).clear();i.oncomplete=function(){e()},i.onabort=i.onerror=function(){var e=o.error?o.error:o.transaction.error;r(e)}}catch(e){r(e)}})}).catch(r)});return s(r,e),r},length:function(e){var t=this,r=new a(function(e,r){t.ready().then(function(){A(t._dbInfo,m,function(n,i){if(n)return r(n);try{var o=i.objectStore(t._dbInfo.storeName).count();o.onsuccess=function(){e(o.result)},o.onerror=function(){r(o.error)}}catch(e){r(e)}})}).catch(r)});return s(r,e),r},key:function(e,t){var r=this,n=new a(function(t,n){if(e<0){t(null);return}r.ready().then(function(){A(r._dbInfo,m,function(i,o){if(i)return n(i);try{var a=o.objectStore(r._dbInfo.storeName),s=!1,u=a.openKeyCursor();u.onsuccess=function(){var r=u.result;if(!r){t(null);return}0===e?t(r.key):s?t(r.key):(s=!0,r.advance(e))},u.onerror=function(){n(u.error)}}catch(e){n(e)}})}).catch(n)});return s(n,t),n},keys:function(e){var t=this,r=new a(function(e,r){t.ready().then(function(){A(t._dbInfo,m,function(n,i){if(n)return r(n);try{var o=i.objectStore(t._dbInfo.storeName).openKeyCursor(),a=[];o.onsuccess=function(){var t=o.result;if(!t){e(a);return}a.push(t.key),t.continue()},o.onerror=function(){r(o.error)}}catch(e){r(e)}})}).catch(r)});return s(r,e),r},dropInstance:function(e,t){t=l.apply(this,arguments);var r,n=this.config();if((e="function"!=typeof e&&e||{}).name||(e.name=e.name||n.name,e.storeName=e.storeName||n.storeName),e.name){var o=e.name===n.name&&this._dbInfo.db?a.resolve(this._dbInfo.db):w(e,!1).then(function(t){var r=h[e.name],n=r.forages;r.db=t;for(var i=0;i>4,l[u++]=(15&n)<<4|i>>2,l[u++]=(3&i)<<6|63&o;return c}function W(e){var t,r=new Uint8Array(e),n="";for(t=0;t>2],n+=N[(3&r[t])<<4|r[t+1]>>4],n+=N[(15&r[t+1])<<2|r[t+2]>>6],n+=N[63&r[t+2]];return r.length%3==2?n=n.substring(0,n.length-1)+"=":r.length%3==1&&(n=n.substring(0,n.length-2)+"=="),n}var G={serialize:function(e,t){var r="";if(e&&(r=z.call(e)),e&&("[object ArrayBuffer]"===r||e.buffer&&"[object ArrayBuffer]"===z.call(e.buffer))){var n,i=_;e instanceof ArrayBuffer?(n=e,i+=P):(n=e.buffer,"[object Int8Array]"===r?i+=D:"[object Uint8Array]"===r?i+=M:"[object Uint8ClampedArray]"===r?i+=R:"[object Int16Array]"===r?i+=B:"[object Uint16Array]"===r?i+=U:"[object Int32Array]"===r?i+=q:"[object Uint32Array]"===r?i+=j:"[object Float32Array]"===r?i+=F:"[object Float64Array]"===r?i+=V:t(Error("Failed to get type for BinaryArray"))),t(i+W(n))}else if("[object Blob]"===r){var o=new FileReader;o.onload=function(){t(_+L+("~~local_forage_type~"+e.type)+"~"+W(this.result))},o.readAsArrayBuffer(e)}else try{t(JSON.stringify(e))}catch(r){console.error("Couldn't convert value into a JSON string: ",e),t(null,r)}},deserialize:function(e){if(e.substring(0,C)!==_)return JSON.parse(e);var t,r=e.substring($),n=e.substring(C,$);if(n===L&&O.test(r)){var i=r.match(O);t=i[1],r=r.substring(i[0].length)}var a=H(r);switch(n){case P:return a;case L:return o([a],{type:t});case D:return new Int8Array(a);case M:return new Uint8Array(a);case R:return new Uint8ClampedArray(a);case B:return new Int16Array(a);case U:return new Uint16Array(a);case q:return new Int32Array(a);case j:return new Uint32Array(a);case F:return new Float32Array(a);case V:return new Float64Array(a);default:throw Error("Unkown type: "+n)}},stringToBuffer:H,bufferToString:W};function Y(e,t,r,n){e.executeSql("CREATE TABLE IF NOT EXISTS "+t.storeName+" (id INTEGER PRIMARY KEY, key unique, value)",[],r,n)}function K(e,t,r,n,i,o){e.executeSql(r,n,i,function(e,a){a.code===a.SYNTAX_ERR?e.executeSql("SELECT name FROM sqlite_master WHERE type='table' AND name = ?",[t.storeName],function(e,s){s.rows.length?o(e,a):Y(e,t,function(){e.executeSql(r,n,i,o)},o)},o):o(e,a)},o)}function Z(e,t,r,n){var i=this;e=c(e);var o=new a(function(o,a){i.ready().then(function(){void 0===t&&(t=null);var s=t,u=i._dbInfo;u.serializer.serialize(t,function(t,c){c?a(c):u.db.transaction(function(r){K(r,u,"INSERT OR REPLACE INTO "+u.storeName+" (key, value) VALUES (?, ?)",[e,t],function(){o(s)},function(e,t){a(t)})},function(t){if(t.code===t.QUOTA_ERR){if(n>0){o(Z.apply(i,[e,s,r,n-1]));return}a(t)}})})}).catch(a)});return s(o,r),o}var Q={_driver:"webSQLStorage",_initStorage:function(e){var t=this,r={db:null};if(e)for(var n in e)r[n]="string"!=typeof e[n]?e[n].toString():e[n];var i=new a(function(e,n){try{r.db=openDatabase(r.name,String(r.version),r.description,r.size)}catch(e){return n(e)}r.db.transaction(function(i){Y(i,r,function(){t._dbInfo=r,e()},function(e,t){n(t)})},n)});return r.serializer=G,i},_support:"function"==typeof openDatabase,iterate:function(e,t){var r=this,n=new a(function(t,n){r.ready().then(function(){var i=r._dbInfo;i.db.transaction(function(r){K(r,i,"SELECT * FROM "+i.storeName,[],function(r,n){for(var o=n.rows,a=o.length,s=0;s '__WebKitDatabaseInfoTable__'",[],function(t,n){for(var i=[],o=0;o0)?(this._dbInfo=t,t.serializer=G,a.resolve()):a.reject()},_support:function(){try{return"undefined"!=typeof localStorage&&"setItem"in localStorage&&!!localStorage.setItem}catch(e){return!1}}(),iterate:function(e,t){var r=this,n=r.ready().then(function(){for(var t=r._dbInfo,n=t.keyPrefix,i=n.length,o=localStorage.length,a=1,s=0;s=0;r--){var n=localStorage.key(r);0===n.indexOf(e)&&localStorage.removeItem(n)}});return s(r,e),r},length:function(e){var t=this.keys().then(function(e){return e.length});return s(t,e),t},key:function(e,t){var r=this,n=r.ready().then(function(){var t,n=r._dbInfo;try{t=localStorage.key(e)}catch(e){t=null}return t&&(t=t.substring(n.keyPrefix.length)),t});return s(n,t),n},keys:function(e){var t=this,r=t.ready().then(function(){for(var e=t._dbInfo,r=localStorage.length,n=[],i=0;i=0;t--){var r=localStorage.key(t);0===r.indexOf(e)&&localStorage.removeItem(r)}}):a.reject("Invalid arguments"),t),r}},ee=function(e,t){for(var r,n=e.length,i=0;i=ea.ZERO&&e<=ea.NINE}tp.decodeCodePoint=tx.default,Object.defineProperty(tp,"replaceCodePoint",{enumerable:!0,get:function(){return eH("izz4O").replaceCodePoint}}),Object.defineProperty(tp,"fromCodePoint",{enumerable:!0,get:function(){return eH("izz4O").fromCodePoint}}),(q=ea||(ea={}))[q.NUM=35]="NUM",q[q.SEMI=59]="SEMI",q[q.EQUALS=61]="EQUALS",q[q.ZERO=48]="ZERO",q[q.NINE=57]="NINE",q[q.LOWER_A=97]="LOWER_A",q[q.LOWER_F=102]="LOWER_F",q[q.LOWER_X=120]="LOWER_X",q[q.LOWER_Z=122]="LOWER_Z",q[q.UPPER_A=65]="UPPER_A",q[q.UPPER_F=70]="UPPER_F",q[q.UPPER_Z=90]="UPPER_Z",(U=es=tp.BinTrieFlags||(tp.BinTrieFlags={}))[U.VALUE_LENGTH=49152]="VALUE_LENGTH",U[U.BRANCH_LENGTH=16256]="BRANCH_LENGTH",U[U.JUMP_TABLE=127]="JUMP_TABLE",(j=eu||(eu={}))[j.EntityStart=0]="EntityStart",j[j.NumericStart=1]="NumericStart",j[j.NumericDecimal=2]="NumericDecimal",j[j.NumericHex=3]="NumericHex",j[j.NamedEntity=4]="NamedEntity",(F=ec=tp.DecodingMode||(tp.DecodingMode={}))[F.Legacy=0]="Legacy",F[F.Strict=1]="Strict",F[F.Attribute=2]="Attribute";var tS=function(){function e(e,t,r){this.decodeTree=e,this.emitCodePoint=t,this.errors=r,this.state=eu.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=ec.Strict}return e.prototype.startEntity=function(e){this.decodeMode=e,this.state=eu.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1},e.prototype.write=function(e,t){switch(this.state){case eu.EntityStart:if(e.charCodeAt(t)===ea.NUM)return this.state=eu.NumericStart,this.consumed+=1,this.stateNumericStart(e,t+1);return this.state=eu.NamedEntity,this.stateNamedEntity(e,t);case eu.NumericStart:return this.stateNumericStart(e,t);case eu.NumericDecimal:return this.stateNumericDecimal(e,t);case eu.NumericHex:return this.stateNumericHex(e,t);case eu.NamedEntity:return this.stateNamedEntity(e,t)}},e.prototype.stateNumericStart=function(e,t){return t>=e.length?-1:(32|e.charCodeAt(t))===ea.LOWER_X?(this.state=eu.NumericHex,this.consumed+=1,this.stateNumericHex(e,t+1)):(this.state=eu.NumericDecimal,this.stateNumericDecimal(e,t))},e.prototype.addToNumericResult=function(e,t,r,n){if(t!==r){var i=r-t;this.result=this.result*Math.pow(n,i)+parseInt(e.substr(t,i),n),this.consumed+=i}},e.prototype.stateNumericHex=function(e,t){for(var r=t;t=ea.UPPER_A)||!(n<=ea.UPPER_F))&&(!(n>=ea.LOWER_A)||!(n<=ea.LOWER_F)))return this.addToNumericResult(e,r,t,16),this.emitNumericEntity(i,3);t+=1}return this.addToNumericResult(e,r,t,16),-1},e.prototype.stateNumericDecimal=function(e,t){for(var r=t;t>14;t=ea.UPPER_A&&t<=ea.UPPER_Z||t>=ea.LOWER_A&&t<=ea.LOWER_Z||tE(t)}(o))?0:this.emitNotTerminatedNamedEntity();if(0!=(i=((n=r[this.treeIndex])&es.VALUE_LENGTH)>>14)){if(o===ea.SEMI)return this.emitNamedEntityData(this.treeIndex,i,this.consumed+this.excess);this.decodeMode!==ec.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return -1},e.prototype.emitNotTerminatedNamedEntity=function(){var e,t=this.result,r=(this.decodeTree[t]&es.VALUE_LENGTH)>>14;return this.emitNamedEntityData(t,r,this.consumed),null===(e=this.errors)||void 0===e||e.missingSemicolonAfterCharacterReference(),this.consumed},e.prototype.emitNamedEntityData=function(e,t,r){var n=this.decodeTree;return this.emitCodePoint(1===t?n[e]&~es.VALUE_LENGTH:n[e+1],r),3===t&&this.emitCodePoint(n[e+2],r),r},e.prototype.end=function(){var e;switch(this.state){case eu.NamedEntity:return 0!==this.result&&(this.decodeMode!==ec.Attribute||this.result===this.treeIndex)?this.emitNotTerminatedNamedEntity():0;case eu.NumericDecimal:return this.emitNumericEntity(0,2);case eu.NumericHex:return this.emitNumericEntity(0,3);case eu.NumericStart:return null===(e=this.errors)||void 0===e||e.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case eu.EntityStart:return 0}},e}();function tk(e){var t="",r=new tS(e,function(e){return t+=(0,tx.fromCodePoint)(e)});return function(e,n){for(var i=0,o=0;(o=e.indexOf("&",o))>=0;){t+=e.slice(i,o),r.startEntity(n);var a=r.write(e,o+1);if(a<0){i=o+r.end();break}i=o+a,o=0===a?i+1:i}var s=t+e.slice(i);return t="",s}}function tA(e,t,r,n){var i=(t&es.BRANCH_LENGTH)>>7,o=t&es.JUMP_TABLE;if(0===i)return 0!==o&&n===o?r:-1;if(o){var a=n-o;return a<0||a>=i?-1:e[r+a]-1}for(var s=r,u=s+i-1;s<=u;){var c=s+u>>>1,l=e[c];if(ln))return e[c+i];u=c-1}}return -1}tp.EntityDecoder=tS,tp.determineBranch=tA;var tI=tk(tb.default),tT=tk(tw.default);function tN(e){return e===el.Space||e===el.NewLine||e===el.Tab||e===el.FormFeed||e===el.CarriageReturn}function tO(e){return e===el.Slash||e===el.Gt||tN(e)}function t_(e){return e>=el.Zero&&e<=el.Nine}tp.decodeHTML=function(e,t){return void 0===t&&(t=ec.Legacy),tI(e,t)},tp.decodeHTMLAttribute=function(e){return tI(e,ec.Attribute)},tp.decodeHTMLStrict=function(e){return tI(e,ec.Strict)},tp.decodeXML=function(e){return tT(e,ec.Strict)},(V=el||(el={}))[V.Tab=9]="Tab",V[V.NewLine=10]="NewLine",V[V.FormFeed=12]="FormFeed",V[V.CarriageReturn=13]="CarriageReturn",V[V.Space=32]="Space",V[V.ExclamationMark=33]="ExclamationMark",V[V.Number=35]="Number",V[V.Amp=38]="Amp",V[V.SingleQuote=39]="SingleQuote",V[V.DoubleQuote=34]="DoubleQuote",V[V.Dash=45]="Dash",V[V.Slash=47]="Slash",V[V.Zero=48]="Zero",V[V.Nine=57]="Nine",V[V.Semi=59]="Semi",V[V.Lt=60]="Lt",V[V.Eq=61]="Eq",V[V.Gt=62]="Gt",V[V.Questionmark=63]="Questionmark",V[V.UpperA=65]="UpperA",V[V.LowerA=97]="LowerA",V[V.UpperF=70]="UpperF",V[V.LowerF=102]="LowerF",V[V.UpperZ=90]="UpperZ",V[V.LowerZ=122]="LowerZ",V[V.LowerX=120]="LowerX",V[V.OpeningSquareBracket=91]="OpeningSquareBracket",($=ef||(ef={}))[$.Text=1]="Text",$[$.BeforeTagName=2]="BeforeTagName",$[$.InTagName=3]="InTagName",$[$.InSelfClosingTag=4]="InSelfClosingTag",$[$.BeforeClosingTagName=5]="BeforeClosingTagName",$[$.InClosingTagName=6]="InClosingTagName",$[$.AfterClosingTagName=7]="AfterClosingTagName",$[$.BeforeAttributeName=8]="BeforeAttributeName",$[$.InAttributeName=9]="InAttributeName",$[$.AfterAttributeName=10]="AfterAttributeName",$[$.BeforeAttributeValue=11]="BeforeAttributeValue",$[$.InAttributeValueDq=12]="InAttributeValueDq",$[$.InAttributeValueSq=13]="InAttributeValueSq",$[$.InAttributeValueNq=14]="InAttributeValueNq",$[$.BeforeDeclaration=15]="BeforeDeclaration",$[$.InDeclaration=16]="InDeclaration",$[$.InProcessingInstruction=17]="InProcessingInstruction",$[$.BeforeComment=18]="BeforeComment",$[$.CDATASequence=19]="CDATASequence",$[$.InSpecialComment=20]="InSpecialComment",$[$.InCommentLike=21]="InCommentLike",$[$.BeforeSpecialS=22]="BeforeSpecialS",$[$.SpecialStartSequence=23]="SpecialStartSequence",$[$.InSpecialTag=24]="InSpecialTag",$[$.BeforeEntity=25]="BeforeEntity",$[$.BeforeNumericEntity=26]="BeforeNumericEntity",$[$.InNamedEntity=27]="InNamedEntity",$[$.InNumericEntity=28]="InNumericEntity",$[$.InHexEntity=29]="InHexEntity",(z=ed||(ed={}))[z.NoValue=0]="NoValue",z[z.Unquoted=1]="Unquoted",z[z.Single=2]="Single",z[z.Double=3]="Double";var tC={Cdata:new Uint8Array([67,68,65,84,65,91]),CdataEnd:new Uint8Array([93,93,62]),CommentEnd:new Uint8Array([45,45,62]),ScriptEnd:new Uint8Array([60,47,115,99,114,105,112,116]),StyleEnd:new Uint8Array([60,47,115,116,121,108,101]),TitleEnd:new Uint8Array([60,47,116,105,116,108,101])},tP=/*#__PURE__*/function(){function e(t,r){var n=t.xmlMode,i=void 0!==n&&n,o=t.decodeEntities;tf(this,e),this.cbs=r,this.state=ef.Text,this.buffer="",this.sectionStart=0,this.index=0,this.baseState=ef.Text,this.isSpecial=!1,this.running=!0,this.offset=0,this.currentSequence=void 0,this.sequenceIndex=0,this.trieIndex=0,this.trieCurrent=0,this.entityResult=0,this.entityExcess=0,this.xmlMode=i,this.decodeEntities=void 0===o||o,this.entityTrie=i?tp.xmlDecodeTree:tp.htmlDecodeTree}return th(e,[{key:"reset",value:function(){this.state=ef.Text,this.buffer="",this.sectionStart=0,this.index=0,this.baseState=ef.Text,this.currentSequence=void 0,this.running=!0,this.offset=0}},{key:"write",value:function(e){this.offset+=this.buffer.length,this.buffer=e,this.parse()}},{key:"end",value:function(){this.running&&this.finish()}},{key:"pause",value:function(){this.running=!1}},{key:"resume",value:function(){this.running=!0,this.indexthis.sectionStart&&this.cbs.ontext(this.sectionStart,this.index),this.state=ef.BeforeTagName,this.sectionStart=this.index):this.decodeEntities&&e===el.Amp&&(this.state=ef.BeforeEntity)}},{key:"stateSpecialStartSequence",value:function(e){var t=this.sequenceIndex===this.currentSequence.length;if(t?tO(e):(32|e)===this.currentSequence[this.sequenceIndex]){if(!t){this.sequenceIndex++;return}}else this.isSpecial=!1;this.sequenceIndex=0,this.state=ef.InTagName,this.stateInTagName(e)}},{key:"stateInSpecialTag",value:function(e){if(this.sequenceIndex===this.currentSequence.length){if(e===el.Gt||tN(e)){var t=this.index-this.currentSequence.length;if(this.sectionStart=el.LowerA&&e<=el.LowerZ||e>=el.UpperA&&e<=el.UpperZ}},{key:"startSpecial",value:function(e,t){this.isSpecial=!0,this.currentSequence=e,this.sequenceIndex=t,this.state=ef.SpecialStartSequence}},{key:"stateBeforeTagName",value:function(e){if(e===el.ExclamationMark)this.state=ef.BeforeDeclaration,this.sectionStart=this.index+1;else if(e===el.Questionmark)this.state=ef.InProcessingInstruction,this.sectionStart=this.index+1;else if(this.isTagStartChar(e)){var t=32|e;this.sectionStart=this.index,this.xmlMode||t!==tC.TitleEnd[2]?this.state=this.xmlMode||t!==tC.ScriptEnd[2]?ef.InTagName:ef.BeforeSpecialS:this.startSpecial(tC.TitleEnd,3)}else e===el.Slash?this.state=ef.BeforeClosingTagName:(this.state=ef.Text,this.stateText(e))}},{key:"stateInTagName",value:function(e){tO(e)&&(this.cbs.onopentagname(this.sectionStart,this.index),this.sectionStart=-1,this.state=ef.BeforeAttributeName,this.stateBeforeAttributeName(e))}},{key:"stateBeforeClosingTagName",value:function(e){tN(e)||(e===el.Gt?this.state=ef.Text:(this.state=this.isTagStartChar(e)?ef.InClosingTagName:ef.InSpecialComment,this.sectionStart=this.index))}},{key:"stateInClosingTagName",value:function(e){(e===el.Gt||tN(e))&&(this.cbs.onclosetag(this.sectionStart,this.index),this.sectionStart=-1,this.state=ef.AfterClosingTagName,this.stateAfterClosingTagName(e))}},{key:"stateAfterClosingTagName",value:function(e){(e===el.Gt||this.fastForwardTo(el.Gt))&&(this.state=ef.Text,this.baseState=ef.Text,this.sectionStart=this.index+1)}},{key:"stateBeforeAttributeName",value:function(e){e===el.Gt?(this.cbs.onopentagend(this.index),this.isSpecial?(this.state=ef.InSpecialTag,this.sequenceIndex=0):this.state=ef.Text,this.baseState=this.state,this.sectionStart=this.index+1):e===el.Slash?this.state=ef.InSelfClosingTag:tN(e)||(this.state=ef.InAttributeName,this.sectionStart=this.index)}},{key:"stateInSelfClosingTag",value:function(e){e===el.Gt?(this.cbs.onselfclosingtag(this.index),this.state=ef.Text,this.baseState=ef.Text,this.sectionStart=this.index+1,this.isSpecial=!1):tN(e)||(this.state=ef.BeforeAttributeName,this.stateBeforeAttributeName(e))}},{key:"stateInAttributeName",value:function(e){(e===el.Eq||tO(e))&&(this.cbs.onattribname(this.sectionStart,this.index),this.sectionStart=-1,this.state=ef.AfterAttributeName,this.stateAfterAttributeName(e))}},{key:"stateAfterAttributeName",value:function(e){e===el.Eq?this.state=ef.BeforeAttributeValue:e===el.Slash||e===el.Gt?(this.cbs.onattribend(ed.NoValue,this.index),this.state=ef.BeforeAttributeName,this.stateBeforeAttributeName(e)):tN(e)||(this.cbs.onattribend(ed.NoValue,this.index),this.state=ef.InAttributeName,this.sectionStart=this.index)}},{key:"stateBeforeAttributeValue",value:function(e){e===el.DoubleQuote?(this.state=ef.InAttributeValueDq,this.sectionStart=this.index+1):e===el.SingleQuote?(this.state=ef.InAttributeValueSq,this.sectionStart=this.index+1):tN(e)||(this.sectionStart=this.index,this.state=ef.InAttributeValueNq,this.stateInAttributeValueNoQuotes(e))}},{key:"handleInAttributeValue",value:function(e,t){e===t||!this.decodeEntities&&this.fastForwardTo(t)?(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(t===el.DoubleQuote?ed.Double:ed.Single,this.index),this.state=ef.BeforeAttributeName):this.decodeEntities&&e===el.Amp&&(this.baseState=this.state,this.state=ef.BeforeEntity)}},{key:"stateInAttributeValueDoubleQuotes",value:function(e){this.handleInAttributeValue(e,el.DoubleQuote)}},{key:"stateInAttributeValueSingleQuotes",value:function(e){this.handleInAttributeValue(e,el.SingleQuote)}},{key:"stateInAttributeValueNoQuotes",value:function(e){tN(e)||e===el.Gt?(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(ed.Unquoted,this.index),this.state=ef.BeforeAttributeName,this.stateBeforeAttributeName(e)):this.decodeEntities&&e===el.Amp&&(this.baseState=this.state,this.state=ef.BeforeEntity)}},{key:"stateBeforeDeclaration",value:function(e){e===el.OpeningSquareBracket?(this.state=ef.CDATASequence,this.sequenceIndex=0):this.state=e===el.Dash?ef.BeforeComment:ef.InDeclaration}},{key:"stateInDeclaration",value:function(e){(e===el.Gt||this.fastForwardTo(el.Gt))&&(this.cbs.ondeclaration(this.sectionStart,this.index),this.state=ef.Text,this.sectionStart=this.index+1)}},{key:"stateInProcessingInstruction",value:function(e){(e===el.Gt||this.fastForwardTo(el.Gt))&&(this.cbs.onprocessinginstruction(this.sectionStart,this.index),this.state=ef.Text,this.sectionStart=this.index+1)}},{key:"stateBeforeComment",value:function(e){e===el.Dash?(this.state=ef.InCommentLike,this.currentSequence=tC.CommentEnd,this.sequenceIndex=2,this.sectionStart=this.index+1):this.state=ef.InDeclaration}},{key:"stateInSpecialComment",value:function(e){(e===el.Gt||this.fastForwardTo(el.Gt))&&(this.cbs.oncomment(this.sectionStart,this.index,0),this.state=ef.Text,this.sectionStart=this.index+1)}},{key:"stateBeforeSpecialS",value:function(e){var t=32|e;t===tC.ScriptEnd[3]?this.startSpecial(tC.ScriptEnd,4):t===tC.StyleEnd[3]?this.startSpecial(tC.StyleEnd,4):(this.state=ef.InTagName,this.stateInTagName(e))}},{key:"stateBeforeEntity",value:function(e){this.entityExcess=1,this.entityResult=0,e===el.Number?this.state=ef.BeforeNumericEntity:e===el.Amp||(this.trieIndex=0,this.trieCurrent=this.entityTrie[0],this.state=ef.InNamedEntity,this.stateInNamedEntity(e))}},{key:"stateInNamedEntity",value:function(e){if(this.entityExcess+=1,this.trieIndex=(0,tp.determineBranch)(this.entityTrie,this.trieCurrent,this.trieIndex+1,e),this.trieIndex<0){this.emitNamedEntity(),this.index--;return}this.trieCurrent=this.entityTrie[this.trieIndex];var t=this.trieCurrent&tp.BinTrieFlags.VALUE_LENGTH;if(t){var r=(t>>14)-1;if(this.allowLegacyEntity()||e===el.Semi){var n=this.index-this.entityExcess+1;n>this.sectionStart&&this.emitPartial(this.sectionStart,n),this.entityResult=this.trieIndex,this.trieIndex+=r,this.entityExcess=0,this.sectionStart=this.index+1,0===r&&this.emitNamedEntity()}else this.trieIndex+=r}}},{key:"emitNamedEntity",value:function(){if(this.state=this.baseState,0!==this.entityResult)switch((this.entityTrie[this.entityResult]&tp.BinTrieFlags.VALUE_LENGTH)>>14){case 1:this.emitCodePoint(this.entityTrie[this.entityResult]&~tp.BinTrieFlags.VALUE_LENGTH);break;case 2:this.emitCodePoint(this.entityTrie[this.entityResult+1]);break;case 3:this.emitCodePoint(this.entityTrie[this.entityResult+1]),this.emitCodePoint(this.entityTrie[this.entityResult+2])}}},{key:"stateBeforeNumericEntity",value:function(e){(32|e)===el.LowerX?(this.entityExcess++,this.state=ef.InHexEntity):(this.state=ef.InNumericEntity,this.stateInNumericEntity(e))}},{key:"emitNumericEntity",value:function(e){var t=this.index-this.entityExcess-1;t+2+Number(this.state===ef.InHexEntity)!==this.index&&(t>this.sectionStart&&this.emitPartial(this.sectionStart,t),this.sectionStart=this.index+Number(e),this.emitCodePoint((0,tp.replaceCodePoint)(this.entityResult))),this.state=this.baseState}},{key:"stateInNumericEntity",value:function(e){e===el.Semi?this.emitNumericEntity(!0):t_(e)?(this.entityResult=10*this.entityResult+(e-el.Zero),this.entityExcess++):(this.allowLegacyEntity()?this.emitNumericEntity(!1):this.state=this.baseState,this.index--)}},{key:"stateInHexEntity",value:function(e){e===el.Semi?this.emitNumericEntity(!0):t_(e)?(this.entityResult=16*this.entityResult+(e-el.Zero),this.entityExcess++):e>=el.UpperA&&e<=el.UpperF||e>=el.LowerA&&e<=el.LowerF?(this.entityResult=16*this.entityResult+((32|e)-el.LowerA+10),this.entityExcess++):(this.allowLegacyEntity()?this.emitNumericEntity(!1):this.state=this.baseState,this.index--)}},{key:"allowLegacyEntity",value:function(){return!this.xmlMode&&(this.baseState===ef.Text||this.baseState===ef.InSpecialTag)}},{key:"cleanup",value:function(){this.running&&this.sectionStart!==this.index&&(this.state===ef.Text||this.state===ef.InSpecialTag&&0===this.sequenceIndex?(this.cbs.ontext(this.sectionStart,this.index),this.sectionStart=this.index):(this.state===ef.InAttributeValueDq||this.state===ef.InAttributeValueSq||this.state===ef.InAttributeValueNq)&&(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=this.index))}},{key:"shouldContinue",value:function(){return this.index1&&void 0!==arguments[1]?arguments[1]:{};tf(this,e),this.options=s,this.startIndex=0,this.endIndex=0,this.openTagStart=0,this.tagname="",this.attribname="",this.attribvalue="",this.attribs=null,this.stack=[],this.foreignContext=[],this.buffers=[],this.bufferOffset=0,this.writeIndex=0,this.ended=!1,this.cbs=null!=t?t:{},this.lowerCaseTagNames=null!==(r=s.lowerCaseTags)&&void 0!==r?r:!s.xmlMode,this.lowerCaseAttributeNames=null!==(n=s.lowerCaseAttributeNames)&&void 0!==n?n:!s.xmlMode,this.tokenizer=new(null!==(i=s.Tokenizer)&&void 0!==i?i:tP)(this.options,this),null===(a=(o=this.cbs).onparserinit)||void 0===a||a.call(o,this)}return th(e,[{key:"ontext",value:function(e,t){var r,n,i=this.getSlice(e,t);this.endIndex=t-1,null===(n=(r=this.cbs).ontext)||void 0===n||n.call(r,i),this.startIndex=t}},{key:"ontextentity",value:function(e){var t,r,n=this.tokenizer.getSectionStart();this.endIndex=n-1,null===(r=(t=this.cbs).ontext)||void 0===r||r.call(t,(0,tp.fromCodePoint)(e)),this.startIndex=n}},{key:"isVoidElement",value:function(e){return!this.options.xmlMode&&tU.has(e)}},{key:"onopentagname",value:function(e,t){this.endIndex=t;var r=this.getSlice(e,t);this.lowerCaseTagNames&&(r=r.toLowerCase()),this.emitOpenTag(r)}},{key:"emitOpenTag",value:function(e){this.openTagStart=this.startIndex,this.tagname=e;var t,r,n,i,o=!this.options.xmlMode&&tq.get(e);if(o)for(;this.stack.length>0&&o.has(this.stack[this.stack.length-1]);){var a=this.stack.pop();null===(r=(t=this.cbs).onclosetag)||void 0===r||r.call(t,a,!0)}!this.isVoidElement(e)&&(this.stack.push(e),tj.has(e)?this.foreignContext.push(!0):tF.has(e)&&this.foreignContext.push(!1)),null===(i=(n=this.cbs).onopentagname)||void 0===i||i.call(n,e),this.cbs.onopentag&&(this.attribs={})}},{key:"endOpenTag",value:function(e){var t,r;this.startIndex=this.openTagStart,this.attribs&&(null===(r=(t=this.cbs).onopentag)||void 0===r||r.call(t,this.tagname,this.attribs,e),this.attribs=null),this.cbs.onclosetag&&this.isVoidElement(this.tagname)&&this.cbs.onclosetag(this.tagname,!0),this.tagname=""}},{key:"onopentagend",value:function(e){this.endIndex=e,this.endOpenTag(!1),this.startIndex=e+1}},{key:"onclosetag",value:function(e,t){this.endIndex=t;var r,n,i,o,a,s,u=this.getSlice(e,t);if(this.lowerCaseTagNames&&(u=u.toLowerCase()),(tj.has(u)||tF.has(u))&&this.foreignContext.pop(),this.isVoidElement(u))this.options.xmlMode||"br"!==u||(null===(n=(r=this.cbs).onopentagname)||void 0===n||n.call(r,"br"),null===(o=(i=this.cbs).onopentag)||void 0===o||o.call(i,"br",{},!0),null===(s=(a=this.cbs).onclosetag)||void 0===s||s.call(a,"br",!1));else{var c=this.stack.lastIndexOf(u);if(-1!==c){if(this.cbs.onclosetag)for(var l=this.stack.length-c;l--;)this.cbs.onclosetag(this.stack.pop(),0!==l);else this.stack.length=c}else this.options.xmlMode||"p"!==u||(this.emitOpenTag("p"),this.closeCurrentTag(!0))}this.startIndex=t+1}},{key:"onselfclosingtag",value:function(e){this.endIndex=e,this.options.xmlMode||this.options.recognizeSelfClosing||this.foreignContext[this.foreignContext.length-1]?(this.closeCurrentTag(!1),this.startIndex=e+1):this.onopentagend(e)}},{key:"closeCurrentTag",value:function(e){var t,r,n=this.tagname;this.endOpenTag(e),this.stack[this.stack.length-1]===n&&(null===(r=(t=this.cbs).onclosetag)||void 0===r||r.call(t,n,!e),this.stack.pop())}},{key:"onattribname",value:function(e,t){this.startIndex=e;var r=this.getSlice(e,t);this.attribname=this.lowerCaseAttributeNames?r.toLowerCase():r}},{key:"onattribdata",value:function(e,t){this.attribvalue+=this.getSlice(e,t)}},{key:"onattribentity",value:function(e){this.attribvalue+=(0,tp.fromCodePoint)(e)}},{key:"onattribend",value:function(e,t){var r,n;this.endIndex=t,null===(n=(r=this.cbs).onattribute)||void 0===n||n.call(r,this.attribname,this.attribvalue,e===ed.Double?'"':e===ed.Single?"'":e===ed.NoValue?void 0:null),this.attribs&&!Object.prototype.hasOwnProperty.call(this.attribs,this.attribname)&&(this.attribs[this.attribname]=this.attribvalue),this.attribvalue=""}},{key:"getInstructionName",value:function(e){var t=e.search(tV),r=t<0?e:e.substr(0,t);return this.lowerCaseTagNames&&(r=r.toLowerCase()),r}},{key:"ondeclaration",value:function(e,t){this.endIndex=t;var r=this.getSlice(e,t);if(this.cbs.onprocessinginstruction){var n=this.getInstructionName(r);this.cbs.onprocessinginstruction("!".concat(n),"!".concat(r))}this.startIndex=t+1}},{key:"onprocessinginstruction",value:function(e,t){this.endIndex=t;var r=this.getSlice(e,t);if(this.cbs.onprocessinginstruction){var n=this.getInstructionName(r);this.cbs.onprocessinginstruction("?".concat(n),"?".concat(r))}this.startIndex=t+1}},{key:"oncomment",value:function(e,t,r){var n,i,o,a;this.endIndex=t,null===(i=(n=this.cbs).oncomment)||void 0===i||i.call(n,this.getSlice(e,t-r)),null===(a=(o=this.cbs).oncommentend)||void 0===a||a.call(o),this.startIndex=t+1}},{key:"oncdata",value:function(e,t,r){this.endIndex=t;var n,i,o,a,s,u,c,l,f,d,h=this.getSlice(e,t-r);this.options.xmlMode||this.options.recognizeCDATA?(null===(i=(n=this.cbs).oncdatastart)||void 0===i||i.call(n),null===(a=(o=this.cbs).ontext)||void 0===a||a.call(o,h),null===(u=(s=this.cbs).oncdataend)||void 0===u||u.call(s)):(null===(l=(c=this.cbs).oncomment)||void 0===l||l.call(c,"[CDATA[".concat(h,"]]")),null===(d=(f=this.cbs).oncommentend)||void 0===d||d.call(f)),this.startIndex=t+1}},{key:"onend",value:function(){var e,t;if(this.cbs.onclosetag){this.endIndex=this.startIndex;for(var r=this.stack.length;r>0;this.cbs.onclosetag(this.stack[--r],!0));}null===(t=(e=this.cbs).onend)||void 0===t||t.call(e)}},{key:"reset",value:function(){var e,t,r,n;null===(t=(e=this.cbs).onreset)||void 0===t||t.call(e),this.tokenizer.reset(),this.tagname="",this.attribname="",this.attribs=null,this.stack.length=0,this.startIndex=0,this.endIndex=0,null===(n=(r=this.cbs).onparserinit)||void 0===n||n.call(r,this),this.buffers.length=0,this.bufferOffset=0,this.writeIndex=0,this.ended=!1}},{key:"parseComplete",value:function(e){this.reset(),this.end(e)}},{key:"getSlice",value:function(e,t){for(;e-this.bufferOffset>=this.buffers[0].length;)this.shiftBuffer();for(var r=this.buffers[0].slice(e-this.bufferOffset,t-this.bufferOffset);t-this.bufferOffset>this.buffers[0].length;)this.shiftBuffer(),r+=this.buffers[0].slice(0,t-this.bufferOffset);return r}},{key:"shiftBuffer",value:function(){this.bufferOffset+=this.buffers[0].length,this.writeIndex--,this.buffers.shift()}},{key:"write",value:function(e){var t,r;if(this.ended){null===(r=(t=this.cbs).onerror)||void 0===r||r.call(t,Error(".write() after done!"));return}this.buffers.push(e),this.tokenizer.running&&(this.tokenizer.write(e),this.writeIndex++)}},{key:"end",value:function(e){var t,r;if(this.ended){null===(r=(t=this.cbs).onerror)||void 0===r||r.call(t,Error(".end() after done!"));return}e&&this.write(e),this.ended=!0,this.tokenizer.end()}},{key:"pause",value:function(){this.tokenizer.pause()}},{key:"resume",value:function(){for(this.tokenizer.resume();this.tokenizer.running&&this.writeIndex0&&void 0!==arguments[0]&&arguments[0];return t7(this,e)}}]),e}(),t1=/*#__PURE__*/function(e){tH(r,e);var t=tX(r);function r(e){var n;return tf(this,r),(n=t.call(this)).data=e,n}return th(r,[{key:"nodeValue",get:function(){return this.data},set:function(e){this.data=e}}]),r}(tQ(t0)),t3=/*#__PURE__*/function(e){tH(r,e);var t=tX(r);function r(){var e;return tf(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=eh.Text,e}return th(r,[{key:"nodeType",get:function(){return 3}}]),r}(t1),t2=/*#__PURE__*/function(e){tH(r,e);var t=tX(r);function r(){var e;return tf(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=eh.Comment,e}return th(r,[{key:"nodeType",get:function(){return 8}}]),r}(t1),t5=/*#__PURE__*/function(e){tH(r,e);var t=tX(r);function r(e,n){var i;return tf(this,r),(i=t.call(this,n)).name=e,i.type=eh.Directive,i}return th(r,[{key:"nodeType",get:function(){return 1}}]),r}(t1),t8=/*#__PURE__*/function(e){tH(r,e);var t=tX(r);function r(e){var n;return tf(this,r),(n=t.call(this)).children=e,n}return th(r,[{key:"firstChild",get:function(){var e;return null!==(e=this.children[0])&&void 0!==e?e:null}},{key:"lastChild",get:function(){return this.children.length>0?this.children[this.children.length-1]:null}},{key:"childNodes",get:function(){return this.children},set:function(e){this.children=e}}]),r}(tQ(t0)),t6=/*#__PURE__*/function(e){tH(r,e);var t=tX(r);function r(){var e;return tf(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=eh.CDATA,e}return th(r,[{key:"nodeType",get:function(){return 4}}]),r}(t8),t4=/*#__PURE__*/function(e){tH(r,e);var t=tX(r);function r(){var e;return tf(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=eh.Root,e}return th(r,[{key:"nodeType",get:function(){return 9}}]),r}(t8),t9=/*#__PURE__*/function(e){tH(r,e);var t=tX(r);function r(e,n){var i,o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[],a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"script"===e?eh.Script:"style"===e?eh.Style:eh.Tag;return tf(this,r),(i=t.call(this,o)).name=e,i.attribs=n,i.type=a,i}return th(r,[{key:"nodeType",get:function(){return 1}},{key:"tagName",get:function(){return this.name},set:function(e){this.name=e}},{key:"attributes",get:function(){var e=this;return Object.keys(this.attribs).map(function(t){var r,n;return{name:t,value:e.attribs[t],namespace:null===(r=e["x-attribsNamespace"])||void 0===r?void 0:r[t],prefix:null===(n=e["x-attribsPrefix"])||void 0===n?void 0:n[t]}})}}]),r}(t8);function t7(e){var t,r=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(e.type===eh.Text)t=new t3(e.data);else if(e.type===eh.Comment)t=new t2(e.data);else if(e.type===eh.Tag||e.type===eh.Script||e.type===eh.Style){var n=r?re(e.children):[],i=new t9(e.name,tG({},e.attribs),n);n.forEach(function(e){return e.parent=i}),null!=e.namespace&&(i.namespace=e.namespace),e["x-attribsNamespace"]&&(i["x-attribsNamespace"]=tG({},e["x-attribsNamespace"])),e["x-attribsPrefix"]&&(i["x-attribsPrefix"]=tG({},e["x-attribsPrefix"])),t=i}else if(e.type===eh.CDATA){var o=r?re(e.children):[],a=new t6(o);o.forEach(function(e){return e.parent=a}),t=a}else if(e.type===eh.Root){var s=r?re(e.children):[],u=new t4(s);s.forEach(function(e){return e.parent=u}),e["x-mode"]&&(u["x-mode"]=e["x-mode"]),t=u}else if(e.type===eh.Directive){var c=new t5(e.name,e.data);null!=e["x-name"]&&(c["x-name"]=e["x-name"],c["x-publicId"]=e["x-publicId"],c["x-systemId"]=e["x-systemId"]),t=c}else throw Error("Not implemented yet: ".concat(e.type));return t.startIndex=e.startIndex,t.endIndex=e.endIndex,null!=e.sourceCodeLocation&&(t.sourceCodeLocation=e.sourceCodeLocation),t}function re(e){for(var t=e.map(function(e){return t7(e,!0)}),r=1;r䀾mmaĀ;d׷׸䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀\ud835\udd0a;拙pf;쀀\ud835\udd3eeater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀\ud835\udca2;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇܎ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀\ud835\udd40a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ޷޼߂ߐĀiyޱ޵rc;䄴;䐙r;쀀\ud835\udd0dpf;쀀\ud835\udd41ǣ߇\0ߌr;쀀\ud835\udca5rcy;䐈kcy;䐄΀HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶߻dil;䄶;䐚r;쀀\ud835\udd0epf;쀀\ud835\udd42cr;쀀\ud835\udca6րJTaceflmostࠥࠩࠬࡐࡣ঳সে্਷ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗ࡜ࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४Ānrࢃ࢏gleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀\ud835\udd0fĀ;eঽা拘ftarrow;懚idot;䄿ƀnpw৔ਖਛgȀLRlr৞৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀\ud835\udd43erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼੝੠੷੼અઋ઎p;椅y;䐜Ādl੥੯iumSpace;恟lintrf;愳r;쀀\ud835\udd10nusPlus;戓pf;쀀\ud835\udd44cò੶;䎜ҀJacefostuણધભીଔଙඑ඗ඞcy;䐊cute;䅃ƀaey઴હાron;䅇dil;䅅;䐝ƀgswે૰଎ativeƀMTV૓૟૨ediumSpace;怋hiĀcn૦૘ë૙eryThiî૙tedĀGL૸ଆreaterGreateòٳessLesóੈLine;䀊r;쀀\ud835\udd11ȀBnptଢନଷ଺reak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪୼஡௫ఄ౞಄ದ೘ൡඅ櫬Āou୛୤ngruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊ஛ement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater΀;EFGLSTஶஷ஽௉௓௘௥扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲௽ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ೒拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨೹setĀ;E೰ೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀\ud835\udca9ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂ෉෕ෛ෠෧෼ขภยา฿ไlig;䅒cute耻Ó䃓Āiy෎ීrc耻Ô䃔;䐞blac;䅐r;쀀\ud835\udd12rave耻Ò䃒ƀaei෮ෲ෶cr;䅌ga;䎩cron;䎟pf;쀀\ud835\udd46enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀\ud835\udcaaash耻Ø䃘iŬื฼de耻Õ䃕es;樷ml耻Ö䃖erĀBP๋๠Āar๐๓r;怾acĀek๚๜;揞et;掴arenthesis;揜Ҁacfhilors๿ງຊຏຒດຝະ໼rtialD;戂y;䐟r;쀀\ud835\udd13i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ໠໤檻cedesȀ;EST່້໏໚扺qual;檯lantEqual;扼ilde;找me;怳Ādp໩໮uct;戏ortionĀ;aȥ໹l;戝Āci༁༆r;쀀\ud835\udcab;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀\ud835\udd14pf;愚cr;쀀\ud835\udcac؀BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁࿫࿳ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL࿜࿝࿡憒ar;懥eftArrow;懄eiling;按oǵ࿹\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀\ud835\udd16ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»࿝pArrow;憑gma;䎣allCircle;战pf;쀀\ud835\udd4aɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀\ud835\udcaear;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄ቉ቕ቞ቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHc቎ቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀\ud835\udd17Āeiቻ኉Dzኀ\0ኇefore;戴a;䎘Ācn኎ኘkSpace;쀀  Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀\ud835\udd4bipleDot;惛Āctዖዛr;쀀\ud835\udcafrok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0᏿ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0጖y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀\ud835\udd18rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻፿on;䅲f;쀀\ud835\udd4cЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀\ud835\udcb0ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀\ud835\udd19pf;쀀\ud835\udd4dcr;쀀\ud835\udcb1dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀\ud835\udd1apf;쀀\ud835\udd4ecr;쀀\ud835\udcb2Ȁfiosᓋᓐᓒᓘr;쀀\ud835\udd1b;䎞pf;쀀\ud835\udd4fcr;쀀\ud835\udcb3ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀\ud835\udd1cpf;쀀\ud835\udd50cr;쀀\ud835\udcb4ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtè૙a;䎖r;愨pf;愤cr;쀀\ud835\udcb5௡ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀\ud835\udd1erave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚΀;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀\ud835\udd52΀;Eaeiop዁ᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;e዁ᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀\ud835\udcb6;䀪mpĀ;e዁ᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰ᜼ᝃᝈ᝸᝽០៦ᠹᡐᜍ᤽᥈ᥰot;櫭Ācrᛶ᜞kȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e᜚᜛戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;t፜᜷brk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓ᝛ᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯ᝱ᝳ;䎲;愶een;扬r;쀀\ud835\udd1fg΀costuvwឍឝឳេ៕៛៞ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀako៭ᠦᠵĀcn៲ᠣkƀlst៺֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘᠝斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀\ud835\udd53Ā;tᏋᡣom»Ꮜtie;拈؀DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬ᣿ᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教΀;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ᣷᣹᣻᣽;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ᤟;敛;敘;攘;攔΀;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģ᥂bar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀\ud835\udcb7mi;恏mĀ;e᜚᜜lƀ;bhᥨᥩᥫ䁜;槅sub;柈Ŭᥴ᥾lĀ;e᥹᥺怢t»᥺pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭍᭒\0᯽\0ᰌƀcpr᦭ᦲ᧝ute;䄇̀;abcdsᦿᧀᧄ᧊᧕᧙戩nd;橄rcup;橉Āau᧏᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀\ud835\udd20ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r΀;Ecefms᩟᩠ᩢᩫ᪤᪪᪮旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖᪚᪟»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇᫔᫺\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ᫙\0\0᫢aĀ;t᫞᫟䀬;䁀ƀ;fl᫨᫩᫫戁îᅠeĀmx᫱᫶ent»᫩eóɍǧ᫾\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀\ud835\udd54oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀\ud835\udcb8Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯΀delprvw᭠᭬᭷ᮂᮬᯔ᯹arrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;p᭿ᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰸᰻᰿ᱝᱩᱵᲊᲞᲬᲷ᳻᳿ᴍᵻᶑᶫᶻ᷆᷍rò΁ar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀\ud835\udd21arĀlrᲳᲵ»ࣜ»သʀaegsv᳂͸᳖᳜᳠mƀ;oș᳊᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀\ud835\udd55ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀\ud835\udcb9;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄ὎὚ĀDoḆᴴoôᲉĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀\ud835\udd22ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀\ud835\udd56ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»Ṻƀaeiἒ἖Ἒls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀\ud835\udd23lig;耀filig;쀀fjƀaltῙ῜ῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀\ud835\udd57ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao‌⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧‪‬\0‮耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀\ud835\udcbbࢀEabcdefgijlnorstv₂₉₟₥₰₴⃰⃵⃺⃿℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕ₝ute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽⃉ƀ;qsؾٌ⃄lanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀\ud835\udd24Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀\ud835\udd58Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqr׮ⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0↎proø₞r;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀\ud835\udd25sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀\ud835\udd59bar;怕ƀclt≯≴≸r;쀀\ud835\udcbdasè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀\ud835\udd26rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀\ud835\udd5aa;䎹uest耻¿䂿Āci⎊⎏r;쀀\ud835\udcbenʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀\ud835\udd27ath;䈷pf;쀀\ud835\udd5bǣ⏬\0⏱r;쀀\ud835\udcbfrcy;䑘kcy;䑔Ѐacfghjos␋␖␢␧␭␱␵␻ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀\ud835\udd28reen;䄸cy;䑅cy;䑜pf;쀀\ud835\udd5ccr;쀀\ud835\udcc0஀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼rò৆òΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonó྘quigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀\ud835\udd29Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀\ud835\udd5dus;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d྘➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀\ud835\udcc1mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ᠛旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀\ud835\udd2ao;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀\ud835\udd5eĀct⣸⣽r;쀀\ud835\udcc2pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐௏쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop඄⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roø඄urĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓΀;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨í஘istĀ;s஠டr;쀀\ud835\udd2bȀEest௅⩦⩹⩼ƀ;qs஼⩭௡ƀ;qs஼௅⩴lanô௢ií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚΀AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs఻⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs఻⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀\ud835\udd5f膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast୻⭕⭚⭟lleì୻l;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖ΀chimpqu⮽⯍⯙⬄୸⯤⯯Ȁ;cerല⯆ഷ⯉uå൅;쀀\ud835\udcc3ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭å೸åഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñ೗Ā;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰⳴ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥ⵲ⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;c᪞ⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācr⵩⵭ir;榿;쀀\ud835\udd2cͯ⵹\0\0⵼\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕ⶘ⶥⶨrò᪀Āir⶝ⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀\ud835\udd60ƀaelⷔ⷗ǒr;榷rp;榹΀;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ⹞\0⹽\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ⹧⹲຅脀¶;l⹭⹮䂶leìЃɩ⹸\0\0⹻m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀\ud835\udd2dƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳⻴ᤈ⻹⻽⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀\ud835\udd61nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp໬⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t໻⾴ï໻rel;抰Āci⿀⿅r;쀀\ud835\udcc5;䏈ncsp;怈̀fiopsu⿚⋢⿟⿥⿫⿱r;쀀\ud835\udd2epf;쀀\ud835\udd62rime;恗cr;쀀\ud835\udcc6ƀaeo⿸〉〓tĀei⿾々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔઀ABHabcdefhilmnoprstux぀けさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤΀cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstw࿜ガクシスゼゾダッデナp;極Ā;f࿠ゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes㄂㄄;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ì࿲âヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀\ud835\udd2fĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘㇤㇮rrowĀ;t࿜ㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowó࿪arpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓rò࿪aòՑ;怏oustĀ;a㈞㈟掱che»㈟mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀\ud835\udd63us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀\ud835\udcc7Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦΀Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼਴t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀\ud835\udd30Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì⹯耻­䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;q኱ኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀\ud835\udd64aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀\ud835\udcc8tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫ਩war;椪lig耻ß䃟௡㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rë๟ƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀\ud835\udd31Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproø዁im»ኬsðኞĀas㚺㚮ð዁rn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀\ud835\udd65rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈ΀adempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀\ud835\udcc9;䑆cy;䑛rok;䅧Āio㞋㞎xô᝷headĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀\ud835\udd32rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀\ud835\udd66̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀\ud835\udccaƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜΀eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀\ud835\udd33tré㦮suĀbp㧯㧱»ജ»൙pf;쀀\ud835\udd67roð໻tré㦴Ācu㨆㨋r;쀀\ud835\udccbĀbp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚΀cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀\ud835\udd34pf;쀀\ud835\udd68Ā;eᑹ㩦atèᑹcr;쀀\ud835\udcccૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜ៟tré៑r;쀀\ud835\udd35ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀\ud835\udd69imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀\ud835\udccdĀpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀\ud835\udd36cy;䑗pf;쀀\ud835\udd6acr;쀀\ud835\udcceĀcm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀\ud835\udd37cy;䐶grarr;懝pf;쀀\ud835\udd6bcr;쀀\ud835\udccfĀjn㮅㮇;怍j;怌'.split("").map(function(e){return e.charCodeAt(0)})),rn=new Uint16Array("Ȁaglq \x15\x18\x1bɭ\x0f\0\0\x12p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map(function(e){return e.charCodeAt(0)})),ri=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]),ro=null!==(ep=String.fromCodePoint)&&void 0!==ep?ep:function(e){var t="";return e>65535&&(e-=65536,t+=String.fromCharCode(e>>>10&1023|55296),e=56320|1023&e),t+=String.fromCharCode(e)};function ra(e){return e>=em.ZERO&&e<=em.NINE}(W=em||(em={}))[W.NUM=35]="NUM",W[W.SEMI=59]="SEMI",W[W.EQUALS=61]="EQUALS",W[W.ZERO=48]="ZERO",W[W.NINE=57]="NINE",W[W.LOWER_A=97]="LOWER_A",W[W.LOWER_F=102]="LOWER_F",W[W.LOWER_X=120]="LOWER_X",W[W.LOWER_Z=122]="LOWER_Z",W[W.UPPER_A=65]="UPPER_A",W[W.UPPER_F=70]="UPPER_F",W[W.UPPER_Z=90]="UPPER_Z",(G=ev||(ev={}))[G.VALUE_LENGTH=49152]="VALUE_LENGTH",G[G.BRANCH_LENGTH=16256]="BRANCH_LENGTH",G[G.JUMP_TABLE=127]="JUMP_TABLE",(Y=eg||(eg={}))[Y.EntityStart=0]="EntityStart",Y[Y.NumericStart=1]="NumericStart",Y[Y.NumericDecimal=2]="NumericDecimal",Y[Y.NumericHex=3]="NumericHex",Y[Y.NamedEntity=4]="NamedEntity",(K=ey||(ey={}))[K.Legacy=0]="Legacy",K[K.Strict=1]="Strict",K[K.Attribute=2]="Attribute";var rs=/*#__PURE__*/function(){function e(t,r,n){tf(this,e),this.decodeTree=t,this.emitCodePoint=r,this.errors=n,this.state=eg.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=ey.Strict}return th(e,[{key:"startEntity",value:function(e){this.decodeMode=e,this.state=eg.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1}},{key:"write",value:function(e,t){switch(this.state){case eg.EntityStart:if(e.charCodeAt(t)===em.NUM)return this.state=eg.NumericStart,this.consumed+=1,this.stateNumericStart(e,t+1);return this.state=eg.NamedEntity,this.stateNamedEntity(e,t);case eg.NumericStart:return this.stateNumericStart(e,t);case eg.NumericDecimal:return this.stateNumericDecimal(e,t);case eg.NumericHex:return this.stateNumericHex(e,t);case eg.NamedEntity:return this.stateNamedEntity(e,t)}}},{key:"stateNumericStart",value:function(e,t){return t>=e.length?-1:(32|e.charCodeAt(t))===em.LOWER_X?(this.state=eg.NumericHex,this.consumed+=1,this.stateNumericHex(e,t+1)):(this.state=eg.NumericDecimal,this.stateNumericDecimal(e,t))}},{key:"addToNumericResult",value:function(e,t,r,n){if(t!==r){var i=r-t;this.result=this.result*Math.pow(n,i)+parseInt(e.substr(t,i),n),this.consumed+=i}}},{key:"stateNumericHex",value:function(e,t){for(var r=t;t=em.UPPER_A)||!(n<=em.UPPER_F))&&(!(n>=em.LOWER_A)||!(n<=em.LOWER_F)))return this.addToNumericResult(e,r,t,16),this.emitNumericEntity(i,3);t+=1}return this.addToNumericResult(e,r,t,16),-1}},{key:"stateNumericDecimal",value:function(e,t){for(var r=t;t=55296&&n<=57343||n>1114111?65533:null!==(i=ri.get(n))&&void 0!==i?i:n,this.consumed),this.errors&&(e!==em.SEMI&&this.errors.missingSemicolonAfterCharacterReference(),this.errors.validateNumericCharacterReference(this.result)),this.consumed}},{key:"stateNamedEntity",value:function(e,t){for(var r=this.decodeTree,n=r[this.treeIndex],i=(n&ev.VALUE_LENGTH)>>14;t>7,o=t&ev.JUMP_TABLE;if(0===i)return 0!==o&&n===o?r:-1;if(o){var a=n-o;return a<0||a>=i?-1:e[r+a]-1}for(var s=r,u=s+i-1;s<=u;){var c=s+u>>>1,l=e[c];if(ln))return e[c+i];u=c-1}}return -1}(r,n,this.treeIndex+Math.max(1,i),o),this.treeIndex<0)return 0===this.result||this.decodeMode===ey.Attribute&&(0===i||function(e){var t;return e===em.EQUALS||(t=e)>=em.UPPER_A&&t<=em.UPPER_Z||t>=em.LOWER_A&&t<=em.LOWER_Z||ra(t)}(o))?0:this.emitNotTerminatedNamedEntity();if(0!=(i=((n=r[this.treeIndex])&ev.VALUE_LENGTH)>>14)){if(o===em.SEMI)return this.emitNamedEntityData(this.treeIndex,i,this.consumed+this.excess);this.decodeMode!==ey.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return -1}},{key:"emitNotTerminatedNamedEntity",value:function(){var e,t=this.result,r=(this.decodeTree[t]&ev.VALUE_LENGTH)>>14;return this.emitNamedEntityData(t,r,this.consumed),null===(e=this.errors)||void 0===e||e.missingSemicolonAfterCharacterReference(),this.consumed}},{key:"emitNamedEntityData",value:function(e,t,r){var n=this.decodeTree;return this.emitCodePoint(1===t?n[e]&~ev.VALUE_LENGTH:n[e+1],r),3===t&&this.emitCodePoint(n[e+2],r),r}},{key:"end",value:function(){var e;switch(this.state){case eg.NamedEntity:return 0!==this.result&&(this.decodeMode!==ey.Attribute||this.result===this.treeIndex)?this.emitNotTerminatedNamedEntity():0;case eg.NumericDecimal:return this.emitNumericEntity(0,2);case eg.NumericHex:return this.emitNumericEntity(0,3);case eg.NumericStart:return null===(e=this.errors)||void 0===e||e.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case eg.EntityStart:return 0}}}]),e}();function ru(e){var t="",r=new rs(e,function(e){return t+=ro(e)});return function(e,n){for(var i=0,o=0;(o=e.indexOf("&",o))>=0;){t+=e.slice(i,o),r.startEntity(n);var a=r.write(e,o+1);if(a<0){i=o+r.end();break}i=o+a,o=0===a?i+1:i}var s=t+e.slice(i);return t="",s}}ru(rr),ru(rn);var rc=new Map([[34,"""],[38,"&"],[39,"'"],[60,"<"],[62,">"]]);function rl(e,t){return function(r){for(var n,i=0,o="";n=e.exec(r);)i!==n.index&&(o+=r.substring(i,n.index)),o+=t.get(n[0].charCodeAt(0)),i=n.index+1;return o+r.substring(i)}}String.prototype.codePointAt,rl(/[&<>'"]/g,rc),rl(/["&\u00A0]/g,new Map([[34,"""],[38,"&"],[160," "]])),rl(/[&<>\u00A0]/g,new Map([[38,"&"],[60,"<"],[62,">"],[160," "]])),(Z=eb||(eb={}))[Z.XML=0]="XML",Z[Z.HTML=1]="HTML",(Q=ew||(ew={}))[Q.UTF8=0]="UTF8",Q[Q.ASCII=1]="ASCII",Q[Q.Extensive=2]="Extensive",Q[Q.Attribute=3]="Attribute",Q[Q.Text=4]="Text",["altGlyph","altGlyphDef","altGlyphItem","animateColor","animateMotion","animateTransform","clipPath","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","foreignObject","glyphRef","linearGradient","radialGradient","textPath"].map(function(e){return[e.toLowerCase(),e]}),["definitionURL","attributeName","attributeType","baseFrequency","baseProfile","calcMode","clipPathUnits","diffuseConstant","edgeMode","filterUnits","glyphRef","gradientTransform","gradientUnits","kernelMatrix","kernelUnitLength","keyPoints","keySplines","keyTimes","lengthAdjust","limitingConeAngle","markerHeight","markerUnits","markerWidth","maskContentUnits","maskUnits","numOctaves","pathLength","patternContentUnits","patternTransform","patternUnits","pointsAtX","pointsAtY","pointsAtZ","preserveAlpha","preserveAspectRatio","primitiveUnits","refX","refY","repeatCount","repeatDur","requiredExtensions","requiredFeatures","specularConstant","specularExponent","spreadMethod","startOffset","stdDeviation","stitchTiles","surfaceScale","systemLanguage","tableValues","targetX","targetY","textLength","viewBox","viewTarget","xChannelSelector","yChannelSelector","zoomAndPan"].map(function(e){return[e.toLowerCase(),e]}),(J=ex||(ex={}))[J.DISCONNECTED=1]="DISCONNECTED",J[J.PRECEDING=2]="PRECEDING",J[J.FOLLOWING=4]="FOLLOWING",J[J.CONTAINS=8]="CONTAINS",J[J.CONTAINED_BY=16]="CONTAINED_BY";var rf={};/*! * is-plain-object * * Copyright (c) 2014-2017, Jon Schlinkert. @@ -10,4 +10,4 @@ * @inspiration https://stackoverflow.com/questions/16348031/disable-scrolling-when-touch-moving-certain-element * @author John Doherty * @license MIT - */function(e,t){"function"!=typeof e.CustomEvent&&(e.CustomEvent=function(e,r){r=r||{bubbles:!1,cancelable:!1,detail:void 0};var n=t.createEvent("CustomEvent");return n.initCustomEvent(e,r.bubbles,r.cancelable,r.detail),n},e.CustomEvent.prototype=e.Event.prototype),t.addEventListener("touchstart",function(e){"true"!==e.target.getAttribute("data-swipe-ignore")&&(s=e.target,a=Date.now(),r=e.touches[0].clientX,n=e.touches[0].clientY,i=0,o=0,u=e.touches.length)},!1),t.addEventListener("touchmove",function(e){if(r&&n){var t=e.touches[0].clientX,a=e.touches[0].clientY;i=r-t,o=n-a}},!1),t.addEventListener("touchend",function(e){if(s===e.target){var l=parseInt(c(s,"data-swipe-threshold","20"),10),f=c(s,"data-swipe-unit","px"),d=parseInt(c(s,"data-swipe-timeout","500"),10),h=Date.now()-a,p="",m=e.changedTouches||e.touches||[];if("vh"===f&&(l=Math.round(l/100*t.documentElement.clientHeight)),"vw"===f&&(l=Math.round(l/100*t.documentElement.clientWidth)),Math.abs(i)>Math.abs(o)?Math.abs(i)>l&&h0?"swiped-left":"swiped-right"):Math.abs(o)>l&&h0?"swiped-up":"swiped-down"),""!==p){var v={dir:p.replace(/swiped-/,""),touchType:(m[0]||{}).touchType||"direct",fingers:u,xStart:parseInt(r,10),xEnd:parseInt((m[0]||{}).clientX||-1,10),yStart:parseInt(n,10),yEnd:parseInt((m[0]||{}).clientY||-1,10)};s.dispatchEvent(new CustomEvent("swiped",{bubbles:!0,cancelable:!0,detail:v})),s.dispatchEvent(new CustomEvent(p,{bubbles:!0,cancelable:!0,detail:v}))}r=null,n=null,a=null}},!1);var r=null,n=null,i=null,o=null,a=null,s=null,u=0;function c(e,r,n){for(;e&&e!==t.documentElement;){var i=e.getAttribute(r);if(i)return i;e=e.parentNode}return n}}(window,document);var iW={},iG={};e(iG,"validate",function(){return eR},function(e){return eR=e});var iY=":A-Za-z_\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD",iK=RegExp("^"+("["+iY+"][")+iY+"\\-.\\d\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$");eB=function(e){return void 0!==e},eq=function(e){return null!=iK.exec(e)},eU=function(e,t){for(var r=[],n=t.exec(e);n;){var i=[];i.startIndex=t.lastIndex-n[0].length;for(var o=n.length,a=0;a5&&"xml"===n)return i3("InvalidXml","XML declaration allowed only at the start of the document.",i2(e,t));if("?"!=e[t]||">"!=e[t+1])continue;t++;break}return t}function iX(e,t){if(e.length>t+5&&"-"===e[t+1]&&"-"===e[t+2]){for(t+=3;t"===e[t+2]){t+=2;break}}else if(e.length>t+8&&"D"===e[t+1]&&"O"===e[t+2]&&"C"===e[t+3]&&"T"===e[t+4]&&"Y"===e[t+5]&&"P"===e[t+6]&&"E"===e[t+7]){var r=1;for(t+=8;t"===e[t]&&0==--r)break}else if(e.length>t+9&&"["===e[t+1]&&"C"===e[t+2]&&"D"===e[t+3]&&"A"===e[t+4]&&"T"===e[t+5]&&"A"===e[t+6]&&"["===e[t+7]){for(t+=8;t"===e[t+2]){t+=2;break}}return t}eR=function(e,t){t=Object.assign({},iZ,t);var r=[],n=!1,i=!1;"\uFEFF"===e[0]&&(e=e.substr(1));for(var o=0;o"!==e[o]&&" "!==e[o]&&" "!==e[o]&&"\n"!==e[o]&&"\r"!==e[o];o++)u+=e[o];if("/"===(u=u.trim())[u.length-1]&&(u=u.substring(0,u.length-1),o--),!eq(u))return i3("InvalidTag",0===u.trim().length?"Invalid space after '<'.":"Tag '"+u+"' is an invalid name.",i2(e,o));var c=function(e,t){for(var r="",n="",i=!1;t"===e[t]&&""===n){i=!0;break}r+=e[t]}return""===n&&{value:r,index:t,tagClosed:i}}(e,o);if(!1===c)return i3("InvalidAttr","Attributes for '"+u+"' have open quote.",i2(e,o));var l=c.value;if(o=c.index,"/"===l[l.length-1]){var f=o-l.length,d=i1(l=l.substring(0,l.length-1),t);if(!0!==d)return i3(d.err.code,d.err.msg,i2(e,f+d.err.line));n=!0}else if(s){if(!c.tagClosed)return i3("InvalidTag","Closing tag '"+u+"' doesn't have proper closing.",i2(e,o));if(l.trim().length>0)return i3("InvalidTag","Closing tag '"+u+"' can't have attributes or invalid starting.",i2(e,a));if(0===r.length)return i3("InvalidTag","Closing tag '"+u+"' has not been opened.",i2(e,a));var h=r.pop();if(u!==h.tagName){var p=i2(e,h.tagStartPos);return i3("InvalidTag","Expected closing tag '"+h.tagName+"' (opened in line "+p.line+", col "+p.col+") instead of closing tag '"+u+"'.",i2(e,a))}0==r.length&&(i=!0)}else{var m=i1(l,t);if(!0!==m)return i3(m.err.code,m.err.msg,i2(e,o-l.length+m.err.line));if(!0===i)return i3("InvalidXml","Multiple possible root nodes found.",i2(e,o));-1!==t.unpairedTags.indexOf(u)||r.push({tagName:u,tagStartPos:a}),n=!0}for(o++;o0)||i3("InvalidXml","Invalid '"+JSON.stringify(r.map(function(e){return e.tagName}),null,4).replace(/\r?\n/g,"")+"' found.",{line:1,col:1}):i3("InvalidXml","Start tag expected.",1)};var i0=RegExp("(\\s*)([^\\s=]+)(\\s*=)?(\\s*(['\"])(([\\s\\S])*?)\\5)?","g");function i1(e,t){for(var r=eU(e,i0),n={},i=0;i0?this.child.push((tW(t={},e.tagname,e.child),tW(t,":@",e[":@"]),t)):this.child.push(tW({},e.tagname,e.child))}}]),e}();var i7={};function oe(e,t){return"!"===e[t+1]&&"-"===e[t+2]&&"-"===e[t+3]}i7=function(e,t){var r={};if("O"===e[t+3]&&"C"===e[t+4]&&"T"===e[t+5]&&"Y"===e[t+6]&&"P"===e[t+7]&&"E"===e[t+8]){t+=9;for(var n,i,o,a,s,u,c,l,f,d=1,h=!1,p=!1;t"===e[t]){if(p?"-"===e[t-1]&&"-"===e[t-2]&&(p=!1,d--):d--,0===d)break}else"["===e[t]?h=!0:e[t]}else{if(h&&"!"===(n=e)[(i=t)+1]&&"E"===n[i+2]&&"N"===n[i+3]&&"T"===n[i+4]&&"I"===n[i+5]&&"T"===n[i+6]&&"Y"===n[i+7])t+=7,entityName=(f=n8(function(e,t){for(var r="";t1&&void 0!==arguments[1]?arguments[1]:{};if(r=Object.assign({},oi,r),!e||"string"!=typeof e)return e;var n=e.trim();if(void 0!==r.skipLike&&r.skipLike.test(n))return e;if(r.hex&&or.test(n))return Number.parseInt(n,16);var i=on.exec(n);if(!i)return e;var o=i[1],a=i[2],s=((t=i[3])&&-1!==t.indexOf(".")&&("."===(t=t.replace(/0+$/,""))?t="0":"."===t[0]?t="0"+t:"."===t[t.length-1]&&(t=t.substr(0,t.length-1))),t),u=i[4]||i[6];if(!r.leadingZeros&&a.length>0&&o&&"."!==n[2]||!r.leadingZeros&&a.length>0&&!o&&"."!==n[1])return e;var c=Number(n),l=""+c;return -1!==l.search(/[eE]/)||u?r.eNotation?c:e:-1!==n.indexOf(".")?"0"===l&&""===s?c:l===s?c:o&&l==="-"+s?c:e:a?s===l?c:o+s===l?c:e:n===l?c:n===o+l?c:e};var oo={};function oa(e){for(var t=Object.keys(e),r=0;r0)){a||(e=this.replaceEntitiesValue(e));var s=this.options.tagValueProcessor(t,e,r,i,o);return null==s?e:(void 0===s?"undefined":(0,tr._)(s))!==(void 0===e?"undefined":(0,tr._)(e))||s!==e?s:this.options.trimValues?ob(e,this.options.parseTagValue,this.options.numberParseOptions):e.trim()===e?ob(e,this.options.parseTagValue,this.options.numberParseOptions):e}}function ou(e){if(this.options.removeNSPrefix){var t=e.split(":"),r="/"===e.charAt(0)?"/":"";if("xmlns"===t[0])return"";2===t.length&&(e=r+t[1])}return e}oo=function(e){return"function"==typeof e?e:Array.isArray(e)?function(t){var r=!0,n=!1,i=void 0;try{for(var o,a=e[Symbol.iterator]();!(r=(o=a.next()).done);r=!0){var s=o.value;if("string"==typeof s&&t===s||s instanceof RegExp&&s.test(t))return!0}}catch(e){n=!0,i=e}finally{try{r||null==a.return||a.return()}finally{if(n)throw i}}}:function(){return!1}};var oc=RegExp("([^\\s=]+)\\s*(=\\s*(['\"])([\\s\\S]*?)\\3)?","gm");function ol(e,t,r){if(!0!==this.options.ignoreAttributes&&"string"==typeof e){for(var n=eU(e,oc),i=n.length,o={},a=0;a",o,"Closing Tag is not closed."),s=e.substring(o+2,a).trim();if(this.options.removeNSPrefix){var u=s.indexOf(":");-1!==u&&(s=s.substr(u+1))}this.options.transformTagName&&(s=this.options.transformTagName(s)),r&&(n=this.saveTextToParentTag(n,r,i));var c=i.substring(i.lastIndexOf(".")+1);if(s&&-1!==this.options.unpairedTags.indexOf(s))throw Error("Unpaired tag can not be used as closing tag: "));var l=0;c&&-1!==this.options.unpairedTags.indexOf(c)?(l=i.lastIndexOf(".",i.lastIndexOf(".")-1),this.tagsNodeStack.pop()):l=i.lastIndexOf("."),i=i.substring(0,l),r=this.tagsNodeStack.pop(),n="",o=a}else if("?"===e[o+1]){var f=og(e,o,!1,"?>");if(!f)throw Error("Pi Tag is not closed.");if(n=this.saveTextToParentTag(n,r,i),this.options.ignoreDeclaration&&"?xml"===f.tagName||this.options.ignorePiTags);else{var d=new i9(f.tagName);d.add(this.options.textNodeName,""),f.tagName!==f.tagExp&&f.attrExpPresent&&(d[":@"]=this.buildAttributesMap(f.tagExp,i,f.tagName)),this.addChild(r,d,i)}o=f.closeIndex+1}else if("!--"===e.substr(o+1,3)){var h=ov(e,"-->",o+4,"Comment is not closed.");if(this.options.commentPropName){var p=e.substring(o+4,h-2);n=this.saveTextToParentTag(n,r,i),r.add(this.options.commentPropName,[tW({},this.options.textNodeName,p)])}o=h}else if("!D"===e.substr(o+1,2)){var m=i7(e,o);this.docTypeEntities=m.entities,o=m.i}else if("!["===e.substr(o+1,2)){var v=ov(e,"]]>",o,"CDATA is not closed.")-2,g=e.substring(o+9,v);n=this.saveTextToParentTag(n,r,i);var y=this.parseTextData(g,r.tagname,i,!0,!1,!0,!0);void 0==y&&(y=""),this.options.cdataPropName?r.add(this.options.cdataPropName,[tW({},this.options.textNodeName,g)]):r.add(this.options.textNodeName,y),o=v+2}else{var b=og(e,o,this.options.removeNSPrefix),w=b.tagName,x=b.rawTagName,E=b.tagExp,S=b.attrExpPresent,k=b.closeIndex;this.options.transformTagName&&(w=this.options.transformTagName(w)),r&&n&&"!xml"!==r.tagname&&(n=this.saveTextToParentTag(n,r,i,!1));var A=r;if(A&&-1!==this.options.unpairedTags.indexOf(A.tagname)&&(r=this.tagsNodeStack.pop(),i=i.substring(0,i.lastIndexOf("."))),w!==t.tagname&&(i+=i?"."+w:w),this.isItStopNode(this.options.stopNodes,i,w)){var I="";if(E.length>0&&E.lastIndexOf("/")===E.length-1)"/"===w[w.length-1]?(w=w.substr(0,w.length-1),i=i.substr(0,i.length-1),E=w):E=E.substr(0,E.length-1),o=b.closeIndex;else if(-1!==this.options.unpairedTags.indexOf(w))o=b.closeIndex;else{var T=this.readStopNodeData(e,x,k+1);if(!T)throw Error("Unexpected end of ".concat(x));o=T.i,I=T.tagContent}var N=new i9(w);w!==E&&S&&(N[":@"]=this.buildAttributesMap(E,i,w)),I&&(I=this.parseTextData(I,w,i,!0,S,!0,!0)),i=i.substr(0,i.lastIndexOf(".")),N.add(this.options.textNodeName,I),this.addChild(r,N,i)}else{if(E.length>0&&E.lastIndexOf("/")===E.length-1){"/"===w[w.length-1]?(w=w.substr(0,w.length-1),i=i.substr(0,i.length-1),E=w):E=E.substr(0,E.length-1),this.options.transformTagName&&(w=this.options.transformTagName(w));var O=new i9(w);w!==E&&S&&(O[":@"]=this.buildAttributesMap(E,i,w)),this.addChild(r,O,i),i=i.substr(0,i.lastIndexOf("."))}else{var _=new i9(w);this.tagsNodeStack.push(r),w!==E&&S&&(_[":@"]=this.buildAttributesMap(E,i,w)),this.addChild(r,_,i),r=_}n="",o=k}}}else n+=e[o];return t.child};function od(e,t,r){var n=this.options.updateTag(t.tagname,r,t[":@"]);!1===n||("string"==typeof n&&(t.tagname=n),e.addChild(t))}var oh=function(e){if(this.options.processEntities){for(var t in this.docTypeEntities){var r=this.docTypeEntities[t];e=e.replace(r.regx,r.val)}for(var n in this.lastEntities){var i=this.lastEntities[n];e=e.replace(i.regex,i.val)}if(this.options.htmlEntities)for(var o in this.htmlEntities){var a=this.htmlEntities[o];e=e.replace(a.regex,a.val)}e=e.replace(this.ampEntity.regex,this.ampEntity.val)}return e};function op(e,t,r,n){return e&&(void 0===n&&(n=0===Object.keys(t.child).length),void 0!==(e=this.parseTextData(e,t.tagname,r,!1,!!t[":@"]&&0!==Object.keys(t[":@"]).length,n))&&""!==e&&t.add(this.options.textNodeName,e),e=""),e}function om(e,t,r){var n="*."+r;for(var i in e){var o=e[i];if(n===o||t===o)return!0}return!1}function ov(e,t,r,n){var i=e.indexOf(t,r);if(-1!==i)return i+t.length-1;throw Error(n)}function og(e,t,r){var n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:">",i=function(e,t){for(var r,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:">",i="",o=t;o",r,"".concat(t," is not closed"));if(e.substring(r+2,o).trim()===t&&0==--i)return{tagContent:e.substring(n,r),i:o};r=o}else if("?"===e[r+1])r=ov(e,"?>",r+1,"StopNode is not closed.");else if("!--"===e.substr(r+1,3))r=ov(e,"-->",r+3,"StopNode is not closed.");else if("!["===e.substr(r+1,2))r=ov(e,"]]>",r,"StopNode is not closed.")-2;else{var a=og(e,r,">");a&&((a&&a.tagName)===t&&"/"!==a.tagExp[a.tagExp.length-1]&&i++,r=a.closeIndex)}}}function ob(e,t,r){if(t&&"string"==typeof e){var n=e.trim();return"true"===n||"false"!==n&&ot(e,r)}return eB(e)?e:""}i4=function e(t){tf(this,e),this.options=t,this.currentNode=null,this.tagsNodeStack=[],this.docTypeEntities={},this.lastEntities={apos:{regex:/&(apos|#39|#x27);/g,val:"'"},gt:{regex:/&(gt|#62|#x3E);/g,val:">"},lt:{regex:/&(lt|#60|#x3C);/g,val:"<"},quot:{regex:/&(quot|#34|#x22);/g,val:'"'}},this.ampEntity={regex:/&(amp|#38|#x26);/g,val:"&"},this.htmlEntities={space:{regex:/&(nbsp|#160);/g,val:" "},cent:{regex:/&(cent|#162);/g,val:"¢"},pound:{regex:/&(pound|#163);/g,val:"£"},yen:{regex:/&(yen|#165);/g,val:"¥"},euro:{regex:/&(euro|#8364);/g,val:"€"},copyright:{regex:/&(copy|#169);/g,val:"©"},reg:{regex:/&(reg|#174);/g,val:"®"},inr:{regex:/&(inr|#8377);/g,val:"₹"},num_dec:{regex:/&#([0-9]{1,7});/g,val:function(e,t){return String.fromCharCode(Number.parseInt(t,10))}},num_hex:{regex:/&#x([0-9a-fA-F]{1,6});/g,val:function(e,t){return String.fromCharCode(Number.parseInt(t,16))}}},this.addExternalEntities=oa,this.parseXml=of,this.parseTextData=os,this.resolveNameSpace=ou,this.buildAttributesMap=ol,this.isItStopNode=om,this.replaceEntitiesValue=oh,this.readStopNodeData=oy,this.saveTextToParentTag=op,this.addChild=od,this.ignoreAttributesFn=oo(this.options.ignoreAttributes)},eF=function(e,t){return function e(t,r,n){for(var i,o={},a=0;a0&&(o[r.textNodeName]=i):void 0!==i&&(o[r.textNodeName]=i),o}(e,t)},i8=/*#__PURE__*/function(){function e(t){tf(this,e),this.externalEntities={},this.options=ej(t)}return th(e,[{key:"parse",value:function(e,t){if("string"==typeof e);else if(e.toString)e=e.toString();else throw Error("XML data is accepted in String or Bytes[] form.");if(t){!0===t&&(t={});var r=eR(e,t);if(!0!==r)throw Error("".concat(r.err.msg,":").concat(r.err.line,":").concat(r.err.col))}var n=new i4(this.options);n.addExternalEntities(this.externalEntities);var i=n.parseXml(e);return this.options.preserveOrder||void 0===i?i:eF(i,this.options)}},{key:"addEntity",value:function(e,t){if(-1!==t.indexOf("&"))throw Error("Entity value can't have '&'");if(-1!==e.indexOf("&")||-1!==e.indexOf(";"))throw Error("An entity must be set without '&' and ';'. Eg. use '#xD' for ' '");if("&"===t)throw Error("An entity with value '&' is not permitted");this.externalEntities[e]=t}}]),e}();var ow={};function ox(e,t){var r="";if(e&&!t.ignoreAttributes){for(var n in e)if(e.hasOwnProperty(n)){var i=t.attributeValueProcessor(n,e[n]);!0===(i=oE(i,t))&&t.suppressBooleanAttributes?r+=" ".concat(n.substr(t.attributeNamePrefix.length)):r+=" ".concat(n.substr(t.attributeNamePrefix.length),'="').concat(i,'"')}}return r}function oE(e,t){if(e&&e.length>0&&t.processEntities)for(var r=0;r0&&(r="\n"),function e(t,r,n,i){for(var o="",a=!1,s=0;s"),a=!1;continue}if(c===r.commentPropName){o+=i+""),a=!0;continue}if("?"===c[0]){var d=ox(u[":@"],r),h="?xml"===c?"":i,p=u[c][0][r.textNodeName];p=0!==p.length?" "+p:"",o+=h+"<".concat(c).concat(p).concat(d,"?>"),a=!0;continue}var m=i;""!==m&&(m+=r.indentBy);var v=ox(u[":@"],r),g=i+"<".concat(c).concat(v),y=e(u[c],r,l,m);-1!==r.unpairedTags.indexOf(c)?r.suppressUnpairedNode?o+=g+">":o+=g+"/>":(!y||0===y.length)&&r.suppressEmptyNode?o+=g+"/>":y&&y.endsWith(">")?o+=g+">".concat(y).concat(i,""):(o+=g+">",y&&""!==i&&(y.includes("/>")||y.includes("")),a=!0}}return o}(e,t,"",r)};var oS={attributeNamePrefix:"@_",attributesGroupName:!1,textNodeName:"#text",ignoreAttributes:!0,cdataPropName:!1,format:!1,indentBy:" ",suppressEmptyNode:!1,suppressUnpairedNode:!0,suppressBooleanAttributes:!0,tagValueProcessor:function(e,t){return t},attributeValueProcessor:function(e,t){return t},preserveOrder:!1,commentPropName:!1,unpairedTags:[],entities:[{regex:RegExp("&","g"),val:"&"},{regex:RegExp(">","g"),val:">"},{regex:RegExp("<","g"),val:"<"},{regex:RegExp("'","g"),val:"'"},{regex:RegExp('"',"g"),val:"""}],processEntities:!0,stopNodes:[],oneListGroup:!1};function ok(e){this.options=Object.assign({},oS,e),!0===this.options.ignoreAttributes||this.options.attributesGroupName?this.isAttribute=function(){return!1}:(this.ignoreAttributesFn=oo(this.options.ignoreAttributes),this.attrPrefixLen=this.options.attributeNamePrefix.length,this.isAttribute=oT),this.processTextOrObjNode=oA,this.options.format?(this.indentate=oI,this.tagEndChar=">\n",this.newLine="\n"):(this.indentate=function(){return""},this.tagEndChar=">",this.newLine="")}function oA(e,t,r,n){var i=this.j2x(e,r+1,n.concat(t));return void 0!==e[this.options.textNodeName]&&1===Object.keys(e).length?this.buildTextValNode(e[this.options.textNodeName],t,i.attrStr,r):this.buildObjectNode(i.val,t,i.attrStr,r)}function oI(e){return this.options.indentBy.repeat(e)}function oT(e){return!!e.startsWith(this.options.attributeNamePrefix)&&e!==this.options.textNodeName&&e.substr(this.attrPrefixLen)}ok.prototype.build=function(e){return this.options.preserveOrder?ow(e,this.options):(Array.isArray(e)&&this.options.arrayNodeName&&this.options.arrayNodeName.length>1&&(e=tW({},this.options.arrayNodeName,e)),this.j2x(e,0,[]).val)},ok.prototype.j2x=function(e,t,r){var n="",i="",o=r.join(".");for(var a in e)if(Object.prototype.hasOwnProperty.call(e,a)){if(void 0===e[a])this.isAttribute(a)&&(i+="");else if(null===e[a])this.isAttribute(a)?i+="":"?"===a[0]?i+=this.indentate(t)+"<"+a+"?"+this.tagEndChar:i+=this.indentate(t)+"<"+a+"/"+this.tagEndChar;else if(e[a]instanceof Date)i+=this.buildTextValNode(e[a],a,"",t);else if("object"!=typeof e[a]){var s=this.isAttribute(a);if(s&&!this.ignoreAttributesFn(s,o))n+=this.buildAttrPairStr(s,""+e[a]);else if(!s){if(a===this.options.textNodeName){var u=this.options.tagValueProcessor(a,""+e[a]);i+=this.replaceEntitiesValue(u)}else i+=this.buildTextValNode(e[a],a,"",t)}}else if(Array.isArray(e[a])){for(var c=e[a].length,l="",f="",d=0;d"+e+i:!1!==this.options.commentPropName&&t===this.options.commentPropName&&0===o.length?this.indentate(n)+"")+this.newLine:this.indentate(n)+"<"+t+r+o+this.tagEndChar+e+this.indentate(n)+i},ok.prototype.closeTag=function(e){var t="";return -1!==this.options.unpairedTags.indexOf(e)?this.options.suppressUnpairedNode||(t="/"):t=this.options.suppressEmptyNode?"/":">")+this.newLine;if(!1!==this.options.commentPropName&&t===this.options.commentPropName)return this.indentate(n)+"")+this.newLine;if("?"===t[0])return this.indentate(n)+"<"+t+r+"?"+this.tagEndChar;var i=this.options.tagValueProcessor(t,e);return""===(i=this.replaceEntitiesValue(i))?this.indentate(n)+"<"+t+r+this.closeTag(t)+this.tagEndChar:this.indentate(n)+"<"+t+r+">"+i+"0&&this.options.processEntities)for(var t=0;t0))return[3,5];i.label=1;case 1:return i.trys.push([1,3,,4]),[4,o3(r)];case 2:return i.sent(),oV.last_update=new Date,/*@__PURE__*/t(tt).setItem("settings",oV),[3,4];case 3:return i.sent(),[3,4];case 4:return[3,6];case 5:alert("Generated download list is empty."),i.label=6;case 6:return[3,8];case 7:console.error("No OPML content found."),i.label=8;case 8:return[2]}})}),function(e){return en.apply(this,arguments)}),o1=function(e){var t=oG.parseFromString(e,"text/xml");if(!t||t.getElementsByTagName("parsererror").length>0)return console.error("Invalid OPML data."),{error:"Invalid OPML data",downloadList:[]};var r=t.querySelector("body");if(!r)return console.error("No 'body' element found in the OPML data."),{error:"No 'body' element found",downloadList:[]};var n=0,i=r.querySelectorAll("outline"),o=[];return i.forEach(function(e){e.querySelectorAll("outline").forEach(function(t){var r=t.getAttribute("xmlUrl");r&&o.push({error:"",title:t.getAttribute("title")||"Untitled",url:r,index:n++,channel:e.getAttribute("text")||"Unknown",type:t.getAttribute("type")||"rss",maxEpisodes:t.getAttribute("maxEpisodes")||5})})}),{error:"",downloadList:o}},o3=(ei=eY(function(e){var r,n,i,o,a;return(0,eZ.__generator)(this,function(s){return r=0,n=e.length,i=!1,o=function(){o4=localStorage.getItem("last_channel_filter"),r===n&&(console.log("All feeds are loaded"),/*@__PURE__*/t(tt).setItem("articles",oY).then(function(){console.log("feeds cached"),oY.sort(function(e,t){return new Date(t.isoDate)-new Date(e.isoDate)}),oY.forEach(function(e){-1===o$.indexOf(e.channel)&&e.channel&&o$.push(e.channel)}),o$.length>0&&!i&&(o4=localStorage.getItem("last_channel_filter")||o$[0],i=!0),/*@__PURE__*/t(tn).route.set("/start")}).catch(function(e){console.error("Feeds cached",e)}))},a=[],e.forEach(function(e){if("mastodon"===e.type)fetch(e.url).then(function(e){return e.json()}).then(function(t){t.forEach(function(t,r){if(!(r>5)){var n={channel:e.channel,id:t.id,type:"mastodon",pubDate:t.created_at,isoDate:t.created_at,title:t.account.display_name||t.account.username,content:t.content,url:t.uri,reblog:!1};t.media_attachments.length>0&&("image"===t.media_attachments[0].type?n.content+="
"):"video"===t.media_attachments[0].type?n.enclosure={"@_type":"video",url:t.media_attachments[0].url}:"audio"===t.media_attachments[0].type&&(n.enclosure={"@_type":"audio",url:t.media_attachments[0].url})),""==t.content&&(n.content=t.reblog.content,n.reblog=!0,n.reblogUser=t.account.display_name||t.reblog.account.acct,t.reblog.media_attachments.length>0&&("image"===t.reblog.media_attachments[0].type?n.content+="
"):"video"===t.reblog.media_attachments[0].type?n.enclosure={"@_type":"video",url:t.reblog.media_attachments[0].url}:"audio"===t.reblog.media_attachments[0].type&&(n.enclosure={"@_type":"audio",url:t.reblog.media_attachments[0].url}))),oY.push(n)}})}).catch(function(t){e.error=t}).finally(function(){r++,o()});else{var n=new XMLHttpRequest;new Date().getTime();var i=e.url;n.open("GET",oj+i,!0),n.onload=function(){if(200!==n.status){e.error=n.status,r++,o();return}var i=n.response;if(!i){e.error=n.status,r++,o();return}try{var s=oB.parse(i);s.feed&&s.feed.entry.forEach(function(r,n){if(n15)){var r={channel:"Mastodon",id:e.id,type:"mastodon",pubDate:e.created_at,isoDate:e.created_at,title:e.account.display_name,content:e.content,url:e.uri,reblog:!1};e.media_attachments.length>0&&("image"===e.media_attachments[0].type?r.content+="
"):"video"===e.media_attachments[0].type?r.enclosure={"@_type":"video",url:e.media_attachments[0].url}:"audio"===e.media_attachments[0].type&&(r.enclosure={"@_type":"audio",url:e.media_attachments[0].url}));try{""==e.content&&(r.content=e.reblog.content,r.reblog=!0,r.reblogUser=e.reblog.account.display_name||e.reblog.account.acct,e.reblog.media_attachments.length>0&&("image"===e.reblog.media_attachments[0].type?r.content+="
"):"video"===e.reblog.media_attachments[0].type?r.enclosure={"@_type":"video",url:e.reblog.media_attachments[0].url}:"audio"===e.reblog.media_attachments[0].type&&(r.enclosure={"@_type":"audio",url:e.reblog.media_attachments[0].url})))}catch(e){}oY.push(r)}}),o$.push("Mastodon")})},o5=function(){oX(oj+oV.opml_url+"?time="+new Date),oV.opml_local&&o0(oV.opml_local),oV.mastodon_token&&te(oV.mastodon_server_url,oV.mastodon_token).then(function(e){oq.mastodon_logged=e.display_name,o2()}).catch(function(e){alert(e)}),o4=localStorage.getItem("last_channel_filter")};/*@__PURE__*/t(tt).getItem("settings").then(function(e){null==e&&(oV=oF,/*@__PURE__*/t(tt).setItem("settings",oV).then(function(e){}).catch(function(e){console.log(e)})),(oV=e).cache_time=oV.cache_time||1e3,oV.last_update?oq.last_update_duration=new Date/1e3-oV.last_update/1e3:oq.last_update_duration=3600,oV.opml_url||oV.opml_local_filename||e8("The feed could not be loaded because no OPML was defined in the settings.",6e3),fetch("https://www.google.com",{method:"HEAD",mode:"no-cors"}).then(function(){return!0}).catch(function(){return!1}).then(function(e){e&&oq.last_update_duration>oV.cache_time?(o5(),e8("Load feeds",4e3)):/*@__PURE__*/t(tt).getItem("articles").then(function(e){(oY=e).sort(function(e,t){return new Date(t.isoDate)-new Date(e.isoDate)}),oY.forEach(function(e){-1===o$.indexOf(e.channel)&&e.channel&&o$.push(e.channel)}),o$.length&&(o4=localStorage.getItem("last_channel_filter")||o$[0]),/*@__PURE__*/t(tn).route.set("/start?index=0"),e8("Cached feeds loaded",4e3),oV.mastodon_token&&te(oV.mastodon_server_url,oV.mastodon_token).then(function(e){oq.mastodon_logged=e.display_name}).catch(function(e){})}).catch(function(e){})})}).catch(function(e){e8("The default settings was loaded",3e3),oX(oj+(oV=oF).opml_url),/*@__PURE__*/t(tt).setItem("settings",oV).then(function(e){}).catch(function(e){console.log(e)})});var o8=document.getElementById("app"),o6=-1,o4=localStorage.getItem("last_channel_filter")||"",o9=0,o7=function(e){return /*@__PURE__*/t(iz).duration(e,"seconds").format("mm:ss")},ae={videoElement:null,videoDuration:0,currentTime:0,isPlaying:!1,seekAmount:5,oncreate:function(e){var r=e.attrs;oq.notKaiOS&&e9("","",""),ae.videoElement=document.createElement("video"),document.getElementById("video-container").appendChild(ae.videoElement);var n=r.url;n&&(ae.videoElement.src=n,ae.videoElement.play(),ae.isPlaying=!0),ae.videoElement.onloadedmetadata=function(){ae.videoDuration=ae.videoElement.duration,/*@__PURE__*/t(tn).redraw()},ae.videoElement.ontimeupdate=function(){ae.currentTime=ae.videoElement.currentTime,/*@__PURE__*/t(tn).redraw()},document.addEventListener("keydown",ae.handleKeydown)},onremove:function(){document.removeEventListener("keydown",ae.handleKeydown)},handleKeydown:function(e){"Enter"===e.key?ae.togglePlayPause():"ArrowLeft"===e.key?ae.seek("left"):"ArrowRight"===e.key&&ae.seek("right")},togglePlayPause:function(){ae.isPlaying?ae.videoElement.pause():ae.videoElement.play(),ae.isPlaying=!ae.isPlaying},seek:function(e){var t=ae.videoElement.currentTime;"left"===e?ae.videoElement.currentTime=Math.max(0,t-ae.seekAmount):"right"===e&&(ae.videoElement.currentTime=Math.min(ae.videoDuration,t+ae.seekAmount))},view:function(e){e.attrs;var r=ae.videoDuration>0?ae.currentTime/ae.videoDuration*100:0;return /*@__PURE__*/t(tn)("div",{class:"video-player"},[/*@__PURE__*/t(tn)("div",{id:"video-container",class:"video-container"}),/*@__PURE__*/t(tn)("div",{class:"video-info"},[" ".concat(o7(ae.currentTime)," / ").concat(o7(ae.videoDuration))]),/*@__PURE__*/t(tn)("div",{class:"progress-bar-container"},[/*@__PURE__*/t(tn)("div",{class:"progress-bar",style:{width:"".concat(r,"%")}})])])}},at={player:null,oncreate:function(e){var t=e.attrs;oq.notKaiOS&&e9("","",""),e4("","",""),YT?at.player=new YT.Player("video-container",{videoId:t.videoId,events:{onReady:at.onPlayerReady}}):alert("YouTube player not loaded"),document.addEventListener("keydown",at.handleKeydown)},onPlayerReady:function(e){e.target.playVideo()},handleKeydown:function(e){"Enter"===e.key?at.togglePlayPause():"ArrowLeft"===e.key?at.seek("left"):"ArrowRight"===e.key&&at.seek("right")},togglePlayPause:function(){1===at.player.getPlayerState()?at.player.pauseVideo():at.player.playVideo()},seek:function(e){var t=at.player.getCurrentTime();"left"===e?at.player.seekTo(Math.max(0,t-5),!0):"right"===e&&at.player.seekTo(t+5,!0)},view:function(){return /*@__PURE__*/t(tn)("div",{class:"youtube-player"},[/*@__PURE__*/t(tn)("div",{id:"video-container",class:"video-container"})])}},ar=document.createElement("audio");if(ar.preload="auto","b2g"in navigator)try{ar.mozAudioChannelType="content",navigator.b2g.AudioChannelManager&&(navigator.b2g.AudioChannelManager.volumeControlChannel="content")}catch(e){console.log(e)}var an=[];try{/*@__PURE__*/t(tt).getItem("hasPlayedAudio").then(function(e){an=e||[],console.log("Loaded hasPlayedAudio:",an)})}catch(e){console.error("Failed to load hasPlayedAudio:",e)}var ai=(eo=eY(function(e,r){var n;return(0,eZ.__generator)(this,function(i){return -1!==(n=an.findIndex(function(t){return t.url===e}))?an[n].time=r:an.push({url:e,time:r}),/*@__PURE__*/t(tt).setItem("hasPlayedAudio",an).then(function(){console.log(an)}),[2]})}),function(e,t){return eo.apply(this,arguments)}),ao=0,aa=0,as=0,au=0,ac=!1,al=null,af={audioDuration:0,currentTime:0,isPlaying:!1,seekAmount:5,oninit:function(e){var r=e.attrs;r.url&&ar.src!==r.url&&(ar.src=r.url,ar.play().catch(function(){}),af.isPlaying=!0,an.map(function(e){e.url===ar.src&&!0==confirm("contiune playing ?")&&(ar.currentTime=e.time)})),ar.onloadedmetadata=function(){af.audioDuration=ar.duration,/*@__PURE__*/t(tn).redraw()},ar.ontimeupdate=function(){af.currentTime=ar.currentTime,ai(ar.src,ar.currentTime),/*@__PURE__*/t(tn).redraw()},af.isPlaying=!ar.paused,document.addEventListener("keydown",af.handleKeydown)},oncreate:function(){var e=function(e){al||(af.seek(e),al=setInterval(function(){af.seek(e),document.querySelector(".audio-info").style.padding="20px"},1e3))},t=function(){al&&(clearInterval(al),al=null,document.querySelector(".audio-info").style.padding="10px")};e9("","",""),e4("","",""),oV.sleepTimer&&(e4("","",""),document.querySelector("div.button-left").addEventListener("click",function(e){oq.sleepTimer?oR():oM(6e4*oV.sleepTimer)})),oq.notKaiOS&&e9("","",""),document.querySelector("div.button-center").addEventListener("click",function(e){af.togglePlayPause()}),document.addEventListener("touchstart",function(e){var t=e.touches[0];ao=t.clientX,aa=t.clientY}),document.addEventListener("touchmove",function(t){var r=t.touches[0];as=r.clientX,au=r.clientY;var n=as-ao,i=au-aa;Math.abs(n)>Math.abs(i)?n>30?(e("right"),ac=!0):n<-30&&(e("left"),ac=!0):i>30?console.log("Swiping down (not used in this context)"):i<-30&&console.log("Swiping up (not used in this context)")}),document.addEventListener("touchend",function(){ac&&(ac=!1,t())})},onremove:function(){document.removeEventListener("keydown",af.handleKeydown)},handleKeydown:function(e){"Enter"===e.key?af.togglePlayPause():"ArrowLeft"===e.key?af.seek("left"):"ArrowRight"===e.key&&af.seek("right")},togglePlayPause:function(){af.isPlaying?ar.pause():ar.play().catch(function(){}),af.isPlaying=!af.isPlaying},seek:function(e){var t=ar.currentTime;"left"===e?ar.currentTime=Math.max(0,t-af.seekAmount):"right"===e&&(ar.currentTime=Math.min(af.audioDuration,t+af.seekAmount))},view:function(e){e.attrs;var r=af.audioDuration>0?af.currentTime/af.audioDuration*100:0;return /*@__PURE__*/t(tn)("div",{class:"audio-player"},[/*@__PURE__*/t(tn)("div",{id:"audio-container",class:"audio-container"}),/*@__PURE__*/t(tn)("div",{class:"cover-container",style:{"background-color":"rgb(121, 71, 255)","background-image":"url(".concat(oU.cover,")")}}),/*@__PURE__*/t(tn)("div",{class:"audio-info",style:{background:"linear-gradient(to right, #3498db ".concat(r,"%, white ").concat(r,"%)")}},["".concat(o7(af.currentTime)," / ").concat(o7(af.audioDuration))]),/*@__PURE__*/t(tn)("div",{class:"progress-bar-container"},[/*@__PURE__*/t(tn)("div",{class:"progress-bar",style:{width:"".concat(r,"%")}})])])}};function ad(){var e=document.activeElement;if(e){for(var t=e.getBoundingClientRect(),r=t.top+t.height/2,n=e.parentNode;n;){if(n.scrollHeight>n.clientHeight||n.scrollWidth>n.clientWidth){var i=n.getBoundingClientRect();r=t.top-i.top+t.height/2;break}n=n.parentNode}n?n.scrollBy({left:0,top:r-n.clientHeight/2,behavior:"smooth"}):document.body.scrollBy({left:0,top:r-window.innerHeight/2,behavior:"smooth"})}}/*@__PURE__*/t(tn).route(o8,"/intro",{"/article":{view:function(){var e=oY.find(function(e){return /*@__PURE__*/t(tn).route.param("index")==e.id&&(oU=e,!0)});return /*@__PURE__*/t(tn)("div",{id:"article",class:"page",oncreate:function(){oq.notKaiOS&&e9("","",""),e4("","","")}},e?/*@__PURE__*/t(tn)("article",{class:"item",tabindex:0,oncreate:function(t){t.dom.focus(),("audio"===e.type||"video"===e.type||"youtube"===e.type)&&e4("","","")}},[/*@__PURE__*/t(tn)("time",{id:"top",oncreate:function(){setTimeout(function(){document.querySelector("#top").scrollIntoView()},1e3)}},/*@__PURE__*/t(iz)(e.isoDate).format("DD MMM YYYY")),/*@__PURE__*/t(tn)("h2",{class:"article-title",oncreate:function(t){var r=t.dom;e.reblog&&r.classList.add("reblog")}},e.title),/*@__PURE__*/t(tn)("div",{class:"text"},[/*@__PURE__*/t(tn).trust(oJ(e.content))]),e.reblog?/*@__PURE__*/t(tn)("div",{class:"text"},"reblogged from:"+e.reblogUser):""]):/*@__PURE__*/t(tn)("div","Article not found"))}},"/settingsView":{view:function(){return /*@__PURE__*/t(tn)("div",{class:"flex justify-content-center page",id:"settings-page",oncreate:function(){oq.notKaiOS||(oq.local_opml=[],eX("opml",function(e){oq.local_opml.push(e)})),e4("","",""),oq.notKaiOS&&e4("","",""),document.querySelectorAll(".item").forEach(function(e,t){e.setAttribute("tabindex",t)}),oq.notKaiOS&&e9("","",""),oq.notKaiOS&&e4("","","")}},[/*@__PURE__*/t(tn)("div",{class:"item input-parent flex",oncreate:function(){ah()}},[/*@__PURE__*/t(tn)("label",{for:"url-opml"},"OPML"),/*@__PURE__*/t(tn)("input",{id:"url-opml",placeholder:"",value:oV.opml_url||"",type:"url"})]),/*@__PURE__*/t(tn)("button",{class:"item",onclick:function(){oV.opml_local_filename?(oV.opml_local="",oV.opml_local_filename="",/*@__PURE__*/t(tt).setItem("settings",oV).then(function(){e8("OPML file removed",4e3),/*@__PURE__*/t(tn).redraw()})):oq.notKaiOS?e7(function(e){var r=new FileReader;r.onload=function(){o1(r.result).error?e8("OPML file not valid",4e3):(oV.opml_local=r.result,oV.opml_local_filename=e.filename,/*@__PURE__*/t(tt).setItem("settings",oV).then(function(){e8("OPML file added",4e3)}))},r.onerror=function(){e8("OPML file not valid",4e3)},r.readAsText(e.blob)}):oq.local_opml.length>0?/*@__PURE__*/t(tn).route.set("/localOPML"):e8("not enough",3e3)}},oV.opml_local_filename?"Remove OPML file":"Upload OPML file"),/*@__PURE__*/t(tn)("div",oV.opml_local_filename),/*@__PURE__*/t(tn)("div",{class:"seperation"}),/*@__PURE__*/t(tn)("div",{class:"item input-parent flex "},[/*@__PURE__*/t(tn)("label",{for:"url-proxy"},"PROXY"),/*@__PURE__*/t(tn)("input",{id:"url-proxy",placeholder:"",value:oV.proxy_url||"",type:"url"})]),/*@__PURE__*/t(tn)("div",{class:"seperation"}),/*@__PURE__*/t(tn)("h2",{class:"flex justify-content-spacearound"},"Mastodon Account"),oq.mastodon_logged?/*@__PURE__*/t(tn)("div",{id:"account_info",class:"item"},"You have successfully logged in as ".concat(oq.mastodon_logged," and the data is being loaded from server ").concat(oV.mastodon_server_url,".")):null,oq.mastodon_logged?/*@__PURE__*/t(tn)("button",{class:"item",onclick:function(){oV.mastodon_server_url="",oV.mastodon_token="",/*@__PURE__*/t(tt).setItem("settings",oV),oq.mastodon_logged="",/*@__PURE__*/t(tn).route.set("/settingsView")}},"Disconnect"):null,oq.mastodon_logged?null:/*@__PURE__*/t(tn)("div",{class:"item input-parent flex justify-content-spacearound"},[/*@__PURE__*/t(tn)("label",{for:"mastodon-server-url"},"URL"),/*@__PURE__*/t(tn)("input",{id:"mastodon-server-url",placeholder:"Server URL",value:oV.mastodon_server_url})]),oq.mastodon_logged?null:/*@__PURE__*/t(tn)("button",{class:"item",onclick:function(){/*@__PURE__*/t(tt).setItem("settings",oV),oV.mastodon_server_url=document.getElementById("mastodon-server-url").value;var e=oV.mastodon_server_url+"/oauth/authorize?client_id=HqIUbDiOkeIoDPoOJNLQOgVyPi1ZOkPMW29UVkhl3i8&scope=read&redirect_uri=https://feedolin.strukturart.com&response_type=code";window.open(e)}},"Connect"),/*@__PURE__*/t(tn)("div",{class:"seperation"}),/*@__PURE__*/t(tn)("div",{class:"item input-parent flex "},[/*@__PURE__*/t(tn)("label",{for:"sleep-timer"},"Sleep timer in minutes"),/*@__PURE__*/t(tn)("input",{id:"sleep-timer",placeholder:"",value:oV.sleepTimer,type:"tel"})]),/*@__PURE__*/t(tn)("button",{class:"item",id:"button-save-settings",onclick:function(){e=document.getElementById("url-opml").value,/(ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?/.test(e)||e8("URL not valid"),oV.opml_url=document.getElementById("url-opml").value,oV.proxy_url=document.getElementById("url-proxy").value;var e,r=document.getElementById("sleep-timer").value;r&&!isNaN(r)&&Number(r)>0?oV.sleepTimer=parseInt(r,10):oV.sleepTimer="",oq.mastodon_logged||(oV.mastodon_server_url=document.getElementById("mastodon-server-url").value),/*@__PURE__*/t(tt).setItem("settings",oV).then(function(e){e8("settings saved",2e3)}).catch(function(e){console.log(e)})}},"save settings")])}},"/intro":{view:function(){return /*@__PURE__*/t(tn)("div",{class:"width-100 height-100",id:"intro",oninit:function(){oq.notKaiOS&&oK()},onremove:function(){localStorage.setItem("version",oq.version),document.querySelector(".loading-spinner").style.display="none"}},[/*@__PURE__*/t(tn)("img",{src:"./assets/icons/intro.svg",oncreate:function(){document.querySelector(".loading-spinner").style.display="block",e3(function(e){try{oq.version=e.manifest.version,document.querySelector("#version").textContent=e.manifest.version}catch(e){}("b2g"in navigator||oq.notKaiOS)&&fetch("/manifest.webmanifest").then(function(e){return e.json()}).then(function(e){oq.version=e.b2g_features.version})})}}),/*@__PURE__*/t(tn)("div",{class:"flex width-100 justify-content-center ",id:"version-box"},[/*@__PURE__*/t(tn)("kbd",{id:"version"},localStorage.getItem("version")||0)])])}},"/start":{view:function(){var e=oY.filter(function(e){return""===o4||o4===e.channel});return /*@__PURE__*/t(tn)("div",{id:"start",oncreate:function(){o9=/*@__PURE__*/t(tn).route.param("index")||0,e4("","",""),oq.notKaiOS&&e4("","",""),oq.notKaiOS&&e9("","",""),oq.notKaiOS&&oq.player&&e9("","","")}},/*@__PURE__*/t(tn)("span",{class:"channel",oncreate:function(){}},o4),e.map(function(r,n){var i=oz.includes(r.id)?"read":"";return /*@__PURE__*/t(tn)("article",{class:"item ".concat(i),"data-id":r.id,"data-type":r.type,oncreate:function(t){0==o9&&0==n?setTimeout(function(){t.dom.focus()},1200):r.id==o9&&setTimeout(function(){t.dom.focus(),ad()},1200),n==e.length-1&&setTimeout(function(){document.querySelectorAll(".item").forEach(function(e,t){e.setAttribute("tabindex",t)})},1e3)},onclick:function(){/*@__PURE__*/t(tn).route.set("/article?index="+r.id),oW(r.id)},onkeydown:function(e){"Enter"===e.key&&(/*@__PURE__*/t(tn).route.set("/article?index="+r.id),oW(r.id))}},[/*@__PURE__*/t(tn)("span",{class:"type-indicator"},r.type),/*@__PURE__*/t(tn)("time",/*@__PURE__*/t(iz)(r.isoDate).format("DD MMM YYYY")),/*@__PURE__*/t(tn)("h2",{oncreate:function(e){var t=e.dom;!0===r.reblog&&t.classList.add("reblog")}},oJ(r.feed_title)),/*@__PURE__*/t(tn)("h3",oJ(r.title))])}))}},"/options":{view:function(){return /*@__PURE__*/t(tn)("div",{id:"optionsView",class:"flex",oncreate:function(){e9("","",""),oq.notKaiOS&&e9("","",""),e4("","",""),oq.notKaiOS&&e4("","","")}},[/*@__PURE__*/t(tn)("button",{tabindex:0,class:"item",oncreate:function(e){e.dom.focus(),ad()},onclick:function(){/*@__PURE__*/t(tn).route.set("/about")}},"About"),/*@__PURE__*/t(tn)("button",{tabindex:1,class:"item",onclick:function(){/*@__PURE__*/t(tn).route.set("/settingsView")}},"Settings"),/*@__PURE__*/t(tn)("button",{tabindex:2,class:"item",onclick:function(){/*@__PURE__*/t(tn).route.set("/privacy_policy")}},"Privacy Policy"),/*@__PURE__*/t(tn)("div",{id:"KaiOSads-Wrapper",class:"",oncreate:function(){!1==oq.notKaiOS&&eJ()}})])}},"/about":{view:function(){return /*@__PURE__*/t(tn)("div",{class:"page"},/*@__PURE__*/t(tn)("p","Feedolin is an RSS/Atom reader and podcast player, available for both KaiOS and non-KaiOS users."),/*@__PURE__*/t(tn)("p","It supports connecting a Mastodon account to display articles alongside your RSS/Atom feeds."),/*@__PURE__*/t(tn)("p","The app allows you to listen to audio and watch videos directly if the feed provides the necessary URLs."),/*@__PURE__*/t(tn)("p","The list of subscribed websites and podcasts is managed either locally or via an OPML file from an external source, such as a public link in the cloud."),/*@__PURE__*/t(tn)("p","For non-KaiOS users, local files must be uploaded to the app."),/*@__PURE__*/t(tn)("h4",{style:"margin-top:20px; margin-bottom:10px;"},"Navigation:"),/*@__PURE__*/t(tn)("ul",[/*@__PURE__*/t(tn)("li",/*@__PURE__*/t(tn).trust("Use the up and down arrow keys to navigate between articles.

")),/*@__PURE__*/t(tn)("li",/*@__PURE__*/t(tn).trust("Use the left and right arrow keys to switch between categories.

")),/*@__PURE__*/t(tn)("li",/*@__PURE__*/t(tn).trust("Press Enter to view the content of an article.

")),/*@__PURE__*/t(tn)("li",{oncreate:function(e){oq.notKaiOS||(e.dom.style.display="none")}},/*@__PURE__*/t(tn).trust("Use Alt to access various options.")),/*@__PURE__*/t(tn)("li",{oncreate:function(e){oq.notKaiOS&&(e.dom.style.display="none")}},/*@__PURE__*/t(tn).trust("Use # Volume")),/*@__PURE__*/t(tn)("li",{oncreate:function(e){oq.notKaiOS&&(e.dom.style.display="none")}},/*@__PURE__*/t(tn).trust("Use * Audioplayer

")),/*@__PURE__*/t(tn)("li","Version: "+oq.version)]))}},"/privacy_policy":{view:function(){return /*@__PURE__*/t(tn)("div",{id:"privacy_policy",class:"page"},[/*@__PURE__*/t(tn)("h1","Privacy Policy for Feedolin"),/*@__PURE__*/t(tn)("p","Feedolin is committed to protecting your privacy. This policy explains how data is handled within the app."),/*@__PURE__*/t(tn)("h2","Data Storage and Collection"),/*@__PURE__*/t(tn)("p",["All data related to your RSS/Atom feeds and Mastodon account is stored ",/*@__PURE__*/t(tn)("strong","locally")," in your device’s browser. Feedolin does ",/*@__PURE__*/t(tn)("strong","not")," collect or store any data on external servers. The following information is stored locally:"]),/*@__PURE__*/t(tn)("ul",[/*@__PURE__*/t(tn)("li","Your subscribed RSS/Atom feeds and podcasts."),/*@__PURE__*/t(tn)("li","OPML files you upload or manage."),/*@__PURE__*/t(tn)("li","Your Mastodon account information and related data.")]),/*@__PURE__*/t(tn)("p","No server-side data storage or collection is performed."),/*@__PURE__*/t(tn)("h2","KaiOS Users"),/*@__PURE__*/t(tn)("p",["If you are using Feedolin on a KaiOS device, the app uses ",/*@__PURE__*/t(tn)("strong","KaiOS Ads"),", which may collect data related to your usage. The data collected by KaiOS Ads is subject to the ",/*@__PURE__*/t(tn)("a",{href:"https://www.kaiostech.com/privacy-policy/",target:"_blank",rel:"noopener noreferrer"},"KaiOS privacy policy"),"."]),/*@__PURE__*/t(tn)("p",["For users on all other platforms, ",/*@__PURE__*/t(tn)("strong","no ads")," are used, and no external data collection occurs."]),/*@__PURE__*/t(tn)("h2","External Sources Responsibility"),/*@__PURE__*/t(tn)("p",["Feedolin enables you to add feeds and connect to external sources such as RSS/Atom feeds, podcasts, and Mastodon accounts. You are ",/*@__PURE__*/t(tn)("strong","solely responsible")," for the sources you choose to trust and subscribe to. Feedolin does not verify or control the content or data provided by these external sources."]),/*@__PURE__*/t(tn)("h2","Third-Party Services"),/*@__PURE__*/t(tn)("p","Feedolin integrates with third-party services such as Mastodon. These services have their own privacy policies, and you should review them to understand how your data is handled."),/*@__PURE__*/t(tn)("h2","Policy Updates"),/*@__PURE__*/t(tn)("p","This Privacy Policy may be updated periodically. Any changes will be communicated through updates to the app."),/*@__PURE__*/t(tn)("p","By using Feedolin, you acknowledge and agree to this Privacy Policy.")])}},"/localOPML":{view:function(){return /*@__PURE__*/t(tn)("div",{class:"flex",id:"index",oncreate:function(){oq.notKaiOS&&e9("","",""),e4("","","")}},oq.local_opml.map(function(e,r){var n=e.split("/");return n=n[n.length-1],/*@__PURE__*/t(tn)("button",{class:"item",tabindex:r,oncreate:function(e){0==r&&e.dom.focus()},onclick:function(){try{var r=navigator.b2g.getDeviceStorage("sdcard").get(e);r.onsuccess=function(){var e=new FileReader;e.onload=function(){o1(e.result).error?e8("OPML file not valid",4e3):(oV.opml_local=e.result,oV.opml_local_filename=n,/*@__PURE__*/t(tt).setItem("settings",oV).then(function(){e8("OPML file added",4e3),/*@__PURE__*/t(tn).route.set("/settingsView")}))},e.onerror=function(){e8("OPML file not valid",4e3)},e.readAsText(this.result)},r.onerror=function(e){}}catch(e){}}},n)}))}},"/AudioPlayerView":af,"/VideoPlayerView":ae,"/YouTubePlayerView":at});var ah=function(){document.body.scrollTo({left:0,top:0,behavior:"smooth"}),document.documentElement.scrollTo({left:0,top:0,behavior:"smooth"})};document.addEventListener("DOMContentLoaded",function(e){var r,n,i=function(e){if("SELECT"==document.activeElement.nodeName||"date"==document.activeElement.type||"time"==document.activeElement.type||"volume"==oq.window_status)return!1;if(document.activeElement.classList.contains("scroll")){var t=document.querySelector(".scroll");1==e?t.scrollBy({left:0,top:10}):t.scrollBy({left:0,top:-10})}var r=document.activeElement.tabIndex+e,n=0;if(n=document.getElementById("app").querySelectorAll(".item"),document.activeElement.parentNode.classList.contains("input-parent"))return document.activeElement.parentNode.focus(),!0;r<=n.length&&(0,n[r]).focus(),r>=n.length&&(0,n[0]).focus(),ad()};function o(e){c({key:e})}r=0,document.addEventListener("touchstart",function(e){r=e.touches[0].pageX,document.querySelector("body").style.opacity=1},!1),document.addEventListener("touchmove",function(e){var n=1-Math.min(Math.abs(e.touches[0].pageX-r)/300,1);/*@__PURE__*/t(tn).route.get().startsWith("/article")&&(document.querySelector("body").style.opacity=n)},!1),document.addEventListener("touchend",function(e){document.querySelector("body").style.opacity=1},!1),document.querySelector("div.button-left").addEventListener("click",function(e){o("SoftLeft")}),document.querySelector("div.button-right").addEventListener("click",function(e){o("SoftRight")}),document.querySelector("div.button-center").addEventListener("click",function(e){o("Enter")}),document.querySelector("#top-bar div div.button-left").addEventListener("click",function(e){o("Backspace")}),document.querySelector("#top-bar div div.button-right").addEventListener("click",function(e){o("*")});var a=!1;document.addEventListener("keydown",function(e){a||("Backspace"==e.key&&"INPUT"!=document.activeElement.tagName&&e.preventDefault(),"EndCall"===e.key&&(e.preventDefault(),window.close()),e.repeat||(u=!1,n=setTimeout(function(){u=!0,function(e){switch(e.key){case"Backspace":window.close();break;case"0":oY=[],oH()}}(e)},2e3)),e.repeat&&("Backspace"==e.key&&e.preventDefault(),"Backspace"==e.key&&(u=!1),e.key),a=!0,setTimeout(function(){a=!1},300))});var s=!1;document.addEventListener("keyup",function(e){s||(function(e){if("Backspace"==e.key&&e.preventDefault(),!1===oq.visibility)return 0;clearTimeout(n),u||c(e)}(e),s=!0,setTimeout(function(){s=!1},300))}),document.addEventListener("swiped",function(e){var r=/*@__PURE__*/t(tn).route.get(),n=e.detail.dir;if("down"==n&&(0===window.scrollY||0===document.documentElement.scrollTop)&&(e.detail.yEnd,e.detail.yStart),"right"==n&&r.startsWith("/start")){--o6<1&&(o6=o$.length-1),o4=o$[o6],/*@__PURE__*/t(tn).redraw();var i=/*@__PURE__*/t(tn).route.param();i.index=0,/*@__PURE__*/t(tn).route.set("/start",i)}if("left"==n&&r.startsWith("/start")){++o6>o$.length-1&&(o6=0),o4=o$[o6],/*@__PURE__*/t(tn).redraw();var o=/*@__PURE__*/t(tn).route.param();o.index=0,/*@__PURE__*/t(tn).route.set("/start",o)}});var u=!1;function c(e){var r=/*@__PURE__*/t(tn).route.get();switch(e.key){case"ArrowRight":if(r.startsWith("/start")){++o6>o$.length-1&&(o6=0),o4=o$[o6],/*@__PURE__*/t(tn).redraw();var n=/*@__PURE__*/t(tn).route.param();n.index=0,/*@__PURE__*/t(tn).route.set("/start",n),setTimeout(function(){document.querySelectorAll("article.item")[0].focus(),ad()},500)}break;case"ArrowLeft":if(r.startsWith("/start")){--o6<0&&(o6=o$.length-1),o4=o$[o6],/*@__PURE__*/t(tn).redraw();var o=/*@__PURE__*/t(tn).route.param();o.index=0,/*@__PURE__*/t(tn).route.set("/start",o),setTimeout(function(){document.querySelectorAll("article.item")[0].focus(),ad()},500)}break;case"ArrowUp":i(-1),"volume"==oq.window_status&&(navigator.volumeManager.requestVolumeUp(),oq.window_status="volume",setTimeout(function(){oq.window_status=""},2e3));break;case"ArrowDown":i(1),"volume"==oq.window_status&&(navigator.volumeManager.requestVolumeDown(),oq.window_status="volume",setTimeout(function(){oq.window_status=""},2e3));break;case"SoftRight":case"Alt":r.startsWith("/start")&&/*@__PURE__*/t(tn).route.set("/options"),r.startsWith("/article")&&("audio"==oU.type&&/*@__PURE__*/t(tn).route.set("/AudioPlayerView?url=".concat(encodeURIComponent(oU.enclosure["@_url"]))),"video"==oU.type&&/*@__PURE__*/t(tn).route.set("/VideoPlayerView?url=".concat(encodeURIComponent(oU.enclosure["@_url"]))),"youtube"==oU.type&&/*@__PURE__*/t(tn).route.set("/YouTubePlayerView?videoId=".concat(encodeURIComponent(oU.youtubeid))));break;case"SoftLeft":case"Control":r.startsWith("/start")&&oH(),r.startsWith("/article")&&window.open(oU.url),r.startsWith("/AudioPlayerView")&&(oq.sleepTimer?oR():oM(6e4*oV.sleepTimer));break;case"Enter":document.activeElement.classList.contains("input-parent")&&document.activeElement.children[0].focus();break;case"*":/*@__PURE__*/t(tn).route.set("/AudioPlayerView");break;case"#":e0();break;case"Backspace":if(r.startsWith("/article")){var a=/*@__PURE__*/t(tn).route.param("index");/*@__PURE__*/t(tn).route.set("/start?index="+a)}if(r.startsWith("/YouTubePlayerView")){var s=/*@__PURE__*/t(tn).route.param("index");/*@__PURE__*/t(tn).route.set("/start?index="+s)}if(r.startsWith("/localOPML")&&history.back(),r.startsWith("/index")&&/*@__PURE__*/t(tn).route.set("/start?index=0"),r.startsWith("/about")&&/*@__PURE__*/t(tn).route.set("/options"),r.startsWith("/privacy_policy")&&/*@__PURE__*/t(tn).route.set("/options"),r.startsWith("/options")&&/*@__PURE__*/t(tn).route.set("/start?index=0"),r.startsWith("/settingsView")){if("INPUT"==document.activeElement.tagName)return!1;/*@__PURE__*/t(tn).route.set("/options")}r.startsWith("/Video")&&history.back(),r.startsWith("/Audio")&&history.back()}}document.addEventListener("visibilitychange",function(){"visible"===document.visibilityState&&oV.last_update?(oq.visibility=!0,new Date/1e3-oV.last_update/1e3>oV.cache_time&&(oY=[],e8("load new content",4e3),o5())):oq.visibility=!1})}),window.addEventListener("online",function(){oq.deviceOnline=!0}),window.addEventListener("offline",function(){oq.deviceOnline=!1}),window.addEventListener("beforeunload",function(e){var r=window.performance.getEntriesByType("navigation"),n=window.performance.navigation?window.performance.navigation.type:null;(r.length&&"reload"===r[0].type||1===n)&&(e.preventDefault(),oY=[],e8("load new content",4e3),o5(),/*@__PURE__*/t(tn).route.set("/intro"),e.returnValue="Are you sure you want to leave the page?")});var ap={};ap=eH("MMwCY").getBundleURL("5Waqz")+"sw.js";try{navigator.serviceWorker.register(ap).then(function(e){console.log("Service Worker registered successfully."),e.waiting&&(console.log("A waiting Service Worker is already in place."),e.update()),"b2g"in navigator&&(e.systemMessageManager?e.systemMessageManager.subscribe("activity").then(function(){console.log("Subscribed to general activity.")},function(e){alert("Error subscribing to activity:",e)}):alert("systemMessageManager is not available."))}).catch(function(e){alert("Service Worker registration failed:",e)})}catch(e){console.error("Error during Service Worker setup:",e)}oD.addEventListener("message",function(e){var r=e.data.oauth_success;if(console.log(r),r){var n=new Headers;n.append("Content-Type","application/x-www-form-urlencoded");var i=new URLSearchParams;i.append("code",r),i.append("scope","read"),i.append("grant_type","authorization_code"),i.append("redirect_uri","https://feedolin.strukturart.com"),i.append("client_id","HqIUbDiOkeIoDPoOJNLQOgVyPi1ZOkPMW29UVkhl3i8"),i.append("client_secret","R_9DvQ5V84yZQg3BEdDHjz5uGQGUN4qrPx9YgmrJ81Q"),fetch(oV.mastodon_server_url+"/oauth/token",{method:"POST",headers:n,body:i,redirect:"follow"}).then(function(e){return e.json()}).then(function(e){oV.mastodon_token=e.access_token,/*@__PURE__*/t(tt).setItem("settings",oV),/*@__PURE__*/t(tn).route.set("/start?index=0"),e8("Successfully connected",1e4)}).catch(function(e){console.error("Error:",e),e8("Connection failed")})}})}(); \ No newline at end of file + */function(e,t){"function"!=typeof e.CustomEvent&&(e.CustomEvent=function(e,r){r=r||{bubbles:!1,cancelable:!1,detail:void 0};var n=t.createEvent("CustomEvent");return n.initCustomEvent(e,r.bubbles,r.cancelable,r.detail),n},e.CustomEvent.prototype=e.Event.prototype),t.addEventListener("touchstart",function(e){"true"!==e.target.getAttribute("data-swipe-ignore")&&(s=e.target,a=Date.now(),r=e.touches[0].clientX,n=e.touches[0].clientY,i=0,o=0,u=e.touches.length)},!1),t.addEventListener("touchmove",function(e){if(r&&n){var t=e.touches[0].clientX,a=e.touches[0].clientY;i=r-t,o=n-a}},!1),t.addEventListener("touchend",function(e){if(s===e.target){var l=parseInt(c(s,"data-swipe-threshold","20"),10),f=c(s,"data-swipe-unit","px"),d=parseInt(c(s,"data-swipe-timeout","500"),10),h=Date.now()-a,p="",m=e.changedTouches||e.touches||[];if("vh"===f&&(l=Math.round(l/100*t.documentElement.clientHeight)),"vw"===f&&(l=Math.round(l/100*t.documentElement.clientWidth)),Math.abs(i)>Math.abs(o)?Math.abs(i)>l&&h0?"swiped-left":"swiped-right"):Math.abs(o)>l&&h0?"swiped-up":"swiped-down"),""!==p){var v={dir:p.replace(/swiped-/,""),touchType:(m[0]||{}).touchType||"direct",fingers:u,xStart:parseInt(r,10),xEnd:parseInt((m[0]||{}).clientX||-1,10),yStart:parseInt(n,10),yEnd:parseInt((m[0]||{}).clientY||-1,10)};s.dispatchEvent(new CustomEvent("swiped",{bubbles:!0,cancelable:!0,detail:v})),s.dispatchEvent(new CustomEvent(p,{bubbles:!0,cancelable:!0,detail:v}))}r=null,n=null,a=null}},!1);var r=null,n=null,i=null,o=null,a=null,s=null,u=0;function c(e,r,n){for(;e&&e!==t.documentElement;){var i=e.getAttribute(r);if(i)return i;e=e.parentNode}return n}}(window,document);var iW={},iG={};e(iG,"validate",function(){return eR},function(e){return eR=e});var iY=":A-Za-z_\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD",iK=RegExp("^"+("["+iY+"][")+iY+"\\-.\\d\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$");eB=function(e){return void 0!==e},eq=function(e){return null!=iK.exec(e)},eU=function(e,t){for(var r=[],n=t.exec(e);n;){var i=[];i.startIndex=t.lastIndex-n[0].length;for(var o=n.length,a=0;a5&&"xml"===n)return i3("InvalidXml","XML declaration allowed only at the start of the document.",i2(e,t));if("?"!=e[t]||">"!=e[t+1])continue;t++;break}return t}function iX(e,t){if(e.length>t+5&&"-"===e[t+1]&&"-"===e[t+2]){for(t+=3;t"===e[t+2]){t+=2;break}}else if(e.length>t+8&&"D"===e[t+1]&&"O"===e[t+2]&&"C"===e[t+3]&&"T"===e[t+4]&&"Y"===e[t+5]&&"P"===e[t+6]&&"E"===e[t+7]){var r=1;for(t+=8;t"===e[t]&&0==--r)break}else if(e.length>t+9&&"["===e[t+1]&&"C"===e[t+2]&&"D"===e[t+3]&&"A"===e[t+4]&&"T"===e[t+5]&&"A"===e[t+6]&&"["===e[t+7]){for(t+=8;t"===e[t+2]){t+=2;break}}return t}eR=function(e,t){t=Object.assign({},iZ,t);var r=[],n=!1,i=!1;"\uFEFF"===e[0]&&(e=e.substr(1));for(var o=0;o"!==e[o]&&" "!==e[o]&&" "!==e[o]&&"\n"!==e[o]&&"\r"!==e[o];o++)u+=e[o];if("/"===(u=u.trim())[u.length-1]&&(u=u.substring(0,u.length-1),o--),!eq(u))return i3("InvalidTag",0===u.trim().length?"Invalid space after '<'.":"Tag '"+u+"' is an invalid name.",i2(e,o));var c=function(e,t){for(var r="",n="",i=!1;t"===e[t]&&""===n){i=!0;break}r+=e[t]}return""===n&&{value:r,index:t,tagClosed:i}}(e,o);if(!1===c)return i3("InvalidAttr","Attributes for '"+u+"' have open quote.",i2(e,o));var l=c.value;if(o=c.index,"/"===l[l.length-1]){var f=o-l.length,d=i1(l=l.substring(0,l.length-1),t);if(!0!==d)return i3(d.err.code,d.err.msg,i2(e,f+d.err.line));n=!0}else if(s){if(!c.tagClosed)return i3("InvalidTag","Closing tag '"+u+"' doesn't have proper closing.",i2(e,o));if(l.trim().length>0)return i3("InvalidTag","Closing tag '"+u+"' can't have attributes or invalid starting.",i2(e,a));if(0===r.length)return i3("InvalidTag","Closing tag '"+u+"' has not been opened.",i2(e,a));var h=r.pop();if(u!==h.tagName){var p=i2(e,h.tagStartPos);return i3("InvalidTag","Expected closing tag '"+h.tagName+"' (opened in line "+p.line+", col "+p.col+") instead of closing tag '"+u+"'.",i2(e,a))}0==r.length&&(i=!0)}else{var m=i1(l,t);if(!0!==m)return i3(m.err.code,m.err.msg,i2(e,o-l.length+m.err.line));if(!0===i)return i3("InvalidXml","Multiple possible root nodes found.",i2(e,o));-1!==t.unpairedTags.indexOf(u)||r.push({tagName:u,tagStartPos:a}),n=!0}for(o++;o0)||i3("InvalidXml","Invalid '"+JSON.stringify(r.map(function(e){return e.tagName}),null,4).replace(/\r?\n/g,"")+"' found.",{line:1,col:1}):i3("InvalidXml","Start tag expected.",1)};var i0=RegExp("(\\s*)([^\\s=]+)(\\s*=)?(\\s*(['\"])(([\\s\\S])*?)\\5)?","g");function i1(e,t){for(var r=eU(e,i0),n={},i=0;i0?this.child.push((tW(t={},e.tagname,e.child),tW(t,":@",e[":@"]),t)):this.child.push(tW({},e.tagname,e.child))}}]),e}();var i7={};function oe(e,t){return"!"===e[t+1]&&"-"===e[t+2]&&"-"===e[t+3]}i7=function(e,t){var r={};if("O"===e[t+3]&&"C"===e[t+4]&&"T"===e[t+5]&&"Y"===e[t+6]&&"P"===e[t+7]&&"E"===e[t+8]){t+=9;for(var n,i,o,a,s,u,c,l,f,d=1,h=!1,p=!1;t"===e[t]){if(p?"-"===e[t-1]&&"-"===e[t-2]&&(p=!1,d--):d--,0===d)break}else"["===e[t]?h=!0:e[t]}else{if(h&&"!"===(n=e)[(i=t)+1]&&"E"===n[i+2]&&"N"===n[i+3]&&"T"===n[i+4]&&"I"===n[i+5]&&"T"===n[i+6]&&"Y"===n[i+7])t+=7,entityName=(f=n8(function(e,t){for(var r="";t1&&void 0!==arguments[1]?arguments[1]:{};if(r=Object.assign({},oi,r),!e||"string"!=typeof e)return e;var n=e.trim();if(void 0!==r.skipLike&&r.skipLike.test(n))return e;if(r.hex&&or.test(n))return Number.parseInt(n,16);var i=on.exec(n);if(!i)return e;var o=i[1],a=i[2],s=((t=i[3])&&-1!==t.indexOf(".")&&("."===(t=t.replace(/0+$/,""))?t="0":"."===t[0]?t="0"+t:"."===t[t.length-1]&&(t=t.substr(0,t.length-1))),t),u=i[4]||i[6];if(!r.leadingZeros&&a.length>0&&o&&"."!==n[2]||!r.leadingZeros&&a.length>0&&!o&&"."!==n[1])return e;var c=Number(n),l=""+c;return -1!==l.search(/[eE]/)||u?r.eNotation?c:e:-1!==n.indexOf(".")?"0"===l&&""===s?c:l===s?c:o&&l==="-"+s?c:e:a?s===l?c:o+s===l?c:e:n===l?c:n===o+l?c:e};var oo={};function oa(e){for(var t=Object.keys(e),r=0;r0)){a||(e=this.replaceEntitiesValue(e));var s=this.options.tagValueProcessor(t,e,r,i,o);return null==s?e:(void 0===s?"undefined":(0,tr._)(s))!==(void 0===e?"undefined":(0,tr._)(e))||s!==e?s:this.options.trimValues?ob(e,this.options.parseTagValue,this.options.numberParseOptions):e.trim()===e?ob(e,this.options.parseTagValue,this.options.numberParseOptions):e}}function ou(e){if(this.options.removeNSPrefix){var t=e.split(":"),r="/"===e.charAt(0)?"/":"";if("xmlns"===t[0])return"";2===t.length&&(e=r+t[1])}return e}oo=function(e){return"function"==typeof e?e:Array.isArray(e)?function(t){var r=!0,n=!1,i=void 0;try{for(var o,a=e[Symbol.iterator]();!(r=(o=a.next()).done);r=!0){var s=o.value;if("string"==typeof s&&t===s||s instanceof RegExp&&s.test(t))return!0}}catch(e){n=!0,i=e}finally{try{r||null==a.return||a.return()}finally{if(n)throw i}}}:function(){return!1}};var oc=RegExp("([^\\s=]+)\\s*(=\\s*(['\"])([\\s\\S]*?)\\3)?","gm");function ol(e,t,r){if(!0!==this.options.ignoreAttributes&&"string"==typeof e){for(var n=eU(e,oc),i=n.length,o={},a=0;a",o,"Closing Tag is not closed."),s=e.substring(o+2,a).trim();if(this.options.removeNSPrefix){var u=s.indexOf(":");-1!==u&&(s=s.substr(u+1))}this.options.transformTagName&&(s=this.options.transformTagName(s)),r&&(n=this.saveTextToParentTag(n,r,i));var c=i.substring(i.lastIndexOf(".")+1);if(s&&-1!==this.options.unpairedTags.indexOf(s))throw Error("Unpaired tag can not be used as closing tag: "));var l=0;c&&-1!==this.options.unpairedTags.indexOf(c)?(l=i.lastIndexOf(".",i.lastIndexOf(".")-1),this.tagsNodeStack.pop()):l=i.lastIndexOf("."),i=i.substring(0,l),r=this.tagsNodeStack.pop(),n="",o=a}else if("?"===e[o+1]){var f=og(e,o,!1,"?>");if(!f)throw Error("Pi Tag is not closed.");if(n=this.saveTextToParentTag(n,r,i),this.options.ignoreDeclaration&&"?xml"===f.tagName||this.options.ignorePiTags);else{var d=new i9(f.tagName);d.add(this.options.textNodeName,""),f.tagName!==f.tagExp&&f.attrExpPresent&&(d[":@"]=this.buildAttributesMap(f.tagExp,i,f.tagName)),this.addChild(r,d,i)}o=f.closeIndex+1}else if("!--"===e.substr(o+1,3)){var h=ov(e,"-->",o+4,"Comment is not closed.");if(this.options.commentPropName){var p=e.substring(o+4,h-2);n=this.saveTextToParentTag(n,r,i),r.add(this.options.commentPropName,[tW({},this.options.textNodeName,p)])}o=h}else if("!D"===e.substr(o+1,2)){var m=i7(e,o);this.docTypeEntities=m.entities,o=m.i}else if("!["===e.substr(o+1,2)){var v=ov(e,"]]>",o,"CDATA is not closed.")-2,g=e.substring(o+9,v);n=this.saveTextToParentTag(n,r,i);var y=this.parseTextData(g,r.tagname,i,!0,!1,!0,!0);void 0==y&&(y=""),this.options.cdataPropName?r.add(this.options.cdataPropName,[tW({},this.options.textNodeName,g)]):r.add(this.options.textNodeName,y),o=v+2}else{var b=og(e,o,this.options.removeNSPrefix),w=b.tagName,x=b.rawTagName,E=b.tagExp,S=b.attrExpPresent,k=b.closeIndex;this.options.transformTagName&&(w=this.options.transformTagName(w)),r&&n&&"!xml"!==r.tagname&&(n=this.saveTextToParentTag(n,r,i,!1));var A=r;if(A&&-1!==this.options.unpairedTags.indexOf(A.tagname)&&(r=this.tagsNodeStack.pop(),i=i.substring(0,i.lastIndexOf("."))),w!==t.tagname&&(i+=i?"."+w:w),this.isItStopNode(this.options.stopNodes,i,w)){var I="";if(E.length>0&&E.lastIndexOf("/")===E.length-1)"/"===w[w.length-1]?(w=w.substr(0,w.length-1),i=i.substr(0,i.length-1),E=w):E=E.substr(0,E.length-1),o=b.closeIndex;else if(-1!==this.options.unpairedTags.indexOf(w))o=b.closeIndex;else{var T=this.readStopNodeData(e,x,k+1);if(!T)throw Error("Unexpected end of ".concat(x));o=T.i,I=T.tagContent}var N=new i9(w);w!==E&&S&&(N[":@"]=this.buildAttributesMap(E,i,w)),I&&(I=this.parseTextData(I,w,i,!0,S,!0,!0)),i=i.substr(0,i.lastIndexOf(".")),N.add(this.options.textNodeName,I),this.addChild(r,N,i)}else{if(E.length>0&&E.lastIndexOf("/")===E.length-1){"/"===w[w.length-1]?(w=w.substr(0,w.length-1),i=i.substr(0,i.length-1),E=w):E=E.substr(0,E.length-1),this.options.transformTagName&&(w=this.options.transformTagName(w));var O=new i9(w);w!==E&&S&&(O[":@"]=this.buildAttributesMap(E,i,w)),this.addChild(r,O,i),i=i.substr(0,i.lastIndexOf("."))}else{var _=new i9(w);this.tagsNodeStack.push(r),w!==E&&S&&(_[":@"]=this.buildAttributesMap(E,i,w)),this.addChild(r,_,i),r=_}n="",o=k}}}else n+=e[o];return t.child};function od(e,t,r){var n=this.options.updateTag(t.tagname,r,t[":@"]);!1===n||("string"==typeof n&&(t.tagname=n),e.addChild(t))}var oh=function(e){if(this.options.processEntities){for(var t in this.docTypeEntities){var r=this.docTypeEntities[t];e=e.replace(r.regx,r.val)}for(var n in this.lastEntities){var i=this.lastEntities[n];e=e.replace(i.regex,i.val)}if(this.options.htmlEntities)for(var o in this.htmlEntities){var a=this.htmlEntities[o];e=e.replace(a.regex,a.val)}e=e.replace(this.ampEntity.regex,this.ampEntity.val)}return e};function op(e,t,r,n){return e&&(void 0===n&&(n=0===Object.keys(t.child).length),void 0!==(e=this.parseTextData(e,t.tagname,r,!1,!!t[":@"]&&0!==Object.keys(t[":@"]).length,n))&&""!==e&&t.add(this.options.textNodeName,e),e=""),e}function om(e,t,r){var n="*."+r;for(var i in e){var o=e[i];if(n===o||t===o)return!0}return!1}function ov(e,t,r,n){var i=e.indexOf(t,r);if(-1!==i)return i+t.length-1;throw Error(n)}function og(e,t,r){var n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:">",i=function(e,t){for(var r,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:">",i="",o=t;o",r,"".concat(t," is not closed"));if(e.substring(r+2,o).trim()===t&&0==--i)return{tagContent:e.substring(n,r),i:o};r=o}else if("?"===e[r+1])r=ov(e,"?>",r+1,"StopNode is not closed.");else if("!--"===e.substr(r+1,3))r=ov(e,"-->",r+3,"StopNode is not closed.");else if("!["===e.substr(r+1,2))r=ov(e,"]]>",r,"StopNode is not closed.")-2;else{var a=og(e,r,">");a&&((a&&a.tagName)===t&&"/"!==a.tagExp[a.tagExp.length-1]&&i++,r=a.closeIndex)}}}function ob(e,t,r){if(t&&"string"==typeof e){var n=e.trim();return"true"===n||"false"!==n&&ot(e,r)}return eB(e)?e:""}i4=function e(t){tf(this,e),this.options=t,this.currentNode=null,this.tagsNodeStack=[],this.docTypeEntities={},this.lastEntities={apos:{regex:/&(apos|#39|#x27);/g,val:"'"},gt:{regex:/&(gt|#62|#x3E);/g,val:">"},lt:{regex:/&(lt|#60|#x3C);/g,val:"<"},quot:{regex:/&(quot|#34|#x22);/g,val:'"'}},this.ampEntity={regex:/&(amp|#38|#x26);/g,val:"&"},this.htmlEntities={space:{regex:/&(nbsp|#160);/g,val:" "},cent:{regex:/&(cent|#162);/g,val:"¢"},pound:{regex:/&(pound|#163);/g,val:"£"},yen:{regex:/&(yen|#165);/g,val:"¥"},euro:{regex:/&(euro|#8364);/g,val:"€"},copyright:{regex:/&(copy|#169);/g,val:"©"},reg:{regex:/&(reg|#174);/g,val:"®"},inr:{regex:/&(inr|#8377);/g,val:"₹"},num_dec:{regex:/&#([0-9]{1,7});/g,val:function(e,t){return String.fromCharCode(Number.parseInt(t,10))}},num_hex:{regex:/&#x([0-9a-fA-F]{1,6});/g,val:function(e,t){return String.fromCharCode(Number.parseInt(t,16))}}},this.addExternalEntities=oa,this.parseXml=of,this.parseTextData=os,this.resolveNameSpace=ou,this.buildAttributesMap=ol,this.isItStopNode=om,this.replaceEntitiesValue=oh,this.readStopNodeData=oy,this.saveTextToParentTag=op,this.addChild=od,this.ignoreAttributesFn=oo(this.options.ignoreAttributes)},eF=function(e,t){return function e(t,r,n){for(var i,o={},a=0;a0&&(o[r.textNodeName]=i):void 0!==i&&(o[r.textNodeName]=i),o}(e,t)},i8=/*#__PURE__*/function(){function e(t){tf(this,e),this.externalEntities={},this.options=ej(t)}return th(e,[{key:"parse",value:function(e,t){if("string"==typeof e);else if(e.toString)e=e.toString();else throw Error("XML data is accepted in String or Bytes[] form.");if(t){!0===t&&(t={});var r=eR(e,t);if(!0!==r)throw Error("".concat(r.err.msg,":").concat(r.err.line,":").concat(r.err.col))}var n=new i4(this.options);n.addExternalEntities(this.externalEntities);var i=n.parseXml(e);return this.options.preserveOrder||void 0===i?i:eF(i,this.options)}},{key:"addEntity",value:function(e,t){if(-1!==t.indexOf("&"))throw Error("Entity value can't have '&'");if(-1!==e.indexOf("&")||-1!==e.indexOf(";"))throw Error("An entity must be set without '&' and ';'. Eg. use '#xD' for ' '");if("&"===t)throw Error("An entity with value '&' is not permitted");this.externalEntities[e]=t}}]),e}();var ow={};function ox(e,t){var r="";if(e&&!t.ignoreAttributes){for(var n in e)if(e.hasOwnProperty(n)){var i=t.attributeValueProcessor(n,e[n]);!0===(i=oE(i,t))&&t.suppressBooleanAttributes?r+=" ".concat(n.substr(t.attributeNamePrefix.length)):r+=" ".concat(n.substr(t.attributeNamePrefix.length),'="').concat(i,'"')}}return r}function oE(e,t){if(e&&e.length>0&&t.processEntities)for(var r=0;r0&&(r="\n"),function e(t,r,n,i){for(var o="",a=!1,s=0;s"),a=!1;continue}if(c===r.commentPropName){o+=i+""),a=!0;continue}if("?"===c[0]){var d=ox(u[":@"],r),h="?xml"===c?"":i,p=u[c][0][r.textNodeName];p=0!==p.length?" "+p:"",o+=h+"<".concat(c).concat(p).concat(d,"?>"),a=!0;continue}var m=i;""!==m&&(m+=r.indentBy);var v=ox(u[":@"],r),g=i+"<".concat(c).concat(v),y=e(u[c],r,l,m);-1!==r.unpairedTags.indexOf(c)?r.suppressUnpairedNode?o+=g+">":o+=g+"/>":(!y||0===y.length)&&r.suppressEmptyNode?o+=g+"/>":y&&y.endsWith(">")?o+=g+">".concat(y).concat(i,""):(o+=g+">",y&&""!==i&&(y.includes("/>")||y.includes("")),a=!0}}return o}(e,t,"",r)};var oS={attributeNamePrefix:"@_",attributesGroupName:!1,textNodeName:"#text",ignoreAttributes:!0,cdataPropName:!1,format:!1,indentBy:" ",suppressEmptyNode:!1,suppressUnpairedNode:!0,suppressBooleanAttributes:!0,tagValueProcessor:function(e,t){return t},attributeValueProcessor:function(e,t){return t},preserveOrder:!1,commentPropName:!1,unpairedTags:[],entities:[{regex:RegExp("&","g"),val:"&"},{regex:RegExp(">","g"),val:">"},{regex:RegExp("<","g"),val:"<"},{regex:RegExp("'","g"),val:"'"},{regex:RegExp('"',"g"),val:"""}],processEntities:!0,stopNodes:[],oneListGroup:!1};function ok(e){this.options=Object.assign({},oS,e),!0===this.options.ignoreAttributes||this.options.attributesGroupName?this.isAttribute=function(){return!1}:(this.ignoreAttributesFn=oo(this.options.ignoreAttributes),this.attrPrefixLen=this.options.attributeNamePrefix.length,this.isAttribute=oT),this.processTextOrObjNode=oA,this.options.format?(this.indentate=oI,this.tagEndChar=">\n",this.newLine="\n"):(this.indentate=function(){return""},this.tagEndChar=">",this.newLine="")}function oA(e,t,r,n){var i=this.j2x(e,r+1,n.concat(t));return void 0!==e[this.options.textNodeName]&&1===Object.keys(e).length?this.buildTextValNode(e[this.options.textNodeName],t,i.attrStr,r):this.buildObjectNode(i.val,t,i.attrStr,r)}function oI(e){return this.options.indentBy.repeat(e)}function oT(e){return!!e.startsWith(this.options.attributeNamePrefix)&&e!==this.options.textNodeName&&e.substr(this.attrPrefixLen)}ok.prototype.build=function(e){return this.options.preserveOrder?ow(e,this.options):(Array.isArray(e)&&this.options.arrayNodeName&&this.options.arrayNodeName.length>1&&(e=tW({},this.options.arrayNodeName,e)),this.j2x(e,0,[]).val)},ok.prototype.j2x=function(e,t,r){var n="",i="",o=r.join(".");for(var a in e)if(Object.prototype.hasOwnProperty.call(e,a)){if(void 0===e[a])this.isAttribute(a)&&(i+="");else if(null===e[a])this.isAttribute(a)?i+="":"?"===a[0]?i+=this.indentate(t)+"<"+a+"?"+this.tagEndChar:i+=this.indentate(t)+"<"+a+"/"+this.tagEndChar;else if(e[a]instanceof Date)i+=this.buildTextValNode(e[a],a,"",t);else if("object"!=typeof e[a]){var s=this.isAttribute(a);if(s&&!this.ignoreAttributesFn(s,o))n+=this.buildAttrPairStr(s,""+e[a]);else if(!s){if(a===this.options.textNodeName){var u=this.options.tagValueProcessor(a,""+e[a]);i+=this.replaceEntitiesValue(u)}else i+=this.buildTextValNode(e[a],a,"",t)}}else if(Array.isArray(e[a])){for(var c=e[a].length,l="",f="",d=0;d"+e+i:!1!==this.options.commentPropName&&t===this.options.commentPropName&&0===o.length?this.indentate(n)+"")+this.newLine:this.indentate(n)+"<"+t+r+o+this.tagEndChar+e+this.indentate(n)+i},ok.prototype.closeTag=function(e){var t="";return -1!==this.options.unpairedTags.indexOf(e)?this.options.suppressUnpairedNode||(t="/"):t=this.options.suppressEmptyNode?"/":">")+this.newLine;if(!1!==this.options.commentPropName&&t===this.options.commentPropName)return this.indentate(n)+"")+this.newLine;if("?"===t[0])return this.indentate(n)+"<"+t+r+"?"+this.tagEndChar;var i=this.options.tagValueProcessor(t,e);return""===(i=this.replaceEntitiesValue(i))?this.indentate(n)+"<"+t+r+this.closeTag(t)+this.tagEndChar:this.indentate(n)+"<"+t+r+">"+i+"0&&this.options.processEntities)for(var t=0;t0))return[3,5];i.label=1;case 1:return i.trys.push([1,3,,4]),[4,o2(r)];case 2:return i.sent(),o$.last_update=new Date,/*@__PURE__*/t(tt).setItem("settings",o$),[3,4];case 3:return i.sent(),[3,4];case 4:return[3,6];case 5:alert("Generated download list is empty."),i.label=6;case 6:return[3,8];case 7:console.error("No OPML content found."),i.label=8;case 8:return[2]}})}),function(e){return en.apply(this,arguments)}),o3=function(e){var t=oY.parseFromString(e,"text/xml");if(!t||t.getElementsByTagName("parsererror").length>0)return console.error("Invalid OPML data."),{error:"Invalid OPML data",downloadList:[]};var r=t.querySelector("body");if(!r)return console.error("No 'body' element found in the OPML data."),{error:"No 'body' element found",downloadList:[]};var n=0,i=r.querySelectorAll("outline"),o=[];return i.forEach(function(e){e.querySelectorAll("outline").forEach(function(t){var r=t.getAttribute("xmlUrl");r&&o.push({error:"",title:t.getAttribute("title")||"Untitled",url:r,index:n++,channel:e.getAttribute("text")||"Unknown",type:t.getAttribute("type")||"rss",maxEpisodes:t.getAttribute("maxEpisodes")||5})})}),{error:"",downloadList:o}},o2=(ei=eY(function(e){var r,n,i,o,a;return(0,eZ.__generator)(this,function(s){return r=0,n=e.length,i=!1,o=function(){o9=localStorage.getItem("last_channel_filter"),r===n&&(console.log("All feeds are loaded"),/*@__PURE__*/t(tt).setItem("articles",oK).then(function(){oK.sort(function(e,t){return new Date(t.isoDate)-new Date(e.isoDate)}),oK.forEach(function(e){-1===oz.indexOf(e.channel)&&e.channel&&oz.push(e.channel)}),oz.length>0&&!i&&(o9=localStorage.getItem("last_channel_filter")||oz[0],i=!0),/*@__PURE__*/t(tn).route.set("/start")}).catch(function(e){console.error("Feeds cached",e)}))},a=[],e.forEach(function(e){if("mastodon"===e.type)fetch(e.url).then(function(e){return e.json()}).then(function(t){t.forEach(function(t,r){if(!(r>5)){var n={channel:e.channel,id:t.id,type:"mastodon",pubDate:t.created_at,isoDate:t.created_at,title:t.account.display_name||t.account.username,content:t.content,url:t.uri,reblog:!1};t.media_attachments.length>0&&("image"===t.media_attachments[0].type?n.content+="
"):"video"===t.media_attachments[0].type?n.enclosure={"@_type":"video",url:t.media_attachments[0].url}:"audio"===t.media_attachments[0].type&&(n.enclosure={"@_type":"audio",url:t.media_attachments[0].url})),""==t.content&&(n.content=t.reblog.content,n.reblog=!0,n.reblogUser=t.account.display_name||t.reblog.account.acct,t.reblog.media_attachments.length>0&&("image"===t.reblog.media_attachments[0].type?n.content+="
"):"video"===t.reblog.media_attachments[0].type?n.enclosure={"@_type":"video",url:t.reblog.media_attachments[0].url}:"audio"===t.reblog.media_attachments[0].type&&(n.enclosure={"@_type":"audio",url:t.reblog.media_attachments[0].url}))),oK.push(n)}})}).catch(function(t){e.error=t}).finally(function(){r++,o()});else{var n=new XMLHttpRequest;new Date().getTime();var i=e.url;n.open("GET",oj+i,!0),n.onload=function(){if(200!==n.status){e.error=n.status,r++,o();return}var i=n.response;if(!i){e.error=n.status,r++,o();return}try{var s=oB.parse(i);s.feed&&s.feed.entry.forEach(function(r,n){if(n15)){var r={channel:"Mastodon",id:e.id,type:"mastodon",pubDate:e.created_at,isoDate:e.created_at,title:e.account.display_name,content:e.content,url:e.uri,reblog:!1};e.media_attachments.length>0&&("image"===e.media_attachments[0].type?r.content+="
"):"video"===e.media_attachments[0].type?r.enclosure={"@_type":"video",url:e.media_attachments[0].url}:"audio"===e.media_attachments[0].type&&(r.enclosure={"@_type":"audio",url:e.media_attachments[0].url}));try{""==e.content&&(r.content=e.reblog.content,r.reblog=!0,r.reblogUser=e.reblog.account.display_name||e.reblog.account.acct,e.reblog.media_attachments.length>0&&("image"===e.reblog.media_attachments[0].type?r.content+="
"):"video"===e.reblog.media_attachments[0].type?r.enclosure={"@_type":"video",url:e.reblog.media_attachments[0].url}:"audio"===e.reblog.media_attachments[0].type&&(r.enclosure={"@_type":"audio",url:e.reblog.media_attachments[0].url})))}catch(e){}oK.push(r)}}),oz.push("Mastodon"),e8("Logged in as "+oq.mastodon_logged,4e3)})},o8=function(){o0(oj+o$.opml_url+"?time="+new Date),o$.opml_local&&o1(o$.opml_local),o$.mastodon_token&&te(o$.mastodon_server_url,o$.mastodon_token).then(function(e){oq.mastodon_logged=e.display_name,o5(),setTimeout(function(){},5e3)}).catch(function(e){}),o9=localStorage.getItem("last_channel_filter")};/*@__PURE__*/t(tt).getItem("settings").then(function(e){null==e&&(o$=oF,/*@__PURE__*/t(tt).setItem("settings",o$).then(function(e){}).catch(function(e){console.log(e)})),(o$=e).cache_time=o$.cache_time||1e3,o$.last_update?oq.last_update_duration=new Date/1e3-o$.last_update/1e3:oq.last_update_duration=3600,o$.opml_url||o$.opml_local_filename||e8("The feed could not be loaded because no OPML was defined in the settings.",6e3),fetch("https://www.google.com",{method:"HEAD",mode:"no-cors"}).then(function(){return!0}).catch(function(){return!1}).then(function(e){e&&oq.last_update_duration>o$.cache_time?(o8(),e8("Load feeds",4e3)):/*@__PURE__*/t(tt).getItem("articles").then(function(e){(oK=e).sort(function(e,t){return new Date(t.isoDate)-new Date(e.isoDate)}),oK.forEach(function(e){-1===oz.indexOf(e.channel)&&e.channel&&oz.push(e.channel)}),oz.length&&(o9=localStorage.getItem("last_channel_filter")||oz[0]),/*@__PURE__*/t(tn).route.set("/start?index=0"),e8("Cached feeds loaded",4e3),o$.mastodon_token&&te(o$.mastodon_server_url,o$.mastodon_token).then(function(e){oq.mastodon_logged=e.display_name}).catch(function(e){})}).catch(function(e){})})}).catch(function(e){e8("The default settings was loaded",3e3),o0(oj+(o$=oF).opml_url),/*@__PURE__*/t(tt).setItem("settings",o$).then(function(e){}).catch(function(e){console.log(e)})});var o6=document.getElementById("app"),o4=-1,o9=localStorage.getItem("last_channel_filter")||"",o7=0,ae=function(e){return /*@__PURE__*/t(iz).duration(e,"seconds").format("mm:ss")},at={videoElement:null,videoDuration:0,currentTime:0,isPlaying:!1,seekAmount:5,oncreate:function(e){var r=e.attrs;oq.notKaiOS&&e9("","",""),at.videoElement=document.createElement("video"),document.getElementById("video-container").appendChild(at.videoElement);var n=r.url;n&&(at.videoElement.src=n,at.videoElement.play(),at.isPlaying=!0),at.videoElement.onloadedmetadata=function(){at.videoDuration=at.videoElement.duration,/*@__PURE__*/t(tn).redraw()},at.videoElement.ontimeupdate=function(){at.currentTime=at.videoElement.currentTime,/*@__PURE__*/t(tn).redraw()},document.addEventListener("keydown",at.handleKeydown)},onremove:function(){document.removeEventListener("keydown",at.handleKeydown)},handleKeydown:function(e){"Enter"===e.key?at.togglePlayPause():"ArrowLeft"===e.key?at.seek("left"):"ArrowRight"===e.key&&at.seek("right")},togglePlayPause:function(){at.isPlaying?at.videoElement.pause():at.videoElement.play(),at.isPlaying=!at.isPlaying},seek:function(e){var t=at.videoElement.currentTime;"left"===e?at.videoElement.currentTime=Math.max(0,t-at.seekAmount):"right"===e&&(at.videoElement.currentTime=Math.min(at.videoDuration,t+at.seekAmount))},view:function(e){e.attrs;var r=at.videoDuration>0?at.currentTime/at.videoDuration*100:0;return /*@__PURE__*/t(tn)("div",{class:"video-player"},[/*@__PURE__*/t(tn)("div",{id:"video-container",class:"video-container"}),/*@__PURE__*/t(tn)("div",{class:"video-info"},[" ".concat(ae(at.currentTime)," / ").concat(ae(at.videoDuration))]),/*@__PURE__*/t(tn)("div",{class:"progress-bar-container"},[/*@__PURE__*/t(tn)("div",{class:"progress-bar",style:{width:"".concat(r,"%")}})])])}},ar={player:null,oncreate:function(e){var t=e.attrs;oq.notKaiOS&&e9("","",""),e4("","",""),YT?ar.player=new YT.Player("video-container",{videoId:t.videoId,events:{onReady:ar.onPlayerReady}}):alert("YouTube player not loaded"),document.addEventListener("keydown",ar.handleKeydown)},onPlayerReady:function(e){e.target.playVideo()},handleKeydown:function(e){"Enter"===e.key?ar.togglePlayPause():"ArrowLeft"===e.key?ar.seek("left"):"ArrowRight"===e.key&&ar.seek("right")},togglePlayPause:function(){1===ar.player.getPlayerState()?ar.player.pauseVideo():ar.player.playVideo()},seek:function(e){var t=ar.player.getCurrentTime();"left"===e?ar.player.seekTo(Math.max(0,t-5),!0):"right"===e&&ar.player.seekTo(t+5,!0)},view:function(){return /*@__PURE__*/t(tn)("div",{class:"youtube-player"},[/*@__PURE__*/t(tn)("div",{id:"video-container",class:"video-container"})])}},an=document.createElement("audio");if(an.preload="auto","b2g"in navigator)try{an.mozAudioChannelType="content",navigator.b2g.AudioChannelManager&&(navigator.b2g.AudioChannelManager.volumeControlChannel="content")}catch(e){console.log(e)}var ai=[];try{/*@__PURE__*/t(tt).getItem("hasPlayedAudio").then(function(e){ai=e||[],console.log("Loaded hasPlayedAudio:",ai)})}catch(e){console.error("Failed to load hasPlayedAudio:",e)}var ao=(eo=eY(function(e,r,n){var i;return(0,eZ.__generator)(this,function(o){return -1!==(i=ai.findIndex(function(t){return t.url===e}))?ai[i].time=r:ai.push({url:e,time:r,id:n}),aa(),/*@__PURE__*/t(tt).setItem("hasPlayedAudio",ai).then(function(){}),[2]})}),function(e,t,r){return eo.apply(this,arguments)}),aa=function(){ai=ai.filter(function(e){return oV.includes(e.id)})},as=0,au=0,ac=0,al=0,af=!1,ad=null,ah={audioDuration:0,currentTime:0,isPlaying:!1,seekAmount:5,oninit:function(e){var r=e.attrs;r.url&&an.src!==r.url&&(an.src=r.url,an.play().catch(function(){}),ah.isPlaying=!0,ai.map(function(e){e.url===an.src&&!0==confirm("continue playing ?")&&(an.currentTime=e.time)})),an.onloadedmetadata=function(){ah.audioDuration=an.duration,/*@__PURE__*/t(tn).redraw()},an.ontimeupdate=function(){ah.currentTime=an.currentTime,ao(an.src,an.currentTime,r.id),oq.player=!0,/*@__PURE__*/t(tn).redraw()},ah.isPlaying=!an.paused,document.addEventListener("keydown",ah.handleKeydown)},oncreate:function(){var e=function(e){ad||(ah.seek(e),ad=setInterval(function(){ah.seek(e),document.querySelector(".audio-info").style.padding="20px"},1e3))},t=function(){ad&&(clearInterval(ad),ad=null,document.querySelector(".audio-info").style.padding="10px")};e9("","",""),e4("","",""),o$.sleepTimer&&(e4("","",""),document.querySelector("div.button-left").addEventListener("click",function(e){oq.sleepTimer?oR():oM(6e4*o$.sleepTimer)})),oq.notKaiOS&&e9("","",""),document.querySelector("div.button-center").addEventListener("click",function(e){ah.togglePlayPause()}),document.addEventListener("touchstart",function(e){var t=e.touches[0];as=t.clientX,au=t.clientY}),document.addEventListener("touchmove",function(t){var r=t.touches[0];ac=r.clientX,al=r.clientY;var n=ac-as,i=al-au;Math.abs(n)>Math.abs(i)?n>30?(e("right"),af=!0):n<-30&&(e("left"),af=!0):i>30?console.log("Swiping down (not used in this context)"):i<-30&&console.log("Swiping up (not used in this context)")}),document.addEventListener("touchend",function(){af&&(af=!1,t())})},onremove:function(){document.removeEventListener("keydown",ah.handleKeydown)},handleKeydown:function(e){"Enter"===e.key?ah.togglePlayPause():"ArrowLeft"===e.key?ah.seek("left"):"ArrowRight"===e.key&&ah.seek("right")},togglePlayPause:function(){ah.isPlaying?an.pause():an.play().catch(function(){}),ah.isPlaying=!ah.isPlaying},seek:function(e){var t=an.currentTime;"left"===e?an.currentTime=Math.max(0,t-ah.seekAmount):"right"===e&&(an.currentTime=Math.min(ah.audioDuration,t+ah.seekAmount))},view:function(e){e.attrs;var r=ah.audioDuration>0?ah.currentTime/ah.audioDuration*100:0;return /*@__PURE__*/t(tn)("div",{class:"audio-player"},[/*@__PURE__*/t(tn)("div",{id:"audio-container",class:"audio-container"}),/*@__PURE__*/t(tn)("div",{class:"cover-container",style:{"background-color":"rgb(121, 71, 255)","background-image":"url(".concat(oU.cover,")")}}),/*@__PURE__*/t(tn)("div",{class:"audio-info",style:{background:"linear-gradient(to right, #3498db ".concat(r,"%, white ").concat(r,"%)")}},["".concat(ae(ah.currentTime)," / ").concat(ae(ah.audioDuration))]),/*@__PURE__*/t(tn)("div",{class:"progress-bar-container"},[/*@__PURE__*/t(tn)("div",{class:"progress-bar",style:{width:"".concat(r,"%")}})])])}};function ap(){var e=document.activeElement;if(e){for(var t=e.getBoundingClientRect(),r=t.top+t.height/2,n=e.parentNode;n;){if(n.scrollHeight>n.clientHeight||n.scrollWidth>n.clientWidth){var i=n.getBoundingClientRect();r=t.top-i.top+t.height/2;break}n=n.parentNode}n?n.scrollBy({left:0,top:r-n.clientHeight/2,behavior:"smooth"}):document.body.scrollBy({left:0,top:r-window.innerHeight/2,behavior:"smooth"})}}/*@__PURE__*/t(tn).route(o6,"/intro",{"/article":{view:function(){var e=oK.find(function(e){return /*@__PURE__*/t(tn).route.param("index")==e.id&&(oU=e,!0)});return /*@__PURE__*/t(tn)("div",{id:"article",class:"page",oncreate:function(){oq.notKaiOS&&e9("","",""),e4("","","")}},e?/*@__PURE__*/t(tn)("article",{class:"item",tabindex:0,oncreate:function(t){t.dom.focus(),("audio"===e.type||"video"===e.type||"youtube"===e.type)&&e4("","","")}},[/*@__PURE__*/t(tn)("time",{id:"top",oncreate:function(){setTimeout(function(){document.querySelector("#top").scrollIntoView()},1e3)}},/*@__PURE__*/t(iz)(e.isoDate).format("DD MMM YYYY")),/*@__PURE__*/t(tn)("h2",{class:"article-title",oncreate:function(t){var r=t.dom;e.reblog&&r.classList.add("reblog")}},e.title),/*@__PURE__*/t(tn)("div",{class:"text"},[/*@__PURE__*/t(tn).trust(oX(e.content))]),e.reblog?/*@__PURE__*/t(tn)("div",{class:"text"},"reblogged from:"+e.reblogUser):""]):/*@__PURE__*/t(tn)("div","Article not found"))}},"/settingsView":{view:function(){return /*@__PURE__*/t(tn)("div",{class:"flex justify-content-center page",id:"settings-page",oncreate:function(){oq.notKaiOS||(oq.local_opml=[],eX("opml",function(e){oq.local_opml.push(e)})),e4("","",""),oq.notKaiOS&&e4("","",""),document.querySelectorAll(".item").forEach(function(e,t){e.setAttribute("tabindex",t)}),oq.notKaiOS&&e9("","",""),oq.notKaiOS&&e4("","","")}},[/*@__PURE__*/t(tn)("div",{class:"item input-parent flex",oncreate:function(){am()}},[/*@__PURE__*/t(tn)("label",{for:"url-opml"},"OPML"),/*@__PURE__*/t(tn)("input",{id:"url-opml",placeholder:"",value:o$.opml_url||"",type:"url"})]),/*@__PURE__*/t(tn)("button",{class:"item",onclick:function(){o$.opml_local_filename?(o$.opml_local="",o$.opml_local_filename="",/*@__PURE__*/t(tt).setItem("settings",o$).then(function(){e8("OPML file removed",4e3),/*@__PURE__*/t(tn).redraw()})):oq.notKaiOS?e7(function(e){var r=new FileReader;r.onload=function(){o3(r.result).error?e8("OPML file not valid",4e3):(o$.opml_local=r.result,o$.opml_local_filename=e.filename,/*@__PURE__*/t(tt).setItem("settings",o$).then(function(){e8("OPML file added",4e3)}))},r.onerror=function(){e8("OPML file not valid",4e3)},r.readAsText(e.blob)}):oq.local_opml.length>0?/*@__PURE__*/t(tn).route.set("/localOPML"):e8("not enough",3e3)}},o$.opml_local_filename?"Remove OPML file":"Upload OPML file"),/*@__PURE__*/t(tn)("div",o$.opml_local_filename),/*@__PURE__*/t(tn)("div",{class:"seperation"}),/*@__PURE__*/t(tn)("div",{class:"item input-parent flex "},[/*@__PURE__*/t(tn)("label",{for:"url-proxy"},"PROXY"),/*@__PURE__*/t(tn)("input",{id:"url-proxy",placeholder:"",value:o$.proxy_url||"",type:"url"})]),/*@__PURE__*/t(tn)("div",{class:"seperation"}),/*@__PURE__*/t(tn)("h2",{class:"flex justify-content-spacearound"},"Mastodon Account"),oq.mastodon_logged?/*@__PURE__*/t(tn)("div",{id:"account_info",class:"item"},"You have successfully logged in as ".concat(oq.mastodon_logged," and the data is being loaded from server ").concat(o$.mastodon_server_url,".")):null,oq.mastodon_logged?/*@__PURE__*/t(tn)("button",{class:"item",onclick:function(){o$.mastodon_server_url="",o$.mastodon_token="",/*@__PURE__*/t(tt).setItem("settings",o$),oq.mastodon_logged="",/*@__PURE__*/t(tn).route.set("/settingsView")}},"Disconnect"):null,oq.mastodon_logged?null:/*@__PURE__*/t(tn)("div",{class:"item input-parent flex justify-content-spacearound"},[/*@__PURE__*/t(tn)("label",{for:"mastodon-server-url"},"URL"),/*@__PURE__*/t(tn)("input",{id:"mastodon-server-url",placeholder:"Server URL",value:o$.mastodon_server_url})]),oq.mastodon_logged?null:/*@__PURE__*/t(tn)("button",{class:"item",onclick:function(){/*@__PURE__*/t(tt).setItem("settings",o$),o$.mastodon_server_url=document.getElementById("mastodon-server-url").value;var e=o$.mastodon_server_url+"/oauth/authorize?client_id=HqIUbDiOkeIoDPoOJNLQOgVyPi1ZOkPMW29UVkhl3i8&scope=read&redirect_uri=https://feedolin.strukturart.com&response_type=code";window.open(e)}},"Connect"),/*@__PURE__*/t(tn)("div",{class:"seperation"}),/*@__PURE__*/t(tn)("div",{class:"item input-parent flex "},[/*@__PURE__*/t(tn)("label",{for:"sleep-timer"},"Sleep timer in minutes"),/*@__PURE__*/t(tn)("input",{id:"sleep-timer",placeholder:"",value:o$.sleepTimer,type:"tel"})]),/*@__PURE__*/t(tn)("button",{class:"item",id:"button-save-settings",onclick:function(){e=document.getElementById("url-opml").value,/(ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?/.test(e)||e8("URL not valid"),o$.opml_url=document.getElementById("url-opml").value,o$.proxy_url=document.getElementById("url-proxy").value;var e,r=document.getElementById("sleep-timer").value;r&&!isNaN(r)&&Number(r)>0?o$.sleepTimer=parseInt(r,10):o$.sleepTimer="",oq.mastodon_logged||(o$.mastodon_server_url=document.getElementById("mastodon-server-url").value),/*@__PURE__*/t(tt).setItem("settings",o$).then(function(e){e8("settings saved",2e3)}).catch(function(e){console.log(e)})}},"save settings")])}},"/intro":{view:function(){return /*@__PURE__*/t(tn)("div",{class:"width-100 height-100",id:"intro",oninit:function(){oq.notKaiOS&&oZ()},onremove:function(){localStorage.setItem("version",oq.version),document.querySelector(".loading-spinner").style.display="none"}},[/*@__PURE__*/t(tn)("img",{src:"./assets/icons/intro.svg",oncreate:function(){document.querySelector(".loading-spinner").style.display="block",e3(function(e){try{oq.version=e.manifest.version,document.querySelector("#version").textContent=e.manifest.version}catch(e){}("b2g"in navigator||oq.notKaiOS)&&fetch("/manifest.webmanifest").then(function(e){return e.json()}).then(function(e){oq.version=e.b2g_features.version})})}}),/*@__PURE__*/t(tn)("div",{class:"flex width-100 justify-content-center ",id:"version-box"},[/*@__PURE__*/t(tn)("kbd",{id:"version"},localStorage.getItem("version")||0)])])}},"/start":{view:function(){var e=oK.filter(function(e){return""===o9||o9===e.channel});return oK.forEach(function(e){oV.push(e.id)}),/*@__PURE__*/t(tn)("div",{id:"start",oncreate:function(){o7=/*@__PURE__*/t(tn).route.param("index")||0,e4("","",""),oq.notKaiOS&&e4("","",""),oq.notKaiOS&&e9("","",""),oq.notKaiOS&&oq.player&&e9("","","")}},/*@__PURE__*/t(tn)("span",{class:"channel",oncreate:function(){}},o9),e.map(function(r,n){var i,o=oH.includes(r.id)?"read":"";return /*@__PURE__*/t(tn)("article",{class:"item ".concat(o),"data-id":r.id,"data-type":r.type,oncreate:function(t){0==o7&&0==n?setTimeout(function(){t.dom.focus()},1200):r.id==o7&&setTimeout(function(){t.dom.focus(),ap()},1200),n==e.length-1&&setTimeout(function(){document.querySelectorAll(".item").forEach(function(e,t){e.setAttribute("tabindex",t)})},1e3)},onclick:function(){/*@__PURE__*/t(tn).route.set("/article?index="+r.id),oG(r.id)},onkeydown:function(e){"Enter"===e.key&&(/*@__PURE__*/t(tn).route.set("/article?index="+r.id),oG(r.id))}},[/*@__PURE__*/t(tn)("span",{class:"type-indicator"},r.type),/*@__PURE__*/t(tn)("time",/*@__PURE__*/t(iz)(r.isoDate).format("DD MMM YYYY")),/*@__PURE__*/t(tn)("h2",{oncreate:function(e){var t=e.dom;!0===r.reblog&&t.classList.add("reblog")}},oX(r.feed_title)),/*@__PURE__*/t(tn)("h3",oX(r.title)),"mastodon"==r.type?/*@__PURE__*/t(tn)("h3",(i=r.content.substring(0,30),tl(i,{allowedTags:[],allowedAttributes:{}})+"...")):null])}))}},"/options":{view:function(){return /*@__PURE__*/t(tn)("div",{id:"optionsView",class:"flex",oncreate:function(){e9("","",""),oq.notKaiOS&&e9("","",""),e4("","",""),oq.notKaiOS&&e4("","","")}},[/*@__PURE__*/t(tn)("button",{tabindex:0,class:"item",oncreate:function(e){e.dom.focus(),ap()},onclick:function(){/*@__PURE__*/t(tn).route.set("/about")}},"About"),/*@__PURE__*/t(tn)("button",{tabindex:1,class:"item",onclick:function(){/*@__PURE__*/t(tn).route.set("/settingsView")}},"Settings"),/*@__PURE__*/t(tn)("button",{tabindex:2,class:"item",onclick:function(){/*@__PURE__*/t(tn).route.set("/privacy_policy")}},"Privacy Policy"),/*@__PURE__*/t(tn)("div",{id:"KaiOSads-Wrapper",class:"",oncreate:function(){!1==oq.notKaiOS&&eJ()}})])}},"/about":{view:function(){return /*@__PURE__*/t(tn)("div",{class:"page"},/*@__PURE__*/t(tn)("p","Feedolin is an RSS/Atom reader and podcast player, available for both KaiOS and non-KaiOS users."),/*@__PURE__*/t(tn)("p","It supports connecting a Mastodon account to display articles alongside your RSS/Atom feeds."),/*@__PURE__*/t(tn)("p","The app allows you to listen to audio and watch videos directly if the feed provides the necessary URLs."),/*@__PURE__*/t(tn)("p","The list of subscribed websites and podcasts is managed either locally or via an OPML file from an external source, such as a public link in the cloud."),/*@__PURE__*/t(tn)("p","For non-KaiOS users, local files must be uploaded to the app."),/*@__PURE__*/t(tn)("h4",{style:"margin-top:20px; margin-bottom:10px;"},"Navigation:"),/*@__PURE__*/t(tn)("ul",[/*@__PURE__*/t(tn)("li",/*@__PURE__*/t(tn).trust("Use the up and down arrow keys to navigate between articles.

")),/*@__PURE__*/t(tn)("li",/*@__PURE__*/t(tn).trust("Use the left and right arrow keys to switch between categories.

")),/*@__PURE__*/t(tn)("li",/*@__PURE__*/t(tn).trust("Press Enter to view the content of an article.

")),/*@__PURE__*/t(tn)("li",{oncreate:function(e){oq.notKaiOS||(e.dom.style.display="none")}},/*@__PURE__*/t(tn).trust("Use Alt to access various options.")),/*@__PURE__*/t(tn)("li",{oncreate:function(e){oq.notKaiOS&&(e.dom.style.display="none")}},/*@__PURE__*/t(tn).trust("Use # Volume")),/*@__PURE__*/t(tn)("li",{oncreate:function(e){oq.notKaiOS&&(e.dom.style.display="none")}},/*@__PURE__*/t(tn).trust("Use * Audioplayer

")),/*@__PURE__*/t(tn)("li","Version: "+oq.version)]))}},"/privacy_policy":{view:function(){return /*@__PURE__*/t(tn)("div",{id:"privacy_policy",class:"page"},[/*@__PURE__*/t(tn)("h1","Privacy Policy for Feedolin"),/*@__PURE__*/t(tn)("p","Feedolin is committed to protecting your privacy. This policy explains how data is handled within the app."),/*@__PURE__*/t(tn)("h2","Data Storage and Collection"),/*@__PURE__*/t(tn)("p",["All data related to your RSS/Atom feeds and Mastodon account is stored ",/*@__PURE__*/t(tn)("strong","locally")," in your device’s browser. Feedolin does ",/*@__PURE__*/t(tn)("strong","not")," collect or store any data on external servers. The following information is stored locally:"]),/*@__PURE__*/t(tn)("ul",[/*@__PURE__*/t(tn)("li","Your subscribed RSS/Atom feeds and podcasts."),/*@__PURE__*/t(tn)("li","OPML files you upload or manage."),/*@__PURE__*/t(tn)("li","Your Mastodon account information and related data.")]),/*@__PURE__*/t(tn)("p","No server-side data storage or collection is performed."),/*@__PURE__*/t(tn)("h2","KaiOS Users"),/*@__PURE__*/t(tn)("p",["If you are using Feedolin on a KaiOS device, the app uses ",/*@__PURE__*/t(tn)("strong","KaiOS Ads"),", which may collect data related to your usage. The data collected by KaiOS Ads is subject to the ",/*@__PURE__*/t(tn)("a",{href:"https://www.kaiostech.com/privacy-policy/",target:"_blank",rel:"noopener noreferrer"},"KaiOS privacy policy"),"."]),/*@__PURE__*/t(tn)("p",["For users on all other platforms, ",/*@__PURE__*/t(tn)("strong","no ads")," are used, and no external data collection occurs."]),/*@__PURE__*/t(tn)("h2","External Sources Responsibility"),/*@__PURE__*/t(tn)("p",["Feedolin enables you to add feeds and connect to external sources such as RSS/Atom feeds, podcasts, and Mastodon accounts. You are ",/*@__PURE__*/t(tn)("strong","solely responsible")," for the sources you choose to trust and subscribe to. Feedolin does not verify or control the content or data provided by these external sources."]),/*@__PURE__*/t(tn)("h2","Third-Party Services"),/*@__PURE__*/t(tn)("p","Feedolin integrates with third-party services such as Mastodon. These services have their own privacy policies, and you should review them to understand how your data is handled."),/*@__PURE__*/t(tn)("h2","Policy Updates"),/*@__PURE__*/t(tn)("p","This Privacy Policy may be updated periodically. Any changes will be communicated through updates to the app."),/*@__PURE__*/t(tn)("p","By using Feedolin, you acknowledge and agree to this Privacy Policy.")])}},"/localOPML":{view:function(){return /*@__PURE__*/t(tn)("div",{class:"flex",id:"index",oncreate:function(){oq.notKaiOS&&e9("","",""),e4("","","")}},oq.local_opml.map(function(e,r){var n=e.split("/");return n=n[n.length-1],/*@__PURE__*/t(tn)("button",{class:"item",tabindex:r,oncreate:function(e){0==r&&e.dom.focus()},onclick:function(){try{var r=navigator.b2g.getDeviceStorage("sdcard").get(e);r.onsuccess=function(){var e=new FileReader;e.onload=function(){o3(e.result).error?e8("OPML file not valid",4e3):(o$.opml_local=e.result,o$.opml_local_filename=n,/*@__PURE__*/t(tt).setItem("settings",o$).then(function(){e8("OPML file added",4e3),/*@__PURE__*/t(tn).route.set("/settingsView")}))},e.onerror=function(){e8("OPML file not valid",4e3)},e.readAsText(this.result)},r.onerror=function(e){}}catch(e){}}},n)}))}},"/AudioPlayerView":ah,"/VideoPlayerView":at,"/YouTubePlayerView":ar});var am=function(){document.body.scrollTo({left:0,top:0,behavior:"smooth"}),document.documentElement.scrollTo({left:0,top:0,behavior:"smooth"})};document.addEventListener("DOMContentLoaded",function(e){var r,n,i=function(e){if("SELECT"==document.activeElement.nodeName||"date"==document.activeElement.type||"time"==document.activeElement.type||"volume"==oq.window_status)return!1;if(document.activeElement.classList.contains("scroll")){var t=document.querySelector(".scroll");1==e?t.scrollBy({left:0,top:10}):t.scrollBy({left:0,top:-10})}var r=document.activeElement.tabIndex+e,n=0;if(n=document.getElementById("app").querySelectorAll(".item"),document.activeElement.parentNode.classList.contains("input-parent"))return document.activeElement.parentNode.focus(),!0;r<=n.length&&(0,n[r]).focus(),r>=n.length&&(0,n[0]).focus(),ap()};function o(e){c({key:e})}r=0,document.addEventListener("touchstart",function(e){r=e.touches[0].pageX,document.querySelector("body").style.opacity=1},!1),document.addEventListener("touchmove",function(e){var n=1-Math.min(Math.abs(e.touches[0].pageX-r)/300,1);/*@__PURE__*/t(tn).route.get().startsWith("/article")&&(document.querySelector("body").style.opacity=n)},!1),document.addEventListener("touchend",function(e){document.querySelector("body").style.opacity=1},!1),document.querySelector("div.button-left").addEventListener("click",function(e){o("SoftLeft")}),document.querySelector("div.button-right").addEventListener("click",function(e){o("SoftRight")}),document.querySelector("div.button-center").addEventListener("click",function(e){o("Enter")}),document.querySelector("#top-bar div div.button-left").addEventListener("click",function(e){o("Backspace")}),document.querySelector("#top-bar div div.button-right").addEventListener("click",function(e){o("*")});var a=!1;document.addEventListener("keydown",function(e){a||("Backspace"==e.key&&"INPUT"!=document.activeElement.tagName&&e.preventDefault(),"EndCall"===e.key&&(e.preventDefault(),window.close()),e.repeat||(u=!1,n=setTimeout(function(){u=!0,function(e){switch(e.key){case"Backspace":window.close();break;case"0":oK=[],oW()}}(e)},2e3)),e.repeat&&("Backspace"==e.key&&e.preventDefault(),"Backspace"==e.key&&(u=!1),e.key),a=!0,setTimeout(function(){a=!1},300))});var s=!1;document.addEventListener("keyup",function(e){s||(function(e){if("Backspace"==e.key&&e.preventDefault(),!1===oq.visibility)return 0;clearTimeout(n),u||c(e)}(e),s=!0,setTimeout(function(){s=!1},300))}),document.addEventListener("swiped",function(e){var r=/*@__PURE__*/t(tn).route.get(),n=e.detail.dir;if("down"==n&&(0===window.scrollY||0===document.documentElement.scrollTop)&&(e.detail.yEnd,e.detail.yStart),"right"==n&&r.startsWith("/start")){--o4<1&&(o4=oz.length-1),o9=oz[o4],/*@__PURE__*/t(tn).redraw();var i=/*@__PURE__*/t(tn).route.param();i.index=0,/*@__PURE__*/t(tn).route.set("/start",i)}if("left"==n&&r.startsWith("/start")){++o4>oz.length-1&&(o4=0),o9=oz[o4],/*@__PURE__*/t(tn).redraw();var o=/*@__PURE__*/t(tn).route.param();o.index=0,/*@__PURE__*/t(tn).route.set("/start",o)}});var u=!1;function c(e){var r=/*@__PURE__*/t(tn).route.get();switch(e.key){case"ArrowRight":if(r.startsWith("/start")){++o4>oz.length-1&&(o4=0),o9=oz[o4],/*@__PURE__*/t(tn).redraw();var n=/*@__PURE__*/t(tn).route.param();n.index=0,/*@__PURE__*/t(tn).route.set("/start",n),setTimeout(function(){document.querySelectorAll("article.item")[0].focus(),ap()},500)}break;case"ArrowLeft":if(r.startsWith("/start")){--o4<0&&(o4=oz.length-1),o9=oz[o4],/*@__PURE__*/t(tn).redraw();var o=/*@__PURE__*/t(tn).route.param();o.index=0,/*@__PURE__*/t(tn).route.set("/start",o),setTimeout(function(){document.querySelectorAll("article.item")[0].focus(),ap()},500)}break;case"ArrowUp":i(-1),"volume"==oq.window_status&&(navigator.volumeManager.requestVolumeUp(),oq.window_status="volume",setTimeout(function(){oq.window_status=""},2e3));break;case"ArrowDown":i(1),"volume"==oq.window_status&&(navigator.volumeManager.requestVolumeDown(),oq.window_status="volume",setTimeout(function(){oq.window_status=""},2e3));break;case"SoftRight":case"Alt":r.startsWith("/start")&&/*@__PURE__*/t(tn).route.set("/options"),r.startsWith("/article")&&("audio"==oU.type&&/*@__PURE__*/t(tn).route.set("/AudioPlayerView?url=".concat(encodeURIComponent(oU.enclosure["@_url"]),"&id=").concat(oU.id)),"video"==oU.type&&/*@__PURE__*/t(tn).route.set("/VideoPlayerView?url=".concat(encodeURIComponent(oU.enclosure["@_url"]))),"youtube"==oU.type&&/*@__PURE__*/t(tn).route.set("/YouTubePlayerView?videoId=".concat(encodeURIComponent(oU.youtubeid))));break;case"SoftLeft":case"Control":r.startsWith("/start")&&oW(),r.startsWith("/article")&&window.open(oU.url),r.startsWith("/AudioPlayerView")&&(oq.sleepTimer?oR():oM(6e4*o$.sleepTimer));break;case"Enter":document.activeElement.classList.contains("input-parent")&&document.activeElement.children[0].focus();break;case"*":/*@__PURE__*/t(tn).route.set("/AudioPlayerView");break;case"#":e0();break;case"Backspace":if(r.startsWith("/article")){var a=/*@__PURE__*/t(tn).route.param("index");/*@__PURE__*/t(tn).route.set("/start?index="+a)}if(r.startsWith("/YouTubePlayerView")){var s=/*@__PURE__*/t(tn).route.param("index");/*@__PURE__*/t(tn).route.set("/start?index="+s)}if(r.startsWith("/localOPML")&&history.back(),r.startsWith("/index")&&/*@__PURE__*/t(tn).route.set("/start?index=0"),r.startsWith("/about")&&/*@__PURE__*/t(tn).route.set("/options"),r.startsWith("/privacy_policy")&&/*@__PURE__*/t(tn).route.set("/options"),r.startsWith("/options")&&/*@__PURE__*/t(tn).route.set("/start?index=0"),r.startsWith("/settingsView")){if("INPUT"==document.activeElement.tagName)return!1;/*@__PURE__*/t(tn).route.set("/options")}r.startsWith("/Video")&&history.back(),r.startsWith("/Audio")&&history.back()}}document.addEventListener("visibilitychange",function(){"visible"===document.visibilityState&&o$.last_update?(oq.visibility=!0,new Date/1e3-o$.last_update/1e3>o$.cache_time&&(oK=[],e8("load new content",4e3),o8())):oq.visibility=!1})}),window.addEventListener("online",function(){oq.deviceOnline=!0}),window.addEventListener("offline",function(){oq.deviceOnline=!1}),window.addEventListener("beforeunload",function(e){var r=window.performance.getEntriesByType("navigation"),n=window.performance.navigation?window.performance.navigation.type:null;(r.length&&"reload"===r[0].type||1===n)&&(e.preventDefault(),oK=[],e8("load new content",4e3),o8(),/*@__PURE__*/t(tn).route.set("/intro"),e.returnValue="Are you sure you want to leave the page?")});var av={};av=eH("MMwCY").getBundleURL("5Waqz")+"sw.js";try{navigator.serviceWorker.register(av).then(function(e){console.log("Service Worker registered successfully."),e.waiting&&(console.log("A waiting Service Worker is already in place."),e.update()),"b2g"in navigator&&(e.systemMessageManager?e.systemMessageManager.subscribe("activity").then(function(){console.log("Subscribed to general activity.")},function(e){alert("Error subscribing to activity:",e)}):alert("systemMessageManager is not available."))}).catch(function(e){alert("Service Worker registration failed:",e)})}catch(e){console.error("Error during Service Worker setup:",e)}oD.addEventListener("message",function(e){var r=e.data.oauth_success;if(r){var n=new Headers;n.append("Content-Type","application/x-www-form-urlencoded");var i=new URLSearchParams;i.append("code",r),i.append("scope","read"),i.append("grant_type","authorization_code"),i.append("redirect_uri","https://feedolin.strukturart.com"),i.append("client_id","HqIUbDiOkeIoDPoOJNLQOgVyPi1ZOkPMW29UVkhl3i8"),i.append("client_secret","R_9DvQ5V84yZQg3BEdDHjz5uGQGUN4qrPx9YgmrJ81Q"),fetch(o$.mastodon_server_url+"/oauth/token",{method:"POST",headers:n,body:i,redirect:"follow"}).then(function(e){return e.json()}).then(function(e){o$.mastodon_token=e.access_token,/*@__PURE__*/t(tt).setItem("settings",o$),/*@__PURE__*/t(tn).route.set("/start?index=0"),e8("Successfully connected",1e4)}).catch(function(e){console.error("Error:",e),e8("Connection failed")})}})}(); \ No newline at end of file diff --git a/docs/index.63982eba.css b/docs/index.63982eba.css index fc1d51c..7092872 100644 --- a/docs/index.63982eba.css +++ b/docs/index.63982eba.css @@ -1 +1 @@ -:root{--color-one:black;--color-two:yellow;--color-three:silver;--color-four:#beb9b9;--color-five:rgba(214,225,228,.32);--color-seven:rgba(101,216,24,.286);--color-eight:rgba(47,82,196,.19)}@font-face{font-family:Roboto;src:url(Roboto-Regular.4f1a9903.ttf)}*,:before,:after{-moz-box-sizing:border-box;box-sizing:border-box;overflow-wrap:break-word;word-wrap:break-word;scroll-behavior:smooth;hyphens:auto;border:0;margin:0;padding:0;font-family:Roboto!important}::-webkit-scrollbar{display:none!important}:focus{outline:none}::-moz-focus-inner{border:0}.debug{outline:1px solid red}html,body{background:#fff radial-gradient(circle,#e2dddd 10%,transparent 11%) 0 0/5px 5px;width:100%;max-width:100vw;height:100%;max-height:100%;margin:0;padding:0;font-size:1.15rem;font-weight:400;line-height:1.4rem;position:relative;overflow:hidden;font-family:Roboto!important}#app{width:40vw;min-width:40vw;height:100%;position:relative;overflow:scroll}#wrapper{-moz-box-pack:center;justify-content:center;-moz-box-align:start;align-items:flex-start;min-height:90vh;max-height:90vh;padding:20px 0 0;display:flex;overflow:scroll}h1{font-size:1.2rem}h2{width:100%;font-size:1.1rem}h2.reblog:before{content:"";background-image:url(reblog.a18be2b5.svg);background-size:cover;width:1.1rem;height:1.1rem;margin-right:5px;padding:3px 0 0;display:inline-block}h3{font-size:1rem}li{list-style:none}time{font-size:.8rem}p{margin:0 0 20px}label{font-weight:700}article img{width:100%;height:auto;padding:10px;display:block}img[src=""],img[src=\ ]{display:none}button{color:#000;background:#fff;border:2px solid gray;-moz-border-radius:10px;border-radius:10px;min-width:93%;max-width:90%;min-height:40px;margin:0 0 15px 5px;padding:5px;font-size:1rem;font-weight:700;font-family:Roboto!important}button:focus,button:hover{background:orange;border:0 solid gray}a.button-style{color:#000;text-align:center;background:#fff;border:2px solid gray;-moz-border-radius:10px;border-radius:10px;width:95%;min-height:40px;margin:10px 0 15px;padding:5px;font-size:1rem;font-weight:700;display:block;font-family:Roboto!important}a.button-style:focus{background:orange;border:0 solid gray}a{text-decoration:none}select{font:inherit;text-align:center;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none;-moz-appearance:none;background-color:#fff;border:thin solid #383842;-moz-border-radius:4px;border-radius:4px;width:95%;margin:10px 5% 0;padding:10px;line-height:1.5em}textarea{border:1px solid silver;width:95%;height:30px;padding:3px}input{border:2px solid silver;-moz-border-radius:7px;border-radius:7px;width:95%;height:30px;margin:0 0 0 10px;padding:3px}label{text-align:center;min-width:100%;margin:0 0 10px;display:block}.input-parent{min-width:100%;margin:0 0 20px;padding:10px}.input-parent:focus{background:orange}article:focus{background:silver;padding:5px}div#intro{z-index:100000;background:#000;min-width:100vw;height:100%;position:fixed;top:0;left:0}div#intro img{width:120px;height:auto;margin-left:-60px;position:absolute;top:50px;left:50%}#intro #version-box{height:40px;position:absolute;bottom:50px}#intro #version-box kbd{letter-spacing:.05em;white-space:nowrap;color:#fff;border:2px solid pink;width:fit-content;height:20px;padding:3px 5px;font-size:.6em;font-weight:600;line-height:.85em;display:block;box-shadow:2px 2px pink}article{background-image:radial-gradient(circle,#e2dddd 10%,transparent 11%);background-size:5px 5px;min-width:100%}#start{min-width:100%;padding:20px 20px 60px;overflow:scroll}#start article{margin:30px 0 10px;position:relative}#start article.read{opacity:.6}#start article .type-indicator{border:2px solid #000;-moz-border-radius:8px;border-radius:8px;width:auto;padding:3px;font-size:.7rem;line-height:.4rem;position:absolute;right:5px}#start .channel{z-index:200;background:#fff;border:2px solid #000;-moz-border-radius:12px;border-radius:12px;width:fit-content;padding:8px;font-size:1rem;line-height:.7rem;display:block;position:fixed;top:10px;left:50%;transform:translate(-50%)}.channel:empty:before{content:"All feeds"}#article article:focus{background:#fff}#article time{margin:0 0 10px}h2.article-title{min-width:90vw;max-width:90vw;overflow-wrap:break-word!important}#article{padding:20px}#KaiOSAd{width:240px;height:200px}#KaiOSAds-Wrapper{padding:0}#KaiOSAds-Wrapper iframe{width:240px}.text{word-break:break-all;background-image:radial-gradient(circle,#e2dddd 10%,transparent 11%);background-size:5px 5px;padding:0 0 50px}#optionsView{margin:40px 0 0}#account_info{margin:0 0 20px;padding:20px}.page{margin:35px 0 0;padding:10px 10px 40px}#button-save-settings{margin:30px 0 0}#settings-page .seperation{width:100%;height:5px;margin:80px 0 0}div#toast{overflow:none;color:#fff;z-index:10;transform-origin:0 0;background:#000;min-width:100%;height:auto;padding:5px;transition:all .5s ease-in-out;position:fixed;top:0;transform:translateY(-100px)}div#side-toast{overflow:none;color:#fff;z-index:10;transform-origin:0 0;opacity:0;background:orange;-moz-border-top-right-radius:15px;border-top-right-radius:15px;-moz-border-bottom-right-radius:15px;border-bottom-right-radius:15px;max-width:100vw;height:auto;padding:8px;transition:all .5s ease-in-out;position:fixed;top:70vh}div#side-toast img{width:60px}div.nickname{font-weight:700}.audio-player{min-width:100vw;min-height:100vh;position:fixed;top:0;left:0}.audio-player .cover-container{z-index:-1;background-position:50%;background-repeat:no-repeat;background-size:cover;min-width:100vw;min-height:100vh;position:fixed;top:0;left:0}.audio-player .audio-info{color:#000;background:#fff;width:fit-content;padding:10px;transition:padding .3s;position:absolute;right:0}div#options{z-index:4;height:92vh;padding:10px 0 0;display:none;position:absolute;top:0;overflow:hidden}div#bottom-bar{z-index:2000;z-index:6;background:0 0;-moz-box-pack:center;justify-content:center;-moz-box-align:center;align-items:center;width:100vw;height:50px;display:flex;position:fixed;bottom:20px;left:0}div#bottom-bar div.inner{-moz-box-pack:justify;justify-content:space-between;padding:10px;display:flex;position:relative}div#bottom-bar div{color:#fff;background:0 0;padding:2px;font-size:.8rem}div#bottom-bar div.button-center img{cursor:pointer;width:40px}div#bottom-bar div.button-left{color:#fff;background:0 0;-moz-box-pack:start;justify-content:flex-start;width:32%;padding:2px;display:flex}div#bottom-bar div.button-left img,div#bottom-bar div.button-right img{width:40px}div#bottom-bar div.button-right{color:#fff;background:0 0;-moz-box-pack:end;justify-content:flex-end;width:32%;padding:2px;display:flex}div#bottom-bar div.button-center{color:#fff;background:0 0;-moz-box-pack:center;justify-content:center;-moz-box-align:center;align-items:center;width:32%;padding:2px;display:flex}div#top-bar{z-index:2000;z-index:6;-moz-box-pack:center;justify-content:center;-moz-box-align:center;align-items:center;min-width:100vw;height:30px;display:flex;position:fixed;top:0;left:0}div#top-bar div.inner{-moz-box-pack:justify;justify-content:space-between;padding:10px;display:flex;position:relative}div#top-bar div{color:#fff;background:0 0;padding:2px;font-size:.8rem}div#top-bar div.button-left img,div#top-bar div.button-right img,div#top-bar div.button-center img{width:40px}div#top-bar div.button-left{color:#fff;background:0 0;-moz-box-pack:start;justify-content:flex-start;width:32%;padding:2px;display:flex}div#top-bar div.button-right{color:#fff;background:0 0;-moz-box-pack:end;justify-content:flex-end;width:32%;padding:2px;display:flex}div#top-bar div.button-center{color:#fff;background:0 0;-moz-box-pack:center;justify-content:center;-moz-box-align:center;align-items:center;width:32%;padding:2px;display:flex}.loading-spinner{z-index:2147483647;width:60px;height:60px;margin-top:-40px;margin-left:-40px;display:none;position:fixed;top:50%;left:50%}.loading-spinner div{-moz-box-sizing:border-box;box-sizing:border-box;border:8px solid transparent;border-top-color:#ee1b1b;-moz-border-radius:50%;border-radius:50%;width:100%;height:100%;margin:8px;animation:1.2s cubic-bezier(.5,0,.5,1) infinite lds-ring;display:block;position:absolute}.loading-spinner div:first-child{animation-delay:-.45s}.loading-spinner div:nth-child(2){animation-delay:-.3s}.loading-spinner div:nth-child(3){animation-delay:-.15s}@keyframes lds-ring{0%{transform:rotate(0)}to{transform:rotate(360deg)}}video,#video-container,.video-player{max-width:100%}@media screen and (min-width:400px) and (max-width:900px){html,body{background:#fff radial-gradient(circle,#e2dddd 10%,transparent 11%) 0 0/5px 5px;width:100%;max-width:100vw;height:100%;max-height:100%;margin:0;padding:0;font-size:1.1rem;font-weight:400;line-height:1.5rem;position:relative;overflow:hidden;font-family:Roboto!important}#wrapper{-moz-box-pack:center;justify-content:center;-moz-box-align:start;align-items:flex-start;min-height:100vh;max-height:100vh;padding:20px 0 0;display:flex;overflow:scroll}h1{font-size:1.1rem}h2{width:100%;margin:0 0 10px;font-size:1.1rem}h3{font-size:1.1rem}time{font-size:.9rem}#app{width:100vw;min-width:100vw;height:100%;padding:0;position:relative}}@media screen and (min-width:0) and (max-width:400px){html,body{background:#fff radial-gradient(circle,#e2dddd 10%,transparent 11%) 0 0/5px 5px;width:100%;max-width:100vw;height:100%;max-height:100%;margin:0;padding:0;font-size:1rem;font-weight:400;line-height:1.4rem;position:relative;overflow:hidden;font-family:Roboto!important}h2,h3{font-size:.9rem}#wrapper{-moz-box-pack:center;justify-content:center;-moz-box-align:start;align-items:flex-start;min-height:100vh;max-height:100vh;padding:20px 0 0;display:flex;overflow:scroll}#app{width:100vw;min-width:100vw;height:100%;padding:0;position:relative}#article{background-image:radial-gradient(circle,#e2dddd 10%,transparent 11%);background-size:25px 25px;padding:0}#start article{min-width:100vw;margin:0 0 10px;padding:10px}#start{min-width:100%;padding:30px 0;overflow:hidden}div#top-bar div.button-left img,div#top-bar div.button-right img,div#top-bar div.button-center img,div#bottom-bar div.button-left img,div#bottom-bar div.button-right img,div#bottom-bar div.button-center img{width:25px}div#bottom-bar{z-index:2000;z-index:6;background:0 0;-moz-box-pack:center;justify-content:center;-moz-box-align:center;align-items:center;min-width:100vw;height:18px;display:flex;position:fixed;bottom:30px;left:0}div#bottom-bar div.inner{-moz-box-pack:justify;justify-content:space-between;padding:5px;display:flex;position:relative}div#intro img{width:80px;height:auto;margin-left:-40px;position:absolute;top:20px;left:50%}#start .channel{padding:6px;font-size:.9rem;line-height:.5rem}#settings-page .seperation{width:100%;height:5px;margin:20px 0 0}#settings-page{width:100vw;margin:10px 0 0}.input-parent{min-width:100vw}.page{margin:10px 0 0;padding:10px 10px 40px}.audio-player .audio-info{color:#000;background:#fff;width:fit-content;padding:10px}} \ No newline at end of file +:root{--color-one:black;--color-two:yellow;--color-three:silver;--color-four:#beb9b9;--color-five:rgba(214,225,228,.32);--color-seven:rgba(101,216,24,.286);--color-eight:rgba(47,82,196,.19)}@font-face{font-family:Roboto;src:url(Roboto-Regular.4f1a9903.ttf)}*,:before,:after{-moz-box-sizing:border-box;box-sizing:border-box;overflow-wrap:break-word;word-wrap:break-word;scroll-behavior:smooth;hyphens:auto;border:0;margin:0;padding:0;font-family:Roboto!important}::-webkit-scrollbar{display:none!important}:focus{outline:none}::-moz-focus-inner{border:0}.debug{outline:1px solid red}html,body{background:#fff radial-gradient(circle,#e2dddd 10%,transparent 11%) 0 0/5px 5px;width:100%;max-width:100vw;height:100%;max-height:100%;margin:0;padding:0;font-size:1.15rem;font-weight:400;line-height:1.4rem;position:relative;overflow:hidden;font-family:Roboto!important}#app{width:40vw;min-width:40vw;height:100%;position:relative;overflow:scroll}#wrapper{-moz-box-pack:center;justify-content:center;-moz-box-align:start;align-items:flex-start;min-height:90vh;max-height:90vh;padding:20px 0 0;display:flex;overflow:scroll}h1{font-size:1.2rem}h2{width:100%;font-size:1.1rem}h2.reblog:before{content:"";background-image:url(reblog.a18be2b5.svg);background-size:cover;width:1.1rem;height:1.1rem;margin-right:5px;padding:3px 0 0;display:inline-block}h3{font-size:1rem}li{list-style:none}time{font-size:.8rem}p{margin:0 0 20px}label{font-weight:700}article img{width:100%;height:auto;padding:10px;display:block}img[src=""],img[src=\ ]{display:none}button{color:#000;background:#fff;border:2px solid gray;-moz-border-radius:10px;border-radius:10px;min-width:93%;max-width:90%;min-height:40px;margin:0 0 15px 5px;padding:5px;font-size:1rem;font-weight:700;font-family:Roboto!important}button:focus,button:hover{background:orange;border:0 solid gray}a.button-style{color:#000;text-align:center;background:#fff;border:2px solid gray;-moz-border-radius:10px;border-radius:10px;width:95%;min-height:40px;margin:10px 0 15px;padding:5px;font-size:1rem;font-weight:700;display:block;font-family:Roboto!important}a.button-style:focus{background:orange;border:0 solid gray}a{text-decoration:none}select{font:inherit;text-align:center;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none;-moz-appearance:none;background-color:#fff;border:thin solid #383842;-moz-border-radius:4px;border-radius:4px;width:95%;margin:10px 5% 0;padding:10px;line-height:1.5em}textarea{border:1px solid silver;width:95%;height:30px;padding:3px}input{border:2px solid silver;-moz-border-radius:7px;border-radius:7px;width:95%;height:30px;margin:0 0 0 10px;padding:3px}label{text-align:center;min-width:100%;margin:0 0 10px;display:block}.input-parent{min-width:100%;margin:0 0 20px;padding:10px}.input-parent:focus{background:orange}article:focus{background:silver;padding:5px}div#intro{z-index:100000;background:#000;min-width:100vw;height:100%;position:fixed;top:0;left:0}div#intro img{width:120px;height:auto;margin-left:-60px;position:absolute;top:50px;left:50%}#intro #version-box{height:40px;position:absolute;bottom:50px}#intro #version-box kbd{letter-spacing:.05em;white-space:nowrap;color:#fff;border:2px solid pink;width:fit-content;height:20px;padding:3px 5px;font-size:.6em;font-weight:600;line-height:.85em;display:block;box-shadow:2px 2px pink}article{background-image:radial-gradient(circle,#e2dddd 10%,transparent 11%);background-size:5px 5px;min-width:100%}#start{min-width:100%;padding:20px 20px 60px;overflow:scroll}#start article{margin:30px 0 10px;position:relative}#start article.read{opacity:.6}#start article .type-indicator{border:2px solid #000;-moz-border-radius:8px;border-radius:8px;width:auto;padding:5px;font-size:.7rem;line-height:.4rem;position:absolute;right:5px}#start .channel{z-index:200;background:#fff;border:2px solid #000;-moz-border-radius:12px;border-radius:12px;width:fit-content;padding:8px;font-size:1rem;line-height:.7rem;display:block;position:fixed;top:10px;left:50%;transform:translate(-50%)}.channel:empty:before{content:"All feeds"}#article article:focus{background:#fff}#article time{margin:0 0 10px}h2.article-title{min-width:90vw;max-width:90vw;overflow-wrap:break-word!important}#article{padding:20px}#KaiOSAd{width:240px;height:200px}#KaiOSAds-Wrapper{padding:0}#KaiOSAds-Wrapper iframe{width:240px}.text{word-break:break-all;background-image:radial-gradient(circle,#e2dddd 10%,transparent 11%);background-size:5px 5px;padding:0 0 50px}#optionsView{margin:40px 0 0}#account_info{margin:0 0 20px;padding:20px}.page{margin:35px 0 0;padding:10px 10px 40px}#button-save-settings{margin:30px 0 0}#settings-page .seperation{width:100%;height:5px;margin:80px 0 0}div#toast{overflow:none;color:#fff;z-index:10;transform-origin:0 0;background:#000;min-width:100%;height:auto;padding:5px;transition:all .5s ease-in-out;position:fixed;top:0;transform:translateY(-100px)}div#side-toast{overflow:none;color:#fff;z-index:10;transform-origin:0 0;opacity:0;background:orange;-moz-border-top-right-radius:15px;border-top-right-radius:15px;-moz-border-bottom-right-radius:15px;border-bottom-right-radius:15px;max-width:100vw;height:auto;padding:8px;transition:all .5s ease-in-out;position:fixed;top:70vh}div#side-toast img{width:60px}div.nickname{font-weight:700}.audio-player{min-width:100vw;min-height:100vh;position:fixed;top:0;left:0}.audio-player .cover-container{z-index:-1;background-position:50%;background-repeat:no-repeat;background-size:cover;min-width:100vw;min-height:100vh;position:fixed;top:0;left:0}.audio-player .audio-info{color:#000;background:#fff;width:fit-content;padding:10px;transition:padding .3s;position:absolute;right:0}div#options{z-index:4;height:92vh;padding:10px 0 0;display:none;position:absolute;top:0;overflow:hidden}div#bottom-bar{z-index:2000;z-index:6;background:0 0;-moz-box-pack:center;justify-content:center;-moz-box-align:center;align-items:center;width:100vw;height:50px;display:flex;position:fixed;bottom:20px;left:0}div#bottom-bar div.inner{-moz-box-pack:justify;justify-content:space-between;padding:10px;display:flex;position:relative}div#bottom-bar div{color:#fff;background:0 0;padding:2px;font-size:.8rem}div#bottom-bar div.button-center img{cursor:pointer;width:40px}div#bottom-bar div.button-left{color:#fff;background:0 0;-moz-box-pack:start;justify-content:flex-start;width:32%;padding:2px;display:flex}div#bottom-bar div.button-left img,div#bottom-bar div.button-right img{width:40px}div#bottom-bar div.button-right{color:#fff;background:0 0;-moz-box-pack:end;justify-content:flex-end;width:32%;padding:2px;display:flex}div#bottom-bar div.button-center{color:#fff;background:0 0;-moz-box-pack:center;justify-content:center;-moz-box-align:center;align-items:center;width:32%;padding:2px;display:flex}div#top-bar{z-index:2000;z-index:6;-moz-box-pack:center;justify-content:center;-moz-box-align:center;align-items:center;min-width:100vw;height:30px;display:flex;position:fixed;top:0;left:0}div#top-bar div.inner{-moz-box-pack:justify;justify-content:space-between;padding:10px;display:flex;position:relative}div#top-bar div{color:#fff;background:0 0;padding:2px;font-size:.8rem}div#top-bar div.button-left img,div#top-bar div.button-right img,div#top-bar div.button-center img{width:40px}div#top-bar div.button-left{color:#fff;background:0 0;-moz-box-pack:start;justify-content:flex-start;width:32%;padding:2px;display:flex}div#top-bar div.button-right{color:#fff;background:0 0;-moz-box-pack:end;justify-content:flex-end;width:32%;padding:2px;display:flex}div#top-bar div.button-center{color:#fff;background:0 0;-moz-box-pack:center;justify-content:center;-moz-box-align:center;align-items:center;width:32%;padding:2px;display:flex}.loading-spinner{z-index:2147483647;width:60px;height:60px;margin-top:-40px;margin-left:-40px;display:none;position:fixed;top:50%;left:50%}.loading-spinner div{-moz-box-sizing:border-box;box-sizing:border-box;border:8px solid transparent;border-top-color:#ee1b1b;-moz-border-radius:50%;border-radius:50%;width:100%;height:100%;margin:8px;animation:1.2s cubic-bezier(.5,0,.5,1) infinite lds-ring;display:block;position:absolute}.loading-spinner div:first-child{animation-delay:-.45s}.loading-spinner div:nth-child(2){animation-delay:-.3s}.loading-spinner div:nth-child(3){animation-delay:-.15s}@keyframes lds-ring{0%{transform:rotate(0)}to{transform:rotate(360deg)}}video,#video-container,.video-player{max-width:100%}@media screen and (min-width:400px) and (max-width:900px){html,body{background:#fff radial-gradient(circle,#e2dddd 10%,transparent 11%) 0 0/5px 5px;width:100%;max-width:100vw;height:100%;max-height:100%;margin:0;padding:0;font-size:1.1rem;font-weight:400;line-height:1.5rem;position:relative;overflow:hidden;font-family:Roboto!important}#wrapper{-moz-box-pack:center;justify-content:center;-moz-box-align:start;align-items:flex-start;min-height:100vh;max-height:100vh;padding:20px 0 0;display:flex;overflow:scroll}h1{font-size:1.1rem}h2{width:100%;margin:0 0 10px;font-size:1.1rem}h3{font-size:1.1rem}time{font-size:.9rem}#app{width:100vw;min-width:100vw;height:100%;padding:0;position:relative}}@media screen and (min-width:0) and (max-width:400px){html,body{background:#fff radial-gradient(circle,#e2dddd 10%,transparent 11%) 0 0/5px 5px;width:100%;max-width:100vw;height:100%;max-height:100%;margin:0;padding:0;font-size:1rem;font-weight:400;line-height:1.4rem;position:relative;overflow:hidden;font-family:Roboto!important}h2,h3{font-size:.9rem}#wrapper{-moz-box-pack:center;justify-content:center;-moz-box-align:start;align-items:flex-start;min-height:100vh;max-height:100vh;padding:20px 0 0;display:flex;overflow:scroll}#app{width:100vw;min-width:100vw;height:100%;padding:0;position:relative}#article{background-image:radial-gradient(circle,#e2dddd 10%,transparent 11%);background-size:25px 25px;padding:0}#start article{min-width:100vw;margin:0 0 10px;padding:10px}#start{min-width:100%;padding:30px 0;overflow:hidden}div#top-bar div.button-left img,div#top-bar div.button-right img,div#top-bar div.button-center img,div#bottom-bar div.button-left img,div#bottom-bar div.button-right img,div#bottom-bar div.button-center img{width:25px}div#bottom-bar{z-index:2000;z-index:6;background:0 0;-moz-box-pack:center;justify-content:center;-moz-box-align:center;align-items:center;min-width:100vw;height:18px;display:flex;position:fixed;bottom:30px;left:0}div#bottom-bar div.inner{-moz-box-pack:justify;justify-content:space-between;padding:5px;display:flex;position:relative}div#intro img{width:80px;height:auto;margin-left:-40px;position:absolute;top:20px;left:50%}#start .channel{padding:6px;font-size:.9rem;line-height:.5rem}#settings-page .seperation{width:100%;height:5px;margin:20px 0 0}#settings-page{width:100vw;margin:10px 0 0}.input-parent{min-width:100vw}.page{margin:10px 0 0;padding:10px 10px 40px}.audio-player .audio-info{color:#000;background:#fff;width:fit-content;padding:10px}} \ No newline at end of file diff --git a/docs/index.f0337e49.js b/docs/index.f0337e49.js index aeb49a4..31a1211 100644 --- a/docs/index.f0337e49.js +++ b/docs/index.f0337e49.js @@ -1,4 +1,4 @@ -function e(e,t,r,n){Object.defineProperty(e,t,{get:r,set:n,enumerable:!0,configurable:!0})}function t(e){return e&&e.__esModule?e.default:e}var r,n,i,o,a,s,u,c,l,f,d,h,p,m,v,g,y,b,w,x,E,S,k,A,I,T,N,O,_,C,P,L,D,B,R,M,q,U,j,F,V,$,H,z,W,G,Y,K,J,Z,Q,X,ee,et,er,en,ei,eo,ea,es,eu,ec,el,ef,ed,eh,ep,em,ev,eg,ey,eb,ew,ex,eE,eS,ek,eA,eI,eT,eN,eO,e_,eC,eP,eL,eD,eB,eR,eM,eq,eU,ej,eF,eV="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:"undefined"!=typeof global?global:{},e$={},eH={},ez=eV.parcelRequire5393;null==ez&&((ez=function(e){if(e in e$)return e$[e].exports;if(e in eH){var t=eH[e];delete eH[e];var r={id:e,exports:{}};return e$[e]=r,t.call(r.exports,r,r.exports),r.exports}var n=Error("Cannot find module '"+e+"'");throw n.code="MODULE_NOT_FOUND",n}).register=function(e,t){eH[e]=t},eV.parcelRequire5393=ez);var eW=ez.register;function eG(e,t,r,n,i,o,a){try{var s=e[o](a),u=s.value}catch(e){r(e);return}s.done?t(u):Promise.resolve(u).then(n,i)}function eY(e){return function(){var t=this,r=arguments;return new Promise(function(n,i){var o=e.apply(t,r);function a(e){eG(o,n,i,a,s,"next",e)}function s(e){eG(o,n,i,a,s,"throw",e)}a(void 0)})}}function eK(e){function t(e){if(Object(e)!==e)return Promise.reject(TypeError(e+" is not an object."));var t=e.done;return Promise.resolve(e.value).then(function(e){return{value:e,done:t}})}return(eK=function(e){this.s=e,this.n=e.next}).prototype={s:null,n:null,next:function(){return t(this.n.apply(this.s,arguments))},return:function(e){var r=this.s.return;return void 0===r?Promise.resolve({value:e,done:!0}):t(r.apply(this.s,arguments))},throw:function(e){var r=this.s.return;return void 0===r?Promise.reject(e):t(r.apply(this.s,arguments))}},new eK(e)}eW("dH95r",function(e,t){function r(e,t,r,n,i,o){return{tag:e,key:t,attrs:r,children:n,text:i,dom:o,domSize:void 0,state:void 0,events:void 0,instance:void 0}}r.normalize=function(e){return Array.isArray(e)?r("[",void 0,void 0,r.normalizeChildren(e),void 0,void 0):null==e||"boolean"==typeof e?null:"object"==typeof e?e:r("#",void 0,void 0,String(e),void 0,void 0)},r.normalizeChildren=function(e){var t=[];if(e.length){for(var n=null!=e[0]&&null!=e[0].key,i=1;i'+t.children+"",a=a.firstChild):a.innerHTML=t.children,t.dom=a.firstChild,t.domSize=a.childNodes.length;for(var u=s(e).createDocumentFragment();i=a.firstChild;)u.appendChild(i);x(e,u,n)}function v(e,t,r,n,i,o){if(t!==r&&(null!=t||null!=r)){if(null==t||0===t.length)d(e,r,0,r.length,n,i,o);else if(null==r||0===r.length)S(e,t,0,t.length);else{var a=null!=t[0]&&null!=t[0].key,s=null!=r[0]&&null!=r[0].key,u=0,c=0;if(!a)for(;c=c&&A>=u&&(m=t[E],v=r[A],m.key===v.key);)m!==v&&g(e,m,v,n,i,o),null!=v.dom&&(i=v.dom),E--,A--;for(;E>=c&&A>=u&&(f=t[c],p=r[u],f.key===p.key);)c++,u++,f!==p&&g(e,f,p,n,b(t,c,i),o);for(;E>=c&&A>=u&&u!==A&&f.key===v.key&&m.key===p.key;)w(e,m,x=b(t,c,i)),m!==p&&g(e,m,p,n,x,o),++u<=--A&&w(e,f,i),f!==v&&g(e,f,v,n,i,o),null!=v.dom&&(i=v.dom),c++,m=t[--E],v=r[A],f=t[c],p=r[u];for(;E>=c&&A>=u&&m.key===v.key;)m!==v&&g(e,m,v,n,i,o),null!=v.dom&&(i=v.dom),E--,A--,m=t[E],v=r[A];if(u>A)S(e,t,c,E+1);else if(c>E)d(e,r,u,A+1,n,i,o);else{var l,I,T=i,N=A-u+1,O=Array(N),_=0,C=0,P=0x7fffffff,L=0;for(C=0;C=u;C--){null==l&&(l=function(e,t,r){for(var n=Object.create(null);t>>1)+(n>>>1)+(r&n&1);e[t[s]]0&&(y[i]=t[r-1]),t[r]=i)}for(r=t.length,n=t[r-1];r-- >0;)t[r]=n,n=y[n];return y.length=0,t}(O)).length-1,C=A;C>=u;C--)p=r[C],-1===O[C-u]?h(e,p,n,o,i):I[_]===C-u?_--:w(e,p,i),null!=p.dom&&(i=r[C].dom);else for(C=A;C>=u;C--)p=r[C],-1===O[C-u]&&h(e,p,n,o,i),null!=p.dom&&(i=r[C].dom)}}else{var B=t.lengthB&&S(e,t,u,t.length),r.length>B&&d(e,r,u,r.length,n,i,o)}}}}function g(e,t,n,i,o,a){var s,c,d=t.tag;if(d===n.tag){if(n.state=t.state,n.events=t.events,function(e,t){do{if(null!=e.attrs&&"function"==typeof e.attrs.onbeforeupdate){var r=l.call(e.attrs.onbeforeupdate,e,t);if(void 0!==r&&!r)break}if("string"!=typeof e.tag&&"function"==typeof e.state.onbeforeupdate){var r=l.call(e.state.onbeforeupdate,e,t);if(void 0!==r&&!r)break}return!1}while(!1)return e.dom=t.dom,e.domSize=t.domSize,e.instance=t.instance,e.attrs=t.attrs,e.children=t.children,e.text=t.text,!0}(n,t))return;if("string"==typeof d)switch(null!=n.attrs&&M(n.attrs,n,i),d){case"#":t.children.toString()!==n.children.toString()&&(t.dom.nodeValue=n.children),n.dom=t.dom;break;case"<":t.children!==n.children?(A(e,t,void 0),m(e,n,a,o)):(n.dom=t.dom,n.domSize=t.domSize);break;case"[":(function(e,t,r,n,i,o){v(e,t.children,r.children,n,i,o);var a=0,s=r.children;if(r.dom=null,null!=s){for(var u=0;u-1||null!=e.attrs&&e.attrs.is||"href"!==t&&"list"!==t&&"form"!==t&&"width"!==t&&"height"!==t)&&t in e.dom}var _=/[A-Z]/g;function C(e){return"-"+e.toLowerCase()}function P(e){return"-"===e[0]&&"-"===e[1]?e:"cssFloat"===e?"float":e.replace(_,C)}function L(e,t,r){if(t===r);else if(null==r)e.style="";else if("object"!=typeof r)e.style=r;else if(null==t||"object"!=typeof t)for(var n in e.style.cssText="",r){var i=r[n];null!=i&&e.style.setProperty(P(n),String(i))}else{for(var n in r){var i=r[n];null!=i&&(i=String(i))!==String(t[n])&&e.style.setProperty(P(n),i)}for(var n in t)null!=t[n]&&null==r[n]&&e.style.removeProperty(P(n))}}function D(){this._=e}function B(t,r,n){null!=t.events?(t.events._=e,t.events[r]!==n&&(null!=n&&("function"==typeof n||"object"==typeof n)?(null==t.events[r]&&t.dom.addEventListener(r.slice(2),t.events,!1),t.events[r]=n):(null!=t.events[r]&&t.dom.removeEventListener(r.slice(2),t.events,!1),t.events[r]=void 0))):null!=n&&("function"==typeof n||"object"==typeof n)&&(t.events=new D,t.dom.addEventListener(r.slice(2),t.events,!1),t.events[r]=n)}function R(e,t,r){"function"==typeof e.oninit&&l.call(e.oninit,t),"function"==typeof e.oncreate&&r.push(l.bind(e.oncreate,t))}function M(e,t,r){"function"==typeof e.onupdate&&r.push(l.bind(e.onupdate,t))}return D.prototype=Object.create(null),D.prototype.handleEvent=function(e){var t,r=this["on"+e.type];"function"==typeof r?t=r.call(e.currentTarget,e):"function"==typeof r.handleEvent&&r.handleEvent(e),this._&&!1!==e.redraw&&(0,this._)(),!1===t&&(e.preventDefault(),e.stopPropagation())},function(i,o,a){if(!i)throw TypeError("DOM element being rendered to does not exist.");if(null!=n&&i.contains(n))throw TypeError("Node is currently being rendered to and thus is locked.");var s=e,u=n,c=[],l=f(i),d=i.namespaceURI;n=i,e="function"==typeof a?a:void 0,t={};try{null==i.vnodes&&(i.textContent=""),o=r.normalizeChildren(Array.isArray(o)?o:[o]),v(i,i.vnodes,o,c,null,"http://www.w3.org/1999/xhtml"===d?void 0:d),i.vnodes=o,null!=l&&f(i)!==l&&"function"==typeof l.focus&&l.focus();for(var h=0;h1&&void 0!==u[1]?u[1]:{},i=e.dom,o=e.domSize,a=t.generation,!(null!=i))return[3,5];r.label=1;case 1:if(s=i.nextSibling,n.get(i)!==a)return[3,3];return[4,i];case 2:r.sent(),o--,r.label=3;case 3:i=s,r.label=4;case 4:if(o)return[3,1];r.label=5;case 5:return[2]}})}}}),eW("h7Cmf",function(t,r){function n(e,t){var r,n,i,o={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]},a=Object.create(("function"==typeof Iterator?Iterator:Object).prototype);return a.next=s(0),a.throw=s(1),a.return=s(2),"function"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function s(s){return function(u){return function(s){if(r)throw TypeError("Generator is already executing.");for(;a&&(a=0,s[0]&&(o=0)),o;)try{if(r=1,n&&(i=2&s[0]?n.return:s[0]?n.throw||((i=n.return)&&i.call(n),0):n.next)&&!(i=i.call(n,s[1])).done)return i;switch(n=0,i&&(s=[2&s[0],i.value]),s[0]){case 0:case 1:i=s;break;case 4:return o.label++,{value:s[1],done:!1};case 5:o.label++,n=s[1],s=[0];continue;case 7:s=o.ops.pop(),o.trys.pop();continue;default:if(!(i=(i=o.trys).length>0&&i[i.length-1])&&(6===s[0]||2===s[0])){o=0;continue}if(3===s[0]&&(!i||s[1]>i[0]&&s[1]=e.length&&(e=void 0),{value:e&&e[n++],done:!e}}};throw TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")}e(t.exports,"__generator",function(){return n}),e(t.exports,"__values",function(){return i}),ez("bbrsO"),"function"==typeof SuppressedError&&SuppressedError}),eW("bbrsO",function(t,r){e(t.exports,"_",function(){return n});function n(e){return e&&"undefined"!=typeof Symbol&&e.constructor===Symbol?"symbol":typeof e}}),eW("hz6ru",function(e,t){var r=ez("dH95r");e.exports=function(e,t,n){var i=[],o=!1,a=-1;function s(){for(a=0;a=0&&(i.splice(o,2),o<=a&&(a-=2),e(t,[])),null!=n&&(i.push(t,n),e(t,r(n),u))},redraw:u}}}),eW("bF6RK",function(e,t){var r=ez("ayCHi"),n=ez("c6nqe");e.exports=function(e,t){function i(e){return new Promise(e)}function o(e,t){for(var r in e.headers)if(n.call(e.headers,r)&&r.toLowerCase()===t)return!0;return!1}return i.prototype=Promise.prototype,i.__proto__=Promise,{request:function(a,s){"string"!=typeof a?(s=a,a=a.url):null==s&&(s={});var u,c,l=(u=a,c=s,new Promise(function(t,i){u=r(u,c.params);var a,s=null!=c.method?c.method.toUpperCase():"GET",l=c.body,f=(null==c.serialize||c.serialize===JSON.serialize)&&!(l instanceof e.FormData||l instanceof e.URLSearchParams),d=c.responseType||("function"==typeof c.extract?"":"json"),h=new e.XMLHttpRequest,p=!1,m=!1,v=h,g=h.abort;for(var y in h.abort=function(){p=!0,g.call(this)},h.open(s,u,!1!==c.async,"string"==typeof c.user?c.user:void 0,"string"==typeof c.password?c.password:void 0),f&&null!=l&&!o(c,"content-type")&&h.setRequestHeader("Content-Type","application/json; charset=utf-8"),"function"==typeof c.deserialize||o(c,"accept")||h.setRequestHeader("Accept","application/json, text/*"),c.withCredentials&&(h.withCredentials=c.withCredentials),c.timeout&&(h.timeout=c.timeout),h.responseType=d,c.headers)n.call(c.headers,y)&&h.setRequestHeader(y,c.headers[y]);h.onreadystatechange=function(e){if(!p&&4===e.target.readyState)try{var r,n=e.target.status>=200&&e.target.status<300||304===e.target.status||/^file:\/\//i.test(u),o=e.target.response;if("json"===d){if(!e.target.responseType&&"function"!=typeof c.extract)try{o=JSON.parse(e.target.responseText)}catch(e){o=null}}else d&&"text"!==d||null!=o||(o=e.target.responseText);if("function"==typeof c.extract?(o=c.extract(e.target,c),n=!0):"function"==typeof c.deserialize&&(o=c.deserialize(o)),n){if("function"==typeof c.type){if(Array.isArray(o))for(var a=0;a=0&&(h+=e.slice(i,a)),l>=0&&(h+=(i<0?"?":"&")+c.slice(l,d));var p=r(u);return p&&(h+=(i<0&&l<0?"?":"&")+p),o>=0&&(h+=e.slice(o)),f>=0&&(h+=(o<0?"":"&")+c.slice(f)),h}}),eW("2KJLy",function(e,t){e.exports=function(e){if("[object Object]"!==Object.prototype.toString.call(e))return"";var t=[];for(var r in e)(function e(r,n){if(Array.isArray(n))for(var i=0;i0&&(i.className=n.join(" ")),a[e]={tag:r,attrs:i}}(e),t):(t.tag=e,t)}}),eW("lJWab",function(e,t){var r=ez("5VK6y");e.exports=function(e){var t=e.indexOf("?"),n=e.indexOf("#"),i=n<0?e.length:n,o=e.slice(0,t<0?i:t).replace(/\/{2,}/g,"/");return o?"/"!==o[0]&&(o="/"+o):o="/",{path:o,params:t<0?{}:r(e.slice(t+1,i))}}}),eW("5VK6y",function(e,t){function r(e){try{return decodeURIComponent(e)}catch(t){return e}}e.exports=function(e){if(""===e||null==e)return{};"?"===e.charAt(0)&&(e=e.slice(1));for(var t=e.split("&"),n={},i={},o=0;o-1&&c.pop();for(var f=0;ft.indexOf(o)&&(i[o]=e[o]);else for(var o in e)r.call(e,o)&&!n.test(o)&&(i[o]=e[o]);return i}}),eW("c6lT5",function(e,t){Object.defineProperty(e.exports,"__esModule",{value:!0}),e.exports.default=new Uint16Array('ᵁ<Õıʊҝջאٵ۞ޢߖࠏ੊ઑඡ๭༉༦჊ረዡᐕᒝᓃᓟᔥ\0\0\0\0\0\0ᕫᛍᦍᰒᷝ὾⁠↰⊍⏀⏻⑂⠤⤒ⴈ⹈⿎〖㊺㘹㞬㣾㨨㩱㫠㬮ࠀEMabcfglmnoprstu\\bfms„‹•˜¦³¹ÈÏlig耻Æ䃆P耻&䀦cute耻Á䃁reve;䄂Āiyx}rc耻Â䃂;䐐r;쀀\ud835\udd04rave耻À䃀pha;䎑acr;䄀d;橓Āgp¡on;䄄f;쀀\ud835\udd38plyFunction;恡ing耻Å䃅Ācs¾Ãr;쀀\ud835\udc9cign;扔ilde耻Ã䃃ml耻Ä䃄ЀaceforsuåûþėĜĢħĪĀcrêòkslash;或Ŷöø;櫧ed;挆y;䐑ƀcrtąċĔause;戵noullis;愬a;䎒r;쀀\ud835\udd05pf;쀀\ud835\udd39eve;䋘còēmpeq;扎܀HOacdefhilorsuōőŖƀƞƢƵƷƺǜȕɳɸɾcy;䐧PY耻©䂩ƀcpyŝŢźute;䄆Ā;iŧŨ拒talDifferentialD;慅leys;愭ȀaeioƉƎƔƘron;䄌dil耻Ç䃇rc;䄈nint;戰ot;䄊ĀdnƧƭilla;䂸terDot;䂷òſi;䎧rcleȀDMPTLJNjǑǖot;抙inus;抖lus;投imes;抗oĀcsǢǸkwiseContourIntegral;戲eCurlyĀDQȃȏoubleQuote;思uote;怙ȀlnpuȞȨɇɕonĀ;eȥȦ户;橴ƀgitȯȶȺruent;扡nt;戯ourIntegral;戮ĀfrɌɎ;愂oduct;成nterClockwiseContourIntegral;戳oss;樯cr;쀀\ud835\udc9epĀ;Cʄʅ拓ap;才րDJSZacefiosʠʬʰʴʸˋ˗ˡ˦̳ҍĀ;oŹʥtrahd;椑cy;䐂cy;䐅cy;䐏ƀgrsʿ˄ˇger;怡r;憡hv;櫤Āayː˕ron;䄎;䐔lĀ;t˝˞戇a;䎔r;쀀\ud835\udd07Āaf˫̧Ācm˰̢riticalȀADGT̖̜̀̆cute;䂴oŴ̋̍;䋙bleAcute;䋝rave;䁠ilde;䋜ond;拄ferentialD;慆Ѱ̽\0\0\0͔͂\0Ѕf;쀀\ud835\udd3bƀ;DE͈͉͍䂨ot;惜qual;扐blèCDLRUVͣͲ΂ϏϢϸontourIntegraìȹoɴ͹\0\0ͻ»͉nArrow;懓Āeo·ΤftƀARTΐΖΡrrow;懐ightArrow;懔eåˊngĀLRΫτeftĀARγιrrow;柸ightArrow;柺ightArrow;柹ightĀATϘϞrrow;懒ee;抨pɁϩ\0\0ϯrrow;懑ownArrow;懕erticalBar;戥ǹABLRTaВЪаўѿͼrrowƀ;BUНОТ憓ar;椓pArrow;懵reve;䌑eft˒к\0ц\0ѐightVector;楐eeVector;楞ectorĀ;Bљњ憽ar;楖ightǔѧ\0ѱeeVector;楟ectorĀ;BѺѻ懁ar;楗eeĀ;A҆҇护rrow;憧ĀctҒҗr;쀀\ud835\udc9frok;䄐ࠀNTacdfglmopqstuxҽӀӄӋӞӢӧӮӵԡԯԶՒ՝ՠեG;䅊H耻Ð䃐cute耻É䃉ƀaiyӒӗӜron;䄚rc耻Ê䃊;䐭ot;䄖r;쀀\ud835\udd08rave耻È䃈ement;戈ĀapӺӾcr;䄒tyɓԆ\0\0ԒmallSquare;旻erySmallSquare;斫ĀgpԦԪon;䄘f;쀀\ud835\udd3csilon;䎕uĀaiԼՉlĀ;TՂՃ橵ilde;扂librium;懌Āci՗՚r;愰m;橳a;䎗ml耻Ë䃋Āipժկsts;戃onentialE;慇ʀcfiosօֈ֍ֲ׌y;䐤r;쀀\ud835\udd09lledɓ֗\0\0֣mallSquare;旼erySmallSquare;斪Ͱֺ\0ֿ\0\0ׄf;쀀\ud835\udd3dAll;戀riertrf;愱cò׋؀JTabcdfgorstר׬ׯ׺؀ؒؖ؛؝أ٬ٲcy;䐃耻>䀾mmaĀ;d׷׸䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀\ud835\udd0a;拙pf;쀀\ud835\udd3eeater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀\ud835\udca2;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇܎ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀\ud835\udd40a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ޷޼߂ߐĀiyޱ޵rc;䄴;䐙r;쀀\ud835\udd0dpf;쀀\ud835\udd41ǣ߇\0ߌr;쀀\ud835\udca5rcy;䐈kcy;䐄΀HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶߻dil;䄶;䐚r;쀀\ud835\udd0epf;쀀\ud835\udd42cr;쀀\ud835\udca6րJTaceflmostࠥࠩࠬࡐࡣ঳সে্਷ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗ࡜ࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४Ānrࢃ࢏gleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀\ud835\udd0fĀ;eঽা拘ftarrow;懚idot;䄿ƀnpw৔ਖਛgȀLRlr৞৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀\ud835\udd43erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼੝੠੷੼અઋ઎p;椅y;䐜Ādl੥੯iumSpace;恟lintrf;愳r;쀀\ud835\udd10nusPlus;戓pf;쀀\ud835\udd44cò੶;䎜ҀJacefostuણધભીଔଙඑ඗ඞcy;䐊cute;䅃ƀaey઴હાron;䅇dil;䅅;䐝ƀgswે૰଎ativeƀMTV૓૟૨ediumSpace;怋hiĀcn૦૘ë૙eryThiî૙tedĀGL૸ଆreaterGreateòٳessLesóੈLine;䀊r;쀀\ud835\udd11ȀBnptଢନଷ଺reak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪୼஡௫ఄ౞಄ದ೘ൡඅ櫬Āou୛୤ngruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊ஛ement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater΀;EFGLSTஶஷ஽௉௓௘௥扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲௽ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ೒拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨೹setĀ;E೰ೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀\ud835\udca9ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂ෉෕ෛ෠෧෼ขภยา฿ไlig;䅒cute耻Ó䃓Āiy෎ීrc耻Ô䃔;䐞blac;䅐r;쀀\ud835\udd12rave耻Ò䃒ƀaei෮ෲ෶cr;䅌ga;䎩cron;䎟pf;쀀\ud835\udd46enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀\ud835\udcaaash耻Ø䃘iŬื฼de耻Õ䃕es;樷ml耻Ö䃖erĀBP๋๠Āar๐๓r;怾acĀek๚๜;揞et;掴arenthesis;揜Ҁacfhilors๿ງຊຏຒດຝະ໼rtialD;戂y;䐟r;쀀\ud835\udd13i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ໠໤檻cedesȀ;EST່້໏໚扺qual;檯lantEqual;扼ilde;找me;怳Ādp໩໮uct;戏ortionĀ;aȥ໹l;戝Āci༁༆r;쀀\ud835\udcab;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀\ud835\udd14pf;愚cr;쀀\ud835\udcac؀BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁࿫࿳ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL࿜࿝࿡憒ar;懥eftArrow;懄eiling;按oǵ࿹\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀\ud835\udd16ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»࿝pArrow;憑gma;䎣allCircle;战pf;쀀\ud835\udd4aɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀\ud835\udcaear;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄ቉ቕ቞ቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHc቎ቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀\ud835\udd17Āeiቻ኉Dzኀ\0ኇefore;戴a;䎘Ācn኎ኘkSpace;쀀  Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀\ud835\udd4bipleDot;惛Āctዖዛr;쀀\ud835\udcafrok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0᏿ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0጖y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀\ud835\udd18rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻፿on;䅲f;쀀\ud835\udd4cЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀\ud835\udcb0ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀\ud835\udd19pf;쀀\ud835\udd4dcr;쀀\ud835\udcb1dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀\ud835\udd1apf;쀀\ud835\udd4ecr;쀀\ud835\udcb2Ȁfiosᓋᓐᓒᓘr;쀀\ud835\udd1b;䎞pf;쀀\ud835\udd4fcr;쀀\ud835\udcb3ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀\ud835\udd1cpf;쀀\ud835\udd50cr;쀀\ud835\udcb4ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtè૙a;䎖r;愨pf;愤cr;쀀\ud835\udcb5௡ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀\ud835\udd1erave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚΀;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀\ud835\udd52΀;Eaeiop዁ᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;e዁ᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀\ud835\udcb6;䀪mpĀ;e዁ᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰ᜼ᝃᝈ᝸᝽០៦ᠹᡐᜍ᤽᥈ᥰot;櫭Ācrᛶ᜞kȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e᜚᜛戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;t፜᜷brk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓ᝛ᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯ᝱ᝳ;䎲;愶een;扬r;쀀\ud835\udd1fg΀costuvwឍឝឳេ៕៛៞ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀako៭ᠦᠵĀcn៲ᠣkƀlst៺֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘᠝斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀\ud835\udd53Ā;tᏋᡣom»Ꮜtie;拈؀DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬ᣿ᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教΀;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ᣷᣹᣻᣽;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ᤟;敛;敘;攘;攔΀;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģ᥂bar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀\ud835\udcb7mi;恏mĀ;e᜚᜜lƀ;bhᥨᥩᥫ䁜;槅sub;柈Ŭᥴ᥾lĀ;e᥹᥺怢t»᥺pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭍᭒\0᯽\0ᰌƀcpr᦭ᦲ᧝ute;䄇̀;abcdsᦿᧀᧄ᧊᧕᧙戩nd;橄rcup;橉Āau᧏᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀\ud835\udd20ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r΀;Ecefms᩟᩠ᩢᩫ᪤᪪᪮旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖᪚᪟»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇᫔᫺\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ᫙\0\0᫢aĀ;t᫞᫟䀬;䁀ƀ;fl᫨᫩᫫戁îᅠeĀmx᫱᫶ent»᫩eóɍǧ᫾\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀\ud835\udd54oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀\ud835\udcb8Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯΀delprvw᭠᭬᭷ᮂᮬᯔ᯹arrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;p᭿ᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰸᰻᰿ᱝᱩᱵᲊᲞᲬᲷ᳻᳿ᴍᵻᶑᶫᶻ᷆᷍rò΁ar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀\ud835\udd21arĀlrᲳᲵ»ࣜ»သʀaegsv᳂͸᳖᳜᳠mƀ;oș᳊᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀\ud835\udd55ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀\ud835\udcb9;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄ὎὚ĀDoḆᴴoôᲉĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀\ud835\udd22ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀\ud835\udd56ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»Ṻƀaeiἒ἖Ἒls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀\ud835\udd23lig;耀filig;쀀fjƀaltῙ῜ῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀\ud835\udd57ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao‌⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧‪‬\0‮耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀\ud835\udcbbࢀEabcdefgijlnorstv₂₉₟₥₰₴⃰⃵⃺⃿℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕ₝ute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽⃉ƀ;qsؾٌ⃄lanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀\ud835\udd24Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀\ud835\udd58Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqr׮ⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0↎proø₞r;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀\ud835\udd25sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀\ud835\udd59bar;怕ƀclt≯≴≸r;쀀\ud835\udcbdasè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀\ud835\udd26rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀\ud835\udd5aa;䎹uest耻¿䂿Āci⎊⎏r;쀀\ud835\udcbenʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀\ud835\udd27ath;䈷pf;쀀\ud835\udd5bǣ⏬\0⏱r;쀀\ud835\udcbfrcy;䑘kcy;䑔Ѐacfghjos␋␖␢␧␭␱␵␻ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀\ud835\udd28reen;䄸cy;䑅cy;䑜pf;쀀\ud835\udd5ccr;쀀\ud835\udcc0஀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼rò৆òΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonó྘quigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀\ud835\udd29Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀\ud835\udd5dus;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d྘➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀\ud835\udcc1mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ᠛旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀\ud835\udd2ao;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀\ud835\udd5eĀct⣸⣽r;쀀\ud835\udcc2pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐௏쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop඄⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roø඄urĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓΀;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨í஘istĀ;s஠டr;쀀\ud835\udd2bȀEest௅⩦⩹⩼ƀ;qs஼⩭௡ƀ;qs஼௅⩴lanô௢ií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚΀AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs఻⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs఻⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀\ud835\udd5f膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast୻⭕⭚⭟lleì୻l;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖ΀chimpqu⮽⯍⯙⬄୸⯤⯯Ȁ;cerല⯆ഷ⯉uå൅;쀀\ud835\udcc3ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭å೸åഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñ೗Ā;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰⳴ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥ⵲ⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;c᪞ⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācr⵩⵭ir;榿;쀀\ud835\udd2cͯ⵹\0\0⵼\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕ⶘ⶥⶨrò᪀Āir⶝ⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀\ud835\udd60ƀaelⷔ⷗ǒr;榷rp;榹΀;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ⹞\0⹽\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ⹧⹲຅脀¶;l⹭⹮䂶leìЃɩ⹸\0\0⹻m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀\ud835\udd2dƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳⻴ᤈ⻹⻽⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀\ud835\udd61nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp໬⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t໻⾴ï໻rel;抰Āci⿀⿅r;쀀\ud835\udcc5;䏈ncsp;怈̀fiopsu⿚⋢⿟⿥⿫⿱r;쀀\ud835\udd2epf;쀀\ud835\udd62rime;恗cr;쀀\ud835\udcc6ƀaeo⿸〉〓tĀei⿾々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔઀ABHabcdefhilmnoprstux぀けさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤΀cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstw࿜ガクシスゼゾダッデナp;極Ā;f࿠ゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes㄂㄄;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ì࿲âヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀\ud835\udd2fĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘㇤㇮rrowĀ;t࿜ㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowó࿪arpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓rò࿪aòՑ;怏oustĀ;a㈞㈟掱che»㈟mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀\ud835\udd63us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀\ud835\udcc7Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦΀Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼਴t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀\ud835\udd30Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì⹯耻­䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;q኱ኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀\ud835\udd64aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀\ud835\udcc8tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫ਩war;椪lig耻ß䃟௡㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rë๟ƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀\ud835\udd31Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproø዁im»ኬsðኞĀas㚺㚮ð዁rn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀\ud835\udd65rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈ΀adempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀\ud835\udcc9;䑆cy;䑛rok;䅧Āio㞋㞎xô᝷headĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀\ud835\udd32rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀\ud835\udd66̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀\ud835\udccaƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜΀eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀\ud835\udd33tré㦮suĀbp㧯㧱»ജ»൙pf;쀀\ud835\udd67roð໻tré㦴Ācu㨆㨋r;쀀\ud835\udccbĀbp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚΀cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀\ud835\udd34pf;쀀\ud835\udd68Ā;eᑹ㩦atèᑹcr;쀀\ud835\udcccૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜ៟tré៑r;쀀\ud835\udd35ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀\ud835\udd69imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀\ud835\udccdĀpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀\ud835\udd36cy;䑗pf;쀀\ud835\udd6acr;쀀\ud835\udcceĀcm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀\ud835\udd37cy;䐶grarr;懝pf;쀀\ud835\udd6bcr;쀀\ud835\udccfĀjn㮅㮇;怍j;怌'.split("").map(function(e){return e.charCodeAt(0)}))}),eW("fdYAD",function(e,t){Object.defineProperty(e.exports,"__esModule",{value:!0}),e.exports.default=new Uint16Array("Ȁaglq \x15\x18\x1bɭ\x0f\0\0\x12p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map(function(e){return e.charCodeAt(0)}))}),eW("7DjOf",function(e,t){Object.defineProperty(e.exports,"__esModule",{value:!0}),e.exports.replaceCodePoint=e.exports.fromCodePoint=void 0;var r,n=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]);function i(e){var t;return e>=55296&&e<=57343||e>1114111?65533:null!==(t=n.get(e))&&void 0!==t?t:e}e.exports.fromCodePoint=null!==(r=String.fromCodePoint)&&void 0!==r?r:function(e){var t="";return e>65535&&(e-=65536,t+=String.fromCharCode(e>>>10&1023|55296),e=56320|1023&e),t+=String.fromCharCode(e)},e.exports.replaceCodePoint=i,e.exports.default=function(t){return(0,e.exports.fromCodePoint)(i(t))}});var eJ=(ez("h7Cmf"),ez("h7Cmf")),eZ=function(){document.querySelectorAll('.item:not([style*="display: none"])').forEach(function(e,t){"none"!==getComputedStyle(e).display?e.setAttribute("tabindex",t):e.removeAttribute("tabindex")})},eQ=function(){getKaiAd({publisher:"4408b6fa-4e1d-438f-af4d-f3be2fa97208",app:"flop",slot:"flop",test:0,timeout:1e4,h:120,w:240,container:document.getElementById("KaiOSads-Wrapper"),onerror:function(e){return console.error("Error:",e)},onready:function(e){e.on("click",function(){return console.log("click event")}),e.on("close",function(){return console.log("close event")}),e.on("display",function(){eZ()}),e.call("display",{navClass:"item",tabindex:3,display:"block"})}})};window.NodeList&&!NodeList.prototype.forEach&&(NodeList.prototype.forEach=Array.prototype.forEach);var eX=function(e,t){try{var r=navigator.getDeviceStorage("sdcard").enumerate();r.onsuccess=function(){if(this.result||console.log("finished"),null!==r.result.name){var n=r.result,i=n.name.split(".");i[i.length-1]==e&&t(n.name),this.continue()}},r.onerror=function(){console.warn("No file found: "+this.error)}}catch(e){console.log(e)}if("b2g"in navigator)try{var n=navigator.b2g.getDeviceStorage("sdcard").enumerate();function i(){return(i=eY(function(){var r,i,o,a,s,u,c,l;return(0,eJ.__generator)(this,function(f){switch(f.label){case 0:r=!1,i=!1,f.label=1;case 1:f.trys.push([1,6,7,12]),a=function(e){var t,r,n,i=2;for("undefined"!=typeof Symbol&&(r=Symbol.asyncIterator,n=Symbol.iterator);i--;){if(r&&null!=(t=e[r]))return t.call(e);if(n&&null!=(t=e[n]))return new eK(t.call(e));r="@@asyncIterator",n="@@iterator"}throw TypeError("Object is not async iterable")}(n),f.label=2;case 2:return[4,a.next()];case 3:if(!(r=!(s=f.sent()).done))return[3,5];(c=(u=s.value).name.split("."))[c.length-1]==e&&t(u.name),f.label=4;case 4:return r=!1,[3,2];case 5:return[3,12];case 6:return l=f.sent(),i=!0,o=l,[3,12];case 7:if(f.trys.push([7,,10,11]),!(r&&null!=a.return))return[3,9];return[4,a.return()];case 8:f.sent(),f.label=9;case 9:return[3,11];case 10:if(i)throw o;return[7];case 11:return[7];case 12:return[2]}})})).apply(this,arguments)}!function(){i.apply(this,arguments)}()}catch(e){console.log(e)}};"b2g"in navigator&&setTimeout(function e(){var t=new lib_session.Session,r={};navigator.volumeManager=null,r.onsessionconnected=function(){lib_audiovolume.AudioVolumeManager.get(t).then(function(e){navigator.volumeManager=e}).catch(function(e){navigator.volumeManager=null})},r.onsessiondisconnected=function(){e()},t.open("websocket","localhost","secrettoken",r,!0)},5e3);var e0=function(){if("b2g"in navigator)try{navigator.volumeManager.requestVolumeShow(),oq.window_status="volume",setTimeout(function(){oq.window_status=""},2e3)}catch(e){}},e1=function(e,t){window.Notification.requestPermission().then(function(r){var n=new window.Notification(e,{body:t});"denied"===Notification.permission?console.error("Notification permission is denied"):"default"===Notification.permission&&Notification.requestPermission().then(function(e){}),n.onerror=function(e){console.log(e)},n.onclick=function(e){if(window.navigator.mozApps){var t=window.navigator.mozApps.getSelf();t.onsuccess=function(){t.result&&(n.close(),t.result.launch())}}else window.open(document.location.origin,"_blank")},n.onshow=function(){}})};navigator.mozSetMessageHandler&&navigator.mozSetMessageHandler("alarm",function(e){e1("Greg",e.data.note)});var e3=function(e){if(navigator.mozApps){var t=navigator.mozApps.getSelf();t.onsuccess=function(){e(t.result)},t.onerror=function(){}}else fetch("/manifest.webmanifest").then(function(e){return e.json()}).then(function(t){return e(t)})},e2=[],e5=[],e8=function(e,t){e5.push({text:e,time:t}),1===e5.length&&e6(e,t)},e6=function(e,t){var r=document.querySelector("div#side-toast");r.style.opacity="100",r.innerHTML=e5[0].text,r.style.transform="translate(0vh, 0vw)",setTimeout(function(){r.style.transform="translate(-100vw,0px)",(e5=e2.slice(1)).length>0&&setTimeout(function(){e6(e,t)},1e3)},t)},e4=function(e,t,r){document.querySelector("div#bottom-bar div.button-left").innerHTML=e,document.querySelector("div#bottom-bar div.button-center").innerHTML=t,document.querySelector("div#bottom-bar div.button-right").innerHTML=r,""==e&&""==t&&""==r?document.querySelector("div#bottom-bar").style.display="none":document.querySelector("div#bottom-bar").style.display="block"},e9=function(e,t,r){document.querySelector("div#top-bar div.button-left").innerHTML=e,document.querySelector("div#top-bar div.button-center").innerHTML=t,document.querySelector("div#top-bar div.button-right").innerHTML=r,""==e&&""==t&&""==r?document.querySelector("div#top-bar").style.display="none":document.querySelector("div#top-bar").style.display="block"},e7=function(e){try{var t=new MozActivity({name:"pick",data:{type:["application/xml"]}});t.onsuccess=function(t){console.log("success"+this.result),e(this.result)},t.onerror=function(){console.log("The activity encounter en error: "+this.error)}}catch(e){console.log(e)}if("b2g"in navigator&&new WebActivity("pick").start().then(function(t){e(t)},function(e){console.log(e)}),oq.notKaiOS){var r=document.createElement("input");r.type="file",r.accept=".opml,application/xml",r.style.display="none",document.body.appendChild(r),r.click(),r.addEventListener("change",function(t){var r=t.target.files[0];r&&e({blob:r,filename:r.name,filetype:r.type})})}},eJ=ez("h7Cmf"),te=(M=eY(function(e,t){var r;return(0,eJ.__generator)(this,function(n){switch(n.label){case 0:return[4,fetch(e+"/api/v1/accounts/verify_credentials",{headers:{Authorization:"Bearer ".concat(t),"Content-Type":"application/json"}})];case 1:return(r=n.sent()).ok||console.log("Network response was not OK"),[4,r.json()];case 2:return[2,n.sent()]}})}),function(e,t){return M.apply(this,arguments)}),tt={},tr=ez("bbrsO");tt=(function e(t,r,n){function i(a,s){if(!r[a]){if(!t[a]){var u=void 0;if(!s&&u)return u(a,!0);if(o)return o(a,!0);var c=Error("Cannot find module '"+a+"'");throw c.code="MODULE_NOT_FOUND",c}var l=r[a]={exports:{}};t[a][0].call(l.exports,function(e){return i(t[a][1][e]||e)},l,l.exports,e,t,r,n)}return r[a].exports}for(var o=void 0,a=0;ae.db.version;if(n&&(e.version!==t&&console.warn('The database "'+e.name+"\" can't be downgraded from version "+e.db.version+" to version "+e.version+"."),e.version=e.db.version),i||r){if(r){var o=e.db.version+1;o>e.version&&(e.version=o)}return!0}return!1}function E(e){return o([function(e){for(var t=e.length,r=new ArrayBuffer(t),n=new Uint8Array(r),i=0;i0&&(!e.db||"InvalidStateError"===i.name||"NotFoundError"===i.name))return a.resolve().then(function(){if(!e.db||"NotFoundError"===i.name&&!e.db.objectStoreNames.contains(e.storeName)&&e.version<=e.db.version)return e.db&&(e.version=e.db.version+1),w(e,!0)}).then(function(){return(function(e){g(e);for(var t=h[e.name],r=t.forages,n=0;n=43)}}).catch(function(){return!1}).then(function(e){return d=e})).then(function(e){return e?t:new a(function(e,r){var n=new FileReader;n.onerror=r,n.onloadend=function(r){e({__local_forage_encoded_blob:!0,data:btoa(r.target.result||""),type:t.type})},n.readAsBinaryString(t)})}):t}).then(function(t){A(n._dbInfo,v,function(o,a){if(o)return i(o);try{var s=a.objectStore(n._dbInfo.storeName);null===t&&(t=void 0);var u=s.put(t,e);a.oncomplete=function(){void 0===t&&(t=null),r(t)},a.onabort=a.onerror=function(){var e=u.error?u.error:u.transaction.error;i(e)}}catch(e){i(e)}})}).catch(i)});return s(i,r),i},removeItem:function(e,t){var r=this;e=c(e);var n=new a(function(t,n){r.ready().then(function(){A(r._dbInfo,v,function(i,o){if(i)return n(i);try{var a=o.objectStore(r._dbInfo.storeName).delete(e);o.oncomplete=function(){t()},o.onerror=function(){n(a.error)},o.onabort=function(){var e=a.error?a.error:a.transaction.error;n(e)}}catch(e){n(e)}})}).catch(n)});return s(n,t),n},clear:function(e){var t=this,r=new a(function(e,r){t.ready().then(function(){A(t._dbInfo,v,function(n,i){if(n)return r(n);try{var o=i.objectStore(t._dbInfo.storeName).clear();i.oncomplete=function(){e()},i.onabort=i.onerror=function(){var e=o.error?o.error:o.transaction.error;r(e)}}catch(e){r(e)}})}).catch(r)});return s(r,e),r},length:function(e){var t=this,r=new a(function(e,r){t.ready().then(function(){A(t._dbInfo,m,function(n,i){if(n)return r(n);try{var o=i.objectStore(t._dbInfo.storeName).count();o.onsuccess=function(){e(o.result)},o.onerror=function(){r(o.error)}}catch(e){r(e)}})}).catch(r)});return s(r,e),r},key:function(e,t){var r=this,n=new a(function(t,n){if(e<0){t(null);return}r.ready().then(function(){A(r._dbInfo,m,function(i,o){if(i)return n(i);try{var a=o.objectStore(r._dbInfo.storeName),s=!1,u=a.openKeyCursor();u.onsuccess=function(){var r=u.result;if(!r){t(null);return}0===e?t(r.key):s?t(r.key):(s=!0,r.advance(e))},u.onerror=function(){n(u.error)}}catch(e){n(e)}})}).catch(n)});return s(n,t),n},keys:function(e){var t=this,r=new a(function(e,r){t.ready().then(function(){A(t._dbInfo,m,function(n,i){if(n)return r(n);try{var o=i.objectStore(t._dbInfo.storeName).openKeyCursor(),a=[];o.onsuccess=function(){var t=o.result;if(!t){e(a);return}a.push(t.key),t.continue()},o.onerror=function(){r(o.error)}}catch(e){r(e)}})}).catch(r)});return s(r,e),r},dropInstance:function(e,t){t=l.apply(this,arguments);var r,n=this.config();if((e="function"!=typeof e&&e||{}).name||(e.name=e.name||n.name,e.storeName=e.storeName||n.storeName),e.name){var o=e.name===n.name&&this._dbInfo.db?a.resolve(this._dbInfo.db):w(e,!1).then(function(t){var r=h[e.name],n=r.forages;r.db=t;for(var i=0;i>4,l[u++]=(15&n)<<4|i>>2,l[u++]=(3&i)<<6|63&o;return c}function W(e){var t,r=new Uint8Array(e),n="";for(t=0;t>2],n+=N[(3&r[t])<<4|r[t+1]>>4],n+=N[(15&r[t+1])<<2|r[t+2]>>6],n+=N[63&r[t+2]];return r.length%3==2?n=n.substring(0,n.length-1)+"=":r.length%3==1&&(n=n.substring(0,n.length-2)+"=="),n}var G={serialize:function(e,t){var r="";if(e&&(r=H.call(e)),e&&("[object ArrayBuffer]"===r||e.buffer&&"[object ArrayBuffer]"===H.call(e.buffer))){var n,i=_;e instanceof ArrayBuffer?(n=e,i+=P):(n=e.buffer,"[object Int8Array]"===r?i+=D:"[object Uint8Array]"===r?i+=B:"[object Uint8ClampedArray]"===r?i+=R:"[object Int16Array]"===r?i+=M:"[object Uint16Array]"===r?i+=U:"[object Int32Array]"===r?i+=q:"[object Uint32Array]"===r?i+=j:"[object Float32Array]"===r?i+=F:"[object Float64Array]"===r?i+=V:t(Error("Failed to get type for BinaryArray"))),t(i+W(n))}else if("[object Blob]"===r){var o=new FileReader;o.onload=function(){t(_+L+("~~local_forage_type~"+e.type)+"~"+W(this.result))},o.readAsArrayBuffer(e)}else try{t(JSON.stringify(e))}catch(r){console.error("Couldn't convert value into a JSON string: ",e),t(null,r)}},deserialize:function(e){if(e.substring(0,C)!==_)return JSON.parse(e);var t,r=e.substring($),n=e.substring(C,$);if(n===L&&O.test(r)){var i=r.match(O);t=i[1],r=r.substring(i[0].length)}var a=z(r);switch(n){case P:return a;case L:return o([a],{type:t});case D:return new Int8Array(a);case B:return new Uint8Array(a);case R:return new Uint8ClampedArray(a);case M:return new Int16Array(a);case U:return new Uint16Array(a);case q:return new Int32Array(a);case j:return new Uint32Array(a);case F:return new Float32Array(a);case V:return new Float64Array(a);default:throw Error("Unkown type: "+n)}},stringToBuffer:z,bufferToString:W};function Y(e,t,r,n){e.executeSql("CREATE TABLE IF NOT EXISTS "+t.storeName+" (id INTEGER PRIMARY KEY, key unique, value)",[],r,n)}function K(e,t,r,n,i,o){e.executeSql(r,n,i,function(e,a){a.code===a.SYNTAX_ERR?e.executeSql("SELECT name FROM sqlite_master WHERE type='table' AND name = ?",[t.storeName],function(e,s){s.rows.length?o(e,a):Y(e,t,function(){e.executeSql(r,n,i,o)},o)},o):o(e,a)},o)}function J(e,t,r,n){var i=this;e=c(e);var o=new a(function(o,a){i.ready().then(function(){void 0===t&&(t=null);var s=t,u=i._dbInfo;u.serializer.serialize(t,function(t,c){c?a(c):u.db.transaction(function(r){K(r,u,"INSERT OR REPLACE INTO "+u.storeName+" (key, value) VALUES (?, ?)",[e,t],function(){o(s)},function(e,t){a(t)})},function(t){if(t.code===t.QUOTA_ERR){if(n>0){o(J.apply(i,[e,s,r,n-1]));return}a(t)}})})}).catch(a)});return s(o,r),o}var Z={_driver:"webSQLStorage",_initStorage:function(e){var t=this,r={db:null};if(e)for(var n in e)r[n]="string"!=typeof e[n]?e[n].toString():e[n];var i=new a(function(e,n){try{r.db=openDatabase(r.name,String(r.version),r.description,r.size)}catch(e){return n(e)}r.db.transaction(function(i){Y(i,r,function(){t._dbInfo=r,e()},function(e,t){n(t)})},n)});return r.serializer=G,i},_support:"function"==typeof openDatabase,iterate:function(e,t){var r=this,n=new a(function(t,n){r.ready().then(function(){var i=r._dbInfo;i.db.transaction(function(r){K(r,i,"SELECT * FROM "+i.storeName,[],function(r,n){for(var o=n.rows,a=o.length,s=0;s '__WebKitDatabaseInfoTable__'",[],function(t,n){for(var i=[],o=0;o0)?(this._dbInfo=t,t.serializer=G,a.resolve()):a.reject()},_support:function(){try{return"undefined"!=typeof localStorage&&"setItem"in localStorage&&!!localStorage.setItem}catch(e){return!1}}(),iterate:function(e,t){var r=this,n=r.ready().then(function(){for(var t=r._dbInfo,n=t.keyPrefix,i=n.length,o=localStorage.length,a=1,s=0;s=0;r--){var n=localStorage.key(r);0===n.indexOf(e)&&localStorage.removeItem(n)}});return s(r,e),r},length:function(e){var t=this.keys().then(function(e){return e.length});return s(t,e),t},key:function(e,t){var r=this,n=r.ready().then(function(){var t,n=r._dbInfo;try{t=localStorage.key(e)}catch(e){t=null}return t&&(t=t.substring(n.keyPrefix.length)),t});return s(n,t),n},keys:function(e){var t=this,r=t.ready().then(function(){for(var e=t._dbInfo,r=localStorage.length,n=[],i=0;i=0;t--){var r=localStorage.key(t);0===r.indexOf(e)&&localStorage.removeItem(r)}}):a.reject("Invalid arguments"),t),r}},ee=function(e,t){for(var r,n=e.length,i=0;i=ea.ZERO&&e<=ea.NINE}tp.decodeCodePoint=tx.default,Object.defineProperty(tp,"replaceCodePoint",{enumerable:!0,get:function(){return ez("7DjOf").replaceCodePoint}}),Object.defineProperty(tp,"fromCodePoint",{enumerable:!0,get:function(){return ez("7DjOf").fromCodePoint}}),(q=ea||(ea={}))[q.NUM=35]="NUM",q[q.SEMI=59]="SEMI",q[q.EQUALS=61]="EQUALS",q[q.ZERO=48]="ZERO",q[q.NINE=57]="NINE",q[q.LOWER_A=97]="LOWER_A",q[q.LOWER_F=102]="LOWER_F",q[q.LOWER_X=120]="LOWER_X",q[q.LOWER_Z=122]="LOWER_Z",q[q.UPPER_A=65]="UPPER_A",q[q.UPPER_F=70]="UPPER_F",q[q.UPPER_Z=90]="UPPER_Z",(U=es=tp.BinTrieFlags||(tp.BinTrieFlags={}))[U.VALUE_LENGTH=49152]="VALUE_LENGTH",U[U.BRANCH_LENGTH=16256]="BRANCH_LENGTH",U[U.JUMP_TABLE=127]="JUMP_TABLE",(j=eu||(eu={}))[j.EntityStart=0]="EntityStart",j[j.NumericStart=1]="NumericStart",j[j.NumericDecimal=2]="NumericDecimal",j[j.NumericHex=3]="NumericHex",j[j.NamedEntity=4]="NamedEntity",(F=ec=tp.DecodingMode||(tp.DecodingMode={}))[F.Legacy=0]="Legacy",F[F.Strict=1]="Strict",F[F.Attribute=2]="Attribute";var tS=function(){function e(e,t,r){this.decodeTree=e,this.emitCodePoint=t,this.errors=r,this.state=eu.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=ec.Strict}return e.prototype.startEntity=function(e){this.decodeMode=e,this.state=eu.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1},e.prototype.write=function(e,t){switch(this.state){case eu.EntityStart:if(e.charCodeAt(t)===ea.NUM)return this.state=eu.NumericStart,this.consumed+=1,this.stateNumericStart(e,t+1);return this.state=eu.NamedEntity,this.stateNamedEntity(e,t);case eu.NumericStart:return this.stateNumericStart(e,t);case eu.NumericDecimal:return this.stateNumericDecimal(e,t);case eu.NumericHex:return this.stateNumericHex(e,t);case eu.NamedEntity:return this.stateNamedEntity(e,t)}},e.prototype.stateNumericStart=function(e,t){return t>=e.length?-1:(32|e.charCodeAt(t))===ea.LOWER_X?(this.state=eu.NumericHex,this.consumed+=1,this.stateNumericHex(e,t+1)):(this.state=eu.NumericDecimal,this.stateNumericDecimal(e,t))},e.prototype.addToNumericResult=function(e,t,r,n){if(t!==r){var i=r-t;this.result=this.result*Math.pow(n,i)+parseInt(e.substr(t,i),n),this.consumed+=i}},e.prototype.stateNumericHex=function(e,t){for(var r=t;t=ea.UPPER_A)||!(n<=ea.UPPER_F))&&(!(n>=ea.LOWER_A)||!(n<=ea.LOWER_F)))return this.addToNumericResult(e,r,t,16),this.emitNumericEntity(i,3);t+=1}return this.addToNumericResult(e,r,t,16),-1},e.prototype.stateNumericDecimal=function(e,t){for(var r=t;t>14;t=ea.UPPER_A&&t<=ea.UPPER_Z||t>=ea.LOWER_A&&t<=ea.LOWER_Z||tE(t)}(o))?0:this.emitNotTerminatedNamedEntity();if(0!=(i=((n=r[this.treeIndex])&es.VALUE_LENGTH)>>14)){if(o===ea.SEMI)return this.emitNamedEntityData(this.treeIndex,i,this.consumed+this.excess);this.decodeMode!==ec.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return -1},e.prototype.emitNotTerminatedNamedEntity=function(){var e,t=this.result,r=(this.decodeTree[t]&es.VALUE_LENGTH)>>14;return this.emitNamedEntityData(t,r,this.consumed),null===(e=this.errors)||void 0===e||e.missingSemicolonAfterCharacterReference(),this.consumed},e.prototype.emitNamedEntityData=function(e,t,r){var n=this.decodeTree;return this.emitCodePoint(1===t?n[e]&~es.VALUE_LENGTH:n[e+1],r),3===t&&this.emitCodePoint(n[e+2],r),r},e.prototype.end=function(){var e;switch(this.state){case eu.NamedEntity:return 0!==this.result&&(this.decodeMode!==ec.Attribute||this.result===this.treeIndex)?this.emitNotTerminatedNamedEntity():0;case eu.NumericDecimal:return this.emitNumericEntity(0,2);case eu.NumericHex:return this.emitNumericEntity(0,3);case eu.NumericStart:return null===(e=this.errors)||void 0===e||e.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case eu.EntityStart:return 0}},e}();function tk(e){var t="",r=new tS(e,function(e){return t+=(0,tx.fromCodePoint)(e)});return function(e,n){for(var i=0,o=0;(o=e.indexOf("&",o))>=0;){t+=e.slice(i,o),r.startEntity(n);var a=r.write(e,o+1);if(a<0){i=o+r.end();break}i=o+a,o=0===a?i+1:i}var s=t+e.slice(i);return t="",s}}function tA(e,t,r,n){var i=(t&es.BRANCH_LENGTH)>>7,o=t&es.JUMP_TABLE;if(0===i)return 0!==o&&n===o?r:-1;if(o){var a=n-o;return a<0||a>=i?-1:e[r+a]-1}for(var s=r,u=s+i-1;s<=u;){var c=s+u>>>1,l=e[c];if(ln))return e[c+i];u=c-1}}return -1}tp.EntityDecoder=tS,tp.determineBranch=tA;var tI=tk(tb.default),tT=tk(tw.default);function tN(e){return e===el.Space||e===el.NewLine||e===el.Tab||e===el.FormFeed||e===el.CarriageReturn}function tO(e){return e===el.Slash||e===el.Gt||tN(e)}function t_(e){return e>=el.Zero&&e<=el.Nine}tp.decodeHTML=function(e,t){return void 0===t&&(t=ec.Legacy),tI(e,t)},tp.decodeHTMLAttribute=function(e){return tI(e,ec.Attribute)},tp.decodeHTMLStrict=function(e){return tI(e,ec.Strict)},tp.decodeXML=function(e){return tT(e,ec.Strict)},(V=el||(el={}))[V.Tab=9]="Tab",V[V.NewLine=10]="NewLine",V[V.FormFeed=12]="FormFeed",V[V.CarriageReturn=13]="CarriageReturn",V[V.Space=32]="Space",V[V.ExclamationMark=33]="ExclamationMark",V[V.Number=35]="Number",V[V.Amp=38]="Amp",V[V.SingleQuote=39]="SingleQuote",V[V.DoubleQuote=34]="DoubleQuote",V[V.Dash=45]="Dash",V[V.Slash=47]="Slash",V[V.Zero=48]="Zero",V[V.Nine=57]="Nine",V[V.Semi=59]="Semi",V[V.Lt=60]="Lt",V[V.Eq=61]="Eq",V[V.Gt=62]="Gt",V[V.Questionmark=63]="Questionmark",V[V.UpperA=65]="UpperA",V[V.LowerA=97]="LowerA",V[V.UpperF=70]="UpperF",V[V.LowerF=102]="LowerF",V[V.UpperZ=90]="UpperZ",V[V.LowerZ=122]="LowerZ",V[V.LowerX=120]="LowerX",V[V.OpeningSquareBracket=91]="OpeningSquareBracket",($=ef||(ef={}))[$.Text=1]="Text",$[$.BeforeTagName=2]="BeforeTagName",$[$.InTagName=3]="InTagName",$[$.InSelfClosingTag=4]="InSelfClosingTag",$[$.BeforeClosingTagName=5]="BeforeClosingTagName",$[$.InClosingTagName=6]="InClosingTagName",$[$.AfterClosingTagName=7]="AfterClosingTagName",$[$.BeforeAttributeName=8]="BeforeAttributeName",$[$.InAttributeName=9]="InAttributeName",$[$.AfterAttributeName=10]="AfterAttributeName",$[$.BeforeAttributeValue=11]="BeforeAttributeValue",$[$.InAttributeValueDq=12]="InAttributeValueDq",$[$.InAttributeValueSq=13]="InAttributeValueSq",$[$.InAttributeValueNq=14]="InAttributeValueNq",$[$.BeforeDeclaration=15]="BeforeDeclaration",$[$.InDeclaration=16]="InDeclaration",$[$.InProcessingInstruction=17]="InProcessingInstruction",$[$.BeforeComment=18]="BeforeComment",$[$.CDATASequence=19]="CDATASequence",$[$.InSpecialComment=20]="InSpecialComment",$[$.InCommentLike=21]="InCommentLike",$[$.BeforeSpecialS=22]="BeforeSpecialS",$[$.SpecialStartSequence=23]="SpecialStartSequence",$[$.InSpecialTag=24]="InSpecialTag",$[$.BeforeEntity=25]="BeforeEntity",$[$.BeforeNumericEntity=26]="BeforeNumericEntity",$[$.InNamedEntity=27]="InNamedEntity",$[$.InNumericEntity=28]="InNumericEntity",$[$.InHexEntity=29]="InHexEntity",(H=ed||(ed={}))[H.NoValue=0]="NoValue",H[H.Unquoted=1]="Unquoted",H[H.Single=2]="Single",H[H.Double=3]="Double";var tC={Cdata:new Uint8Array([67,68,65,84,65,91]),CdataEnd:new Uint8Array([93,93,62]),CommentEnd:new Uint8Array([45,45,62]),ScriptEnd:new Uint8Array([60,47,115,99,114,105,112,116]),StyleEnd:new Uint8Array([60,47,115,116,121,108,101]),TitleEnd:new Uint8Array([60,47,116,105,116,108,101])},tP=/*#__PURE__*/function(){function e(t,r){var n=t.xmlMode,i=void 0!==n&&n,o=t.decodeEntities;tf(this,e),this.cbs=r,this.state=ef.Text,this.buffer="",this.sectionStart=0,this.index=0,this.baseState=ef.Text,this.isSpecial=!1,this.running=!0,this.offset=0,this.currentSequence=void 0,this.sequenceIndex=0,this.trieIndex=0,this.trieCurrent=0,this.entityResult=0,this.entityExcess=0,this.xmlMode=i,this.decodeEntities=void 0===o||o,this.entityTrie=i?tp.xmlDecodeTree:tp.htmlDecodeTree}return th(e,[{key:"reset",value:function(){this.state=ef.Text,this.buffer="",this.sectionStart=0,this.index=0,this.baseState=ef.Text,this.currentSequence=void 0,this.running=!0,this.offset=0}},{key:"write",value:function(e){this.offset+=this.buffer.length,this.buffer=e,this.parse()}},{key:"end",value:function(){this.running&&this.finish()}},{key:"pause",value:function(){this.running=!1}},{key:"resume",value:function(){this.running=!0,this.indexthis.sectionStart&&this.cbs.ontext(this.sectionStart,this.index),this.state=ef.BeforeTagName,this.sectionStart=this.index):this.decodeEntities&&e===el.Amp&&(this.state=ef.BeforeEntity)}},{key:"stateSpecialStartSequence",value:function(e){var t=this.sequenceIndex===this.currentSequence.length;if(t?tO(e):(32|e)===this.currentSequence[this.sequenceIndex]){if(!t){this.sequenceIndex++;return}}else this.isSpecial=!1;this.sequenceIndex=0,this.state=ef.InTagName,this.stateInTagName(e)}},{key:"stateInSpecialTag",value:function(e){if(this.sequenceIndex===this.currentSequence.length){if(e===el.Gt||tN(e)){var t=this.index-this.currentSequence.length;if(this.sectionStart=el.LowerA&&e<=el.LowerZ||e>=el.UpperA&&e<=el.UpperZ}},{key:"startSpecial",value:function(e,t){this.isSpecial=!0,this.currentSequence=e,this.sequenceIndex=t,this.state=ef.SpecialStartSequence}},{key:"stateBeforeTagName",value:function(e){if(e===el.ExclamationMark)this.state=ef.BeforeDeclaration,this.sectionStart=this.index+1;else if(e===el.Questionmark)this.state=ef.InProcessingInstruction,this.sectionStart=this.index+1;else if(this.isTagStartChar(e)){var t=32|e;this.sectionStart=this.index,this.xmlMode||t!==tC.TitleEnd[2]?this.state=this.xmlMode||t!==tC.ScriptEnd[2]?ef.InTagName:ef.BeforeSpecialS:this.startSpecial(tC.TitleEnd,3)}else e===el.Slash?this.state=ef.BeforeClosingTagName:(this.state=ef.Text,this.stateText(e))}},{key:"stateInTagName",value:function(e){tO(e)&&(this.cbs.onopentagname(this.sectionStart,this.index),this.sectionStart=-1,this.state=ef.BeforeAttributeName,this.stateBeforeAttributeName(e))}},{key:"stateBeforeClosingTagName",value:function(e){tN(e)||(e===el.Gt?this.state=ef.Text:(this.state=this.isTagStartChar(e)?ef.InClosingTagName:ef.InSpecialComment,this.sectionStart=this.index))}},{key:"stateInClosingTagName",value:function(e){(e===el.Gt||tN(e))&&(this.cbs.onclosetag(this.sectionStart,this.index),this.sectionStart=-1,this.state=ef.AfterClosingTagName,this.stateAfterClosingTagName(e))}},{key:"stateAfterClosingTagName",value:function(e){(e===el.Gt||this.fastForwardTo(el.Gt))&&(this.state=ef.Text,this.baseState=ef.Text,this.sectionStart=this.index+1)}},{key:"stateBeforeAttributeName",value:function(e){e===el.Gt?(this.cbs.onopentagend(this.index),this.isSpecial?(this.state=ef.InSpecialTag,this.sequenceIndex=0):this.state=ef.Text,this.baseState=this.state,this.sectionStart=this.index+1):e===el.Slash?this.state=ef.InSelfClosingTag:tN(e)||(this.state=ef.InAttributeName,this.sectionStart=this.index)}},{key:"stateInSelfClosingTag",value:function(e){e===el.Gt?(this.cbs.onselfclosingtag(this.index),this.state=ef.Text,this.baseState=ef.Text,this.sectionStart=this.index+1,this.isSpecial=!1):tN(e)||(this.state=ef.BeforeAttributeName,this.stateBeforeAttributeName(e))}},{key:"stateInAttributeName",value:function(e){(e===el.Eq||tO(e))&&(this.cbs.onattribname(this.sectionStart,this.index),this.sectionStart=-1,this.state=ef.AfterAttributeName,this.stateAfterAttributeName(e))}},{key:"stateAfterAttributeName",value:function(e){e===el.Eq?this.state=ef.BeforeAttributeValue:e===el.Slash||e===el.Gt?(this.cbs.onattribend(ed.NoValue,this.index),this.state=ef.BeforeAttributeName,this.stateBeforeAttributeName(e)):tN(e)||(this.cbs.onattribend(ed.NoValue,this.index),this.state=ef.InAttributeName,this.sectionStart=this.index)}},{key:"stateBeforeAttributeValue",value:function(e){e===el.DoubleQuote?(this.state=ef.InAttributeValueDq,this.sectionStart=this.index+1):e===el.SingleQuote?(this.state=ef.InAttributeValueSq,this.sectionStart=this.index+1):tN(e)||(this.sectionStart=this.index,this.state=ef.InAttributeValueNq,this.stateInAttributeValueNoQuotes(e))}},{key:"handleInAttributeValue",value:function(e,t){e===t||!this.decodeEntities&&this.fastForwardTo(t)?(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(t===el.DoubleQuote?ed.Double:ed.Single,this.index),this.state=ef.BeforeAttributeName):this.decodeEntities&&e===el.Amp&&(this.baseState=this.state,this.state=ef.BeforeEntity)}},{key:"stateInAttributeValueDoubleQuotes",value:function(e){this.handleInAttributeValue(e,el.DoubleQuote)}},{key:"stateInAttributeValueSingleQuotes",value:function(e){this.handleInAttributeValue(e,el.SingleQuote)}},{key:"stateInAttributeValueNoQuotes",value:function(e){tN(e)||e===el.Gt?(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(ed.Unquoted,this.index),this.state=ef.BeforeAttributeName,this.stateBeforeAttributeName(e)):this.decodeEntities&&e===el.Amp&&(this.baseState=this.state,this.state=ef.BeforeEntity)}},{key:"stateBeforeDeclaration",value:function(e){e===el.OpeningSquareBracket?(this.state=ef.CDATASequence,this.sequenceIndex=0):this.state=e===el.Dash?ef.BeforeComment:ef.InDeclaration}},{key:"stateInDeclaration",value:function(e){(e===el.Gt||this.fastForwardTo(el.Gt))&&(this.cbs.ondeclaration(this.sectionStart,this.index),this.state=ef.Text,this.sectionStart=this.index+1)}},{key:"stateInProcessingInstruction",value:function(e){(e===el.Gt||this.fastForwardTo(el.Gt))&&(this.cbs.onprocessinginstruction(this.sectionStart,this.index),this.state=ef.Text,this.sectionStart=this.index+1)}},{key:"stateBeforeComment",value:function(e){e===el.Dash?(this.state=ef.InCommentLike,this.currentSequence=tC.CommentEnd,this.sequenceIndex=2,this.sectionStart=this.index+1):this.state=ef.InDeclaration}},{key:"stateInSpecialComment",value:function(e){(e===el.Gt||this.fastForwardTo(el.Gt))&&(this.cbs.oncomment(this.sectionStart,this.index,0),this.state=ef.Text,this.sectionStart=this.index+1)}},{key:"stateBeforeSpecialS",value:function(e){var t=32|e;t===tC.ScriptEnd[3]?this.startSpecial(tC.ScriptEnd,4):t===tC.StyleEnd[3]?this.startSpecial(tC.StyleEnd,4):(this.state=ef.InTagName,this.stateInTagName(e))}},{key:"stateBeforeEntity",value:function(e){this.entityExcess=1,this.entityResult=0,e===el.Number?this.state=ef.BeforeNumericEntity:e===el.Amp||(this.trieIndex=0,this.trieCurrent=this.entityTrie[0],this.state=ef.InNamedEntity,this.stateInNamedEntity(e))}},{key:"stateInNamedEntity",value:function(e){if(this.entityExcess+=1,this.trieIndex=(0,tp.determineBranch)(this.entityTrie,this.trieCurrent,this.trieIndex+1,e),this.trieIndex<0){this.emitNamedEntity(),this.index--;return}this.trieCurrent=this.entityTrie[this.trieIndex];var t=this.trieCurrent&tp.BinTrieFlags.VALUE_LENGTH;if(t){var r=(t>>14)-1;if(this.allowLegacyEntity()||e===el.Semi){var n=this.index-this.entityExcess+1;n>this.sectionStart&&this.emitPartial(this.sectionStart,n),this.entityResult=this.trieIndex,this.trieIndex+=r,this.entityExcess=0,this.sectionStart=this.index+1,0===r&&this.emitNamedEntity()}else this.trieIndex+=r}}},{key:"emitNamedEntity",value:function(){if(this.state=this.baseState,0!==this.entityResult)switch((this.entityTrie[this.entityResult]&tp.BinTrieFlags.VALUE_LENGTH)>>14){case 1:this.emitCodePoint(this.entityTrie[this.entityResult]&~tp.BinTrieFlags.VALUE_LENGTH);break;case 2:this.emitCodePoint(this.entityTrie[this.entityResult+1]);break;case 3:this.emitCodePoint(this.entityTrie[this.entityResult+1]),this.emitCodePoint(this.entityTrie[this.entityResult+2])}}},{key:"stateBeforeNumericEntity",value:function(e){(32|e)===el.LowerX?(this.entityExcess++,this.state=ef.InHexEntity):(this.state=ef.InNumericEntity,this.stateInNumericEntity(e))}},{key:"emitNumericEntity",value:function(e){var t=this.index-this.entityExcess-1;t+2+Number(this.state===ef.InHexEntity)!==this.index&&(t>this.sectionStart&&this.emitPartial(this.sectionStart,t),this.sectionStart=this.index+Number(e),this.emitCodePoint((0,tp.replaceCodePoint)(this.entityResult))),this.state=this.baseState}},{key:"stateInNumericEntity",value:function(e){e===el.Semi?this.emitNumericEntity(!0):t_(e)?(this.entityResult=10*this.entityResult+(e-el.Zero),this.entityExcess++):(this.allowLegacyEntity()?this.emitNumericEntity(!1):this.state=this.baseState,this.index--)}},{key:"stateInHexEntity",value:function(e){e===el.Semi?this.emitNumericEntity(!0):t_(e)?(this.entityResult=16*this.entityResult+(e-el.Zero),this.entityExcess++):e>=el.UpperA&&e<=el.UpperF||e>=el.LowerA&&e<=el.LowerF?(this.entityResult=16*this.entityResult+((32|e)-el.LowerA+10),this.entityExcess++):(this.allowLegacyEntity()?this.emitNumericEntity(!1):this.state=this.baseState,this.index--)}},{key:"allowLegacyEntity",value:function(){return!this.xmlMode&&(this.baseState===ef.Text||this.baseState===ef.InSpecialTag)}},{key:"cleanup",value:function(){this.running&&this.sectionStart!==this.index&&(this.state===ef.Text||this.state===ef.InSpecialTag&&0===this.sequenceIndex?(this.cbs.ontext(this.sectionStart,this.index),this.sectionStart=this.index):(this.state===ef.InAttributeValueDq||this.state===ef.InAttributeValueSq||this.state===ef.InAttributeValueNq)&&(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=this.index))}},{key:"shouldContinue",value:function(){return this.index1&&void 0!==arguments[1]?arguments[1]:{};tf(this,e),this.options=s,this.startIndex=0,this.endIndex=0,this.openTagStart=0,this.tagname="",this.attribname="",this.attribvalue="",this.attribs=null,this.stack=[],this.foreignContext=[],this.buffers=[],this.bufferOffset=0,this.writeIndex=0,this.ended=!1,this.cbs=null!=t?t:{},this.lowerCaseTagNames=null!==(r=s.lowerCaseTags)&&void 0!==r?r:!s.xmlMode,this.lowerCaseAttributeNames=null!==(n=s.lowerCaseAttributeNames)&&void 0!==n?n:!s.xmlMode,this.tokenizer=new(null!==(i=s.Tokenizer)&&void 0!==i?i:tP)(this.options,this),null===(a=(o=this.cbs).onparserinit)||void 0===a||a.call(o,this)}return th(e,[{key:"ontext",value:function(e,t){var r,n,i=this.getSlice(e,t);this.endIndex=t-1,null===(n=(r=this.cbs).ontext)||void 0===n||n.call(r,i),this.startIndex=t}},{key:"ontextentity",value:function(e){var t,r,n=this.tokenizer.getSectionStart();this.endIndex=n-1,null===(r=(t=this.cbs).ontext)||void 0===r||r.call(t,(0,tp.fromCodePoint)(e)),this.startIndex=n}},{key:"isVoidElement",value:function(e){return!this.options.xmlMode&&tU.has(e)}},{key:"onopentagname",value:function(e,t){this.endIndex=t;var r=this.getSlice(e,t);this.lowerCaseTagNames&&(r=r.toLowerCase()),this.emitOpenTag(r)}},{key:"emitOpenTag",value:function(e){this.openTagStart=this.startIndex,this.tagname=e;var t,r,n,i,o=!this.options.xmlMode&&tq.get(e);if(o)for(;this.stack.length>0&&o.has(this.stack[this.stack.length-1]);){var a=this.stack.pop();null===(r=(t=this.cbs).onclosetag)||void 0===r||r.call(t,a,!0)}!this.isVoidElement(e)&&(this.stack.push(e),tj.has(e)?this.foreignContext.push(!0):tF.has(e)&&this.foreignContext.push(!1)),null===(i=(n=this.cbs).onopentagname)||void 0===i||i.call(n,e),this.cbs.onopentag&&(this.attribs={})}},{key:"endOpenTag",value:function(e){var t,r;this.startIndex=this.openTagStart,this.attribs&&(null===(r=(t=this.cbs).onopentag)||void 0===r||r.call(t,this.tagname,this.attribs,e),this.attribs=null),this.cbs.onclosetag&&this.isVoidElement(this.tagname)&&this.cbs.onclosetag(this.tagname,!0),this.tagname=""}},{key:"onopentagend",value:function(e){this.endIndex=e,this.endOpenTag(!1),this.startIndex=e+1}},{key:"onclosetag",value:function(e,t){this.endIndex=t;var r,n,i,o,a,s,u=this.getSlice(e,t);if(this.lowerCaseTagNames&&(u=u.toLowerCase()),(tj.has(u)||tF.has(u))&&this.foreignContext.pop(),this.isVoidElement(u))this.options.xmlMode||"br"!==u||(null===(n=(r=this.cbs).onopentagname)||void 0===n||n.call(r,"br"),null===(o=(i=this.cbs).onopentag)||void 0===o||o.call(i,"br",{},!0),null===(s=(a=this.cbs).onclosetag)||void 0===s||s.call(a,"br",!1));else{var c=this.stack.lastIndexOf(u);if(-1!==c){if(this.cbs.onclosetag)for(var l=this.stack.length-c;l--;)this.cbs.onclosetag(this.stack.pop(),0!==l);else this.stack.length=c}else this.options.xmlMode||"p"!==u||(this.emitOpenTag("p"),this.closeCurrentTag(!0))}this.startIndex=t+1}},{key:"onselfclosingtag",value:function(e){this.endIndex=e,this.options.xmlMode||this.options.recognizeSelfClosing||this.foreignContext[this.foreignContext.length-1]?(this.closeCurrentTag(!1),this.startIndex=e+1):this.onopentagend(e)}},{key:"closeCurrentTag",value:function(e){var t,r,n=this.tagname;this.endOpenTag(e),this.stack[this.stack.length-1]===n&&(null===(r=(t=this.cbs).onclosetag)||void 0===r||r.call(t,n,!e),this.stack.pop())}},{key:"onattribname",value:function(e,t){this.startIndex=e;var r=this.getSlice(e,t);this.attribname=this.lowerCaseAttributeNames?r.toLowerCase():r}},{key:"onattribdata",value:function(e,t){this.attribvalue+=this.getSlice(e,t)}},{key:"onattribentity",value:function(e){this.attribvalue+=(0,tp.fromCodePoint)(e)}},{key:"onattribend",value:function(e,t){var r,n;this.endIndex=t,null===(n=(r=this.cbs).onattribute)||void 0===n||n.call(r,this.attribname,this.attribvalue,e===ed.Double?'"':e===ed.Single?"'":e===ed.NoValue?void 0:null),this.attribs&&!Object.prototype.hasOwnProperty.call(this.attribs,this.attribname)&&(this.attribs[this.attribname]=this.attribvalue),this.attribvalue=""}},{key:"getInstructionName",value:function(e){var t=e.search(tV),r=t<0?e:e.substr(0,t);return this.lowerCaseTagNames&&(r=r.toLowerCase()),r}},{key:"ondeclaration",value:function(e,t){this.endIndex=t;var r=this.getSlice(e,t);if(this.cbs.onprocessinginstruction){var n=this.getInstructionName(r);this.cbs.onprocessinginstruction("!".concat(n),"!".concat(r))}this.startIndex=t+1}},{key:"onprocessinginstruction",value:function(e,t){this.endIndex=t;var r=this.getSlice(e,t);if(this.cbs.onprocessinginstruction){var n=this.getInstructionName(r);this.cbs.onprocessinginstruction("?".concat(n),"?".concat(r))}this.startIndex=t+1}},{key:"oncomment",value:function(e,t,r){var n,i,o,a;this.endIndex=t,null===(i=(n=this.cbs).oncomment)||void 0===i||i.call(n,this.getSlice(e,t-r)),null===(a=(o=this.cbs).oncommentend)||void 0===a||a.call(o),this.startIndex=t+1}},{key:"oncdata",value:function(e,t,r){this.endIndex=t;var n,i,o,a,s,u,c,l,f,d,h=this.getSlice(e,t-r);this.options.xmlMode||this.options.recognizeCDATA?(null===(i=(n=this.cbs).oncdatastart)||void 0===i||i.call(n),null===(a=(o=this.cbs).ontext)||void 0===a||a.call(o,h),null===(u=(s=this.cbs).oncdataend)||void 0===u||u.call(s)):(null===(l=(c=this.cbs).oncomment)||void 0===l||l.call(c,"[CDATA[".concat(h,"]]")),null===(d=(f=this.cbs).oncommentend)||void 0===d||d.call(f)),this.startIndex=t+1}},{key:"onend",value:function(){var e,t;if(this.cbs.onclosetag){this.endIndex=this.startIndex;for(var r=this.stack.length;r>0;this.cbs.onclosetag(this.stack[--r],!0));}null===(t=(e=this.cbs).onend)||void 0===t||t.call(e)}},{key:"reset",value:function(){var e,t,r,n;null===(t=(e=this.cbs).onreset)||void 0===t||t.call(e),this.tokenizer.reset(),this.tagname="",this.attribname="",this.attribs=null,this.stack.length=0,this.startIndex=0,this.endIndex=0,null===(n=(r=this.cbs).onparserinit)||void 0===n||n.call(r,this),this.buffers.length=0,this.bufferOffset=0,this.writeIndex=0,this.ended=!1}},{key:"parseComplete",value:function(e){this.reset(),this.end(e)}},{key:"getSlice",value:function(e,t){for(;e-this.bufferOffset>=this.buffers[0].length;)this.shiftBuffer();for(var r=this.buffers[0].slice(e-this.bufferOffset,t-this.bufferOffset);t-this.bufferOffset>this.buffers[0].length;)this.shiftBuffer(),r+=this.buffers[0].slice(0,t-this.bufferOffset);return r}},{key:"shiftBuffer",value:function(){this.bufferOffset+=this.buffers[0].length,this.writeIndex--,this.buffers.shift()}},{key:"write",value:function(e){var t,r;if(this.ended){null===(r=(t=this.cbs).onerror)||void 0===r||r.call(t,Error(".write() after done!"));return}this.buffers.push(e),this.tokenizer.running&&(this.tokenizer.write(e),this.writeIndex++)}},{key:"end",value:function(e){var t,r;if(this.ended){null===(r=(t=this.cbs).onerror)||void 0===r||r.call(t,Error(".end() after done!"));return}e&&this.write(e),this.ended=!0,this.tokenizer.end()}},{key:"pause",value:function(){this.tokenizer.pause()}},{key:"resume",value:function(){for(this.tokenizer.resume();this.tokenizer.running&&this.writeIndex0&&void 0!==arguments[0]&&arguments[0];return t7(this,e)}}]),e}(),t1=/*#__PURE__*/function(e){tz(r,e);var t=tX(r);function r(e){var n;return tf(this,r),(n=t.call(this)).data=e,n}return th(r,[{key:"nodeValue",get:function(){return this.data},set:function(e){this.data=e}}]),r}(tZ(t0)),t3=/*#__PURE__*/function(e){tz(r,e);var t=tX(r);function r(){var e;return tf(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=eh.Text,e}return th(r,[{key:"nodeType",get:function(){return 3}}]),r}(t1),t2=/*#__PURE__*/function(e){tz(r,e);var t=tX(r);function r(){var e;return tf(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=eh.Comment,e}return th(r,[{key:"nodeType",get:function(){return 8}}]),r}(t1),t5=/*#__PURE__*/function(e){tz(r,e);var t=tX(r);function r(e,n){var i;return tf(this,r),(i=t.call(this,n)).name=e,i.type=eh.Directive,i}return th(r,[{key:"nodeType",get:function(){return 1}}]),r}(t1),t8=/*#__PURE__*/function(e){tz(r,e);var t=tX(r);function r(e){var n;return tf(this,r),(n=t.call(this)).children=e,n}return th(r,[{key:"firstChild",get:function(){var e;return null!==(e=this.children[0])&&void 0!==e?e:null}},{key:"lastChild",get:function(){return this.children.length>0?this.children[this.children.length-1]:null}},{key:"childNodes",get:function(){return this.children},set:function(e){this.children=e}}]),r}(tZ(t0)),t6=/*#__PURE__*/function(e){tz(r,e);var t=tX(r);function r(){var e;return tf(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=eh.CDATA,e}return th(r,[{key:"nodeType",get:function(){return 4}}]),r}(t8),t4=/*#__PURE__*/function(e){tz(r,e);var t=tX(r);function r(){var e;return tf(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=eh.Root,e}return th(r,[{key:"nodeType",get:function(){return 9}}]),r}(t8),t9=/*#__PURE__*/function(e){tz(r,e);var t=tX(r);function r(e,n){var i,o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[],a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"script"===e?eh.Script:"style"===e?eh.Style:eh.Tag;return tf(this,r),(i=t.call(this,o)).name=e,i.attribs=n,i.type=a,i}return th(r,[{key:"nodeType",get:function(){return 1}},{key:"tagName",get:function(){return this.name},set:function(e){this.name=e}},{key:"attributes",get:function(){var e=this;return Object.keys(this.attribs).map(function(t){var r,n;return{name:t,value:e.attribs[t],namespace:null===(r=e["x-attribsNamespace"])||void 0===r?void 0:r[t],prefix:null===(n=e["x-attribsPrefix"])||void 0===n?void 0:n[t]}})}}]),r}(t8);function t7(e){var t,r=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(e.type===eh.Text)t=new t3(e.data);else if(e.type===eh.Comment)t=new t2(e.data);else if(e.type===eh.Tag||e.type===eh.Script||e.type===eh.Style){var n=r?re(e.children):[],i=new t9(e.name,tG({},e.attribs),n);n.forEach(function(e){return e.parent=i}),null!=e.namespace&&(i.namespace=e.namespace),e["x-attribsNamespace"]&&(i["x-attribsNamespace"]=tG({},e["x-attribsNamespace"])),e["x-attribsPrefix"]&&(i["x-attribsPrefix"]=tG({},e["x-attribsPrefix"])),t=i}else if(e.type===eh.CDATA){var o=r?re(e.children):[],a=new t6(o);o.forEach(function(e){return e.parent=a}),t=a}else if(e.type===eh.Root){var s=r?re(e.children):[],u=new t4(s);s.forEach(function(e){return e.parent=u}),e["x-mode"]&&(u["x-mode"]=e["x-mode"]),t=u}else if(e.type===eh.Directive){var c=new t5(e.name,e.data);null!=e["x-name"]&&(c["x-name"]=e["x-name"],c["x-publicId"]=e["x-publicId"],c["x-systemId"]=e["x-systemId"]),t=c}else throw Error("Not implemented yet: ".concat(e.type));return t.startIndex=e.startIndex,t.endIndex=e.endIndex,null!=e.sourceCodeLocation&&(t.sourceCodeLocation=e.sourceCodeLocation),t}function re(e){for(var t=e.map(function(e){return t7(e,!0)}),r=1;r䀾mmaĀ;d׷׸䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀\ud835\udd0a;拙pf;쀀\ud835\udd3eeater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀\ud835\udca2;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇܎ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀\ud835\udd40a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ޷޼߂ߐĀiyޱ޵rc;䄴;䐙r;쀀\ud835\udd0dpf;쀀\ud835\udd41ǣ߇\0ߌr;쀀\ud835\udca5rcy;䐈kcy;䐄΀HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶߻dil;䄶;䐚r;쀀\ud835\udd0epf;쀀\ud835\udd42cr;쀀\ud835\udca6րJTaceflmostࠥࠩࠬࡐࡣ঳সে্਷ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗ࡜ࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४Ānrࢃ࢏gleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀\ud835\udd0fĀ;eঽা拘ftarrow;懚idot;䄿ƀnpw৔ਖਛgȀLRlr৞৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀\ud835\udd43erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼੝੠੷੼અઋ઎p;椅y;䐜Ādl੥੯iumSpace;恟lintrf;愳r;쀀\ud835\udd10nusPlus;戓pf;쀀\ud835\udd44cò੶;䎜ҀJacefostuણધભીଔଙඑ඗ඞcy;䐊cute;䅃ƀaey઴હાron;䅇dil;䅅;䐝ƀgswે૰଎ativeƀMTV૓૟૨ediumSpace;怋hiĀcn૦૘ë૙eryThiî૙tedĀGL૸ଆreaterGreateòٳessLesóੈLine;䀊r;쀀\ud835\udd11ȀBnptଢନଷ଺reak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪୼஡௫ఄ౞಄ದ೘ൡඅ櫬Āou୛୤ngruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊ஛ement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater΀;EFGLSTஶஷ஽௉௓௘௥扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲௽ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ೒拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨೹setĀ;E೰ೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀\ud835\udca9ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂ෉෕ෛ෠෧෼ขภยา฿ไlig;䅒cute耻Ó䃓Āiy෎ීrc耻Ô䃔;䐞blac;䅐r;쀀\ud835\udd12rave耻Ò䃒ƀaei෮ෲ෶cr;䅌ga;䎩cron;䎟pf;쀀\ud835\udd46enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀\ud835\udcaaash耻Ø䃘iŬื฼de耻Õ䃕es;樷ml耻Ö䃖erĀBP๋๠Āar๐๓r;怾acĀek๚๜;揞et;掴arenthesis;揜Ҁacfhilors๿ງຊຏຒດຝະ໼rtialD;戂y;䐟r;쀀\ud835\udd13i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ໠໤檻cedesȀ;EST່້໏໚扺qual;檯lantEqual;扼ilde;找me;怳Ādp໩໮uct;戏ortionĀ;aȥ໹l;戝Āci༁༆r;쀀\ud835\udcab;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀\ud835\udd14pf;愚cr;쀀\ud835\udcac؀BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁࿫࿳ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL࿜࿝࿡憒ar;懥eftArrow;懄eiling;按oǵ࿹\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀\ud835\udd16ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»࿝pArrow;憑gma;䎣allCircle;战pf;쀀\ud835\udd4aɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀\ud835\udcaear;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄ቉ቕ቞ቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHc቎ቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀\ud835\udd17Āeiቻ኉Dzኀ\0ኇefore;戴a;䎘Ācn኎ኘkSpace;쀀  Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀\ud835\udd4bipleDot;惛Āctዖዛr;쀀\ud835\udcafrok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0᏿ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0጖y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀\ud835\udd18rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻፿on;䅲f;쀀\ud835\udd4cЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀\ud835\udcb0ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀\ud835\udd19pf;쀀\ud835\udd4dcr;쀀\ud835\udcb1dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀\ud835\udd1apf;쀀\ud835\udd4ecr;쀀\ud835\udcb2Ȁfiosᓋᓐᓒᓘr;쀀\ud835\udd1b;䎞pf;쀀\ud835\udd4fcr;쀀\ud835\udcb3ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀\ud835\udd1cpf;쀀\ud835\udd50cr;쀀\ud835\udcb4ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtè૙a;䎖r;愨pf;愤cr;쀀\ud835\udcb5௡ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀\ud835\udd1erave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚΀;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀\ud835\udd52΀;Eaeiop዁ᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;e዁ᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀\ud835\udcb6;䀪mpĀ;e዁ᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰ᜼ᝃᝈ᝸᝽០៦ᠹᡐᜍ᤽᥈ᥰot;櫭Ācrᛶ᜞kȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e᜚᜛戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;t፜᜷brk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓ᝛ᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯ᝱ᝳ;䎲;愶een;扬r;쀀\ud835\udd1fg΀costuvwឍឝឳេ៕៛៞ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀako៭ᠦᠵĀcn៲ᠣkƀlst៺֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘᠝斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀\ud835\udd53Ā;tᏋᡣom»Ꮜtie;拈؀DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬ᣿ᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教΀;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ᣷᣹᣻᣽;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ᤟;敛;敘;攘;攔΀;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģ᥂bar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀\ud835\udcb7mi;恏mĀ;e᜚᜜lƀ;bhᥨᥩᥫ䁜;槅sub;柈Ŭᥴ᥾lĀ;e᥹᥺怢t»᥺pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭍᭒\0᯽\0ᰌƀcpr᦭ᦲ᧝ute;䄇̀;abcdsᦿᧀᧄ᧊᧕᧙戩nd;橄rcup;橉Āau᧏᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀\ud835\udd20ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r΀;Ecefms᩟᩠ᩢᩫ᪤᪪᪮旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖᪚᪟»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇᫔᫺\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ᫙\0\0᫢aĀ;t᫞᫟䀬;䁀ƀ;fl᫨᫩᫫戁îᅠeĀmx᫱᫶ent»᫩eóɍǧ᫾\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀\ud835\udd54oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀\ud835\udcb8Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯΀delprvw᭠᭬᭷ᮂᮬᯔ᯹arrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;p᭿ᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰸᰻᰿ᱝᱩᱵᲊᲞᲬᲷ᳻᳿ᴍᵻᶑᶫᶻ᷆᷍rò΁ar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀\ud835\udd21arĀlrᲳᲵ»ࣜ»သʀaegsv᳂͸᳖᳜᳠mƀ;oș᳊᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀\ud835\udd55ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀\ud835\udcb9;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄ὎὚ĀDoḆᴴoôᲉĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀\ud835\udd22ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀\ud835\udd56ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»Ṻƀaeiἒ἖Ἒls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀\ud835\udd23lig;耀filig;쀀fjƀaltῙ῜ῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀\ud835\udd57ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao‌⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧‪‬\0‮耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀\ud835\udcbbࢀEabcdefgijlnorstv₂₉₟₥₰₴⃰⃵⃺⃿℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕ₝ute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽⃉ƀ;qsؾٌ⃄lanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀\ud835\udd24Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀\ud835\udd58Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqr׮ⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0↎proø₞r;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀\ud835\udd25sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀\ud835\udd59bar;怕ƀclt≯≴≸r;쀀\ud835\udcbdasè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀\ud835\udd26rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀\ud835\udd5aa;䎹uest耻¿䂿Āci⎊⎏r;쀀\ud835\udcbenʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀\ud835\udd27ath;䈷pf;쀀\ud835\udd5bǣ⏬\0⏱r;쀀\ud835\udcbfrcy;䑘kcy;䑔Ѐacfghjos␋␖␢␧␭␱␵␻ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀\ud835\udd28reen;䄸cy;䑅cy;䑜pf;쀀\ud835\udd5ccr;쀀\ud835\udcc0஀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼rò৆òΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonó྘quigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀\ud835\udd29Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀\ud835\udd5dus;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d྘➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀\ud835\udcc1mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ᠛旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀\ud835\udd2ao;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀\ud835\udd5eĀct⣸⣽r;쀀\ud835\udcc2pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐௏쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop඄⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roø඄urĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓΀;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨í஘istĀ;s஠டr;쀀\ud835\udd2bȀEest௅⩦⩹⩼ƀ;qs஼⩭௡ƀ;qs஼௅⩴lanô௢ií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚΀AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs఻⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs఻⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀\ud835\udd5f膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast୻⭕⭚⭟lleì୻l;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖ΀chimpqu⮽⯍⯙⬄୸⯤⯯Ȁ;cerല⯆ഷ⯉uå൅;쀀\ud835\udcc3ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭å೸åഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñ೗Ā;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰⳴ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥ⵲ⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;c᪞ⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācr⵩⵭ir;榿;쀀\ud835\udd2cͯ⵹\0\0⵼\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕ⶘ⶥⶨrò᪀Āir⶝ⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀\ud835\udd60ƀaelⷔ⷗ǒr;榷rp;榹΀;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ⹞\0⹽\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ⹧⹲຅脀¶;l⹭⹮䂶leìЃɩ⹸\0\0⹻m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀\ud835\udd2dƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳⻴ᤈ⻹⻽⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀\ud835\udd61nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp໬⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t໻⾴ï໻rel;抰Āci⿀⿅r;쀀\ud835\udcc5;䏈ncsp;怈̀fiopsu⿚⋢⿟⿥⿫⿱r;쀀\ud835\udd2epf;쀀\ud835\udd62rime;恗cr;쀀\ud835\udcc6ƀaeo⿸〉〓tĀei⿾々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔઀ABHabcdefhilmnoprstux぀けさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤΀cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstw࿜ガクシスゼゾダッデナp;極Ā;f࿠ゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes㄂㄄;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ì࿲âヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀\ud835\udd2fĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘㇤㇮rrowĀ;t࿜ㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowó࿪arpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓rò࿪aòՑ;怏oustĀ;a㈞㈟掱che»㈟mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀\ud835\udd63us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀\ud835\udcc7Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦΀Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼਴t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀\ud835\udd30Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì⹯耻­䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;q኱ኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀\ud835\udd64aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀\ud835\udcc8tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫ਩war;椪lig耻ß䃟௡㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rë๟ƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀\ud835\udd31Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproø዁im»ኬsðኞĀas㚺㚮ð዁rn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀\ud835\udd65rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈ΀adempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀\ud835\udcc9;䑆cy;䑛rok;䅧Āio㞋㞎xô᝷headĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀\ud835\udd32rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀\ud835\udd66̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀\ud835\udccaƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜΀eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀\ud835\udd33tré㦮suĀbp㧯㧱»ജ»൙pf;쀀\ud835\udd67roð໻tré㦴Ācu㨆㨋r;쀀\ud835\udccbĀbp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚΀cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀\ud835\udd34pf;쀀\ud835\udd68Ā;eᑹ㩦atèᑹcr;쀀\ud835\udcccૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜ៟tré៑r;쀀\ud835\udd35ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀\ud835\udd69imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀\ud835\udccdĀpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀\ud835\udd36cy;䑗pf;쀀\ud835\udd6acr;쀀\ud835\udcceĀcm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀\ud835\udd37cy;䐶grarr;懝pf;쀀\ud835\udd6bcr;쀀\ud835\udccfĀjn㮅㮇;怍j;怌'.split("").map(function(e){return e.charCodeAt(0)})),rn=new Uint16Array("Ȁaglq \x15\x18\x1bɭ\x0f\0\0\x12p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map(function(e){return e.charCodeAt(0)})),ri=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]),ro=null!==(ep=String.fromCodePoint)&&void 0!==ep?ep:function(e){var t="";return e>65535&&(e-=65536,t+=String.fromCharCode(e>>>10&1023|55296),e=56320|1023&e),t+=String.fromCharCode(e)};function ra(e){return e>=em.ZERO&&e<=em.NINE}(W=em||(em={}))[W.NUM=35]="NUM",W[W.SEMI=59]="SEMI",W[W.EQUALS=61]="EQUALS",W[W.ZERO=48]="ZERO",W[W.NINE=57]="NINE",W[W.LOWER_A=97]="LOWER_A",W[W.LOWER_F=102]="LOWER_F",W[W.LOWER_X=120]="LOWER_X",W[W.LOWER_Z=122]="LOWER_Z",W[W.UPPER_A=65]="UPPER_A",W[W.UPPER_F=70]="UPPER_F",W[W.UPPER_Z=90]="UPPER_Z",(G=ev||(ev={}))[G.VALUE_LENGTH=49152]="VALUE_LENGTH",G[G.BRANCH_LENGTH=16256]="BRANCH_LENGTH",G[G.JUMP_TABLE=127]="JUMP_TABLE",(Y=eg||(eg={}))[Y.EntityStart=0]="EntityStart",Y[Y.NumericStart=1]="NumericStart",Y[Y.NumericDecimal=2]="NumericDecimal",Y[Y.NumericHex=3]="NumericHex",Y[Y.NamedEntity=4]="NamedEntity",(K=ey||(ey={}))[K.Legacy=0]="Legacy",K[K.Strict=1]="Strict",K[K.Attribute=2]="Attribute";var rs=/*#__PURE__*/function(){function e(t,r,n){tf(this,e),this.decodeTree=t,this.emitCodePoint=r,this.errors=n,this.state=eg.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=ey.Strict}return th(e,[{key:"startEntity",value:function(e){this.decodeMode=e,this.state=eg.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1}},{key:"write",value:function(e,t){switch(this.state){case eg.EntityStart:if(e.charCodeAt(t)===em.NUM)return this.state=eg.NumericStart,this.consumed+=1,this.stateNumericStart(e,t+1);return this.state=eg.NamedEntity,this.stateNamedEntity(e,t);case eg.NumericStart:return this.stateNumericStart(e,t);case eg.NumericDecimal:return this.stateNumericDecimal(e,t);case eg.NumericHex:return this.stateNumericHex(e,t);case eg.NamedEntity:return this.stateNamedEntity(e,t)}}},{key:"stateNumericStart",value:function(e,t){return t>=e.length?-1:(32|e.charCodeAt(t))===em.LOWER_X?(this.state=eg.NumericHex,this.consumed+=1,this.stateNumericHex(e,t+1)):(this.state=eg.NumericDecimal,this.stateNumericDecimal(e,t))}},{key:"addToNumericResult",value:function(e,t,r,n){if(t!==r){var i=r-t;this.result=this.result*Math.pow(n,i)+parseInt(e.substr(t,i),n),this.consumed+=i}}},{key:"stateNumericHex",value:function(e,t){for(var r=t;t=em.UPPER_A)||!(n<=em.UPPER_F))&&(!(n>=em.LOWER_A)||!(n<=em.LOWER_F)))return this.addToNumericResult(e,r,t,16),this.emitNumericEntity(i,3);t+=1}return this.addToNumericResult(e,r,t,16),-1}},{key:"stateNumericDecimal",value:function(e,t){for(var r=t;t=55296&&n<=57343||n>1114111?65533:null!==(i=ri.get(n))&&void 0!==i?i:n,this.consumed),this.errors&&(e!==em.SEMI&&this.errors.missingSemicolonAfterCharacterReference(),this.errors.validateNumericCharacterReference(this.result)),this.consumed}},{key:"stateNamedEntity",value:function(e,t){for(var r=this.decodeTree,n=r[this.treeIndex],i=(n&ev.VALUE_LENGTH)>>14;t>7,o=t&ev.JUMP_TABLE;if(0===i)return 0!==o&&n===o?r:-1;if(o){var a=n-o;return a<0||a>=i?-1:e[r+a]-1}for(var s=r,u=s+i-1;s<=u;){var c=s+u>>>1,l=e[c];if(ln))return e[c+i];u=c-1}}return -1}(r,n,this.treeIndex+Math.max(1,i),o),this.treeIndex<0)return 0===this.result||this.decodeMode===ey.Attribute&&(0===i||function(e){var t;return e===em.EQUALS||(t=e)>=em.UPPER_A&&t<=em.UPPER_Z||t>=em.LOWER_A&&t<=em.LOWER_Z||ra(t)}(o))?0:this.emitNotTerminatedNamedEntity();if(0!=(i=((n=r[this.treeIndex])&ev.VALUE_LENGTH)>>14)){if(o===em.SEMI)return this.emitNamedEntityData(this.treeIndex,i,this.consumed+this.excess);this.decodeMode!==ey.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return -1}},{key:"emitNotTerminatedNamedEntity",value:function(){var e,t=this.result,r=(this.decodeTree[t]&ev.VALUE_LENGTH)>>14;return this.emitNamedEntityData(t,r,this.consumed),null===(e=this.errors)||void 0===e||e.missingSemicolonAfterCharacterReference(),this.consumed}},{key:"emitNamedEntityData",value:function(e,t,r){var n=this.decodeTree;return this.emitCodePoint(1===t?n[e]&~ev.VALUE_LENGTH:n[e+1],r),3===t&&this.emitCodePoint(n[e+2],r),r}},{key:"end",value:function(){var e;switch(this.state){case eg.NamedEntity:return 0!==this.result&&(this.decodeMode!==ey.Attribute||this.result===this.treeIndex)?this.emitNotTerminatedNamedEntity():0;case eg.NumericDecimal:return this.emitNumericEntity(0,2);case eg.NumericHex:return this.emitNumericEntity(0,3);case eg.NumericStart:return null===(e=this.errors)||void 0===e||e.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case eg.EntityStart:return 0}}}]),e}();function ru(e){var t="",r=new rs(e,function(e){return t+=ro(e)});return function(e,n){for(var i=0,o=0;(o=e.indexOf("&",o))>=0;){t+=e.slice(i,o),r.startEntity(n);var a=r.write(e,o+1);if(a<0){i=o+r.end();break}i=o+a,o=0===a?i+1:i}var s=t+e.slice(i);return t="",s}}ru(rr),ru(rn);var rc=new Map([[34,"""],[38,"&"],[39,"'"],[60,"<"],[62,">"]]);function rl(e,t){return function(r){for(var n,i=0,o="";n=e.exec(r);)i!==n.index&&(o+=r.substring(i,n.index)),o+=t.get(n[0].charCodeAt(0)),i=n.index+1;return o+r.substring(i)}}String.prototype.codePointAt,rl(/[&<>'"]/g,rc),rl(/["&\u00A0]/g,new Map([[34,"""],[38,"&"],[160," "]])),rl(/[&<>\u00A0]/g,new Map([[38,"&"],[60,"<"],[62,">"],[160," "]])),(J=eb||(eb={}))[J.XML=0]="XML",J[J.HTML=1]="HTML",(Z=ew||(ew={}))[Z.UTF8=0]="UTF8",Z[Z.ASCII=1]="ASCII",Z[Z.Extensive=2]="Extensive",Z[Z.Attribute=3]="Attribute",Z[Z.Text=4]="Text",["altGlyph","altGlyphDef","altGlyphItem","animateColor","animateMotion","animateTransform","clipPath","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","foreignObject","glyphRef","linearGradient","radialGradient","textPath"].map(function(e){return[e.toLowerCase(),e]}),["definitionURL","attributeName","attributeType","baseFrequency","baseProfile","calcMode","clipPathUnits","diffuseConstant","edgeMode","filterUnits","glyphRef","gradientTransform","gradientUnits","kernelMatrix","kernelUnitLength","keyPoints","keySplines","keyTimes","lengthAdjust","limitingConeAngle","markerHeight","markerUnits","markerWidth","maskContentUnits","maskUnits","numOctaves","pathLength","patternContentUnits","patternTransform","patternUnits","pointsAtX","pointsAtY","pointsAtZ","preserveAlpha","preserveAspectRatio","primitiveUnits","refX","refY","repeatCount","repeatDur","requiredExtensions","requiredFeatures","specularConstant","specularExponent","spreadMethod","startOffset","stdDeviation","stitchTiles","surfaceScale","systemLanguage","tableValues","targetX","targetY","textLength","viewBox","viewTarget","xChannelSelector","yChannelSelector","zoomAndPan"].map(function(e){return[e.toLowerCase(),e]}),(Q=ex||(ex={}))[Q.DISCONNECTED=1]="DISCONNECTED",Q[Q.PRECEDING=2]="PRECEDING",Q[Q.FOLLOWING=4]="FOLLOWING",Q[Q.CONTAINS=8]="CONTAINS",Q[Q.CONTAINED_BY=16]="CONTAINED_BY";var rf={};/*! +function e(e,t,r,n){Object.defineProperty(e,t,{get:r,set:n,enumerable:!0,configurable:!0})}function t(e){return e&&e.__esModule?e.default:e}var r,n,i,o,a,s,u,c,l,f,d,h,p,m,v,g,y,b,w,x,E,S,k,A,I,T,N,O,_,C,P,L,D,B,R,M,q,U,j,F,V,$,H,z,W,G,Y,K,J,Z,Q,X,ee,et,er,en,ei,eo,ea,es,eu,ec,el,ef,ed,eh,ep,em,ev,eg,ey,eb,ew,ex,eE,eS,ek,eA,eI,eT,eN,eO,e_,eC,eP,eL,eD,eB,eR,eM,eq,eU,ej,eF,eV="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:"undefined"!=typeof global?global:{},e$={},eH={},ez=eV.parcelRequire5393;null==ez&&((ez=function(e){if(e in e$)return e$[e].exports;if(e in eH){var t=eH[e];delete eH[e];var r={id:e,exports:{}};return e$[e]=r,t.call(r.exports,r,r.exports),r.exports}var n=Error("Cannot find module '"+e+"'");throw n.code="MODULE_NOT_FOUND",n}).register=function(e,t){eH[e]=t},eV.parcelRequire5393=ez);var eW=ez.register;function eG(e,t,r,n,i,o,a){try{var s=e[o](a),u=s.value}catch(e){r(e);return}s.done?t(u):Promise.resolve(u).then(n,i)}function eY(e){return function(){var t=this,r=arguments;return new Promise(function(n,i){var o=e.apply(t,r);function a(e){eG(o,n,i,a,s,"next",e)}function s(e){eG(o,n,i,a,s,"throw",e)}a(void 0)})}}function eK(e){function t(e){if(Object(e)!==e)return Promise.reject(TypeError(e+" is not an object."));var t=e.done;return Promise.resolve(e.value).then(function(e){return{value:e,done:t}})}return(eK=function(e){this.s=e,this.n=e.next}).prototype={s:null,n:null,next:function(){return t(this.n.apply(this.s,arguments))},return:function(e){var r=this.s.return;return void 0===r?Promise.resolve({value:e,done:!0}):t(r.apply(this.s,arguments))},throw:function(e){var r=this.s.return;return void 0===r?Promise.reject(e):t(r.apply(this.s,arguments))}},new eK(e)}eW("dH95r",function(e,t){function r(e,t,r,n,i,o){return{tag:e,key:t,attrs:r,children:n,text:i,dom:o,domSize:void 0,state:void 0,events:void 0,instance:void 0}}r.normalize=function(e){return Array.isArray(e)?r("[",void 0,void 0,r.normalizeChildren(e),void 0,void 0):null==e||"boolean"==typeof e?null:"object"==typeof e?e:r("#",void 0,void 0,String(e),void 0,void 0)},r.normalizeChildren=function(e){var t=[];if(e.length){for(var n=null!=e[0]&&null!=e[0].key,i=1;i'+t.children+"",a=a.firstChild):a.innerHTML=t.children,t.dom=a.firstChild,t.domSize=a.childNodes.length;for(var u=s(e).createDocumentFragment();i=a.firstChild;)u.appendChild(i);x(e,u,n)}function v(e,t,r,n,i,o){if(t!==r&&(null!=t||null!=r)){if(null==t||0===t.length)d(e,r,0,r.length,n,i,o);else if(null==r||0===r.length)S(e,t,0,t.length);else{var a=null!=t[0]&&null!=t[0].key,s=null!=r[0]&&null!=r[0].key,u=0,c=0;if(!a)for(;c=c&&A>=u&&(m=t[E],v=r[A],m.key===v.key);)m!==v&&g(e,m,v,n,i,o),null!=v.dom&&(i=v.dom),E--,A--;for(;E>=c&&A>=u&&(f=t[c],p=r[u],f.key===p.key);)c++,u++,f!==p&&g(e,f,p,n,b(t,c,i),o);for(;E>=c&&A>=u&&u!==A&&f.key===v.key&&m.key===p.key;)w(e,m,x=b(t,c,i)),m!==p&&g(e,m,p,n,x,o),++u<=--A&&w(e,f,i),f!==v&&g(e,f,v,n,i,o),null!=v.dom&&(i=v.dom),c++,m=t[--E],v=r[A],f=t[c],p=r[u];for(;E>=c&&A>=u&&m.key===v.key;)m!==v&&g(e,m,v,n,i,o),null!=v.dom&&(i=v.dom),E--,A--,m=t[E],v=r[A];if(u>A)S(e,t,c,E+1);else if(c>E)d(e,r,u,A+1,n,i,o);else{var l,I,T=i,N=A-u+1,O=Array(N),_=0,C=0,P=0x7fffffff,L=0;for(C=0;C=u;C--){null==l&&(l=function(e,t,r){for(var n=Object.create(null);t>>1)+(n>>>1)+(r&n&1);e[t[s]]0&&(y[i]=t[r-1]),t[r]=i)}for(r=t.length,n=t[r-1];r-- >0;)t[r]=n,n=y[n];return y.length=0,t}(O)).length-1,C=A;C>=u;C--)p=r[C],-1===O[C-u]?h(e,p,n,o,i):I[_]===C-u?_--:w(e,p,i),null!=p.dom&&(i=r[C].dom);else for(C=A;C>=u;C--)p=r[C],-1===O[C-u]&&h(e,p,n,o,i),null!=p.dom&&(i=r[C].dom)}}else{var B=t.lengthB&&S(e,t,u,t.length),r.length>B&&d(e,r,u,r.length,n,i,o)}}}}function g(e,t,n,i,o,a){var s,c,d=t.tag;if(d===n.tag){if(n.state=t.state,n.events=t.events,function(e,t){do{if(null!=e.attrs&&"function"==typeof e.attrs.onbeforeupdate){var r=l.call(e.attrs.onbeforeupdate,e,t);if(void 0!==r&&!r)break}if("string"!=typeof e.tag&&"function"==typeof e.state.onbeforeupdate){var r=l.call(e.state.onbeforeupdate,e,t);if(void 0!==r&&!r)break}return!1}while(!1)return e.dom=t.dom,e.domSize=t.domSize,e.instance=t.instance,e.attrs=t.attrs,e.children=t.children,e.text=t.text,!0}(n,t))return;if("string"==typeof d)switch(null!=n.attrs&&M(n.attrs,n,i),d){case"#":t.children.toString()!==n.children.toString()&&(t.dom.nodeValue=n.children),n.dom=t.dom;break;case"<":t.children!==n.children?(A(e,t,void 0),m(e,n,a,o)):(n.dom=t.dom,n.domSize=t.domSize);break;case"[":(function(e,t,r,n,i,o){v(e,t.children,r.children,n,i,o);var a=0,s=r.children;if(r.dom=null,null!=s){for(var u=0;u-1||null!=e.attrs&&e.attrs.is||"href"!==t&&"list"!==t&&"form"!==t&&"width"!==t&&"height"!==t)&&t in e.dom}var _=/[A-Z]/g;function C(e){return"-"+e.toLowerCase()}function P(e){return"-"===e[0]&&"-"===e[1]?e:"cssFloat"===e?"float":e.replace(_,C)}function L(e,t,r){if(t===r);else if(null==r)e.style="";else if("object"!=typeof r)e.style=r;else if(null==t||"object"!=typeof t)for(var n in e.style.cssText="",r){var i=r[n];null!=i&&e.style.setProperty(P(n),String(i))}else{for(var n in r){var i=r[n];null!=i&&(i=String(i))!==String(t[n])&&e.style.setProperty(P(n),i)}for(var n in t)null!=t[n]&&null==r[n]&&e.style.removeProperty(P(n))}}function D(){this._=e}function B(t,r,n){null!=t.events?(t.events._=e,t.events[r]!==n&&(null!=n&&("function"==typeof n||"object"==typeof n)?(null==t.events[r]&&t.dom.addEventListener(r.slice(2),t.events,!1),t.events[r]=n):(null!=t.events[r]&&t.dom.removeEventListener(r.slice(2),t.events,!1),t.events[r]=void 0))):null!=n&&("function"==typeof n||"object"==typeof n)&&(t.events=new D,t.dom.addEventListener(r.slice(2),t.events,!1),t.events[r]=n)}function R(e,t,r){"function"==typeof e.oninit&&l.call(e.oninit,t),"function"==typeof e.oncreate&&r.push(l.bind(e.oncreate,t))}function M(e,t,r){"function"==typeof e.onupdate&&r.push(l.bind(e.onupdate,t))}return D.prototype=Object.create(null),D.prototype.handleEvent=function(e){var t,r=this["on"+e.type];"function"==typeof r?t=r.call(e.currentTarget,e):"function"==typeof r.handleEvent&&r.handleEvent(e),this._&&!1!==e.redraw&&(0,this._)(),!1===t&&(e.preventDefault(),e.stopPropagation())},function(i,o,a){if(!i)throw TypeError("DOM element being rendered to does not exist.");if(null!=n&&i.contains(n))throw TypeError("Node is currently being rendered to and thus is locked.");var s=e,u=n,c=[],l=f(i),d=i.namespaceURI;n=i,e="function"==typeof a?a:void 0,t={};try{null==i.vnodes&&(i.textContent=""),o=r.normalizeChildren(Array.isArray(o)?o:[o]),v(i,i.vnodes,o,c,null,"http://www.w3.org/1999/xhtml"===d?void 0:d),i.vnodes=o,null!=l&&f(i)!==l&&"function"==typeof l.focus&&l.focus();for(var h=0;h1&&void 0!==u[1]?u[1]:{},i=e.dom,o=e.domSize,a=t.generation,!(null!=i))return[3,5];r.label=1;case 1:if(s=i.nextSibling,n.get(i)!==a)return[3,3];return[4,i];case 2:r.sent(),o--,r.label=3;case 3:i=s,r.label=4;case 4:if(o)return[3,1];r.label=5;case 5:return[2]}})}}}),eW("h7Cmf",function(t,r){function n(e,t){var r,n,i,o={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]},a=Object.create(("function"==typeof Iterator?Iterator:Object).prototype);return a.next=s(0),a.throw=s(1),a.return=s(2),"function"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function s(s){return function(u){return function(s){if(r)throw TypeError("Generator is already executing.");for(;a&&(a=0,s[0]&&(o=0)),o;)try{if(r=1,n&&(i=2&s[0]?n.return:s[0]?n.throw||((i=n.return)&&i.call(n),0):n.next)&&!(i=i.call(n,s[1])).done)return i;switch(n=0,i&&(s=[2&s[0],i.value]),s[0]){case 0:case 1:i=s;break;case 4:return o.label++,{value:s[1],done:!1};case 5:o.label++,n=s[1],s=[0];continue;case 7:s=o.ops.pop(),o.trys.pop();continue;default:if(!(i=(i=o.trys).length>0&&i[i.length-1])&&(6===s[0]||2===s[0])){o=0;continue}if(3===s[0]&&(!i||s[1]>i[0]&&s[1]=e.length&&(e=void 0),{value:e&&e[n++],done:!e}}};throw TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")}e(t.exports,"__generator",function(){return n}),e(t.exports,"__values",function(){return i}),ez("bbrsO"),"function"==typeof SuppressedError&&SuppressedError}),eW("bbrsO",function(t,r){e(t.exports,"_",function(){return n});function n(e){return e&&"undefined"!=typeof Symbol&&e.constructor===Symbol?"symbol":typeof e}}),eW("hz6ru",function(e,t){var r=ez("dH95r");e.exports=function(e,t,n){var i=[],o=!1,a=-1;function s(){for(a=0;a=0&&(i.splice(o,2),o<=a&&(a-=2),e(t,[])),null!=n&&(i.push(t,n),e(t,r(n),u))},redraw:u}}}),eW("bF6RK",function(e,t){var r=ez("ayCHi"),n=ez("c6nqe");e.exports=function(e,t){function i(e){return new Promise(e)}function o(e,t){for(var r in e.headers)if(n.call(e.headers,r)&&r.toLowerCase()===t)return!0;return!1}return i.prototype=Promise.prototype,i.__proto__=Promise,{request:function(a,s){"string"!=typeof a?(s=a,a=a.url):null==s&&(s={});var u,c,l=(u=a,c=s,new Promise(function(t,i){u=r(u,c.params);var a,s=null!=c.method?c.method.toUpperCase():"GET",l=c.body,f=(null==c.serialize||c.serialize===JSON.serialize)&&!(l instanceof e.FormData||l instanceof e.URLSearchParams),d=c.responseType||("function"==typeof c.extract?"":"json"),h=new e.XMLHttpRequest,p=!1,m=!1,v=h,g=h.abort;for(var y in h.abort=function(){p=!0,g.call(this)},h.open(s,u,!1!==c.async,"string"==typeof c.user?c.user:void 0,"string"==typeof c.password?c.password:void 0),f&&null!=l&&!o(c,"content-type")&&h.setRequestHeader("Content-Type","application/json; charset=utf-8"),"function"==typeof c.deserialize||o(c,"accept")||h.setRequestHeader("Accept","application/json, text/*"),c.withCredentials&&(h.withCredentials=c.withCredentials),c.timeout&&(h.timeout=c.timeout),h.responseType=d,c.headers)n.call(c.headers,y)&&h.setRequestHeader(y,c.headers[y]);h.onreadystatechange=function(e){if(!p&&4===e.target.readyState)try{var r,n=e.target.status>=200&&e.target.status<300||304===e.target.status||/^file:\/\//i.test(u),o=e.target.response;if("json"===d){if(!e.target.responseType&&"function"!=typeof c.extract)try{o=JSON.parse(e.target.responseText)}catch(e){o=null}}else d&&"text"!==d||null!=o||(o=e.target.responseText);if("function"==typeof c.extract?(o=c.extract(e.target,c),n=!0):"function"==typeof c.deserialize&&(o=c.deserialize(o)),n){if("function"==typeof c.type){if(Array.isArray(o))for(var a=0;a=0&&(h+=e.slice(i,a)),l>=0&&(h+=(i<0?"?":"&")+c.slice(l,d));var p=r(u);return p&&(h+=(i<0&&l<0?"?":"&")+p),o>=0&&(h+=e.slice(o)),f>=0&&(h+=(o<0?"":"&")+c.slice(f)),h}}),eW("2KJLy",function(e,t){e.exports=function(e){if("[object Object]"!==Object.prototype.toString.call(e))return"";var t=[];for(var r in e)(function e(r,n){if(Array.isArray(n))for(var i=0;i0&&(i.className=n.join(" ")),a[e]={tag:r,attrs:i}}(e),t):(t.tag=e,t)}}),eW("lJWab",function(e,t){var r=ez("5VK6y");e.exports=function(e){var t=e.indexOf("?"),n=e.indexOf("#"),i=n<0?e.length:n,o=e.slice(0,t<0?i:t).replace(/\/{2,}/g,"/");return o?"/"!==o[0]&&(o="/"+o):o="/",{path:o,params:t<0?{}:r(e.slice(t+1,i))}}}),eW("5VK6y",function(e,t){function r(e){try{return decodeURIComponent(e)}catch(t){return e}}e.exports=function(e){if(""===e||null==e)return{};"?"===e.charAt(0)&&(e=e.slice(1));for(var t=e.split("&"),n={},i={},o=0;o-1&&c.pop();for(var f=0;ft.indexOf(o)&&(i[o]=e[o]);else for(var o in e)r.call(e,o)&&!n.test(o)&&(i[o]=e[o]);return i}}),eW("c6lT5",function(e,t){Object.defineProperty(e.exports,"__esModule",{value:!0}),e.exports.default=new Uint16Array('ᵁ<Õıʊҝջאٵ۞ޢߖࠏ੊ઑඡ๭༉༦჊ረዡᐕᒝᓃᓟᔥ\0\0\0\0\0\0ᕫᛍᦍᰒᷝ὾⁠↰⊍⏀⏻⑂⠤⤒ⴈ⹈⿎〖㊺㘹㞬㣾㨨㩱㫠㬮ࠀEMabcfglmnoprstu\\bfms„‹•˜¦³¹ÈÏlig耻Æ䃆P耻&䀦cute耻Á䃁reve;䄂Āiyx}rc耻Â䃂;䐐r;쀀\ud835\udd04rave耻À䃀pha;䎑acr;䄀d;橓Āgp¡on;䄄f;쀀\ud835\udd38plyFunction;恡ing耻Å䃅Ācs¾Ãr;쀀\ud835\udc9cign;扔ilde耻Ã䃃ml耻Ä䃄ЀaceforsuåûþėĜĢħĪĀcrêòkslash;或Ŷöø;櫧ed;挆y;䐑ƀcrtąċĔause;戵noullis;愬a;䎒r;쀀\ud835\udd05pf;쀀\ud835\udd39eve;䋘còēmpeq;扎܀HOacdefhilorsuōőŖƀƞƢƵƷƺǜȕɳɸɾcy;䐧PY耻©䂩ƀcpyŝŢźute;䄆Ā;iŧŨ拒talDifferentialD;慅leys;愭ȀaeioƉƎƔƘron;䄌dil耻Ç䃇rc;䄈nint;戰ot;䄊ĀdnƧƭilla;䂸terDot;䂷òſi;䎧rcleȀDMPTLJNjǑǖot;抙inus;抖lus;投imes;抗oĀcsǢǸkwiseContourIntegral;戲eCurlyĀDQȃȏoubleQuote;思uote;怙ȀlnpuȞȨɇɕonĀ;eȥȦ户;橴ƀgitȯȶȺruent;扡nt;戯ourIntegral;戮ĀfrɌɎ;愂oduct;成nterClockwiseContourIntegral;戳oss;樯cr;쀀\ud835\udc9epĀ;Cʄʅ拓ap;才րDJSZacefiosʠʬʰʴʸˋ˗ˡ˦̳ҍĀ;oŹʥtrahd;椑cy;䐂cy;䐅cy;䐏ƀgrsʿ˄ˇger;怡r;憡hv;櫤Āayː˕ron;䄎;䐔lĀ;t˝˞戇a;䎔r;쀀\ud835\udd07Āaf˫̧Ācm˰̢riticalȀADGT̖̜̀̆cute;䂴oŴ̋̍;䋙bleAcute;䋝rave;䁠ilde;䋜ond;拄ferentialD;慆Ѱ̽\0\0\0͔͂\0Ѕf;쀀\ud835\udd3bƀ;DE͈͉͍䂨ot;惜qual;扐blèCDLRUVͣͲ΂ϏϢϸontourIntegraìȹoɴ͹\0\0ͻ»͉nArrow;懓Āeo·ΤftƀARTΐΖΡrrow;懐ightArrow;懔eåˊngĀLRΫτeftĀARγιrrow;柸ightArrow;柺ightArrow;柹ightĀATϘϞrrow;懒ee;抨pɁϩ\0\0ϯrrow;懑ownArrow;懕erticalBar;戥ǹABLRTaВЪаўѿͼrrowƀ;BUНОТ憓ar;椓pArrow;懵reve;䌑eft˒к\0ц\0ѐightVector;楐eeVector;楞ectorĀ;Bљњ憽ar;楖ightǔѧ\0ѱeeVector;楟ectorĀ;BѺѻ懁ar;楗eeĀ;A҆҇护rrow;憧ĀctҒҗr;쀀\ud835\udc9frok;䄐ࠀNTacdfglmopqstuxҽӀӄӋӞӢӧӮӵԡԯԶՒ՝ՠեG;䅊H耻Ð䃐cute耻É䃉ƀaiyӒӗӜron;䄚rc耻Ê䃊;䐭ot;䄖r;쀀\ud835\udd08rave耻È䃈ement;戈ĀapӺӾcr;䄒tyɓԆ\0\0ԒmallSquare;旻erySmallSquare;斫ĀgpԦԪon;䄘f;쀀\ud835\udd3csilon;䎕uĀaiԼՉlĀ;TՂՃ橵ilde;扂librium;懌Āci՗՚r;愰m;橳a;䎗ml耻Ë䃋Āipժկsts;戃onentialE;慇ʀcfiosօֈ֍ֲ׌y;䐤r;쀀\ud835\udd09lledɓ֗\0\0֣mallSquare;旼erySmallSquare;斪Ͱֺ\0ֿ\0\0ׄf;쀀\ud835\udd3dAll;戀riertrf;愱cò׋؀JTabcdfgorstר׬ׯ׺؀ؒؖ؛؝أ٬ٲcy;䐃耻>䀾mmaĀ;d׷׸䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀\ud835\udd0a;拙pf;쀀\ud835\udd3eeater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀\ud835\udca2;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇܎ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀\ud835\udd40a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ޷޼߂ߐĀiyޱ޵rc;䄴;䐙r;쀀\ud835\udd0dpf;쀀\ud835\udd41ǣ߇\0ߌr;쀀\ud835\udca5rcy;䐈kcy;䐄΀HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶߻dil;䄶;䐚r;쀀\ud835\udd0epf;쀀\ud835\udd42cr;쀀\ud835\udca6րJTaceflmostࠥࠩࠬࡐࡣ঳সে্਷ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗ࡜ࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४Ānrࢃ࢏gleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀\ud835\udd0fĀ;eঽা拘ftarrow;懚idot;䄿ƀnpw৔ਖਛgȀLRlr৞৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀\ud835\udd43erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼੝੠੷੼અઋ઎p;椅y;䐜Ādl੥੯iumSpace;恟lintrf;愳r;쀀\ud835\udd10nusPlus;戓pf;쀀\ud835\udd44cò੶;䎜ҀJacefostuણધભીଔଙඑ඗ඞcy;䐊cute;䅃ƀaey઴હાron;䅇dil;䅅;䐝ƀgswે૰଎ativeƀMTV૓૟૨ediumSpace;怋hiĀcn૦૘ë૙eryThiî૙tedĀGL૸ଆreaterGreateòٳessLesóੈLine;䀊r;쀀\ud835\udd11ȀBnptଢନଷ଺reak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪୼஡௫ఄ౞಄ದ೘ൡඅ櫬Āou୛୤ngruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊ஛ement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater΀;EFGLSTஶஷ஽௉௓௘௥扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲௽ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ೒拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨೹setĀ;E೰ೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀\ud835\udca9ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂ෉෕ෛ෠෧෼ขภยา฿ไlig;䅒cute耻Ó䃓Āiy෎ීrc耻Ô䃔;䐞blac;䅐r;쀀\ud835\udd12rave耻Ò䃒ƀaei෮ෲ෶cr;䅌ga;䎩cron;䎟pf;쀀\ud835\udd46enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀\ud835\udcaaash耻Ø䃘iŬื฼de耻Õ䃕es;樷ml耻Ö䃖erĀBP๋๠Āar๐๓r;怾acĀek๚๜;揞et;掴arenthesis;揜Ҁacfhilors๿ງຊຏຒດຝະ໼rtialD;戂y;䐟r;쀀\ud835\udd13i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ໠໤檻cedesȀ;EST່້໏໚扺qual;檯lantEqual;扼ilde;找me;怳Ādp໩໮uct;戏ortionĀ;aȥ໹l;戝Āci༁༆r;쀀\ud835\udcab;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀\ud835\udd14pf;愚cr;쀀\ud835\udcac؀BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁࿫࿳ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL࿜࿝࿡憒ar;懥eftArrow;懄eiling;按oǵ࿹\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀\ud835\udd16ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»࿝pArrow;憑gma;䎣allCircle;战pf;쀀\ud835\udd4aɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀\ud835\udcaear;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄ቉ቕ቞ቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHc቎ቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀\ud835\udd17Āeiቻ኉Dzኀ\0ኇefore;戴a;䎘Ācn኎ኘkSpace;쀀  Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀\ud835\udd4bipleDot;惛Āctዖዛr;쀀\ud835\udcafrok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0᏿ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0጖y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀\ud835\udd18rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻፿on;䅲f;쀀\ud835\udd4cЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀\ud835\udcb0ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀\ud835\udd19pf;쀀\ud835\udd4dcr;쀀\ud835\udcb1dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀\ud835\udd1apf;쀀\ud835\udd4ecr;쀀\ud835\udcb2Ȁfiosᓋᓐᓒᓘr;쀀\ud835\udd1b;䎞pf;쀀\ud835\udd4fcr;쀀\ud835\udcb3ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀\ud835\udd1cpf;쀀\ud835\udd50cr;쀀\ud835\udcb4ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtè૙a;䎖r;愨pf;愤cr;쀀\ud835\udcb5௡ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀\ud835\udd1erave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚΀;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀\ud835\udd52΀;Eaeiop዁ᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;e዁ᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀\ud835\udcb6;䀪mpĀ;e዁ᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰ᜼ᝃᝈ᝸᝽០៦ᠹᡐᜍ᤽᥈ᥰot;櫭Ācrᛶ᜞kȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e᜚᜛戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;t፜᜷brk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓ᝛ᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯ᝱ᝳ;䎲;愶een;扬r;쀀\ud835\udd1fg΀costuvwឍឝឳេ៕៛៞ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀako៭ᠦᠵĀcn៲ᠣkƀlst៺֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘᠝斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀\ud835\udd53Ā;tᏋᡣom»Ꮜtie;拈؀DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬ᣿ᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教΀;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ᣷᣹᣻᣽;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ᤟;敛;敘;攘;攔΀;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģ᥂bar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀\ud835\udcb7mi;恏mĀ;e᜚᜜lƀ;bhᥨᥩᥫ䁜;槅sub;柈Ŭᥴ᥾lĀ;e᥹᥺怢t»᥺pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭍᭒\0᯽\0ᰌƀcpr᦭ᦲ᧝ute;䄇̀;abcdsᦿᧀᧄ᧊᧕᧙戩nd;橄rcup;橉Āau᧏᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀\ud835\udd20ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r΀;Ecefms᩟᩠ᩢᩫ᪤᪪᪮旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖᪚᪟»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇᫔᫺\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ᫙\0\0᫢aĀ;t᫞᫟䀬;䁀ƀ;fl᫨᫩᫫戁îᅠeĀmx᫱᫶ent»᫩eóɍǧ᫾\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀\ud835\udd54oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀\ud835\udcb8Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯΀delprvw᭠᭬᭷ᮂᮬᯔ᯹arrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;p᭿ᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰸᰻᰿ᱝᱩᱵᲊᲞᲬᲷ᳻᳿ᴍᵻᶑᶫᶻ᷆᷍rò΁ar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀\ud835\udd21arĀlrᲳᲵ»ࣜ»သʀaegsv᳂͸᳖᳜᳠mƀ;oș᳊᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀\ud835\udd55ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀\ud835\udcb9;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄ὎὚ĀDoḆᴴoôᲉĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀\ud835\udd22ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀\ud835\udd56ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»Ṻƀaeiἒ἖Ἒls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀\ud835\udd23lig;耀filig;쀀fjƀaltῙ῜ῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀\ud835\udd57ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao‌⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧‪‬\0‮耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀\ud835\udcbbࢀEabcdefgijlnorstv₂₉₟₥₰₴⃰⃵⃺⃿℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕ₝ute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽⃉ƀ;qsؾٌ⃄lanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀\ud835\udd24Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀\ud835\udd58Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqr׮ⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0↎proø₞r;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀\ud835\udd25sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀\ud835\udd59bar;怕ƀclt≯≴≸r;쀀\ud835\udcbdasè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀\ud835\udd26rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀\ud835\udd5aa;䎹uest耻¿䂿Āci⎊⎏r;쀀\ud835\udcbenʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀\ud835\udd27ath;䈷pf;쀀\ud835\udd5bǣ⏬\0⏱r;쀀\ud835\udcbfrcy;䑘kcy;䑔Ѐacfghjos␋␖␢␧␭␱␵␻ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀\ud835\udd28reen;䄸cy;䑅cy;䑜pf;쀀\ud835\udd5ccr;쀀\ud835\udcc0஀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼rò৆òΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonó྘quigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀\ud835\udd29Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀\ud835\udd5dus;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d྘➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀\ud835\udcc1mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ᠛旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀\ud835\udd2ao;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀\ud835\udd5eĀct⣸⣽r;쀀\ud835\udcc2pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐௏쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop඄⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roø඄urĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓΀;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨í஘istĀ;s஠டr;쀀\ud835\udd2bȀEest௅⩦⩹⩼ƀ;qs஼⩭௡ƀ;qs஼௅⩴lanô௢ií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚΀AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs఻⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs఻⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀\ud835\udd5f膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast୻⭕⭚⭟lleì୻l;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖ΀chimpqu⮽⯍⯙⬄୸⯤⯯Ȁ;cerല⯆ഷ⯉uå൅;쀀\ud835\udcc3ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭å೸åഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñ೗Ā;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰⳴ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥ⵲ⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;c᪞ⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācr⵩⵭ir;榿;쀀\ud835\udd2cͯ⵹\0\0⵼\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕ⶘ⶥⶨrò᪀Āir⶝ⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀\ud835\udd60ƀaelⷔ⷗ǒr;榷rp;榹΀;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ⹞\0⹽\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ⹧⹲຅脀¶;l⹭⹮䂶leìЃɩ⹸\0\0⹻m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀\ud835\udd2dƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳⻴ᤈ⻹⻽⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀\ud835\udd61nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp໬⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t໻⾴ï໻rel;抰Āci⿀⿅r;쀀\ud835\udcc5;䏈ncsp;怈̀fiopsu⿚⋢⿟⿥⿫⿱r;쀀\ud835\udd2epf;쀀\ud835\udd62rime;恗cr;쀀\ud835\udcc6ƀaeo⿸〉〓tĀei⿾々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔઀ABHabcdefhilmnoprstux぀けさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤΀cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstw࿜ガクシスゼゾダッデナp;極Ā;f࿠ゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes㄂㄄;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ì࿲âヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀\ud835\udd2fĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘㇤㇮rrowĀ;t࿜ㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowó࿪arpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓rò࿪aòՑ;怏oustĀ;a㈞㈟掱che»㈟mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀\ud835\udd63us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀\ud835\udcc7Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦΀Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼਴t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀\ud835\udd30Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì⹯耻­䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;q኱ኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀\ud835\udd64aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀\ud835\udcc8tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫ਩war;椪lig耻ß䃟௡㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rë๟ƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀\ud835\udd31Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproø዁im»ኬsðኞĀas㚺㚮ð዁rn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀\ud835\udd65rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈ΀adempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀\ud835\udcc9;䑆cy;䑛rok;䅧Āio㞋㞎xô᝷headĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀\ud835\udd32rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀\ud835\udd66̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀\ud835\udccaƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜΀eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀\ud835\udd33tré㦮suĀbp㧯㧱»ജ»൙pf;쀀\ud835\udd67roð໻tré㦴Ācu㨆㨋r;쀀\ud835\udccbĀbp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚΀cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀\ud835\udd34pf;쀀\ud835\udd68Ā;eᑹ㩦atèᑹcr;쀀\ud835\udcccૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜ៟tré៑r;쀀\ud835\udd35ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀\ud835\udd69imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀\ud835\udccdĀpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀\ud835\udd36cy;䑗pf;쀀\ud835\udd6acr;쀀\ud835\udcceĀcm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀\ud835\udd37cy;䐶grarr;懝pf;쀀\ud835\udd6bcr;쀀\ud835\udccfĀjn㮅㮇;怍j;怌'.split("").map(function(e){return e.charCodeAt(0)}))}),eW("fdYAD",function(e,t){Object.defineProperty(e.exports,"__esModule",{value:!0}),e.exports.default=new Uint16Array("Ȁaglq \x15\x18\x1bɭ\x0f\0\0\x12p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map(function(e){return e.charCodeAt(0)}))}),eW("7DjOf",function(e,t){Object.defineProperty(e.exports,"__esModule",{value:!0}),e.exports.replaceCodePoint=e.exports.fromCodePoint=void 0;var r,n=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]);function i(e){var t;return e>=55296&&e<=57343||e>1114111?65533:null!==(t=n.get(e))&&void 0!==t?t:e}e.exports.fromCodePoint=null!==(r=String.fromCodePoint)&&void 0!==r?r:function(e){var t="";return e>65535&&(e-=65536,t+=String.fromCharCode(e>>>10&1023|55296),e=56320|1023&e),t+=String.fromCharCode(e)},e.exports.replaceCodePoint=i,e.exports.default=function(t){return(0,e.exports.fromCodePoint)(i(t))}});var eJ=(ez("h7Cmf"),ez("h7Cmf")),eZ=function(){document.querySelectorAll('.item:not([style*="display: none"])').forEach(function(e,t){"none"!==getComputedStyle(e).display?e.setAttribute("tabindex",t):e.removeAttribute("tabindex")})},eQ=function(){getKaiAd({publisher:"4408b6fa-4e1d-438f-af4d-f3be2fa97208",app:"feedolin",slot:"feedolin",test:0,timeout:1e4,h:120,w:240,container:document.getElementById("KaiOSads-Wrapper"),onerror:function(e){return console.error("Error:",e)},onready:function(e){e.on("click",function(){return console.log("click event")}),e.on("close",function(){return console.log("close event")}),e.on("display",function(){eZ()}),e.call("display",{navClass:"item",tabindex:3,display:"block"})}})};window.NodeList&&!NodeList.prototype.forEach&&(NodeList.prototype.forEach=Array.prototype.forEach);var eX=function(e,t){try{var r=navigator.getDeviceStorage("sdcard").enumerate();r.onsuccess=function(){if(this.result||console.log("finished"),null!==r.result.name){var n=r.result,i=n.name.split(".");i[i.length-1]==e&&t(n.name),this.continue()}},r.onerror=function(){console.warn("No file found: "+this.error)}}catch(e){console.log(e)}if("b2g"in navigator)try{var n=navigator.b2g.getDeviceStorage("sdcard").enumerate();function i(){return(i=eY(function(){var r,i,o,a,s,u,c,l;return(0,eJ.__generator)(this,function(f){switch(f.label){case 0:r=!1,i=!1,f.label=1;case 1:f.trys.push([1,6,7,12]),a=function(e){var t,r,n,i=2;for("undefined"!=typeof Symbol&&(r=Symbol.asyncIterator,n=Symbol.iterator);i--;){if(r&&null!=(t=e[r]))return t.call(e);if(n&&null!=(t=e[n]))return new eK(t.call(e));r="@@asyncIterator",n="@@iterator"}throw TypeError("Object is not async iterable")}(n),f.label=2;case 2:return[4,a.next()];case 3:if(!(r=!(s=f.sent()).done))return[3,5];(c=(u=s.value).name.split("."))[c.length-1]==e&&t(u.name),f.label=4;case 4:return r=!1,[3,2];case 5:return[3,12];case 6:return l=f.sent(),i=!0,o=l,[3,12];case 7:if(f.trys.push([7,,10,11]),!(r&&null!=a.return))return[3,9];return[4,a.return()];case 8:f.sent(),f.label=9;case 9:return[3,11];case 10:if(i)throw o;return[7];case 11:return[7];case 12:return[2]}})})).apply(this,arguments)}!function(){i.apply(this,arguments)}()}catch(e){console.log(e)}};"b2g"in navigator&&setTimeout(function e(){var t=new lib_session.Session,r={};navigator.volumeManager=null,r.onsessionconnected=function(){lib_audiovolume.AudioVolumeManager.get(t).then(function(e){navigator.volumeManager=e}).catch(function(e){navigator.volumeManager=null})},r.onsessiondisconnected=function(){e()},t.open("websocket","localhost","secrettoken",r,!0)},5e3);var e0=function(){if("b2g"in navigator)try{navigator.volumeManager.requestVolumeShow(),oq.window_status="volume",setTimeout(function(){oq.window_status=""},2e3)}catch(e){}},e1=function(e,t){window.Notification.requestPermission().then(function(r){var n=new window.Notification(e,{body:t});"denied"===Notification.permission?console.error("Notification permission is denied"):"default"===Notification.permission&&Notification.requestPermission().then(function(e){}),n.onerror=function(e){console.log(e)},n.onclick=function(e){if(window.navigator.mozApps){var t=window.navigator.mozApps.getSelf();t.onsuccess=function(){t.result&&(n.close(),t.result.launch())}}else window.open(document.location.origin,"_blank")},n.onshow=function(){}})};navigator.mozSetMessageHandler&&navigator.mozSetMessageHandler("alarm",function(e){e1("Greg",e.data.note)});var e3=function(e){if(navigator.mozApps){var t=navigator.mozApps.getSelf();t.onsuccess=function(){e(t.result)},t.onerror=function(){}}else fetch("/manifest.webmanifest").then(function(e){return e.json()}).then(function(t){return e(t)})},e2=[],e5=[],e8=function(e,t){e5.push({text:e,time:t}),1===e5.length&&e6(e,t)},e6=function(e,t){var r=document.querySelector("div#side-toast");r.style.opacity="100",r.innerHTML=e5[0].text,r.style.transform="translate(0vh, 0vw)",setTimeout(function(){r.style.transform="translate(-100vw,0px)",(e5=e2.slice(1)).length>0&&setTimeout(function(){e6(e,t)},1e3)},t)},e4=function(e,t,r){document.querySelector("div#bottom-bar div.button-left").innerHTML=e,document.querySelector("div#bottom-bar div.button-center").innerHTML=t,document.querySelector("div#bottom-bar div.button-right").innerHTML=r,""==e&&""==t&&""==r?document.querySelector("div#bottom-bar").style.display="none":document.querySelector("div#bottom-bar").style.display="block"},e9=function(e,t,r){document.querySelector("div#top-bar div.button-left").innerHTML=e,document.querySelector("div#top-bar div.button-center").innerHTML=t,document.querySelector("div#top-bar div.button-right").innerHTML=r,""==e&&""==t&&""==r?document.querySelector("div#top-bar").style.display="none":document.querySelector("div#top-bar").style.display="block"},e7=function(e){try{var t=new MozActivity({name:"pick",data:{type:["application/xml"]}});t.onsuccess=function(t){console.log("success"+this.result),e(this.result)},t.onerror=function(){console.log("The activity encounter en error: "+this.error)}}catch(e){console.log(e)}if("b2g"in navigator&&new WebActivity("pick").start().then(function(t){e(t)},function(e){console.log(e)}),oq.notKaiOS){var r=document.createElement("input");r.type="file",r.accept=".opml,application/xml",r.style.display="none",document.body.appendChild(r),r.click(),r.addEventListener("change",function(t){var r=t.target.files[0];r&&e({blob:r,filename:r.name,filetype:r.type})})}},eJ=ez("h7Cmf"),te=(M=eY(function(e,t){var r;return(0,eJ.__generator)(this,function(n){switch(n.label){case 0:return[4,fetch(e+"/api/v1/accounts/verify_credentials",{headers:{Authorization:"Bearer ".concat(t),"Content-Type":"application/json"}})];case 1:return(r=n.sent()).ok||console.log("Network response was not OK"),[4,r.json()];case 2:return[2,n.sent()]}})}),function(e,t){return M.apply(this,arguments)}),tt={},tr=ez("bbrsO");tt=(function e(t,r,n){function i(a,s){if(!r[a]){if(!t[a]){var u=void 0;if(!s&&u)return u(a,!0);if(o)return o(a,!0);var c=Error("Cannot find module '"+a+"'");throw c.code="MODULE_NOT_FOUND",c}var l=r[a]={exports:{}};t[a][0].call(l.exports,function(e){return i(t[a][1][e]||e)},l,l.exports,e,t,r,n)}return r[a].exports}for(var o=void 0,a=0;ae.db.version;if(n&&(e.version!==t&&console.warn('The database "'+e.name+"\" can't be downgraded from version "+e.db.version+" to version "+e.version+"."),e.version=e.db.version),i||r){if(r){var o=e.db.version+1;o>e.version&&(e.version=o)}return!0}return!1}function E(e){return o([function(e){for(var t=e.length,r=new ArrayBuffer(t),n=new Uint8Array(r),i=0;i0&&(!e.db||"InvalidStateError"===i.name||"NotFoundError"===i.name))return a.resolve().then(function(){if(!e.db||"NotFoundError"===i.name&&!e.db.objectStoreNames.contains(e.storeName)&&e.version<=e.db.version)return e.db&&(e.version=e.db.version+1),w(e,!0)}).then(function(){return(function(e){g(e);for(var t=h[e.name],r=t.forages,n=0;n=43)}}).catch(function(){return!1}).then(function(e){return d=e})).then(function(e){return e?t:new a(function(e,r){var n=new FileReader;n.onerror=r,n.onloadend=function(r){e({__local_forage_encoded_blob:!0,data:btoa(r.target.result||""),type:t.type})},n.readAsBinaryString(t)})}):t}).then(function(t){A(n._dbInfo,v,function(o,a){if(o)return i(o);try{var s=a.objectStore(n._dbInfo.storeName);null===t&&(t=void 0);var u=s.put(t,e);a.oncomplete=function(){void 0===t&&(t=null),r(t)},a.onabort=a.onerror=function(){var e=u.error?u.error:u.transaction.error;i(e)}}catch(e){i(e)}})}).catch(i)});return s(i,r),i},removeItem:function(e,t){var r=this;e=c(e);var n=new a(function(t,n){r.ready().then(function(){A(r._dbInfo,v,function(i,o){if(i)return n(i);try{var a=o.objectStore(r._dbInfo.storeName).delete(e);o.oncomplete=function(){t()},o.onerror=function(){n(a.error)},o.onabort=function(){var e=a.error?a.error:a.transaction.error;n(e)}}catch(e){n(e)}})}).catch(n)});return s(n,t),n},clear:function(e){var t=this,r=new a(function(e,r){t.ready().then(function(){A(t._dbInfo,v,function(n,i){if(n)return r(n);try{var o=i.objectStore(t._dbInfo.storeName).clear();i.oncomplete=function(){e()},i.onabort=i.onerror=function(){var e=o.error?o.error:o.transaction.error;r(e)}}catch(e){r(e)}})}).catch(r)});return s(r,e),r},length:function(e){var t=this,r=new a(function(e,r){t.ready().then(function(){A(t._dbInfo,m,function(n,i){if(n)return r(n);try{var o=i.objectStore(t._dbInfo.storeName).count();o.onsuccess=function(){e(o.result)},o.onerror=function(){r(o.error)}}catch(e){r(e)}})}).catch(r)});return s(r,e),r},key:function(e,t){var r=this,n=new a(function(t,n){if(e<0){t(null);return}r.ready().then(function(){A(r._dbInfo,m,function(i,o){if(i)return n(i);try{var a=o.objectStore(r._dbInfo.storeName),s=!1,u=a.openKeyCursor();u.onsuccess=function(){var r=u.result;if(!r){t(null);return}0===e?t(r.key):s?t(r.key):(s=!0,r.advance(e))},u.onerror=function(){n(u.error)}}catch(e){n(e)}})}).catch(n)});return s(n,t),n},keys:function(e){var t=this,r=new a(function(e,r){t.ready().then(function(){A(t._dbInfo,m,function(n,i){if(n)return r(n);try{var o=i.objectStore(t._dbInfo.storeName).openKeyCursor(),a=[];o.onsuccess=function(){var t=o.result;if(!t){e(a);return}a.push(t.key),t.continue()},o.onerror=function(){r(o.error)}}catch(e){r(e)}})}).catch(r)});return s(r,e),r},dropInstance:function(e,t){t=l.apply(this,arguments);var r,n=this.config();if((e="function"!=typeof e&&e||{}).name||(e.name=e.name||n.name,e.storeName=e.storeName||n.storeName),e.name){var o=e.name===n.name&&this._dbInfo.db?a.resolve(this._dbInfo.db):w(e,!1).then(function(t){var r=h[e.name],n=r.forages;r.db=t;for(var i=0;i>4,l[u++]=(15&n)<<4|i>>2,l[u++]=(3&i)<<6|63&o;return c}function W(e){var t,r=new Uint8Array(e),n="";for(t=0;t>2],n+=N[(3&r[t])<<4|r[t+1]>>4],n+=N[(15&r[t+1])<<2|r[t+2]>>6],n+=N[63&r[t+2]];return r.length%3==2?n=n.substring(0,n.length-1)+"=":r.length%3==1&&(n=n.substring(0,n.length-2)+"=="),n}var G={serialize:function(e,t){var r="";if(e&&(r=H.call(e)),e&&("[object ArrayBuffer]"===r||e.buffer&&"[object ArrayBuffer]"===H.call(e.buffer))){var n,i=_;e instanceof ArrayBuffer?(n=e,i+=P):(n=e.buffer,"[object Int8Array]"===r?i+=D:"[object Uint8Array]"===r?i+=B:"[object Uint8ClampedArray]"===r?i+=R:"[object Int16Array]"===r?i+=M:"[object Uint16Array]"===r?i+=U:"[object Int32Array]"===r?i+=q:"[object Uint32Array]"===r?i+=j:"[object Float32Array]"===r?i+=F:"[object Float64Array]"===r?i+=V:t(Error("Failed to get type for BinaryArray"))),t(i+W(n))}else if("[object Blob]"===r){var o=new FileReader;o.onload=function(){t(_+L+("~~local_forage_type~"+e.type)+"~"+W(this.result))},o.readAsArrayBuffer(e)}else try{t(JSON.stringify(e))}catch(r){console.error("Couldn't convert value into a JSON string: ",e),t(null,r)}},deserialize:function(e){if(e.substring(0,C)!==_)return JSON.parse(e);var t,r=e.substring($),n=e.substring(C,$);if(n===L&&O.test(r)){var i=r.match(O);t=i[1],r=r.substring(i[0].length)}var a=z(r);switch(n){case P:return a;case L:return o([a],{type:t});case D:return new Int8Array(a);case B:return new Uint8Array(a);case R:return new Uint8ClampedArray(a);case M:return new Int16Array(a);case U:return new Uint16Array(a);case q:return new Int32Array(a);case j:return new Uint32Array(a);case F:return new Float32Array(a);case V:return new Float64Array(a);default:throw Error("Unkown type: "+n)}},stringToBuffer:z,bufferToString:W};function Y(e,t,r,n){e.executeSql("CREATE TABLE IF NOT EXISTS "+t.storeName+" (id INTEGER PRIMARY KEY, key unique, value)",[],r,n)}function K(e,t,r,n,i,o){e.executeSql(r,n,i,function(e,a){a.code===a.SYNTAX_ERR?e.executeSql("SELECT name FROM sqlite_master WHERE type='table' AND name = ?",[t.storeName],function(e,s){s.rows.length?o(e,a):Y(e,t,function(){e.executeSql(r,n,i,o)},o)},o):o(e,a)},o)}function J(e,t,r,n){var i=this;e=c(e);var o=new a(function(o,a){i.ready().then(function(){void 0===t&&(t=null);var s=t,u=i._dbInfo;u.serializer.serialize(t,function(t,c){c?a(c):u.db.transaction(function(r){K(r,u,"INSERT OR REPLACE INTO "+u.storeName+" (key, value) VALUES (?, ?)",[e,t],function(){o(s)},function(e,t){a(t)})},function(t){if(t.code===t.QUOTA_ERR){if(n>0){o(J.apply(i,[e,s,r,n-1]));return}a(t)}})})}).catch(a)});return s(o,r),o}var Z={_driver:"webSQLStorage",_initStorage:function(e){var t=this,r={db:null};if(e)for(var n in e)r[n]="string"!=typeof e[n]?e[n].toString():e[n];var i=new a(function(e,n){try{r.db=openDatabase(r.name,String(r.version),r.description,r.size)}catch(e){return n(e)}r.db.transaction(function(i){Y(i,r,function(){t._dbInfo=r,e()},function(e,t){n(t)})},n)});return r.serializer=G,i},_support:"function"==typeof openDatabase,iterate:function(e,t){var r=this,n=new a(function(t,n){r.ready().then(function(){var i=r._dbInfo;i.db.transaction(function(r){K(r,i,"SELECT * FROM "+i.storeName,[],function(r,n){for(var o=n.rows,a=o.length,s=0;s '__WebKitDatabaseInfoTable__'",[],function(t,n){for(var i=[],o=0;o0)?(this._dbInfo=t,t.serializer=G,a.resolve()):a.reject()},_support:function(){try{return"undefined"!=typeof localStorage&&"setItem"in localStorage&&!!localStorage.setItem}catch(e){return!1}}(),iterate:function(e,t){var r=this,n=r.ready().then(function(){for(var t=r._dbInfo,n=t.keyPrefix,i=n.length,o=localStorage.length,a=1,s=0;s=0;r--){var n=localStorage.key(r);0===n.indexOf(e)&&localStorage.removeItem(n)}});return s(r,e),r},length:function(e){var t=this.keys().then(function(e){return e.length});return s(t,e),t},key:function(e,t){var r=this,n=r.ready().then(function(){var t,n=r._dbInfo;try{t=localStorage.key(e)}catch(e){t=null}return t&&(t=t.substring(n.keyPrefix.length)),t});return s(n,t),n},keys:function(e){var t=this,r=t.ready().then(function(){for(var e=t._dbInfo,r=localStorage.length,n=[],i=0;i=0;t--){var r=localStorage.key(t);0===r.indexOf(e)&&localStorage.removeItem(r)}}):a.reject("Invalid arguments"),t),r}},ee=function(e,t){for(var r,n=e.length,i=0;i=ea.ZERO&&e<=ea.NINE}tp.decodeCodePoint=tx.default,Object.defineProperty(tp,"replaceCodePoint",{enumerable:!0,get:function(){return ez("7DjOf").replaceCodePoint}}),Object.defineProperty(tp,"fromCodePoint",{enumerable:!0,get:function(){return ez("7DjOf").fromCodePoint}}),(q=ea||(ea={}))[q.NUM=35]="NUM",q[q.SEMI=59]="SEMI",q[q.EQUALS=61]="EQUALS",q[q.ZERO=48]="ZERO",q[q.NINE=57]="NINE",q[q.LOWER_A=97]="LOWER_A",q[q.LOWER_F=102]="LOWER_F",q[q.LOWER_X=120]="LOWER_X",q[q.LOWER_Z=122]="LOWER_Z",q[q.UPPER_A=65]="UPPER_A",q[q.UPPER_F=70]="UPPER_F",q[q.UPPER_Z=90]="UPPER_Z",(U=es=tp.BinTrieFlags||(tp.BinTrieFlags={}))[U.VALUE_LENGTH=49152]="VALUE_LENGTH",U[U.BRANCH_LENGTH=16256]="BRANCH_LENGTH",U[U.JUMP_TABLE=127]="JUMP_TABLE",(j=eu||(eu={}))[j.EntityStart=0]="EntityStart",j[j.NumericStart=1]="NumericStart",j[j.NumericDecimal=2]="NumericDecimal",j[j.NumericHex=3]="NumericHex",j[j.NamedEntity=4]="NamedEntity",(F=ec=tp.DecodingMode||(tp.DecodingMode={}))[F.Legacy=0]="Legacy",F[F.Strict=1]="Strict",F[F.Attribute=2]="Attribute";var tS=function(){function e(e,t,r){this.decodeTree=e,this.emitCodePoint=t,this.errors=r,this.state=eu.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=ec.Strict}return e.prototype.startEntity=function(e){this.decodeMode=e,this.state=eu.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1},e.prototype.write=function(e,t){switch(this.state){case eu.EntityStart:if(e.charCodeAt(t)===ea.NUM)return this.state=eu.NumericStart,this.consumed+=1,this.stateNumericStart(e,t+1);return this.state=eu.NamedEntity,this.stateNamedEntity(e,t);case eu.NumericStart:return this.stateNumericStart(e,t);case eu.NumericDecimal:return this.stateNumericDecimal(e,t);case eu.NumericHex:return this.stateNumericHex(e,t);case eu.NamedEntity:return this.stateNamedEntity(e,t)}},e.prototype.stateNumericStart=function(e,t){return t>=e.length?-1:(32|e.charCodeAt(t))===ea.LOWER_X?(this.state=eu.NumericHex,this.consumed+=1,this.stateNumericHex(e,t+1)):(this.state=eu.NumericDecimal,this.stateNumericDecimal(e,t))},e.prototype.addToNumericResult=function(e,t,r,n){if(t!==r){var i=r-t;this.result=this.result*Math.pow(n,i)+parseInt(e.substr(t,i),n),this.consumed+=i}},e.prototype.stateNumericHex=function(e,t){for(var r=t;t=ea.UPPER_A)||!(n<=ea.UPPER_F))&&(!(n>=ea.LOWER_A)||!(n<=ea.LOWER_F)))return this.addToNumericResult(e,r,t,16),this.emitNumericEntity(i,3);t+=1}return this.addToNumericResult(e,r,t,16),-1},e.prototype.stateNumericDecimal=function(e,t){for(var r=t;t>14;t=ea.UPPER_A&&t<=ea.UPPER_Z||t>=ea.LOWER_A&&t<=ea.LOWER_Z||tE(t)}(o))?0:this.emitNotTerminatedNamedEntity();if(0!=(i=((n=r[this.treeIndex])&es.VALUE_LENGTH)>>14)){if(o===ea.SEMI)return this.emitNamedEntityData(this.treeIndex,i,this.consumed+this.excess);this.decodeMode!==ec.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return -1},e.prototype.emitNotTerminatedNamedEntity=function(){var e,t=this.result,r=(this.decodeTree[t]&es.VALUE_LENGTH)>>14;return this.emitNamedEntityData(t,r,this.consumed),null===(e=this.errors)||void 0===e||e.missingSemicolonAfterCharacterReference(),this.consumed},e.prototype.emitNamedEntityData=function(e,t,r){var n=this.decodeTree;return this.emitCodePoint(1===t?n[e]&~es.VALUE_LENGTH:n[e+1],r),3===t&&this.emitCodePoint(n[e+2],r),r},e.prototype.end=function(){var e;switch(this.state){case eu.NamedEntity:return 0!==this.result&&(this.decodeMode!==ec.Attribute||this.result===this.treeIndex)?this.emitNotTerminatedNamedEntity():0;case eu.NumericDecimal:return this.emitNumericEntity(0,2);case eu.NumericHex:return this.emitNumericEntity(0,3);case eu.NumericStart:return null===(e=this.errors)||void 0===e||e.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case eu.EntityStart:return 0}},e}();function tk(e){var t="",r=new tS(e,function(e){return t+=(0,tx.fromCodePoint)(e)});return function(e,n){for(var i=0,o=0;(o=e.indexOf("&",o))>=0;){t+=e.slice(i,o),r.startEntity(n);var a=r.write(e,o+1);if(a<0){i=o+r.end();break}i=o+a,o=0===a?i+1:i}var s=t+e.slice(i);return t="",s}}function tA(e,t,r,n){var i=(t&es.BRANCH_LENGTH)>>7,o=t&es.JUMP_TABLE;if(0===i)return 0!==o&&n===o?r:-1;if(o){var a=n-o;return a<0||a>=i?-1:e[r+a]-1}for(var s=r,u=s+i-1;s<=u;){var c=s+u>>>1,l=e[c];if(ln))return e[c+i];u=c-1}}return -1}tp.EntityDecoder=tS,tp.determineBranch=tA;var tI=tk(tb.default),tT=tk(tw.default);function tN(e){return e===el.Space||e===el.NewLine||e===el.Tab||e===el.FormFeed||e===el.CarriageReturn}function tO(e){return e===el.Slash||e===el.Gt||tN(e)}function t_(e){return e>=el.Zero&&e<=el.Nine}tp.decodeHTML=function(e,t){return void 0===t&&(t=ec.Legacy),tI(e,t)},tp.decodeHTMLAttribute=function(e){return tI(e,ec.Attribute)},tp.decodeHTMLStrict=function(e){return tI(e,ec.Strict)},tp.decodeXML=function(e){return tT(e,ec.Strict)},(V=el||(el={}))[V.Tab=9]="Tab",V[V.NewLine=10]="NewLine",V[V.FormFeed=12]="FormFeed",V[V.CarriageReturn=13]="CarriageReturn",V[V.Space=32]="Space",V[V.ExclamationMark=33]="ExclamationMark",V[V.Number=35]="Number",V[V.Amp=38]="Amp",V[V.SingleQuote=39]="SingleQuote",V[V.DoubleQuote=34]="DoubleQuote",V[V.Dash=45]="Dash",V[V.Slash=47]="Slash",V[V.Zero=48]="Zero",V[V.Nine=57]="Nine",V[V.Semi=59]="Semi",V[V.Lt=60]="Lt",V[V.Eq=61]="Eq",V[V.Gt=62]="Gt",V[V.Questionmark=63]="Questionmark",V[V.UpperA=65]="UpperA",V[V.LowerA=97]="LowerA",V[V.UpperF=70]="UpperF",V[V.LowerF=102]="LowerF",V[V.UpperZ=90]="UpperZ",V[V.LowerZ=122]="LowerZ",V[V.LowerX=120]="LowerX",V[V.OpeningSquareBracket=91]="OpeningSquareBracket",($=ef||(ef={}))[$.Text=1]="Text",$[$.BeforeTagName=2]="BeforeTagName",$[$.InTagName=3]="InTagName",$[$.InSelfClosingTag=4]="InSelfClosingTag",$[$.BeforeClosingTagName=5]="BeforeClosingTagName",$[$.InClosingTagName=6]="InClosingTagName",$[$.AfterClosingTagName=7]="AfterClosingTagName",$[$.BeforeAttributeName=8]="BeforeAttributeName",$[$.InAttributeName=9]="InAttributeName",$[$.AfterAttributeName=10]="AfterAttributeName",$[$.BeforeAttributeValue=11]="BeforeAttributeValue",$[$.InAttributeValueDq=12]="InAttributeValueDq",$[$.InAttributeValueSq=13]="InAttributeValueSq",$[$.InAttributeValueNq=14]="InAttributeValueNq",$[$.BeforeDeclaration=15]="BeforeDeclaration",$[$.InDeclaration=16]="InDeclaration",$[$.InProcessingInstruction=17]="InProcessingInstruction",$[$.BeforeComment=18]="BeforeComment",$[$.CDATASequence=19]="CDATASequence",$[$.InSpecialComment=20]="InSpecialComment",$[$.InCommentLike=21]="InCommentLike",$[$.BeforeSpecialS=22]="BeforeSpecialS",$[$.SpecialStartSequence=23]="SpecialStartSequence",$[$.InSpecialTag=24]="InSpecialTag",$[$.BeforeEntity=25]="BeforeEntity",$[$.BeforeNumericEntity=26]="BeforeNumericEntity",$[$.InNamedEntity=27]="InNamedEntity",$[$.InNumericEntity=28]="InNumericEntity",$[$.InHexEntity=29]="InHexEntity",(H=ed||(ed={}))[H.NoValue=0]="NoValue",H[H.Unquoted=1]="Unquoted",H[H.Single=2]="Single",H[H.Double=3]="Double";var tC={Cdata:new Uint8Array([67,68,65,84,65,91]),CdataEnd:new Uint8Array([93,93,62]),CommentEnd:new Uint8Array([45,45,62]),ScriptEnd:new Uint8Array([60,47,115,99,114,105,112,116]),StyleEnd:new Uint8Array([60,47,115,116,121,108,101]),TitleEnd:new Uint8Array([60,47,116,105,116,108,101])},tP=/*#__PURE__*/function(){function e(t,r){var n=t.xmlMode,i=void 0!==n&&n,o=t.decodeEntities;tf(this,e),this.cbs=r,this.state=ef.Text,this.buffer="",this.sectionStart=0,this.index=0,this.baseState=ef.Text,this.isSpecial=!1,this.running=!0,this.offset=0,this.currentSequence=void 0,this.sequenceIndex=0,this.trieIndex=0,this.trieCurrent=0,this.entityResult=0,this.entityExcess=0,this.xmlMode=i,this.decodeEntities=void 0===o||o,this.entityTrie=i?tp.xmlDecodeTree:tp.htmlDecodeTree}return th(e,[{key:"reset",value:function(){this.state=ef.Text,this.buffer="",this.sectionStart=0,this.index=0,this.baseState=ef.Text,this.currentSequence=void 0,this.running=!0,this.offset=0}},{key:"write",value:function(e){this.offset+=this.buffer.length,this.buffer=e,this.parse()}},{key:"end",value:function(){this.running&&this.finish()}},{key:"pause",value:function(){this.running=!1}},{key:"resume",value:function(){this.running=!0,this.indexthis.sectionStart&&this.cbs.ontext(this.sectionStart,this.index),this.state=ef.BeforeTagName,this.sectionStart=this.index):this.decodeEntities&&e===el.Amp&&(this.state=ef.BeforeEntity)}},{key:"stateSpecialStartSequence",value:function(e){var t=this.sequenceIndex===this.currentSequence.length;if(t?tO(e):(32|e)===this.currentSequence[this.sequenceIndex]){if(!t){this.sequenceIndex++;return}}else this.isSpecial=!1;this.sequenceIndex=0,this.state=ef.InTagName,this.stateInTagName(e)}},{key:"stateInSpecialTag",value:function(e){if(this.sequenceIndex===this.currentSequence.length){if(e===el.Gt||tN(e)){var t=this.index-this.currentSequence.length;if(this.sectionStart=el.LowerA&&e<=el.LowerZ||e>=el.UpperA&&e<=el.UpperZ}},{key:"startSpecial",value:function(e,t){this.isSpecial=!0,this.currentSequence=e,this.sequenceIndex=t,this.state=ef.SpecialStartSequence}},{key:"stateBeforeTagName",value:function(e){if(e===el.ExclamationMark)this.state=ef.BeforeDeclaration,this.sectionStart=this.index+1;else if(e===el.Questionmark)this.state=ef.InProcessingInstruction,this.sectionStart=this.index+1;else if(this.isTagStartChar(e)){var t=32|e;this.sectionStart=this.index,this.xmlMode||t!==tC.TitleEnd[2]?this.state=this.xmlMode||t!==tC.ScriptEnd[2]?ef.InTagName:ef.BeforeSpecialS:this.startSpecial(tC.TitleEnd,3)}else e===el.Slash?this.state=ef.BeforeClosingTagName:(this.state=ef.Text,this.stateText(e))}},{key:"stateInTagName",value:function(e){tO(e)&&(this.cbs.onopentagname(this.sectionStart,this.index),this.sectionStart=-1,this.state=ef.BeforeAttributeName,this.stateBeforeAttributeName(e))}},{key:"stateBeforeClosingTagName",value:function(e){tN(e)||(e===el.Gt?this.state=ef.Text:(this.state=this.isTagStartChar(e)?ef.InClosingTagName:ef.InSpecialComment,this.sectionStart=this.index))}},{key:"stateInClosingTagName",value:function(e){(e===el.Gt||tN(e))&&(this.cbs.onclosetag(this.sectionStart,this.index),this.sectionStart=-1,this.state=ef.AfterClosingTagName,this.stateAfterClosingTagName(e))}},{key:"stateAfterClosingTagName",value:function(e){(e===el.Gt||this.fastForwardTo(el.Gt))&&(this.state=ef.Text,this.baseState=ef.Text,this.sectionStart=this.index+1)}},{key:"stateBeforeAttributeName",value:function(e){e===el.Gt?(this.cbs.onopentagend(this.index),this.isSpecial?(this.state=ef.InSpecialTag,this.sequenceIndex=0):this.state=ef.Text,this.baseState=this.state,this.sectionStart=this.index+1):e===el.Slash?this.state=ef.InSelfClosingTag:tN(e)||(this.state=ef.InAttributeName,this.sectionStart=this.index)}},{key:"stateInSelfClosingTag",value:function(e){e===el.Gt?(this.cbs.onselfclosingtag(this.index),this.state=ef.Text,this.baseState=ef.Text,this.sectionStart=this.index+1,this.isSpecial=!1):tN(e)||(this.state=ef.BeforeAttributeName,this.stateBeforeAttributeName(e))}},{key:"stateInAttributeName",value:function(e){(e===el.Eq||tO(e))&&(this.cbs.onattribname(this.sectionStart,this.index),this.sectionStart=-1,this.state=ef.AfterAttributeName,this.stateAfterAttributeName(e))}},{key:"stateAfterAttributeName",value:function(e){e===el.Eq?this.state=ef.BeforeAttributeValue:e===el.Slash||e===el.Gt?(this.cbs.onattribend(ed.NoValue,this.index),this.state=ef.BeforeAttributeName,this.stateBeforeAttributeName(e)):tN(e)||(this.cbs.onattribend(ed.NoValue,this.index),this.state=ef.InAttributeName,this.sectionStart=this.index)}},{key:"stateBeforeAttributeValue",value:function(e){e===el.DoubleQuote?(this.state=ef.InAttributeValueDq,this.sectionStart=this.index+1):e===el.SingleQuote?(this.state=ef.InAttributeValueSq,this.sectionStart=this.index+1):tN(e)||(this.sectionStart=this.index,this.state=ef.InAttributeValueNq,this.stateInAttributeValueNoQuotes(e))}},{key:"handleInAttributeValue",value:function(e,t){e===t||!this.decodeEntities&&this.fastForwardTo(t)?(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(t===el.DoubleQuote?ed.Double:ed.Single,this.index),this.state=ef.BeforeAttributeName):this.decodeEntities&&e===el.Amp&&(this.baseState=this.state,this.state=ef.BeforeEntity)}},{key:"stateInAttributeValueDoubleQuotes",value:function(e){this.handleInAttributeValue(e,el.DoubleQuote)}},{key:"stateInAttributeValueSingleQuotes",value:function(e){this.handleInAttributeValue(e,el.SingleQuote)}},{key:"stateInAttributeValueNoQuotes",value:function(e){tN(e)||e===el.Gt?(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(ed.Unquoted,this.index),this.state=ef.BeforeAttributeName,this.stateBeforeAttributeName(e)):this.decodeEntities&&e===el.Amp&&(this.baseState=this.state,this.state=ef.BeforeEntity)}},{key:"stateBeforeDeclaration",value:function(e){e===el.OpeningSquareBracket?(this.state=ef.CDATASequence,this.sequenceIndex=0):this.state=e===el.Dash?ef.BeforeComment:ef.InDeclaration}},{key:"stateInDeclaration",value:function(e){(e===el.Gt||this.fastForwardTo(el.Gt))&&(this.cbs.ondeclaration(this.sectionStart,this.index),this.state=ef.Text,this.sectionStart=this.index+1)}},{key:"stateInProcessingInstruction",value:function(e){(e===el.Gt||this.fastForwardTo(el.Gt))&&(this.cbs.onprocessinginstruction(this.sectionStart,this.index),this.state=ef.Text,this.sectionStart=this.index+1)}},{key:"stateBeforeComment",value:function(e){e===el.Dash?(this.state=ef.InCommentLike,this.currentSequence=tC.CommentEnd,this.sequenceIndex=2,this.sectionStart=this.index+1):this.state=ef.InDeclaration}},{key:"stateInSpecialComment",value:function(e){(e===el.Gt||this.fastForwardTo(el.Gt))&&(this.cbs.oncomment(this.sectionStart,this.index,0),this.state=ef.Text,this.sectionStart=this.index+1)}},{key:"stateBeforeSpecialS",value:function(e){var t=32|e;t===tC.ScriptEnd[3]?this.startSpecial(tC.ScriptEnd,4):t===tC.StyleEnd[3]?this.startSpecial(tC.StyleEnd,4):(this.state=ef.InTagName,this.stateInTagName(e))}},{key:"stateBeforeEntity",value:function(e){this.entityExcess=1,this.entityResult=0,e===el.Number?this.state=ef.BeforeNumericEntity:e===el.Amp||(this.trieIndex=0,this.trieCurrent=this.entityTrie[0],this.state=ef.InNamedEntity,this.stateInNamedEntity(e))}},{key:"stateInNamedEntity",value:function(e){if(this.entityExcess+=1,this.trieIndex=(0,tp.determineBranch)(this.entityTrie,this.trieCurrent,this.trieIndex+1,e),this.trieIndex<0){this.emitNamedEntity(),this.index--;return}this.trieCurrent=this.entityTrie[this.trieIndex];var t=this.trieCurrent&tp.BinTrieFlags.VALUE_LENGTH;if(t){var r=(t>>14)-1;if(this.allowLegacyEntity()||e===el.Semi){var n=this.index-this.entityExcess+1;n>this.sectionStart&&this.emitPartial(this.sectionStart,n),this.entityResult=this.trieIndex,this.trieIndex+=r,this.entityExcess=0,this.sectionStart=this.index+1,0===r&&this.emitNamedEntity()}else this.trieIndex+=r}}},{key:"emitNamedEntity",value:function(){if(this.state=this.baseState,0!==this.entityResult)switch((this.entityTrie[this.entityResult]&tp.BinTrieFlags.VALUE_LENGTH)>>14){case 1:this.emitCodePoint(this.entityTrie[this.entityResult]&~tp.BinTrieFlags.VALUE_LENGTH);break;case 2:this.emitCodePoint(this.entityTrie[this.entityResult+1]);break;case 3:this.emitCodePoint(this.entityTrie[this.entityResult+1]),this.emitCodePoint(this.entityTrie[this.entityResult+2])}}},{key:"stateBeforeNumericEntity",value:function(e){(32|e)===el.LowerX?(this.entityExcess++,this.state=ef.InHexEntity):(this.state=ef.InNumericEntity,this.stateInNumericEntity(e))}},{key:"emitNumericEntity",value:function(e){var t=this.index-this.entityExcess-1;t+2+Number(this.state===ef.InHexEntity)!==this.index&&(t>this.sectionStart&&this.emitPartial(this.sectionStart,t),this.sectionStart=this.index+Number(e),this.emitCodePoint((0,tp.replaceCodePoint)(this.entityResult))),this.state=this.baseState}},{key:"stateInNumericEntity",value:function(e){e===el.Semi?this.emitNumericEntity(!0):t_(e)?(this.entityResult=10*this.entityResult+(e-el.Zero),this.entityExcess++):(this.allowLegacyEntity()?this.emitNumericEntity(!1):this.state=this.baseState,this.index--)}},{key:"stateInHexEntity",value:function(e){e===el.Semi?this.emitNumericEntity(!0):t_(e)?(this.entityResult=16*this.entityResult+(e-el.Zero),this.entityExcess++):e>=el.UpperA&&e<=el.UpperF||e>=el.LowerA&&e<=el.LowerF?(this.entityResult=16*this.entityResult+((32|e)-el.LowerA+10),this.entityExcess++):(this.allowLegacyEntity()?this.emitNumericEntity(!1):this.state=this.baseState,this.index--)}},{key:"allowLegacyEntity",value:function(){return!this.xmlMode&&(this.baseState===ef.Text||this.baseState===ef.InSpecialTag)}},{key:"cleanup",value:function(){this.running&&this.sectionStart!==this.index&&(this.state===ef.Text||this.state===ef.InSpecialTag&&0===this.sequenceIndex?(this.cbs.ontext(this.sectionStart,this.index),this.sectionStart=this.index):(this.state===ef.InAttributeValueDq||this.state===ef.InAttributeValueSq||this.state===ef.InAttributeValueNq)&&(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=this.index))}},{key:"shouldContinue",value:function(){return this.index1&&void 0!==arguments[1]?arguments[1]:{};tf(this,e),this.options=s,this.startIndex=0,this.endIndex=0,this.openTagStart=0,this.tagname="",this.attribname="",this.attribvalue="",this.attribs=null,this.stack=[],this.foreignContext=[],this.buffers=[],this.bufferOffset=0,this.writeIndex=0,this.ended=!1,this.cbs=null!=t?t:{},this.lowerCaseTagNames=null!==(r=s.lowerCaseTags)&&void 0!==r?r:!s.xmlMode,this.lowerCaseAttributeNames=null!==(n=s.lowerCaseAttributeNames)&&void 0!==n?n:!s.xmlMode,this.tokenizer=new(null!==(i=s.Tokenizer)&&void 0!==i?i:tP)(this.options,this),null===(a=(o=this.cbs).onparserinit)||void 0===a||a.call(o,this)}return th(e,[{key:"ontext",value:function(e,t){var r,n,i=this.getSlice(e,t);this.endIndex=t-1,null===(n=(r=this.cbs).ontext)||void 0===n||n.call(r,i),this.startIndex=t}},{key:"ontextentity",value:function(e){var t,r,n=this.tokenizer.getSectionStart();this.endIndex=n-1,null===(r=(t=this.cbs).ontext)||void 0===r||r.call(t,(0,tp.fromCodePoint)(e)),this.startIndex=n}},{key:"isVoidElement",value:function(e){return!this.options.xmlMode&&tU.has(e)}},{key:"onopentagname",value:function(e,t){this.endIndex=t;var r=this.getSlice(e,t);this.lowerCaseTagNames&&(r=r.toLowerCase()),this.emitOpenTag(r)}},{key:"emitOpenTag",value:function(e){this.openTagStart=this.startIndex,this.tagname=e;var t,r,n,i,o=!this.options.xmlMode&&tq.get(e);if(o)for(;this.stack.length>0&&o.has(this.stack[this.stack.length-1]);){var a=this.stack.pop();null===(r=(t=this.cbs).onclosetag)||void 0===r||r.call(t,a,!0)}!this.isVoidElement(e)&&(this.stack.push(e),tj.has(e)?this.foreignContext.push(!0):tF.has(e)&&this.foreignContext.push(!1)),null===(i=(n=this.cbs).onopentagname)||void 0===i||i.call(n,e),this.cbs.onopentag&&(this.attribs={})}},{key:"endOpenTag",value:function(e){var t,r;this.startIndex=this.openTagStart,this.attribs&&(null===(r=(t=this.cbs).onopentag)||void 0===r||r.call(t,this.tagname,this.attribs,e),this.attribs=null),this.cbs.onclosetag&&this.isVoidElement(this.tagname)&&this.cbs.onclosetag(this.tagname,!0),this.tagname=""}},{key:"onopentagend",value:function(e){this.endIndex=e,this.endOpenTag(!1),this.startIndex=e+1}},{key:"onclosetag",value:function(e,t){this.endIndex=t;var r,n,i,o,a,s,u=this.getSlice(e,t);if(this.lowerCaseTagNames&&(u=u.toLowerCase()),(tj.has(u)||tF.has(u))&&this.foreignContext.pop(),this.isVoidElement(u))this.options.xmlMode||"br"!==u||(null===(n=(r=this.cbs).onopentagname)||void 0===n||n.call(r,"br"),null===(o=(i=this.cbs).onopentag)||void 0===o||o.call(i,"br",{},!0),null===(s=(a=this.cbs).onclosetag)||void 0===s||s.call(a,"br",!1));else{var c=this.stack.lastIndexOf(u);if(-1!==c){if(this.cbs.onclosetag)for(var l=this.stack.length-c;l--;)this.cbs.onclosetag(this.stack.pop(),0!==l);else this.stack.length=c}else this.options.xmlMode||"p"!==u||(this.emitOpenTag("p"),this.closeCurrentTag(!0))}this.startIndex=t+1}},{key:"onselfclosingtag",value:function(e){this.endIndex=e,this.options.xmlMode||this.options.recognizeSelfClosing||this.foreignContext[this.foreignContext.length-1]?(this.closeCurrentTag(!1),this.startIndex=e+1):this.onopentagend(e)}},{key:"closeCurrentTag",value:function(e){var t,r,n=this.tagname;this.endOpenTag(e),this.stack[this.stack.length-1]===n&&(null===(r=(t=this.cbs).onclosetag)||void 0===r||r.call(t,n,!e),this.stack.pop())}},{key:"onattribname",value:function(e,t){this.startIndex=e;var r=this.getSlice(e,t);this.attribname=this.lowerCaseAttributeNames?r.toLowerCase():r}},{key:"onattribdata",value:function(e,t){this.attribvalue+=this.getSlice(e,t)}},{key:"onattribentity",value:function(e){this.attribvalue+=(0,tp.fromCodePoint)(e)}},{key:"onattribend",value:function(e,t){var r,n;this.endIndex=t,null===(n=(r=this.cbs).onattribute)||void 0===n||n.call(r,this.attribname,this.attribvalue,e===ed.Double?'"':e===ed.Single?"'":e===ed.NoValue?void 0:null),this.attribs&&!Object.prototype.hasOwnProperty.call(this.attribs,this.attribname)&&(this.attribs[this.attribname]=this.attribvalue),this.attribvalue=""}},{key:"getInstructionName",value:function(e){var t=e.search(tV),r=t<0?e:e.substr(0,t);return this.lowerCaseTagNames&&(r=r.toLowerCase()),r}},{key:"ondeclaration",value:function(e,t){this.endIndex=t;var r=this.getSlice(e,t);if(this.cbs.onprocessinginstruction){var n=this.getInstructionName(r);this.cbs.onprocessinginstruction("!".concat(n),"!".concat(r))}this.startIndex=t+1}},{key:"onprocessinginstruction",value:function(e,t){this.endIndex=t;var r=this.getSlice(e,t);if(this.cbs.onprocessinginstruction){var n=this.getInstructionName(r);this.cbs.onprocessinginstruction("?".concat(n),"?".concat(r))}this.startIndex=t+1}},{key:"oncomment",value:function(e,t,r){var n,i,o,a;this.endIndex=t,null===(i=(n=this.cbs).oncomment)||void 0===i||i.call(n,this.getSlice(e,t-r)),null===(a=(o=this.cbs).oncommentend)||void 0===a||a.call(o),this.startIndex=t+1}},{key:"oncdata",value:function(e,t,r){this.endIndex=t;var n,i,o,a,s,u,c,l,f,d,h=this.getSlice(e,t-r);this.options.xmlMode||this.options.recognizeCDATA?(null===(i=(n=this.cbs).oncdatastart)||void 0===i||i.call(n),null===(a=(o=this.cbs).ontext)||void 0===a||a.call(o,h),null===(u=(s=this.cbs).oncdataend)||void 0===u||u.call(s)):(null===(l=(c=this.cbs).oncomment)||void 0===l||l.call(c,"[CDATA[".concat(h,"]]")),null===(d=(f=this.cbs).oncommentend)||void 0===d||d.call(f)),this.startIndex=t+1}},{key:"onend",value:function(){var e,t;if(this.cbs.onclosetag){this.endIndex=this.startIndex;for(var r=this.stack.length;r>0;this.cbs.onclosetag(this.stack[--r],!0));}null===(t=(e=this.cbs).onend)||void 0===t||t.call(e)}},{key:"reset",value:function(){var e,t,r,n;null===(t=(e=this.cbs).onreset)||void 0===t||t.call(e),this.tokenizer.reset(),this.tagname="",this.attribname="",this.attribs=null,this.stack.length=0,this.startIndex=0,this.endIndex=0,null===(n=(r=this.cbs).onparserinit)||void 0===n||n.call(r,this),this.buffers.length=0,this.bufferOffset=0,this.writeIndex=0,this.ended=!1}},{key:"parseComplete",value:function(e){this.reset(),this.end(e)}},{key:"getSlice",value:function(e,t){for(;e-this.bufferOffset>=this.buffers[0].length;)this.shiftBuffer();for(var r=this.buffers[0].slice(e-this.bufferOffset,t-this.bufferOffset);t-this.bufferOffset>this.buffers[0].length;)this.shiftBuffer(),r+=this.buffers[0].slice(0,t-this.bufferOffset);return r}},{key:"shiftBuffer",value:function(){this.bufferOffset+=this.buffers[0].length,this.writeIndex--,this.buffers.shift()}},{key:"write",value:function(e){var t,r;if(this.ended){null===(r=(t=this.cbs).onerror)||void 0===r||r.call(t,Error(".write() after done!"));return}this.buffers.push(e),this.tokenizer.running&&(this.tokenizer.write(e),this.writeIndex++)}},{key:"end",value:function(e){var t,r;if(this.ended){null===(r=(t=this.cbs).onerror)||void 0===r||r.call(t,Error(".end() after done!"));return}e&&this.write(e),this.ended=!0,this.tokenizer.end()}},{key:"pause",value:function(){this.tokenizer.pause()}},{key:"resume",value:function(){for(this.tokenizer.resume();this.tokenizer.running&&this.writeIndex0&&void 0!==arguments[0]&&arguments[0];return t7(this,e)}}]),e}(),t1=/*#__PURE__*/function(e){tz(r,e);var t=tX(r);function r(e){var n;return tf(this,r),(n=t.call(this)).data=e,n}return th(r,[{key:"nodeValue",get:function(){return this.data},set:function(e){this.data=e}}]),r}(tZ(t0)),t3=/*#__PURE__*/function(e){tz(r,e);var t=tX(r);function r(){var e;return tf(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=eh.Text,e}return th(r,[{key:"nodeType",get:function(){return 3}}]),r}(t1),t2=/*#__PURE__*/function(e){tz(r,e);var t=tX(r);function r(){var e;return tf(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=eh.Comment,e}return th(r,[{key:"nodeType",get:function(){return 8}}]),r}(t1),t5=/*#__PURE__*/function(e){tz(r,e);var t=tX(r);function r(e,n){var i;return tf(this,r),(i=t.call(this,n)).name=e,i.type=eh.Directive,i}return th(r,[{key:"nodeType",get:function(){return 1}}]),r}(t1),t8=/*#__PURE__*/function(e){tz(r,e);var t=tX(r);function r(e){var n;return tf(this,r),(n=t.call(this)).children=e,n}return th(r,[{key:"firstChild",get:function(){var e;return null!==(e=this.children[0])&&void 0!==e?e:null}},{key:"lastChild",get:function(){return this.children.length>0?this.children[this.children.length-1]:null}},{key:"childNodes",get:function(){return this.children},set:function(e){this.children=e}}]),r}(tZ(t0)),t6=/*#__PURE__*/function(e){tz(r,e);var t=tX(r);function r(){var e;return tf(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=eh.CDATA,e}return th(r,[{key:"nodeType",get:function(){return 4}}]),r}(t8),t4=/*#__PURE__*/function(e){tz(r,e);var t=tX(r);function r(){var e;return tf(this,r),e=t.call.apply(t,[this].concat(Array.prototype.slice.call(arguments))),e.type=eh.Root,e}return th(r,[{key:"nodeType",get:function(){return 9}}]),r}(t8),t9=/*#__PURE__*/function(e){tz(r,e);var t=tX(r);function r(e,n){var i,o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[],a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"script"===e?eh.Script:"style"===e?eh.Style:eh.Tag;return tf(this,r),(i=t.call(this,o)).name=e,i.attribs=n,i.type=a,i}return th(r,[{key:"nodeType",get:function(){return 1}},{key:"tagName",get:function(){return this.name},set:function(e){this.name=e}},{key:"attributes",get:function(){var e=this;return Object.keys(this.attribs).map(function(t){var r,n;return{name:t,value:e.attribs[t],namespace:null===(r=e["x-attribsNamespace"])||void 0===r?void 0:r[t],prefix:null===(n=e["x-attribsPrefix"])||void 0===n?void 0:n[t]}})}}]),r}(t8);function t7(e){var t,r=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(e.type===eh.Text)t=new t3(e.data);else if(e.type===eh.Comment)t=new t2(e.data);else if(e.type===eh.Tag||e.type===eh.Script||e.type===eh.Style){var n=r?re(e.children):[],i=new t9(e.name,tG({},e.attribs),n);n.forEach(function(e){return e.parent=i}),null!=e.namespace&&(i.namespace=e.namespace),e["x-attribsNamespace"]&&(i["x-attribsNamespace"]=tG({},e["x-attribsNamespace"])),e["x-attribsPrefix"]&&(i["x-attribsPrefix"]=tG({},e["x-attribsPrefix"])),t=i}else if(e.type===eh.CDATA){var o=r?re(e.children):[],a=new t6(o);o.forEach(function(e){return e.parent=a}),t=a}else if(e.type===eh.Root){var s=r?re(e.children):[],u=new t4(s);s.forEach(function(e){return e.parent=u}),e["x-mode"]&&(u["x-mode"]=e["x-mode"]),t=u}else if(e.type===eh.Directive){var c=new t5(e.name,e.data);null!=e["x-name"]&&(c["x-name"]=e["x-name"],c["x-publicId"]=e["x-publicId"],c["x-systemId"]=e["x-systemId"]),t=c}else throw Error("Not implemented yet: ".concat(e.type));return t.startIndex=e.startIndex,t.endIndex=e.endIndex,null!=e.sourceCodeLocation&&(t.sourceCodeLocation=e.sourceCodeLocation),t}function re(e){for(var t=e.map(function(e){return t7(e,!0)}),r=1;r䀾mmaĀ;d׷׸䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀\ud835\udd0a;拙pf;쀀\ud835\udd3eeater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀\ud835\udca2;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇܎ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀\ud835\udd40a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ޷޼߂ߐĀiyޱ޵rc;䄴;䐙r;쀀\ud835\udd0dpf;쀀\ud835\udd41ǣ߇\0ߌr;쀀\ud835\udca5rcy;䐈kcy;䐄΀HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶߻dil;䄶;䐚r;쀀\ud835\udd0epf;쀀\ud835\udd42cr;쀀\ud835\udca6րJTaceflmostࠥࠩࠬࡐࡣ঳সে্਷ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗ࡜ࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४Ānrࢃ࢏gleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀\ud835\udd0fĀ;eঽা拘ftarrow;懚idot;䄿ƀnpw৔ਖਛgȀLRlr৞৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀\ud835\udd43erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼੝੠੷੼અઋ઎p;椅y;䐜Ādl੥੯iumSpace;恟lintrf;愳r;쀀\ud835\udd10nusPlus;戓pf;쀀\ud835\udd44cò੶;䎜ҀJacefostuણધભીଔଙඑ඗ඞcy;䐊cute;䅃ƀaey઴હાron;䅇dil;䅅;䐝ƀgswે૰଎ativeƀMTV૓૟૨ediumSpace;怋hiĀcn૦૘ë૙eryThiî૙tedĀGL૸ଆreaterGreateòٳessLesóੈLine;䀊r;쀀\ud835\udd11ȀBnptଢନଷ଺reak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪୼஡௫ఄ౞಄ದ೘ൡඅ櫬Āou୛୤ngruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊ஛ement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater΀;EFGLSTஶஷ஽௉௓௘௥扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲௽ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ೒拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨೹setĀ;E೰ೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀\ud835\udca9ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂ෉෕ෛ෠෧෼ขภยา฿ไlig;䅒cute耻Ó䃓Āiy෎ීrc耻Ô䃔;䐞blac;䅐r;쀀\ud835\udd12rave耻Ò䃒ƀaei෮ෲ෶cr;䅌ga;䎩cron;䎟pf;쀀\ud835\udd46enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀\ud835\udcaaash耻Ø䃘iŬื฼de耻Õ䃕es;樷ml耻Ö䃖erĀBP๋๠Āar๐๓r;怾acĀek๚๜;揞et;掴arenthesis;揜Ҁacfhilors๿ງຊຏຒດຝະ໼rtialD;戂y;䐟r;쀀\ud835\udd13i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ໠໤檻cedesȀ;EST່້໏໚扺qual;檯lantEqual;扼ilde;找me;怳Ādp໩໮uct;戏ortionĀ;aȥ໹l;戝Āci༁༆r;쀀\ud835\udcab;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀\ud835\udd14pf;愚cr;쀀\ud835\udcac؀BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁࿫࿳ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL࿜࿝࿡憒ar;懥eftArrow;懄eiling;按oǵ࿹\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀\ud835\udd16ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»࿝pArrow;憑gma;䎣allCircle;战pf;쀀\ud835\udd4aɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀\ud835\udcaear;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄ቉ቕ቞ቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHc቎ቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀\ud835\udd17Āeiቻ኉Dzኀ\0ኇefore;戴a;䎘Ācn኎ኘkSpace;쀀  Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀\ud835\udd4bipleDot;惛Āctዖዛr;쀀\ud835\udcafrok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0᏿ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0጖y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀\ud835\udd18rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻፿on;䅲f;쀀\ud835\udd4cЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀\ud835\udcb0ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀\ud835\udd19pf;쀀\ud835\udd4dcr;쀀\ud835\udcb1dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀\ud835\udd1apf;쀀\ud835\udd4ecr;쀀\ud835\udcb2Ȁfiosᓋᓐᓒᓘr;쀀\ud835\udd1b;䎞pf;쀀\ud835\udd4fcr;쀀\ud835\udcb3ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀\ud835\udd1cpf;쀀\ud835\udd50cr;쀀\ud835\udcb4ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtè૙a;䎖r;愨pf;愤cr;쀀\ud835\udcb5௡ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀\ud835\udd1erave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚΀;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀\ud835\udd52΀;Eaeiop዁ᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;e዁ᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀\ud835\udcb6;䀪mpĀ;e዁ᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰ᜼ᝃᝈ᝸᝽០៦ᠹᡐᜍ᤽᥈ᥰot;櫭Ācrᛶ᜞kȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e᜚᜛戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;t፜᜷brk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓ᝛ᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯ᝱ᝳ;䎲;愶een;扬r;쀀\ud835\udd1fg΀costuvwឍឝឳេ៕៛៞ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀako៭ᠦᠵĀcn៲ᠣkƀlst៺֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘᠝斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀\ud835\udd53Ā;tᏋᡣom»Ꮜtie;拈؀DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬ᣿ᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教΀;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ᣷᣹᣻᣽;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ᤟;敛;敘;攘;攔΀;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģ᥂bar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀\ud835\udcb7mi;恏mĀ;e᜚᜜lƀ;bhᥨᥩᥫ䁜;槅sub;柈Ŭᥴ᥾lĀ;e᥹᥺怢t»᥺pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭍᭒\0᯽\0ᰌƀcpr᦭ᦲ᧝ute;䄇̀;abcdsᦿᧀᧄ᧊᧕᧙戩nd;橄rcup;橉Āau᧏᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀\ud835\udd20ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r΀;Ecefms᩟᩠ᩢᩫ᪤᪪᪮旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖᪚᪟»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇᫔᫺\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ᫙\0\0᫢aĀ;t᫞᫟䀬;䁀ƀ;fl᫨᫩᫫戁îᅠeĀmx᫱᫶ent»᫩eóɍǧ᫾\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀\ud835\udd54oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀\ud835\udcb8Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯΀delprvw᭠᭬᭷ᮂᮬᯔ᯹arrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;p᭿ᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰸᰻᰿ᱝᱩᱵᲊᲞᲬᲷ᳻᳿ᴍᵻᶑᶫᶻ᷆᷍rò΁ar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀\ud835\udd21arĀlrᲳᲵ»ࣜ»သʀaegsv᳂͸᳖᳜᳠mƀ;oș᳊᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀\ud835\udd55ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀\ud835\udcb9;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄ὎὚ĀDoḆᴴoôᲉĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀\ud835\udd22ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀\ud835\udd56ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»Ṻƀaeiἒ἖Ἒls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀\ud835\udd23lig;耀filig;쀀fjƀaltῙ῜ῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀\ud835\udd57ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao‌⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧‪‬\0‮耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀\ud835\udcbbࢀEabcdefgijlnorstv₂₉₟₥₰₴⃰⃵⃺⃿℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕ₝ute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽⃉ƀ;qsؾٌ⃄lanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀\ud835\udd24Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀\ud835\udd58Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqr׮ⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0↎proø₞r;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀\ud835\udd25sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀\ud835\udd59bar;怕ƀclt≯≴≸r;쀀\ud835\udcbdasè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀\ud835\udd26rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀\ud835\udd5aa;䎹uest耻¿䂿Āci⎊⎏r;쀀\ud835\udcbenʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀\ud835\udd27ath;䈷pf;쀀\ud835\udd5bǣ⏬\0⏱r;쀀\ud835\udcbfrcy;䑘kcy;䑔Ѐacfghjos␋␖␢␧␭␱␵␻ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀\ud835\udd28reen;䄸cy;䑅cy;䑜pf;쀀\ud835\udd5ccr;쀀\ud835\udcc0஀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼rò৆òΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonó྘quigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀\ud835\udd29Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀\ud835\udd5dus;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d྘➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀\ud835\udcc1mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ᠛旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀\ud835\udd2ao;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀\ud835\udd5eĀct⣸⣽r;쀀\ud835\udcc2pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐௏쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop඄⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roø඄urĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓΀;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨í஘istĀ;s஠டr;쀀\ud835\udd2bȀEest௅⩦⩹⩼ƀ;qs஼⩭௡ƀ;qs஼௅⩴lanô௢ií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚΀AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs఻⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs఻⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀\ud835\udd5f膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast୻⭕⭚⭟lleì୻l;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖ΀chimpqu⮽⯍⯙⬄୸⯤⯯Ȁ;cerല⯆ഷ⯉uå൅;쀀\ud835\udcc3ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭å೸åഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñ೗Ā;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰⳴ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥ⵲ⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;c᪞ⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācr⵩⵭ir;榿;쀀\ud835\udd2cͯ⵹\0\0⵼\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕ⶘ⶥⶨrò᪀Āir⶝ⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀\ud835\udd60ƀaelⷔ⷗ǒr;榷rp;榹΀;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ⹞\0⹽\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ⹧⹲຅脀¶;l⹭⹮䂶leìЃɩ⹸\0\0⹻m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀\ud835\udd2dƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳⻴ᤈ⻹⻽⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀\ud835\udd61nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp໬⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t໻⾴ï໻rel;抰Āci⿀⿅r;쀀\ud835\udcc5;䏈ncsp;怈̀fiopsu⿚⋢⿟⿥⿫⿱r;쀀\ud835\udd2epf;쀀\ud835\udd62rime;恗cr;쀀\ud835\udcc6ƀaeo⿸〉〓tĀei⿾々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔઀ABHabcdefhilmnoprstux぀けさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤΀cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstw࿜ガクシスゼゾダッデナp;極Ā;f࿠ゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes㄂㄄;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ì࿲âヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀\ud835\udd2fĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘㇤㇮rrowĀ;t࿜ㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowó࿪arpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓rò࿪aòՑ;怏oustĀ;a㈞㈟掱che»㈟mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀\ud835\udd63us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀\ud835\udcc7Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦΀Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼਴t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀\ud835\udd30Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì⹯耻­䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;q኱ኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀\ud835\udd64aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀\ud835\udcc8tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫ਩war;椪lig耻ß䃟௡㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rë๟ƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀\ud835\udd31Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproø዁im»ኬsðኞĀas㚺㚮ð዁rn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀\ud835\udd65rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈ΀adempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀\ud835\udcc9;䑆cy;䑛rok;䅧Āio㞋㞎xô᝷headĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀\ud835\udd32rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀\ud835\udd66̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀\ud835\udccaƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜΀eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀\ud835\udd33tré㦮suĀbp㧯㧱»ജ»൙pf;쀀\ud835\udd67roð໻tré㦴Ācu㨆㨋r;쀀\ud835\udccbĀbp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚΀cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀\ud835\udd34pf;쀀\ud835\udd68Ā;eᑹ㩦atèᑹcr;쀀\ud835\udcccૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜ៟tré៑r;쀀\ud835\udd35ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀\ud835\udd69imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀\ud835\udccdĀpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀\ud835\udd36cy;䑗pf;쀀\ud835\udd6acr;쀀\ud835\udcceĀcm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀\ud835\udd37cy;䐶grarr;懝pf;쀀\ud835\udd6bcr;쀀\ud835\udccfĀjn㮅㮇;怍j;怌'.split("").map(function(e){return e.charCodeAt(0)})),rn=new Uint16Array("Ȁaglq \x15\x18\x1bɭ\x0f\0\0\x12p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map(function(e){return e.charCodeAt(0)})),ri=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]),ro=null!==(ep=String.fromCodePoint)&&void 0!==ep?ep:function(e){var t="";return e>65535&&(e-=65536,t+=String.fromCharCode(e>>>10&1023|55296),e=56320|1023&e),t+=String.fromCharCode(e)};function ra(e){return e>=em.ZERO&&e<=em.NINE}(W=em||(em={}))[W.NUM=35]="NUM",W[W.SEMI=59]="SEMI",W[W.EQUALS=61]="EQUALS",W[W.ZERO=48]="ZERO",W[W.NINE=57]="NINE",W[W.LOWER_A=97]="LOWER_A",W[W.LOWER_F=102]="LOWER_F",W[W.LOWER_X=120]="LOWER_X",W[W.LOWER_Z=122]="LOWER_Z",W[W.UPPER_A=65]="UPPER_A",W[W.UPPER_F=70]="UPPER_F",W[W.UPPER_Z=90]="UPPER_Z",(G=ev||(ev={}))[G.VALUE_LENGTH=49152]="VALUE_LENGTH",G[G.BRANCH_LENGTH=16256]="BRANCH_LENGTH",G[G.JUMP_TABLE=127]="JUMP_TABLE",(Y=eg||(eg={}))[Y.EntityStart=0]="EntityStart",Y[Y.NumericStart=1]="NumericStart",Y[Y.NumericDecimal=2]="NumericDecimal",Y[Y.NumericHex=3]="NumericHex",Y[Y.NamedEntity=4]="NamedEntity",(K=ey||(ey={}))[K.Legacy=0]="Legacy",K[K.Strict=1]="Strict",K[K.Attribute=2]="Attribute";var rs=/*#__PURE__*/function(){function e(t,r,n){tf(this,e),this.decodeTree=t,this.emitCodePoint=r,this.errors=n,this.state=eg.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=ey.Strict}return th(e,[{key:"startEntity",value:function(e){this.decodeMode=e,this.state=eg.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1}},{key:"write",value:function(e,t){switch(this.state){case eg.EntityStart:if(e.charCodeAt(t)===em.NUM)return this.state=eg.NumericStart,this.consumed+=1,this.stateNumericStart(e,t+1);return this.state=eg.NamedEntity,this.stateNamedEntity(e,t);case eg.NumericStart:return this.stateNumericStart(e,t);case eg.NumericDecimal:return this.stateNumericDecimal(e,t);case eg.NumericHex:return this.stateNumericHex(e,t);case eg.NamedEntity:return this.stateNamedEntity(e,t)}}},{key:"stateNumericStart",value:function(e,t){return t>=e.length?-1:(32|e.charCodeAt(t))===em.LOWER_X?(this.state=eg.NumericHex,this.consumed+=1,this.stateNumericHex(e,t+1)):(this.state=eg.NumericDecimal,this.stateNumericDecimal(e,t))}},{key:"addToNumericResult",value:function(e,t,r,n){if(t!==r){var i=r-t;this.result=this.result*Math.pow(n,i)+parseInt(e.substr(t,i),n),this.consumed+=i}}},{key:"stateNumericHex",value:function(e,t){for(var r=t;t=em.UPPER_A)||!(n<=em.UPPER_F))&&(!(n>=em.LOWER_A)||!(n<=em.LOWER_F)))return this.addToNumericResult(e,r,t,16),this.emitNumericEntity(i,3);t+=1}return this.addToNumericResult(e,r,t,16),-1}},{key:"stateNumericDecimal",value:function(e,t){for(var r=t;t=55296&&n<=57343||n>1114111?65533:null!==(i=ri.get(n))&&void 0!==i?i:n,this.consumed),this.errors&&(e!==em.SEMI&&this.errors.missingSemicolonAfterCharacterReference(),this.errors.validateNumericCharacterReference(this.result)),this.consumed}},{key:"stateNamedEntity",value:function(e,t){for(var r=this.decodeTree,n=r[this.treeIndex],i=(n&ev.VALUE_LENGTH)>>14;t>7,o=t&ev.JUMP_TABLE;if(0===i)return 0!==o&&n===o?r:-1;if(o){var a=n-o;return a<0||a>=i?-1:e[r+a]-1}for(var s=r,u=s+i-1;s<=u;){var c=s+u>>>1,l=e[c];if(ln))return e[c+i];u=c-1}}return -1}(r,n,this.treeIndex+Math.max(1,i),o),this.treeIndex<0)return 0===this.result||this.decodeMode===ey.Attribute&&(0===i||function(e){var t;return e===em.EQUALS||(t=e)>=em.UPPER_A&&t<=em.UPPER_Z||t>=em.LOWER_A&&t<=em.LOWER_Z||ra(t)}(o))?0:this.emitNotTerminatedNamedEntity();if(0!=(i=((n=r[this.treeIndex])&ev.VALUE_LENGTH)>>14)){if(o===em.SEMI)return this.emitNamedEntityData(this.treeIndex,i,this.consumed+this.excess);this.decodeMode!==ey.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return -1}},{key:"emitNotTerminatedNamedEntity",value:function(){var e,t=this.result,r=(this.decodeTree[t]&ev.VALUE_LENGTH)>>14;return this.emitNamedEntityData(t,r,this.consumed),null===(e=this.errors)||void 0===e||e.missingSemicolonAfterCharacterReference(),this.consumed}},{key:"emitNamedEntityData",value:function(e,t,r){var n=this.decodeTree;return this.emitCodePoint(1===t?n[e]&~ev.VALUE_LENGTH:n[e+1],r),3===t&&this.emitCodePoint(n[e+2],r),r}},{key:"end",value:function(){var e;switch(this.state){case eg.NamedEntity:return 0!==this.result&&(this.decodeMode!==ey.Attribute||this.result===this.treeIndex)?this.emitNotTerminatedNamedEntity():0;case eg.NumericDecimal:return this.emitNumericEntity(0,2);case eg.NumericHex:return this.emitNumericEntity(0,3);case eg.NumericStart:return null===(e=this.errors)||void 0===e||e.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case eg.EntityStart:return 0}}}]),e}();function ru(e){var t="",r=new rs(e,function(e){return t+=ro(e)});return function(e,n){for(var i=0,o=0;(o=e.indexOf("&",o))>=0;){t+=e.slice(i,o),r.startEntity(n);var a=r.write(e,o+1);if(a<0){i=o+r.end();break}i=o+a,o=0===a?i+1:i}var s=t+e.slice(i);return t="",s}}ru(rr),ru(rn);var rc=new Map([[34,"""],[38,"&"],[39,"'"],[60,"<"],[62,">"]]);function rl(e,t){return function(r){for(var n,i=0,o="";n=e.exec(r);)i!==n.index&&(o+=r.substring(i,n.index)),o+=t.get(n[0].charCodeAt(0)),i=n.index+1;return o+r.substring(i)}}String.prototype.codePointAt,rl(/[&<>'"]/g,rc),rl(/["&\u00A0]/g,new Map([[34,"""],[38,"&"],[160," "]])),rl(/[&<>\u00A0]/g,new Map([[38,"&"],[60,"<"],[62,">"],[160," "]])),(J=eb||(eb={}))[J.XML=0]="XML",J[J.HTML=1]="HTML",(Z=ew||(ew={}))[Z.UTF8=0]="UTF8",Z[Z.ASCII=1]="ASCII",Z[Z.Extensive=2]="Extensive",Z[Z.Attribute=3]="Attribute",Z[Z.Text=4]="Text",["altGlyph","altGlyphDef","altGlyphItem","animateColor","animateMotion","animateTransform","clipPath","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","foreignObject","glyphRef","linearGradient","radialGradient","textPath"].map(function(e){return[e.toLowerCase(),e]}),["definitionURL","attributeName","attributeType","baseFrequency","baseProfile","calcMode","clipPathUnits","diffuseConstant","edgeMode","filterUnits","glyphRef","gradientTransform","gradientUnits","kernelMatrix","kernelUnitLength","keyPoints","keySplines","keyTimes","lengthAdjust","limitingConeAngle","markerHeight","markerUnits","markerWidth","maskContentUnits","maskUnits","numOctaves","pathLength","patternContentUnits","patternTransform","patternUnits","pointsAtX","pointsAtY","pointsAtZ","preserveAlpha","preserveAspectRatio","primitiveUnits","refX","refY","repeatCount","repeatDur","requiredExtensions","requiredFeatures","specularConstant","specularExponent","spreadMethod","startOffset","stdDeviation","stitchTiles","surfaceScale","systemLanguage","tableValues","targetX","targetY","textLength","viewBox","viewTarget","xChannelSelector","yChannelSelector","zoomAndPan"].map(function(e){return[e.toLowerCase(),e]}),(Q=ex||(ex={}))[Q.DISCONNECTED=1]="DISCONNECTED",Q[Q.PRECEDING=2]="PRECEDING",Q[Q.FOLLOWING=4]="FOLLOWING",Q[Q.CONTAINS=8]="CONTAINS",Q[Q.CONTAINED_BY=16]="CONTAINED_BY";var rf={};/*! * is-plain-object * * Copyright (c) 2014-2017, Jon Schlinkert. @@ -10,4 +10,4 @@ function e(e,t,r,n){Object.defineProperty(e,t,{get:r,set:n,enumerable:!0,configu * @inspiration https://stackoverflow.com/questions/16348031/disable-scrolling-when-touch-moving-certain-element * @author John Doherty * @license MIT - */function(e,t){"function"!=typeof e.CustomEvent&&(e.CustomEvent=function(e,r){r=r||{bubbles:!1,cancelable:!1,detail:void 0};var n=t.createEvent("CustomEvent");return n.initCustomEvent(e,r.bubbles,r.cancelable,r.detail),n},e.CustomEvent.prototype=e.Event.prototype),t.addEventListener("touchstart",function(e){"true"!==e.target.getAttribute("data-swipe-ignore")&&(s=e.target,a=Date.now(),r=e.touches[0].clientX,n=e.touches[0].clientY,i=0,o=0,u=e.touches.length)},!1),t.addEventListener("touchmove",function(e){if(r&&n){var t=e.touches[0].clientX,a=e.touches[0].clientY;i=r-t,o=n-a}},!1),t.addEventListener("touchend",function(e){if(s===e.target){var l=parseInt(c(s,"data-swipe-threshold","20"),10),f=c(s,"data-swipe-unit","px"),d=parseInt(c(s,"data-swipe-timeout","500"),10),h=Date.now()-a,p="",m=e.changedTouches||e.touches||[];if("vh"===f&&(l=Math.round(l/100*t.documentElement.clientHeight)),"vw"===f&&(l=Math.round(l/100*t.documentElement.clientWidth)),Math.abs(i)>Math.abs(o)?Math.abs(i)>l&&h0?"swiped-left":"swiped-right"):Math.abs(o)>l&&h0?"swiped-up":"swiped-down"),""!==p){var v={dir:p.replace(/swiped-/,""),touchType:(m[0]||{}).touchType||"direct",fingers:u,xStart:parseInt(r,10),xEnd:parseInt((m[0]||{}).clientX||-1,10),yStart:parseInt(n,10),yEnd:parseInt((m[0]||{}).clientY||-1,10)};s.dispatchEvent(new CustomEvent("swiped",{bubbles:!0,cancelable:!0,detail:v})),s.dispatchEvent(new CustomEvent(p,{bubbles:!0,cancelable:!0,detail:v}))}r=null,n=null,a=null}},!1);var r=null,n=null,i=null,o=null,a=null,s=null,u=0;function c(e,r,n){for(;e&&e!==t.documentElement;){var i=e.getAttribute(r);if(i)return i;e=e.parentNode}return n}}(window,document);var iW={},iG={};e(iG,"validate",function(){return eR},function(e){return eR=e});var iY=":A-Za-z_\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD",iK=RegExp("^"+("["+iY+"][")+iY+"\\-.\\d\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$");eM=function(e){return void 0!==e},eq=function(e){return null!=iK.exec(e)},eU=function(e,t){for(var r=[],n=t.exec(e);n;){var i=[];i.startIndex=t.lastIndex-n[0].length;for(var o=n.length,a=0;a5&&"xml"===n)return i3("InvalidXml","XML declaration allowed only at the start of the document.",i2(e,t));if("?"!=e[t]||">"!=e[t+1])continue;t++;break}return t}function iX(e,t){if(e.length>t+5&&"-"===e[t+1]&&"-"===e[t+2]){for(t+=3;t"===e[t+2]){t+=2;break}}else if(e.length>t+8&&"D"===e[t+1]&&"O"===e[t+2]&&"C"===e[t+3]&&"T"===e[t+4]&&"Y"===e[t+5]&&"P"===e[t+6]&&"E"===e[t+7]){var r=1;for(t+=8;t"===e[t]&&0==--r)break}else if(e.length>t+9&&"["===e[t+1]&&"C"===e[t+2]&&"D"===e[t+3]&&"A"===e[t+4]&&"T"===e[t+5]&&"A"===e[t+6]&&"["===e[t+7]){for(t+=8;t"===e[t+2]){t+=2;break}}return t}eR=function(e,t){t=Object.assign({},iJ,t);var r=[],n=!1,i=!1;"\uFEFF"===e[0]&&(e=e.substr(1));for(var o=0;o"!==e[o]&&" "!==e[o]&&" "!==e[o]&&"\n"!==e[o]&&"\r"!==e[o];o++)u+=e[o];if("/"===(u=u.trim())[u.length-1]&&(u=u.substring(0,u.length-1),o--),!eq(u))return i3("InvalidTag",0===u.trim().length?"Invalid space after '<'.":"Tag '"+u+"' is an invalid name.",i2(e,o));var c=function(e,t){for(var r="",n="",i=!1;t"===e[t]&&""===n){i=!0;break}r+=e[t]}return""===n&&{value:r,index:t,tagClosed:i}}(e,o);if(!1===c)return i3("InvalidAttr","Attributes for '"+u+"' have open quote.",i2(e,o));var l=c.value;if(o=c.index,"/"===l[l.length-1]){var f=o-l.length,d=i1(l=l.substring(0,l.length-1),t);if(!0!==d)return i3(d.err.code,d.err.msg,i2(e,f+d.err.line));n=!0}else if(s){if(!c.tagClosed)return i3("InvalidTag","Closing tag '"+u+"' doesn't have proper closing.",i2(e,o));if(l.trim().length>0)return i3("InvalidTag","Closing tag '"+u+"' can't have attributes or invalid starting.",i2(e,a));if(0===r.length)return i3("InvalidTag","Closing tag '"+u+"' has not been opened.",i2(e,a));var h=r.pop();if(u!==h.tagName){var p=i2(e,h.tagStartPos);return i3("InvalidTag","Expected closing tag '"+h.tagName+"' (opened in line "+p.line+", col "+p.col+") instead of closing tag '"+u+"'.",i2(e,a))}0==r.length&&(i=!0)}else{var m=i1(l,t);if(!0!==m)return i3(m.err.code,m.err.msg,i2(e,o-l.length+m.err.line));if(!0===i)return i3("InvalidXml","Multiple possible root nodes found.",i2(e,o));-1!==t.unpairedTags.indexOf(u)||r.push({tagName:u,tagStartPos:a}),n=!0}for(o++;o0)||i3("InvalidXml","Invalid '"+JSON.stringify(r.map(function(e){return e.tagName}),null,4).replace(/\r?\n/g,"")+"' found.",{line:1,col:1}):i3("InvalidXml","Start tag expected.",1)};var i0=RegExp("(\\s*)([^\\s=]+)(\\s*=)?(\\s*(['\"])(([\\s\\S])*?)\\5)?","g");function i1(e,t){for(var r=eU(e,i0),n={},i=0;i0?this.child.push((tW(t={},e.tagname,e.child),tW(t,":@",e[":@"]),t)):this.child.push(tW({},e.tagname,e.child))}}]),e}();var i7={};function oe(e,t){return"!"===e[t+1]&&"-"===e[t+2]&&"-"===e[t+3]}i7=function(e,t){var r={};if("O"===e[t+3]&&"C"===e[t+4]&&"T"===e[t+5]&&"Y"===e[t+6]&&"P"===e[t+7]&&"E"===e[t+8]){t+=9;for(var n,i,o,a,s,u,c,l,f,d=1,h=!1,p=!1;t"===e[t]){if(p?"-"===e[t-1]&&"-"===e[t-2]&&(p=!1,d--):d--,0===d)break}else"["===e[t]?h=!0:e[t]}else{if(h&&"!"===(n=e)[(i=t)+1]&&"E"===n[i+2]&&"N"===n[i+3]&&"T"===n[i+4]&&"I"===n[i+5]&&"T"===n[i+6]&&"Y"===n[i+7])t+=7,entityName=(f=n8(function(e,t){for(var r="";t1&&void 0!==arguments[1]?arguments[1]:{};if(r=Object.assign({},oi,r),!e||"string"!=typeof e)return e;var n=e.trim();if(void 0!==r.skipLike&&r.skipLike.test(n))return e;if(r.hex&&or.test(n))return Number.parseInt(n,16);var i=on.exec(n);if(!i)return e;var o=i[1],a=i[2],s=((t=i[3])&&-1!==t.indexOf(".")&&("."===(t=t.replace(/0+$/,""))?t="0":"."===t[0]?t="0"+t:"."===t[t.length-1]&&(t=t.substr(0,t.length-1))),t),u=i[4]||i[6];if(!r.leadingZeros&&a.length>0&&o&&"."!==n[2]||!r.leadingZeros&&a.length>0&&!o&&"."!==n[1])return e;var c=Number(n),l=""+c;return -1!==l.search(/[eE]/)||u?r.eNotation?c:e:-1!==n.indexOf(".")?"0"===l&&""===s?c:l===s?c:o&&l==="-"+s?c:e:a?s===l?c:o+s===l?c:e:n===l?c:n===o+l?c:e};var oo={};function oa(e){for(var t=Object.keys(e),r=0;r0)){a||(e=this.replaceEntitiesValue(e));var s=this.options.tagValueProcessor(t,e,r,i,o);return null==s?e:(void 0===s?"undefined":(0,tr._)(s))!==(void 0===e?"undefined":(0,tr._)(e))||s!==e?s:this.options.trimValues?ob(e,this.options.parseTagValue,this.options.numberParseOptions):e.trim()===e?ob(e,this.options.parseTagValue,this.options.numberParseOptions):e}}function ou(e){if(this.options.removeNSPrefix){var t=e.split(":"),r="/"===e.charAt(0)?"/":"";if("xmlns"===t[0])return"";2===t.length&&(e=r+t[1])}return e}oo=function(e){return"function"==typeof e?e:Array.isArray(e)?function(t){var r=!0,n=!1,i=void 0;try{for(var o,a=e[Symbol.iterator]();!(r=(o=a.next()).done);r=!0){var s=o.value;if("string"==typeof s&&t===s||s instanceof RegExp&&s.test(t))return!0}}catch(e){n=!0,i=e}finally{try{r||null==a.return||a.return()}finally{if(n)throw i}}}:function(){return!1}};var oc=RegExp("([^\\s=]+)\\s*(=\\s*(['\"])([\\s\\S]*?)\\3)?","gm");function ol(e,t,r){if(!0!==this.options.ignoreAttributes&&"string"==typeof e){for(var n=eU(e,oc),i=n.length,o={},a=0;a",o,"Closing Tag is not closed."),s=e.substring(o+2,a).trim();if(this.options.removeNSPrefix){var u=s.indexOf(":");-1!==u&&(s=s.substr(u+1))}this.options.transformTagName&&(s=this.options.transformTagName(s)),r&&(n=this.saveTextToParentTag(n,r,i));var c=i.substring(i.lastIndexOf(".")+1);if(s&&-1!==this.options.unpairedTags.indexOf(s))throw Error("Unpaired tag can not be used as closing tag: "));var l=0;c&&-1!==this.options.unpairedTags.indexOf(c)?(l=i.lastIndexOf(".",i.lastIndexOf(".")-1),this.tagsNodeStack.pop()):l=i.lastIndexOf("."),i=i.substring(0,l),r=this.tagsNodeStack.pop(),n="",o=a}else if("?"===e[o+1]){var f=og(e,o,!1,"?>");if(!f)throw Error("Pi Tag is not closed.");if(n=this.saveTextToParentTag(n,r,i),this.options.ignoreDeclaration&&"?xml"===f.tagName||this.options.ignorePiTags);else{var d=new i9(f.tagName);d.add(this.options.textNodeName,""),f.tagName!==f.tagExp&&f.attrExpPresent&&(d[":@"]=this.buildAttributesMap(f.tagExp,i,f.tagName)),this.addChild(r,d,i)}o=f.closeIndex+1}else if("!--"===e.substr(o+1,3)){var h=ov(e,"-->",o+4,"Comment is not closed.");if(this.options.commentPropName){var p=e.substring(o+4,h-2);n=this.saveTextToParentTag(n,r,i),r.add(this.options.commentPropName,[tW({},this.options.textNodeName,p)])}o=h}else if("!D"===e.substr(o+1,2)){var m=i7(e,o);this.docTypeEntities=m.entities,o=m.i}else if("!["===e.substr(o+1,2)){var v=ov(e,"]]>",o,"CDATA is not closed.")-2,g=e.substring(o+9,v);n=this.saveTextToParentTag(n,r,i);var y=this.parseTextData(g,r.tagname,i,!0,!1,!0,!0);void 0==y&&(y=""),this.options.cdataPropName?r.add(this.options.cdataPropName,[tW({},this.options.textNodeName,g)]):r.add(this.options.textNodeName,y),o=v+2}else{var b=og(e,o,this.options.removeNSPrefix),w=b.tagName,x=b.rawTagName,E=b.tagExp,S=b.attrExpPresent,k=b.closeIndex;this.options.transformTagName&&(w=this.options.transformTagName(w)),r&&n&&"!xml"!==r.tagname&&(n=this.saveTextToParentTag(n,r,i,!1));var A=r;if(A&&-1!==this.options.unpairedTags.indexOf(A.tagname)&&(r=this.tagsNodeStack.pop(),i=i.substring(0,i.lastIndexOf("."))),w!==t.tagname&&(i+=i?"."+w:w),this.isItStopNode(this.options.stopNodes,i,w)){var I="";if(E.length>0&&E.lastIndexOf("/")===E.length-1)"/"===w[w.length-1]?(w=w.substr(0,w.length-1),i=i.substr(0,i.length-1),E=w):E=E.substr(0,E.length-1),o=b.closeIndex;else if(-1!==this.options.unpairedTags.indexOf(w))o=b.closeIndex;else{var T=this.readStopNodeData(e,x,k+1);if(!T)throw Error("Unexpected end of ".concat(x));o=T.i,I=T.tagContent}var N=new i9(w);w!==E&&S&&(N[":@"]=this.buildAttributesMap(E,i,w)),I&&(I=this.parseTextData(I,w,i,!0,S,!0,!0)),i=i.substr(0,i.lastIndexOf(".")),N.add(this.options.textNodeName,I),this.addChild(r,N,i)}else{if(E.length>0&&E.lastIndexOf("/")===E.length-1){"/"===w[w.length-1]?(w=w.substr(0,w.length-1),i=i.substr(0,i.length-1),E=w):E=E.substr(0,E.length-1),this.options.transformTagName&&(w=this.options.transformTagName(w));var O=new i9(w);w!==E&&S&&(O[":@"]=this.buildAttributesMap(E,i,w)),this.addChild(r,O,i),i=i.substr(0,i.lastIndexOf("."))}else{var _=new i9(w);this.tagsNodeStack.push(r),w!==E&&S&&(_[":@"]=this.buildAttributesMap(E,i,w)),this.addChild(r,_,i),r=_}n="",o=k}}}else n+=e[o];return t.child};function od(e,t,r){var n=this.options.updateTag(t.tagname,r,t[":@"]);!1===n||("string"==typeof n&&(t.tagname=n),e.addChild(t))}var oh=function(e){if(this.options.processEntities){for(var t in this.docTypeEntities){var r=this.docTypeEntities[t];e=e.replace(r.regx,r.val)}for(var n in this.lastEntities){var i=this.lastEntities[n];e=e.replace(i.regex,i.val)}if(this.options.htmlEntities)for(var o in this.htmlEntities){var a=this.htmlEntities[o];e=e.replace(a.regex,a.val)}e=e.replace(this.ampEntity.regex,this.ampEntity.val)}return e};function op(e,t,r,n){return e&&(void 0===n&&(n=0===Object.keys(t.child).length),void 0!==(e=this.parseTextData(e,t.tagname,r,!1,!!t[":@"]&&0!==Object.keys(t[":@"]).length,n))&&""!==e&&t.add(this.options.textNodeName,e),e=""),e}function om(e,t,r){var n="*."+r;for(var i in e){var o=e[i];if(n===o||t===o)return!0}return!1}function ov(e,t,r,n){var i=e.indexOf(t,r);if(-1!==i)return i+t.length-1;throw Error(n)}function og(e,t,r){var n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:">",i=function(e,t){for(var r,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:">",i="",o=t;o",r,"".concat(t," is not closed"));if(e.substring(r+2,o).trim()===t&&0==--i)return{tagContent:e.substring(n,r),i:o};r=o}else if("?"===e[r+1])r=ov(e,"?>",r+1,"StopNode is not closed.");else if("!--"===e.substr(r+1,3))r=ov(e,"-->",r+3,"StopNode is not closed.");else if("!["===e.substr(r+1,2))r=ov(e,"]]>",r,"StopNode is not closed.")-2;else{var a=og(e,r,">");a&&((a&&a.tagName)===t&&"/"!==a.tagExp[a.tagExp.length-1]&&i++,r=a.closeIndex)}}}function ob(e,t,r){if(t&&"string"==typeof e){var n=e.trim();return"true"===n||"false"!==n&&ot(e,r)}return eM(e)?e:""}i4=function e(t){tf(this,e),this.options=t,this.currentNode=null,this.tagsNodeStack=[],this.docTypeEntities={},this.lastEntities={apos:{regex:/&(apos|#39|#x27);/g,val:"'"},gt:{regex:/&(gt|#62|#x3E);/g,val:">"},lt:{regex:/&(lt|#60|#x3C);/g,val:"<"},quot:{regex:/&(quot|#34|#x22);/g,val:'"'}},this.ampEntity={regex:/&(amp|#38|#x26);/g,val:"&"},this.htmlEntities={space:{regex:/&(nbsp|#160);/g,val:" "},cent:{regex:/&(cent|#162);/g,val:"¢"},pound:{regex:/&(pound|#163);/g,val:"£"},yen:{regex:/&(yen|#165);/g,val:"¥"},euro:{regex:/&(euro|#8364);/g,val:"€"},copyright:{regex:/&(copy|#169);/g,val:"©"},reg:{regex:/&(reg|#174);/g,val:"®"},inr:{regex:/&(inr|#8377);/g,val:"₹"},num_dec:{regex:/&#([0-9]{1,7});/g,val:function(e,t){return String.fromCharCode(Number.parseInt(t,10))}},num_hex:{regex:/&#x([0-9a-fA-F]{1,6});/g,val:function(e,t){return String.fromCharCode(Number.parseInt(t,16))}}},this.addExternalEntities=oa,this.parseXml=of,this.parseTextData=os,this.resolveNameSpace=ou,this.buildAttributesMap=ol,this.isItStopNode=om,this.replaceEntitiesValue=oh,this.readStopNodeData=oy,this.saveTextToParentTag=op,this.addChild=od,this.ignoreAttributesFn=oo(this.options.ignoreAttributes)},eF=function(e,t){return function e(t,r,n){for(var i,o={},a=0;a0&&(o[r.textNodeName]=i):void 0!==i&&(o[r.textNodeName]=i),o}(e,t)},i8=/*#__PURE__*/function(){function e(t){tf(this,e),this.externalEntities={},this.options=ej(t)}return th(e,[{key:"parse",value:function(e,t){if("string"==typeof e);else if(e.toString)e=e.toString();else throw Error("XML data is accepted in String or Bytes[] form.");if(t){!0===t&&(t={});var r=eR(e,t);if(!0!==r)throw Error("".concat(r.err.msg,":").concat(r.err.line,":").concat(r.err.col))}var n=new i4(this.options);n.addExternalEntities(this.externalEntities);var i=n.parseXml(e);return this.options.preserveOrder||void 0===i?i:eF(i,this.options)}},{key:"addEntity",value:function(e,t){if(-1!==t.indexOf("&"))throw Error("Entity value can't have '&'");if(-1!==e.indexOf("&")||-1!==e.indexOf(";"))throw Error("An entity must be set without '&' and ';'. Eg. use '#xD' for ' '");if("&"===t)throw Error("An entity with value '&' is not permitted");this.externalEntities[e]=t}}]),e}();var ow={};function ox(e,t){var r="";if(e&&!t.ignoreAttributes){for(var n in e)if(e.hasOwnProperty(n)){var i=t.attributeValueProcessor(n,e[n]);!0===(i=oE(i,t))&&t.suppressBooleanAttributes?r+=" ".concat(n.substr(t.attributeNamePrefix.length)):r+=" ".concat(n.substr(t.attributeNamePrefix.length),'="').concat(i,'"')}}return r}function oE(e,t){if(e&&e.length>0&&t.processEntities)for(var r=0;r0&&(r="\n"),function e(t,r,n,i){for(var o="",a=!1,s=0;s"),a=!1;continue}if(c===r.commentPropName){o+=i+""),a=!0;continue}if("?"===c[0]){var d=ox(u[":@"],r),h="?xml"===c?"":i,p=u[c][0][r.textNodeName];p=0!==p.length?" "+p:"",o+=h+"<".concat(c).concat(p).concat(d,"?>"),a=!0;continue}var m=i;""!==m&&(m+=r.indentBy);var v=ox(u[":@"],r),g=i+"<".concat(c).concat(v),y=e(u[c],r,l,m);-1!==r.unpairedTags.indexOf(c)?r.suppressUnpairedNode?o+=g+">":o+=g+"/>":(!y||0===y.length)&&r.suppressEmptyNode?o+=g+"/>":y&&y.endsWith(">")?o+=g+">".concat(y).concat(i,""):(o+=g+">",y&&""!==i&&(y.includes("/>")||y.includes("")),a=!0}}return o}(e,t,"",r)};var oS={attributeNamePrefix:"@_",attributesGroupName:!1,textNodeName:"#text",ignoreAttributes:!0,cdataPropName:!1,format:!1,indentBy:" ",suppressEmptyNode:!1,suppressUnpairedNode:!0,suppressBooleanAttributes:!0,tagValueProcessor:function(e,t){return t},attributeValueProcessor:function(e,t){return t},preserveOrder:!1,commentPropName:!1,unpairedTags:[],entities:[{regex:RegExp("&","g"),val:"&"},{regex:RegExp(">","g"),val:">"},{regex:RegExp("<","g"),val:"<"},{regex:RegExp("'","g"),val:"'"},{regex:RegExp('"',"g"),val:"""}],processEntities:!0,stopNodes:[],oneListGroup:!1};function ok(e){this.options=Object.assign({},oS,e),!0===this.options.ignoreAttributes||this.options.attributesGroupName?this.isAttribute=function(){return!1}:(this.ignoreAttributesFn=oo(this.options.ignoreAttributes),this.attrPrefixLen=this.options.attributeNamePrefix.length,this.isAttribute=oT),this.processTextOrObjNode=oA,this.options.format?(this.indentate=oI,this.tagEndChar=">\n",this.newLine="\n"):(this.indentate=function(){return""},this.tagEndChar=">",this.newLine="")}function oA(e,t,r,n){var i=this.j2x(e,r+1,n.concat(t));return void 0!==e[this.options.textNodeName]&&1===Object.keys(e).length?this.buildTextValNode(e[this.options.textNodeName],t,i.attrStr,r):this.buildObjectNode(i.val,t,i.attrStr,r)}function oI(e){return this.options.indentBy.repeat(e)}function oT(e){return!!e.startsWith(this.options.attributeNamePrefix)&&e!==this.options.textNodeName&&e.substr(this.attrPrefixLen)}ok.prototype.build=function(e){return this.options.preserveOrder?ow(e,this.options):(Array.isArray(e)&&this.options.arrayNodeName&&this.options.arrayNodeName.length>1&&(e=tW({},this.options.arrayNodeName,e)),this.j2x(e,0,[]).val)},ok.prototype.j2x=function(e,t,r){var n="",i="",o=r.join(".");for(var a in e)if(Object.prototype.hasOwnProperty.call(e,a)){if(void 0===e[a])this.isAttribute(a)&&(i+="");else if(null===e[a])this.isAttribute(a)?i+="":"?"===a[0]?i+=this.indentate(t)+"<"+a+"?"+this.tagEndChar:i+=this.indentate(t)+"<"+a+"/"+this.tagEndChar;else if(e[a]instanceof Date)i+=this.buildTextValNode(e[a],a,"",t);else if("object"!=typeof e[a]){var s=this.isAttribute(a);if(s&&!this.ignoreAttributesFn(s,o))n+=this.buildAttrPairStr(s,""+e[a]);else if(!s){if(a===this.options.textNodeName){var u=this.options.tagValueProcessor(a,""+e[a]);i+=this.replaceEntitiesValue(u)}else i+=this.buildTextValNode(e[a],a,"",t)}}else if(Array.isArray(e[a])){for(var c=e[a].length,l="",f="",d=0;d"+e+i:!1!==this.options.commentPropName&&t===this.options.commentPropName&&0===o.length?this.indentate(n)+"")+this.newLine:this.indentate(n)+"<"+t+r+o+this.tagEndChar+e+this.indentate(n)+i},ok.prototype.closeTag=function(e){var t="";return -1!==this.options.unpairedTags.indexOf(e)?this.options.suppressUnpairedNode||(t="/"):t=this.options.suppressEmptyNode?"/":">")+this.newLine;if(!1!==this.options.commentPropName&&t===this.options.commentPropName)return this.indentate(n)+"")+this.newLine;if("?"===t[0])return this.indentate(n)+"<"+t+r+"?"+this.tagEndChar;var i=this.options.tagValueProcessor(t,e);return""===(i=this.replaceEntitiesValue(i))?this.indentate(n)+"<"+t+r+this.closeTag(t)+this.tagEndChar:this.indentate(n)+"<"+t+r+">"+i+"0&&this.options.processEntities)for(var t=0;t0))return[3,5];i.label=1;case 1:return i.trys.push([1,3,,4]),[4,o3(r)];case 2:return i.sent(),oV.last_update=new Date,/*@__PURE__*/t(tt).setItem("settings",oV),[3,4];case 3:return i.sent(),[3,4];case 4:return[3,6];case 5:alert("Generated download list is empty."),i.label=6;case 6:return[3,8];case 7:console.error("No OPML content found."),i.label=8;case 8:return[2]}})}),function(e){return en.apply(this,arguments)}),o1=function(e){var t=oG.parseFromString(e,"text/xml");if(!t||t.getElementsByTagName("parsererror").length>0)return console.error("Invalid OPML data."),{error:"Invalid OPML data",downloadList:[]};var r=t.querySelector("body");if(!r)return console.error("No 'body' element found in the OPML data."),{error:"No 'body' element found",downloadList:[]};var n=0,i=r.querySelectorAll("outline"),o=[];return i.forEach(function(e){e.querySelectorAll("outline").forEach(function(t){var r=t.getAttribute("xmlUrl");r&&o.push({error:"",title:t.getAttribute("title")||"Untitled",url:r,index:n++,channel:e.getAttribute("text")||"Unknown",type:t.getAttribute("type")||"rss",maxEpisodes:t.getAttribute("maxEpisodes")||5})})}),{error:"",downloadList:o}},o3=(ei=eY(function(e){var r,n,i,o,a;return(0,eJ.__generator)(this,function(s){return r=0,n=e.length,i=!1,o=function(){o4=localStorage.getItem("last_channel_filter"),r===n&&(console.log("All feeds are loaded"),/*@__PURE__*/t(tt).setItem("articles",oY).then(function(){console.log("feeds cached"),oY.sort(function(e,t){return new Date(t.isoDate)-new Date(e.isoDate)}),oY.forEach(function(e){-1===o$.indexOf(e.channel)&&e.channel&&o$.push(e.channel)}),o$.length>0&&!i&&(o4=localStorage.getItem("last_channel_filter")||o$[0],i=!0),/*@__PURE__*/t(tn).route.set("/start")}).catch(function(e){console.error("Feeds cached",e)}))},a=[],e.forEach(function(e){if("mastodon"===e.type)fetch(e.url).then(function(e){return e.json()}).then(function(t){t.forEach(function(t,r){if(!(r>5)){var n={channel:e.channel,id:t.id,type:"mastodon",pubDate:t.created_at,isoDate:t.created_at,title:t.account.display_name||t.account.username,content:t.content,url:t.uri,reblog:!1};t.media_attachments.length>0&&("image"===t.media_attachments[0].type?n.content+="
"):"video"===t.media_attachments[0].type?n.enclosure={"@_type":"video",url:t.media_attachments[0].url}:"audio"===t.media_attachments[0].type&&(n.enclosure={"@_type":"audio",url:t.media_attachments[0].url})),""==t.content&&(n.content=t.reblog.content,n.reblog=!0,n.reblogUser=t.account.display_name||t.reblog.account.acct,t.reblog.media_attachments.length>0&&("image"===t.reblog.media_attachments[0].type?n.content+="
"):"video"===t.reblog.media_attachments[0].type?n.enclosure={"@_type":"video",url:t.reblog.media_attachments[0].url}:"audio"===t.reblog.media_attachments[0].type&&(n.enclosure={"@_type":"audio",url:t.reblog.media_attachments[0].url}))),oY.push(n)}})}).catch(function(t){e.error=t}).finally(function(){r++,o()});else{var n=new XMLHttpRequest;new Date().getTime();var i=e.url;n.open("GET",oj+i,!0),n.onload=function(){if(200!==n.status){e.error=n.status,r++,o();return}var i=n.response;if(!i){e.error=n.status,r++,o();return}try{var s=oM.parse(i);s.feed&&s.feed.entry.forEach(function(r,n){if(n15)){var r={channel:"Mastodon",id:e.id,type:"mastodon",pubDate:e.created_at,isoDate:e.created_at,title:e.account.display_name,content:e.content,url:e.uri,reblog:!1};e.media_attachments.length>0&&("image"===e.media_attachments[0].type?r.content+="
"):"video"===e.media_attachments[0].type?r.enclosure={"@_type":"video",url:e.media_attachments[0].url}:"audio"===e.media_attachments[0].type&&(r.enclosure={"@_type":"audio",url:e.media_attachments[0].url}));try{""==e.content&&(r.content=e.reblog.content,r.reblog=!0,r.reblogUser=e.reblog.account.display_name||e.reblog.account.acct,e.reblog.media_attachments.length>0&&("image"===e.reblog.media_attachments[0].type?r.content+="
"):"video"===e.reblog.media_attachments[0].type?r.enclosure={"@_type":"video",url:e.reblog.media_attachments[0].url}:"audio"===e.reblog.media_attachments[0].type&&(r.enclosure={"@_type":"audio",url:e.reblog.media_attachments[0].url})))}catch(e){}oY.push(r)}}),o$.push("Mastodon")})},o5=function(){oX(oj+oV.opml_url+"?time="+new Date),oV.opml_local&&o0(oV.opml_local),oV.mastodon_token&&te(oV.mastodon_server_url,oV.mastodon_token).then(function(e){oq.mastodon_logged=e.display_name,o2()}).catch(function(e){alert(e)}),o4=localStorage.getItem("last_channel_filter")};/*@__PURE__*/t(tt).getItem("settings").then(function(e){null==e&&(oV=oF,/*@__PURE__*/t(tt).setItem("settings",oV).then(function(e){}).catch(function(e){console.log(e)})),(oV=e).cache_time=oV.cache_time||1e3,oV.last_update?oq.last_update_duration=new Date/1e3-oV.last_update/1e3:oq.last_update_duration=3600,oV.opml_url||oV.opml_local_filename||e8("The feed could not be loaded because no OPML was defined in the settings.",6e3),fetch("https://www.google.com",{method:"HEAD",mode:"no-cors"}).then(function(){return!0}).catch(function(){return!1}).then(function(e){e&&oq.last_update_duration>oV.cache_time?(o5(),e8("Load feeds",4e3)):/*@__PURE__*/t(tt).getItem("articles").then(function(e){(oY=e).sort(function(e,t){return new Date(t.isoDate)-new Date(e.isoDate)}),oY.forEach(function(e){-1===o$.indexOf(e.channel)&&e.channel&&o$.push(e.channel)}),o$.length&&(o4=localStorage.getItem("last_channel_filter")||o$[0]),/*@__PURE__*/t(tn).route.set("/start?index=0"),e8("Cached feeds loaded",4e3),oV.mastodon_token&&te(oV.mastodon_server_url,oV.mastodon_token).then(function(e){oq.mastodon_logged=e.display_name}).catch(function(e){})}).catch(function(e){})})}).catch(function(e){e8("The default settings was loaded",3e3),oX(oj+(oV=oF).opml_url),/*@__PURE__*/t(tt).setItem("settings",oV).then(function(e){}).catch(function(e){console.log(e)})});var o8=document.getElementById("app"),o6=-1,o4=localStorage.getItem("last_channel_filter")||"",o9=0,o7=function(e){return /*@__PURE__*/t(iH).duration(e,"seconds").format("mm:ss")},ae={videoElement:null,videoDuration:0,currentTime:0,isPlaying:!1,seekAmount:5,oncreate:function(e){var r=e.attrs;oq.notKaiOS&&e9("","",""),ae.videoElement=document.createElement("video"),document.getElementById("video-container").appendChild(ae.videoElement);var n=r.url;n&&(ae.videoElement.src=n,ae.videoElement.play(),ae.isPlaying=!0),ae.videoElement.onloadedmetadata=function(){ae.videoDuration=ae.videoElement.duration,/*@__PURE__*/t(tn).redraw()},ae.videoElement.ontimeupdate=function(){ae.currentTime=ae.videoElement.currentTime,/*@__PURE__*/t(tn).redraw()},document.addEventListener("keydown",ae.handleKeydown)},onremove:function(){document.removeEventListener("keydown",ae.handleKeydown)},handleKeydown:function(e){"Enter"===e.key?ae.togglePlayPause():"ArrowLeft"===e.key?ae.seek("left"):"ArrowRight"===e.key&&ae.seek("right")},togglePlayPause:function(){ae.isPlaying?ae.videoElement.pause():ae.videoElement.play(),ae.isPlaying=!ae.isPlaying},seek:function(e){var t=ae.videoElement.currentTime;"left"===e?ae.videoElement.currentTime=Math.max(0,t-ae.seekAmount):"right"===e&&(ae.videoElement.currentTime=Math.min(ae.videoDuration,t+ae.seekAmount))},view:function(e){e.attrs;var r=ae.videoDuration>0?ae.currentTime/ae.videoDuration*100:0;return /*@__PURE__*/t(tn)("div",{class:"video-player"},[/*@__PURE__*/t(tn)("div",{id:"video-container",class:"video-container"}),/*@__PURE__*/t(tn)("div",{class:"video-info"},[" ".concat(o7(ae.currentTime)," / ").concat(o7(ae.videoDuration))]),/*@__PURE__*/t(tn)("div",{class:"progress-bar-container"},[/*@__PURE__*/t(tn)("div",{class:"progress-bar",style:{width:"".concat(r,"%")}})])])}},at={player:null,oncreate:function(e){var t=e.attrs;oq.notKaiOS&&e9("","",""),e4("","",""),YT?at.player=new YT.Player("video-container",{videoId:t.videoId,events:{onReady:at.onPlayerReady}}):alert("YouTube player not loaded"),document.addEventListener("keydown",at.handleKeydown)},onPlayerReady:function(e){e.target.playVideo()},handleKeydown:function(e){"Enter"===e.key?at.togglePlayPause():"ArrowLeft"===e.key?at.seek("left"):"ArrowRight"===e.key&&at.seek("right")},togglePlayPause:function(){1===at.player.getPlayerState()?at.player.pauseVideo():at.player.playVideo()},seek:function(e){var t=at.player.getCurrentTime();"left"===e?at.player.seekTo(Math.max(0,t-5),!0):"right"===e&&at.player.seekTo(t+5,!0)},view:function(){return /*@__PURE__*/t(tn)("div",{class:"youtube-player"},[/*@__PURE__*/t(tn)("div",{id:"video-container",class:"video-container"})])}},ar=document.createElement("audio");if(ar.preload="auto","b2g"in navigator)try{ar.mozAudioChannelType="content",navigator.b2g.AudioChannelManager&&(navigator.b2g.AudioChannelManager.volumeControlChannel="content")}catch(e){console.log(e)}var an=[];try{/*@__PURE__*/t(tt).getItem("hasPlayedAudio").then(function(e){an=e||[],console.log("Loaded hasPlayedAudio:",an)})}catch(e){console.error("Failed to load hasPlayedAudio:",e)}var ai=(eo=eY(function(e,r){var n;return(0,eJ.__generator)(this,function(i){return -1!==(n=an.findIndex(function(t){return t.url===e}))?an[n].time=r:an.push({url:e,time:r}),/*@__PURE__*/t(tt).setItem("hasPlayedAudio",an).then(function(){console.log(an)}),[2]})}),function(e,t){return eo.apply(this,arguments)}),ao=0,aa=0,as=0,au=0,ac=!1,al=null,af={audioDuration:0,currentTime:0,isPlaying:!1,seekAmount:5,oninit:function(e){var r=e.attrs;r.url&&ar.src!==r.url&&(ar.src=r.url,ar.play().catch(function(){}),af.isPlaying=!0,an.map(function(e){e.url===ar.src&&!0==confirm("contiune playing ?")&&(ar.currentTime=e.time)})),ar.onloadedmetadata=function(){af.audioDuration=ar.duration,/*@__PURE__*/t(tn).redraw()},ar.ontimeupdate=function(){af.currentTime=ar.currentTime,ai(ar.src,ar.currentTime),/*@__PURE__*/t(tn).redraw()},af.isPlaying=!ar.paused,document.addEventListener("keydown",af.handleKeydown)},oncreate:function(){var e=function(e){al||(af.seek(e),al=setInterval(function(){af.seek(e),document.querySelector(".audio-info").style.padding="20px"},1e3))},t=function(){al&&(clearInterval(al),al=null,document.querySelector(".audio-info").style.padding="10px")};e9("","",""),e4("","",""),oV.sleepTimer&&(e4("","",""),document.querySelector("div.button-left").addEventListener("click",function(e){oq.sleepTimer?oR():oB(6e4*oV.sleepTimer)})),oq.notKaiOS&&e9("","",""),document.querySelector("div.button-center").addEventListener("click",function(e){af.togglePlayPause()}),document.addEventListener("touchstart",function(e){var t=e.touches[0];ao=t.clientX,aa=t.clientY}),document.addEventListener("touchmove",function(t){var r=t.touches[0];as=r.clientX,au=r.clientY;var n=as-ao,i=au-aa;Math.abs(n)>Math.abs(i)?n>30?(e("right"),ac=!0):n<-30&&(e("left"),ac=!0):i>30?console.log("Swiping down (not used in this context)"):i<-30&&console.log("Swiping up (not used in this context)")}),document.addEventListener("touchend",function(){ac&&(ac=!1,t())})},onremove:function(){document.removeEventListener("keydown",af.handleKeydown)},handleKeydown:function(e){"Enter"===e.key?af.togglePlayPause():"ArrowLeft"===e.key?af.seek("left"):"ArrowRight"===e.key&&af.seek("right")},togglePlayPause:function(){af.isPlaying?ar.pause():ar.play().catch(function(){}),af.isPlaying=!af.isPlaying},seek:function(e){var t=ar.currentTime;"left"===e?ar.currentTime=Math.max(0,t-af.seekAmount):"right"===e&&(ar.currentTime=Math.min(af.audioDuration,t+af.seekAmount))},view:function(e){e.attrs;var r=af.audioDuration>0?af.currentTime/af.audioDuration*100:0;return /*@__PURE__*/t(tn)("div",{class:"audio-player"},[/*@__PURE__*/t(tn)("div",{id:"audio-container",class:"audio-container"}),/*@__PURE__*/t(tn)("div",{class:"cover-container",style:{"background-color":"rgb(121, 71, 255)","background-image":"url(".concat(oU.cover,")")}}),/*@__PURE__*/t(tn)("div",{class:"audio-info",style:{background:"linear-gradient(to right, #3498db ".concat(r,"%, white ").concat(r,"%)")}},["".concat(o7(af.currentTime)," / ").concat(o7(af.audioDuration))]),/*@__PURE__*/t(tn)("div",{class:"progress-bar-container"},[/*@__PURE__*/t(tn)("div",{class:"progress-bar",style:{width:"".concat(r,"%")}})])])}};function ad(){var e=document.activeElement;if(e){for(var t=e.getBoundingClientRect(),r=t.top+t.height/2,n=e.parentNode;n;){if(n.scrollHeight>n.clientHeight||n.scrollWidth>n.clientWidth){var i=n.getBoundingClientRect();r=t.top-i.top+t.height/2;break}n=n.parentNode}n?n.scrollBy({left:0,top:r-n.clientHeight/2,behavior:"smooth"}):document.body.scrollBy({left:0,top:r-window.innerHeight/2,behavior:"smooth"})}}/*@__PURE__*/t(tn).route(o8,"/intro",{"/article":{view:function(){var e=oY.find(function(e){return /*@__PURE__*/t(tn).route.param("index")==e.id&&(oU=e,!0)});return /*@__PURE__*/t(tn)("div",{id:"article",class:"page",oncreate:function(){oq.notKaiOS&&e9("","",""),e4("","","")}},e?/*@__PURE__*/t(tn)("article",{class:"item",tabindex:0,oncreate:function(t){t.dom.focus(),("audio"===e.type||"video"===e.type||"youtube"===e.type)&&e4("","","")}},[/*@__PURE__*/t(tn)("time",{id:"top",oncreate:function(){setTimeout(function(){document.querySelector("#top").scrollIntoView()},1e3)}},/*@__PURE__*/t(iH)(e.isoDate).format("DD MMM YYYY")),/*@__PURE__*/t(tn)("h2",{class:"article-title",oncreate:function(t){var r=t.dom;e.reblog&&r.classList.add("reblog")}},e.title),/*@__PURE__*/t(tn)("div",{class:"text"},[/*@__PURE__*/t(tn).trust(oQ(e.content))]),e.reblog?/*@__PURE__*/t(tn)("div",{class:"text"},"reblogged from:"+e.reblogUser):""]):/*@__PURE__*/t(tn)("div","Article not found"))}},"/settingsView":{view:function(){return /*@__PURE__*/t(tn)("div",{class:"flex justify-content-center page",id:"settings-page",oncreate:function(){oq.notKaiOS||(oq.local_opml=[],eX("opml",function(e){oq.local_opml.push(e)})),e4("","",""),oq.notKaiOS&&e4("","",""),document.querySelectorAll(".item").forEach(function(e,t){e.setAttribute("tabindex",t)}),oq.notKaiOS&&e9("","",""),oq.notKaiOS&&e4("","","")}},[/*@__PURE__*/t(tn)("div",{class:"item input-parent flex",oncreate:function(){ah()}},[/*@__PURE__*/t(tn)("label",{for:"url-opml"},"OPML"),/*@__PURE__*/t(tn)("input",{id:"url-opml",placeholder:"",value:oV.opml_url||"",type:"url"})]),/*@__PURE__*/t(tn)("button",{class:"item",onclick:function(){oV.opml_local_filename?(oV.opml_local="",oV.opml_local_filename="",/*@__PURE__*/t(tt).setItem("settings",oV).then(function(){e8("OPML file removed",4e3),/*@__PURE__*/t(tn).redraw()})):oq.notKaiOS?e7(function(e){var r=new FileReader;r.onload=function(){o1(r.result).error?e8("OPML file not valid",4e3):(oV.opml_local=r.result,oV.opml_local_filename=e.filename,/*@__PURE__*/t(tt).setItem("settings",oV).then(function(){e8("OPML file added",4e3)}))},r.onerror=function(){e8("OPML file not valid",4e3)},r.readAsText(e.blob)}):oq.local_opml.length>0?/*@__PURE__*/t(tn).route.set("/localOPML"):e8("not enough",3e3)}},oV.opml_local_filename?"Remove OPML file":"Upload OPML file"),/*@__PURE__*/t(tn)("div",oV.opml_local_filename),/*@__PURE__*/t(tn)("div",{class:"seperation"}),/*@__PURE__*/t(tn)("div",{class:"item input-parent flex "},[/*@__PURE__*/t(tn)("label",{for:"url-proxy"},"PROXY"),/*@__PURE__*/t(tn)("input",{id:"url-proxy",placeholder:"",value:oV.proxy_url||"",type:"url"})]),/*@__PURE__*/t(tn)("div",{class:"seperation"}),/*@__PURE__*/t(tn)("h2",{class:"flex justify-content-spacearound"},"Mastodon Account"),oq.mastodon_logged?/*@__PURE__*/t(tn)("div",{id:"account_info",class:"item"},"You have successfully logged in as ".concat(oq.mastodon_logged," and the data is being loaded from server ").concat(oV.mastodon_server_url,".")):null,oq.mastodon_logged?/*@__PURE__*/t(tn)("button",{class:"item",onclick:function(){oV.mastodon_server_url="",oV.mastodon_token="",/*@__PURE__*/t(tt).setItem("settings",oV),oq.mastodon_logged="",/*@__PURE__*/t(tn).route.set("/settingsView")}},"Disconnect"):null,oq.mastodon_logged?null:/*@__PURE__*/t(tn)("div",{class:"item input-parent flex justify-content-spacearound"},[/*@__PURE__*/t(tn)("label",{for:"mastodon-server-url"},"URL"),/*@__PURE__*/t(tn)("input",{id:"mastodon-server-url",placeholder:"Server URL",value:oV.mastodon_server_url})]),oq.mastodon_logged?null:/*@__PURE__*/t(tn)("button",{class:"item",onclick:function(){/*@__PURE__*/t(tt).setItem("settings",oV),oV.mastodon_server_url=document.getElementById("mastodon-server-url").value;var e=oV.mastodon_server_url+"/oauth/authorize?client_id=HqIUbDiOkeIoDPoOJNLQOgVyPi1ZOkPMW29UVkhl3i8&scope=read&redirect_uri=https://feedolin.strukturart.com&response_type=code";window.open(e)}},"Connect"),/*@__PURE__*/t(tn)("div",{class:"seperation"}),/*@__PURE__*/t(tn)("div",{class:"item input-parent flex "},[/*@__PURE__*/t(tn)("label",{for:"sleep-timer"},"Sleep timer in minutes"),/*@__PURE__*/t(tn)("input",{id:"sleep-timer",placeholder:"",value:oV.sleepTimer,type:"tel"})]),/*@__PURE__*/t(tn)("button",{class:"item",id:"button-save-settings",onclick:function(){e=document.getElementById("url-opml").value,/(ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?/.test(e)||e8("URL not valid"),oV.opml_url=document.getElementById("url-opml").value,oV.proxy_url=document.getElementById("url-proxy").value;var e,r=document.getElementById("sleep-timer").value;r&&!isNaN(r)&&Number(r)>0?oV.sleepTimer=parseInt(r,10):oV.sleepTimer="",oq.mastodon_logged||(oV.mastodon_server_url=document.getElementById("mastodon-server-url").value),/*@__PURE__*/t(tt).setItem("settings",oV).then(function(e){e8("settings saved",2e3)}).catch(function(e){console.log(e)})}},"save settings")])}},"/intro":{view:function(){return /*@__PURE__*/t(tn)("div",{class:"width-100 height-100",id:"intro",oninit:function(){oq.notKaiOS&&oK()},onremove:function(){localStorage.setItem("version",oq.version),document.querySelector(".loading-spinner").style.display="none"}},[/*@__PURE__*/t(tn)("img",{src:"./assets/icons/intro.svg",oncreate:function(){document.querySelector(".loading-spinner").style.display="block",e3(function(e){try{oq.version=e.manifest.version,document.querySelector("#version").textContent=e.manifest.version}catch(e){}("b2g"in navigator||oq.notKaiOS)&&fetch("/manifest.webmanifest").then(function(e){return e.json()}).then(function(e){oq.version=e.b2g_features.version})})}}),/*@__PURE__*/t(tn)("div",{class:"flex width-100 justify-content-center ",id:"version-box"},[/*@__PURE__*/t(tn)("kbd",{id:"version"},localStorage.getItem("version")||0)])])}},"/start":{view:function(){var e=oY.filter(function(e){return""===o4||o4===e.channel});return /*@__PURE__*/t(tn)("div",{id:"start",oncreate:function(){o9=/*@__PURE__*/t(tn).route.param("index")||0,e4("","",""),oq.notKaiOS&&e4("","",""),oq.notKaiOS&&e9("","",""),oq.notKaiOS&&oq.player&&e9("","","")}},/*@__PURE__*/t(tn)("span",{class:"channel",oncreate:function(){}},o4),e.map(function(r,n){var i=oH.includes(r.id)?"read":"";return /*@__PURE__*/t(tn)("article",{class:"item ".concat(i),"data-id":r.id,"data-type":r.type,oncreate:function(t){0==o9&&0==n?setTimeout(function(){t.dom.focus()},1200):r.id==o9&&setTimeout(function(){t.dom.focus(),ad()},1200),n==e.length-1&&setTimeout(function(){document.querySelectorAll(".item").forEach(function(e,t){e.setAttribute("tabindex",t)})},1e3)},onclick:function(){/*@__PURE__*/t(tn).route.set("/article?index="+r.id),oW(r.id)},onkeydown:function(e){"Enter"===e.key&&(/*@__PURE__*/t(tn).route.set("/article?index="+r.id),oW(r.id))}},[/*@__PURE__*/t(tn)("span",{class:"type-indicator"},r.type),/*@__PURE__*/t(tn)("time",/*@__PURE__*/t(iH)(r.isoDate).format("DD MMM YYYY")),/*@__PURE__*/t(tn)("h2",{oncreate:function(e){var t=e.dom;!0===r.reblog&&t.classList.add("reblog")}},oQ(r.feed_title)),/*@__PURE__*/t(tn)("h3",oQ(r.title))])}))}},"/options":{view:function(){return /*@__PURE__*/t(tn)("div",{id:"optionsView",class:"flex",oncreate:function(){e9("","",""),oq.notKaiOS&&e9("","",""),e4("","",""),oq.notKaiOS&&e4("","","")}},[/*@__PURE__*/t(tn)("button",{tabindex:0,class:"item",oncreate:function(e){e.dom.focus(),ad()},onclick:function(){/*@__PURE__*/t(tn).route.set("/about")}},"About"),/*@__PURE__*/t(tn)("button",{tabindex:1,class:"item",onclick:function(){/*@__PURE__*/t(tn).route.set("/settingsView")}},"Settings"),/*@__PURE__*/t(tn)("button",{tabindex:2,class:"item",onclick:function(){/*@__PURE__*/t(tn).route.set("/privacy_policy")}},"Privacy Policy"),/*@__PURE__*/t(tn)("div",{id:"KaiOSads-Wrapper",class:"",oncreate:function(){!1==oq.notKaiOS&&eQ()}})])}},"/about":{view:function(){return /*@__PURE__*/t(tn)("div",{class:"page"},/*@__PURE__*/t(tn)("p","Feedolin is an RSS/Atom reader and podcast player, available for both KaiOS and non-KaiOS users."),/*@__PURE__*/t(tn)("p","It supports connecting a Mastodon account to display articles alongside your RSS/Atom feeds."),/*@__PURE__*/t(tn)("p","The app allows you to listen to audio and watch videos directly if the feed provides the necessary URLs."),/*@__PURE__*/t(tn)("p","The list of subscribed websites and podcasts is managed either locally or via an OPML file from an external source, such as a public link in the cloud."),/*@__PURE__*/t(tn)("p","For non-KaiOS users, local files must be uploaded to the app."),/*@__PURE__*/t(tn)("h4",{style:"margin-top:20px; margin-bottom:10px;"},"Navigation:"),/*@__PURE__*/t(tn)("ul",[/*@__PURE__*/t(tn)("li",/*@__PURE__*/t(tn).trust("Use the up and down arrow keys to navigate between articles.

")),/*@__PURE__*/t(tn)("li",/*@__PURE__*/t(tn).trust("Use the left and right arrow keys to switch between categories.

")),/*@__PURE__*/t(tn)("li",/*@__PURE__*/t(tn).trust("Press Enter to view the content of an article.

")),/*@__PURE__*/t(tn)("li",{oncreate:function(e){oq.notKaiOS||(e.dom.style.display="none")}},/*@__PURE__*/t(tn).trust("Use Alt to access various options.")),/*@__PURE__*/t(tn)("li",{oncreate:function(e){oq.notKaiOS&&(e.dom.style.display="none")}},/*@__PURE__*/t(tn).trust("Use # Volume")),/*@__PURE__*/t(tn)("li",{oncreate:function(e){oq.notKaiOS&&(e.dom.style.display="none")}},/*@__PURE__*/t(tn).trust("Use * Audioplayer

")),/*@__PURE__*/t(tn)("li","Version: "+oq.version)]))}},"/privacy_policy":{view:function(){return /*@__PURE__*/t(tn)("div",{id:"privacy_policy",class:"page"},[/*@__PURE__*/t(tn)("h1","Privacy Policy for Feedolin"),/*@__PURE__*/t(tn)("p","Feedolin is committed to protecting your privacy. This policy explains how data is handled within the app."),/*@__PURE__*/t(tn)("h2","Data Storage and Collection"),/*@__PURE__*/t(tn)("p",["All data related to your RSS/Atom feeds and Mastodon account is stored ",/*@__PURE__*/t(tn)("strong","locally")," in your device’s browser. Feedolin does ",/*@__PURE__*/t(tn)("strong","not")," collect or store any data on external servers. The following information is stored locally:"]),/*@__PURE__*/t(tn)("ul",[/*@__PURE__*/t(tn)("li","Your subscribed RSS/Atom feeds and podcasts."),/*@__PURE__*/t(tn)("li","OPML files you upload or manage."),/*@__PURE__*/t(tn)("li","Your Mastodon account information and related data.")]),/*@__PURE__*/t(tn)("p","No server-side data storage or collection is performed."),/*@__PURE__*/t(tn)("h2","KaiOS Users"),/*@__PURE__*/t(tn)("p",["If you are using Feedolin on a KaiOS device, the app uses ",/*@__PURE__*/t(tn)("strong","KaiOS Ads"),", which may collect data related to your usage. The data collected by KaiOS Ads is subject to the ",/*@__PURE__*/t(tn)("a",{href:"https://www.kaiostech.com/privacy-policy/",target:"_blank",rel:"noopener noreferrer"},"KaiOS privacy policy"),"."]),/*@__PURE__*/t(tn)("p",["For users on all other platforms, ",/*@__PURE__*/t(tn)("strong","no ads")," are used, and no external data collection occurs."]),/*@__PURE__*/t(tn)("h2","External Sources Responsibility"),/*@__PURE__*/t(tn)("p",["Feedolin enables you to add feeds and connect to external sources such as RSS/Atom feeds, podcasts, and Mastodon accounts. You are ",/*@__PURE__*/t(tn)("strong","solely responsible")," for the sources you choose to trust and subscribe to. Feedolin does not verify or control the content or data provided by these external sources."]),/*@__PURE__*/t(tn)("h2","Third-Party Services"),/*@__PURE__*/t(tn)("p","Feedolin integrates with third-party services such as Mastodon. These services have their own privacy policies, and you should review them to understand how your data is handled."),/*@__PURE__*/t(tn)("h2","Policy Updates"),/*@__PURE__*/t(tn)("p","This Privacy Policy may be updated periodically. Any changes will be communicated through updates to the app."),/*@__PURE__*/t(tn)("p","By using Feedolin, you acknowledge and agree to this Privacy Policy.")])}},"/localOPML":{view:function(){return /*@__PURE__*/t(tn)("div",{class:"flex",id:"index",oncreate:function(){oq.notKaiOS&&e9("","",""),e4("","","")}},oq.local_opml.map(function(e,r){var n=e.split("/");return n=n[n.length-1],/*@__PURE__*/t(tn)("button",{class:"item",tabindex:r,oncreate:function(e){0==r&&e.dom.focus()},onclick:function(){try{var r=navigator.b2g.getDeviceStorage("sdcard").get(e);r.onsuccess=function(){var e=new FileReader;e.onload=function(){o1(e.result).error?e8("OPML file not valid",4e3):(oV.opml_local=e.result,oV.opml_local_filename=n,/*@__PURE__*/t(tt).setItem("settings",oV).then(function(){e8("OPML file added",4e3),/*@__PURE__*/t(tn).route.set("/settingsView")}))},e.onerror=function(){e8("OPML file not valid",4e3)},e.readAsText(this.result)},r.onerror=function(e){}}catch(e){}}},n)}))}},"/AudioPlayerView":af,"/VideoPlayerView":ae,"/YouTubePlayerView":at});var ah=function(){document.body.scrollTo({left:0,top:0,behavior:"smooth"}),document.documentElement.scrollTo({left:0,top:0,behavior:"smooth"})};document.addEventListener("DOMContentLoaded",function(e){var r,n,i=function(e){if("SELECT"==document.activeElement.nodeName||"date"==document.activeElement.type||"time"==document.activeElement.type||"volume"==oq.window_status)return!1;if(document.activeElement.classList.contains("scroll")){var t=document.querySelector(".scroll");1==e?t.scrollBy({left:0,top:10}):t.scrollBy({left:0,top:-10})}var r=document.activeElement.tabIndex+e,n=0;if(n=document.getElementById("app").querySelectorAll(".item"),document.activeElement.parentNode.classList.contains("input-parent"))return document.activeElement.parentNode.focus(),!0;r<=n.length&&(0,n[r]).focus(),r>=n.length&&(0,n[0]).focus(),ad()};function o(e){c({key:e})}r=0,document.addEventListener("touchstart",function(e){r=e.touches[0].pageX,document.querySelector("body").style.opacity=1},!1),document.addEventListener("touchmove",function(e){var n=1-Math.min(Math.abs(e.touches[0].pageX-r)/300,1);/*@__PURE__*/t(tn).route.get().startsWith("/article")&&(document.querySelector("body").style.opacity=n)},!1),document.addEventListener("touchend",function(e){document.querySelector("body").style.opacity=1},!1),document.querySelector("div.button-left").addEventListener("click",function(e){o("SoftLeft")}),document.querySelector("div.button-right").addEventListener("click",function(e){o("SoftRight")}),document.querySelector("div.button-center").addEventListener("click",function(e){o("Enter")}),document.querySelector("#top-bar div div.button-left").addEventListener("click",function(e){o("Backspace")}),document.querySelector("#top-bar div div.button-right").addEventListener("click",function(e){o("*")});var a=!1;document.addEventListener("keydown",function(e){a||("Backspace"==e.key&&"INPUT"!=document.activeElement.tagName&&e.preventDefault(),"EndCall"===e.key&&(e.preventDefault(),window.close()),e.repeat||(u=!1,n=setTimeout(function(){u=!0,function(e){switch(e.key){case"Backspace":window.close();break;case"0":oY=[],oz()}}(e)},2e3)),e.repeat&&("Backspace"==e.key&&e.preventDefault(),"Backspace"==e.key&&(u=!1),e.key),a=!0,setTimeout(function(){a=!1},300))});var s=!1;document.addEventListener("keyup",function(e){s||(function(e){if("Backspace"==e.key&&e.preventDefault(),!1===oq.visibility)return 0;clearTimeout(n),u||c(e)}(e),s=!0,setTimeout(function(){s=!1},300))}),document.addEventListener("swiped",function(e){var r=/*@__PURE__*/t(tn).route.get(),n=e.detail.dir;if("down"==n&&(0===window.scrollY||0===document.documentElement.scrollTop)&&(e.detail.yEnd,e.detail.yStart),"right"==n&&r.startsWith("/start")){--o6<1&&(o6=o$.length-1),o4=o$[o6],/*@__PURE__*/t(tn).redraw();var i=/*@__PURE__*/t(tn).route.param();i.index=0,/*@__PURE__*/t(tn).route.set("/start",i)}if("left"==n&&r.startsWith("/start")){++o6>o$.length-1&&(o6=0),o4=o$[o6],/*@__PURE__*/t(tn).redraw();var o=/*@__PURE__*/t(tn).route.param();o.index=0,/*@__PURE__*/t(tn).route.set("/start",o)}});var u=!1;function c(e){var r=/*@__PURE__*/t(tn).route.get();switch(e.key){case"ArrowRight":if(r.startsWith("/start")){++o6>o$.length-1&&(o6=0),o4=o$[o6],/*@__PURE__*/t(tn).redraw();var n=/*@__PURE__*/t(tn).route.param();n.index=0,/*@__PURE__*/t(tn).route.set("/start",n),setTimeout(function(){document.querySelectorAll("article.item")[0].focus(),ad()},500)}break;case"ArrowLeft":if(r.startsWith("/start")){--o6<0&&(o6=o$.length-1),o4=o$[o6],/*@__PURE__*/t(tn).redraw();var o=/*@__PURE__*/t(tn).route.param();o.index=0,/*@__PURE__*/t(tn).route.set("/start",o),setTimeout(function(){document.querySelectorAll("article.item")[0].focus(),ad()},500)}break;case"ArrowUp":i(-1),"volume"==oq.window_status&&(navigator.volumeManager.requestVolumeUp(),oq.window_status="volume",setTimeout(function(){oq.window_status=""},2e3));break;case"ArrowDown":i(1),"volume"==oq.window_status&&(navigator.volumeManager.requestVolumeDown(),oq.window_status="volume",setTimeout(function(){oq.window_status=""},2e3));break;case"SoftRight":case"Alt":r.startsWith("/start")&&/*@__PURE__*/t(tn).route.set("/options"),r.startsWith("/article")&&("audio"==oU.type&&/*@__PURE__*/t(tn).route.set("/AudioPlayerView?url=".concat(encodeURIComponent(oU.enclosure["@_url"]))),"video"==oU.type&&/*@__PURE__*/t(tn).route.set("/VideoPlayerView?url=".concat(encodeURIComponent(oU.enclosure["@_url"]))),"youtube"==oU.type&&/*@__PURE__*/t(tn).route.set("/YouTubePlayerView?videoId=".concat(encodeURIComponent(oU.youtubeid))));break;case"SoftLeft":case"Control":r.startsWith("/start")&&oz(),r.startsWith("/article")&&window.open(oU.url),r.startsWith("/AudioPlayerView")&&(oq.sleepTimer?oR():oB(6e4*oV.sleepTimer));break;case"Enter":document.activeElement.classList.contains("input-parent")&&document.activeElement.children[0].focus();break;case"*":/*@__PURE__*/t(tn).route.set("/AudioPlayerView");break;case"#":e0();break;case"Backspace":if(r.startsWith("/article")){var a=/*@__PURE__*/t(tn).route.param("index");/*@__PURE__*/t(tn).route.set("/start?index="+a)}if(r.startsWith("/YouTubePlayerView")){var s=/*@__PURE__*/t(tn).route.param("index");/*@__PURE__*/t(tn).route.set("/start?index="+s)}if(r.startsWith("/localOPML")&&history.back(),r.startsWith("/index")&&/*@__PURE__*/t(tn).route.set("/start?index=0"),r.startsWith("/about")&&/*@__PURE__*/t(tn).route.set("/options"),r.startsWith("/privacy_policy")&&/*@__PURE__*/t(tn).route.set("/options"),r.startsWith("/options")&&/*@__PURE__*/t(tn).route.set("/start?index=0"),r.startsWith("/settingsView")){if("INPUT"==document.activeElement.tagName)return!1;/*@__PURE__*/t(tn).route.set("/options")}r.startsWith("/Video")&&history.back(),r.startsWith("/Audio")&&history.back()}}document.addEventListener("visibilitychange",function(){"visible"===document.visibilityState&&oV.last_update?(oq.visibility=!0,new Date/1e3-oV.last_update/1e3>oV.cache_time&&(oY=[],e8("load new content",4e3),o5())):oq.visibility=!1})}),window.addEventListener("online",function(){oq.deviceOnline=!0}),window.addEventListener("offline",function(){oq.deviceOnline=!1}),window.addEventListener("beforeunload",function(e){var r=window.performance.getEntriesByType("navigation"),n=window.performance.navigation?window.performance.navigation.type:null;(r.length&&"reload"===r[0].type||1===n)&&(e.preventDefault(),oY=[],e8("load new content",4e3),o5(),/*@__PURE__*/t(tn).route.set("/intro"),e.returnValue="Are you sure you want to leave the page?")});var ap={};ap=ez("e6gnT").getBundleURL("3BHab")+"sw.js";try{navigator.serviceWorker.register(ap).then(function(e){console.log("Service Worker registered successfully."),e.waiting&&(console.log("A waiting Service Worker is already in place."),e.update()),"b2g"in navigator&&(e.systemMessageManager?e.systemMessageManager.subscribe("activity").then(function(){console.log("Subscribed to general activity.")},function(e){alert("Error subscribing to activity:",e)}):alert("systemMessageManager is not available."))}).catch(function(e){alert("Service Worker registration failed:",e)})}catch(e){console.error("Error during Service Worker setup:",e)}oD.addEventListener("message",function(e){var r=e.data.oauth_success;if(console.log(r),r){var n=new Headers;n.append("Content-Type","application/x-www-form-urlencoded");var i=new URLSearchParams;i.append("code",r),i.append("scope","read"),i.append("grant_type","authorization_code"),i.append("redirect_uri","https://feedolin.strukturart.com"),i.append("client_id","HqIUbDiOkeIoDPoOJNLQOgVyPi1ZOkPMW29UVkhl3i8"),i.append("client_secret","R_9DvQ5V84yZQg3BEdDHjz5uGQGUN4qrPx9YgmrJ81Q"),fetch(oV.mastodon_server_url+"/oauth/token",{method:"POST",headers:n,body:i,redirect:"follow"}).then(function(e){return e.json()}).then(function(e){oV.mastodon_token=e.access_token,/*@__PURE__*/t(tt).setItem("settings",oV),/*@__PURE__*/t(tn).route.set("/start?index=0"),e8("Successfully connected",1e4)}).catch(function(e){console.error("Error:",e),e8("Connection failed")})}}); \ No newline at end of file + */function(e,t){"function"!=typeof e.CustomEvent&&(e.CustomEvent=function(e,r){r=r||{bubbles:!1,cancelable:!1,detail:void 0};var n=t.createEvent("CustomEvent");return n.initCustomEvent(e,r.bubbles,r.cancelable,r.detail),n},e.CustomEvent.prototype=e.Event.prototype),t.addEventListener("touchstart",function(e){"true"!==e.target.getAttribute("data-swipe-ignore")&&(s=e.target,a=Date.now(),r=e.touches[0].clientX,n=e.touches[0].clientY,i=0,o=0,u=e.touches.length)},!1),t.addEventListener("touchmove",function(e){if(r&&n){var t=e.touches[0].clientX,a=e.touches[0].clientY;i=r-t,o=n-a}},!1),t.addEventListener("touchend",function(e){if(s===e.target){var l=parseInt(c(s,"data-swipe-threshold","20"),10),f=c(s,"data-swipe-unit","px"),d=parseInt(c(s,"data-swipe-timeout","500"),10),h=Date.now()-a,p="",m=e.changedTouches||e.touches||[];if("vh"===f&&(l=Math.round(l/100*t.documentElement.clientHeight)),"vw"===f&&(l=Math.round(l/100*t.documentElement.clientWidth)),Math.abs(i)>Math.abs(o)?Math.abs(i)>l&&h0?"swiped-left":"swiped-right"):Math.abs(o)>l&&h0?"swiped-up":"swiped-down"),""!==p){var v={dir:p.replace(/swiped-/,""),touchType:(m[0]||{}).touchType||"direct",fingers:u,xStart:parseInt(r,10),xEnd:parseInt((m[0]||{}).clientX||-1,10),yStart:parseInt(n,10),yEnd:parseInt((m[0]||{}).clientY||-1,10)};s.dispatchEvent(new CustomEvent("swiped",{bubbles:!0,cancelable:!0,detail:v})),s.dispatchEvent(new CustomEvent(p,{bubbles:!0,cancelable:!0,detail:v}))}r=null,n=null,a=null}},!1);var r=null,n=null,i=null,o=null,a=null,s=null,u=0;function c(e,r,n){for(;e&&e!==t.documentElement;){var i=e.getAttribute(r);if(i)return i;e=e.parentNode}return n}}(window,document);var iW={},iG={};e(iG,"validate",function(){return eR},function(e){return eR=e});var iY=":A-Za-z_\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD",iK=RegExp("^"+("["+iY+"][")+iY+"\\-.\\d\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$");eM=function(e){return void 0!==e},eq=function(e){return null!=iK.exec(e)},eU=function(e,t){for(var r=[],n=t.exec(e);n;){var i=[];i.startIndex=t.lastIndex-n[0].length;for(var o=n.length,a=0;a5&&"xml"===n)return i3("InvalidXml","XML declaration allowed only at the start of the document.",i2(e,t));if("?"!=e[t]||">"!=e[t+1])continue;t++;break}return t}function iX(e,t){if(e.length>t+5&&"-"===e[t+1]&&"-"===e[t+2]){for(t+=3;t"===e[t+2]){t+=2;break}}else if(e.length>t+8&&"D"===e[t+1]&&"O"===e[t+2]&&"C"===e[t+3]&&"T"===e[t+4]&&"Y"===e[t+5]&&"P"===e[t+6]&&"E"===e[t+7]){var r=1;for(t+=8;t"===e[t]&&0==--r)break}else if(e.length>t+9&&"["===e[t+1]&&"C"===e[t+2]&&"D"===e[t+3]&&"A"===e[t+4]&&"T"===e[t+5]&&"A"===e[t+6]&&"["===e[t+7]){for(t+=8;t"===e[t+2]){t+=2;break}}return t}eR=function(e,t){t=Object.assign({},iJ,t);var r=[],n=!1,i=!1;"\uFEFF"===e[0]&&(e=e.substr(1));for(var o=0;o"!==e[o]&&" "!==e[o]&&" "!==e[o]&&"\n"!==e[o]&&"\r"!==e[o];o++)u+=e[o];if("/"===(u=u.trim())[u.length-1]&&(u=u.substring(0,u.length-1),o--),!eq(u))return i3("InvalidTag",0===u.trim().length?"Invalid space after '<'.":"Tag '"+u+"' is an invalid name.",i2(e,o));var c=function(e,t){for(var r="",n="",i=!1;t"===e[t]&&""===n){i=!0;break}r+=e[t]}return""===n&&{value:r,index:t,tagClosed:i}}(e,o);if(!1===c)return i3("InvalidAttr","Attributes for '"+u+"' have open quote.",i2(e,o));var l=c.value;if(o=c.index,"/"===l[l.length-1]){var f=o-l.length,d=i1(l=l.substring(0,l.length-1),t);if(!0!==d)return i3(d.err.code,d.err.msg,i2(e,f+d.err.line));n=!0}else if(s){if(!c.tagClosed)return i3("InvalidTag","Closing tag '"+u+"' doesn't have proper closing.",i2(e,o));if(l.trim().length>0)return i3("InvalidTag","Closing tag '"+u+"' can't have attributes or invalid starting.",i2(e,a));if(0===r.length)return i3("InvalidTag","Closing tag '"+u+"' has not been opened.",i2(e,a));var h=r.pop();if(u!==h.tagName){var p=i2(e,h.tagStartPos);return i3("InvalidTag","Expected closing tag '"+h.tagName+"' (opened in line "+p.line+", col "+p.col+") instead of closing tag '"+u+"'.",i2(e,a))}0==r.length&&(i=!0)}else{var m=i1(l,t);if(!0!==m)return i3(m.err.code,m.err.msg,i2(e,o-l.length+m.err.line));if(!0===i)return i3("InvalidXml","Multiple possible root nodes found.",i2(e,o));-1!==t.unpairedTags.indexOf(u)||r.push({tagName:u,tagStartPos:a}),n=!0}for(o++;o0)||i3("InvalidXml","Invalid '"+JSON.stringify(r.map(function(e){return e.tagName}),null,4).replace(/\r?\n/g,"")+"' found.",{line:1,col:1}):i3("InvalidXml","Start tag expected.",1)};var i0=RegExp("(\\s*)([^\\s=]+)(\\s*=)?(\\s*(['\"])(([\\s\\S])*?)\\5)?","g");function i1(e,t){for(var r=eU(e,i0),n={},i=0;i0?this.child.push((tW(t={},e.tagname,e.child),tW(t,":@",e[":@"]),t)):this.child.push(tW({},e.tagname,e.child))}}]),e}();var i7={};function oe(e,t){return"!"===e[t+1]&&"-"===e[t+2]&&"-"===e[t+3]}i7=function(e,t){var r={};if("O"===e[t+3]&&"C"===e[t+4]&&"T"===e[t+5]&&"Y"===e[t+6]&&"P"===e[t+7]&&"E"===e[t+8]){t+=9;for(var n,i,o,a,s,u,c,l,f,d=1,h=!1,p=!1;t"===e[t]){if(p?"-"===e[t-1]&&"-"===e[t-2]&&(p=!1,d--):d--,0===d)break}else"["===e[t]?h=!0:e[t]}else{if(h&&"!"===(n=e)[(i=t)+1]&&"E"===n[i+2]&&"N"===n[i+3]&&"T"===n[i+4]&&"I"===n[i+5]&&"T"===n[i+6]&&"Y"===n[i+7])t+=7,entityName=(f=n8(function(e,t){for(var r="";t1&&void 0!==arguments[1]?arguments[1]:{};if(r=Object.assign({},oi,r),!e||"string"!=typeof e)return e;var n=e.trim();if(void 0!==r.skipLike&&r.skipLike.test(n))return e;if(r.hex&&or.test(n))return Number.parseInt(n,16);var i=on.exec(n);if(!i)return e;var o=i[1],a=i[2],s=((t=i[3])&&-1!==t.indexOf(".")&&("."===(t=t.replace(/0+$/,""))?t="0":"."===t[0]?t="0"+t:"."===t[t.length-1]&&(t=t.substr(0,t.length-1))),t),u=i[4]||i[6];if(!r.leadingZeros&&a.length>0&&o&&"."!==n[2]||!r.leadingZeros&&a.length>0&&!o&&"."!==n[1])return e;var c=Number(n),l=""+c;return -1!==l.search(/[eE]/)||u?r.eNotation?c:e:-1!==n.indexOf(".")?"0"===l&&""===s?c:l===s?c:o&&l==="-"+s?c:e:a?s===l?c:o+s===l?c:e:n===l?c:n===o+l?c:e};var oo={};function oa(e){for(var t=Object.keys(e),r=0;r0)){a||(e=this.replaceEntitiesValue(e));var s=this.options.tagValueProcessor(t,e,r,i,o);return null==s?e:(void 0===s?"undefined":(0,tr._)(s))!==(void 0===e?"undefined":(0,tr._)(e))||s!==e?s:this.options.trimValues?ob(e,this.options.parseTagValue,this.options.numberParseOptions):e.trim()===e?ob(e,this.options.parseTagValue,this.options.numberParseOptions):e}}function ou(e){if(this.options.removeNSPrefix){var t=e.split(":"),r="/"===e.charAt(0)?"/":"";if("xmlns"===t[0])return"";2===t.length&&(e=r+t[1])}return e}oo=function(e){return"function"==typeof e?e:Array.isArray(e)?function(t){var r=!0,n=!1,i=void 0;try{for(var o,a=e[Symbol.iterator]();!(r=(o=a.next()).done);r=!0){var s=o.value;if("string"==typeof s&&t===s||s instanceof RegExp&&s.test(t))return!0}}catch(e){n=!0,i=e}finally{try{r||null==a.return||a.return()}finally{if(n)throw i}}}:function(){return!1}};var oc=RegExp("([^\\s=]+)\\s*(=\\s*(['\"])([\\s\\S]*?)\\3)?","gm");function ol(e,t,r){if(!0!==this.options.ignoreAttributes&&"string"==typeof e){for(var n=eU(e,oc),i=n.length,o={},a=0;a",o,"Closing Tag is not closed."),s=e.substring(o+2,a).trim();if(this.options.removeNSPrefix){var u=s.indexOf(":");-1!==u&&(s=s.substr(u+1))}this.options.transformTagName&&(s=this.options.transformTagName(s)),r&&(n=this.saveTextToParentTag(n,r,i));var c=i.substring(i.lastIndexOf(".")+1);if(s&&-1!==this.options.unpairedTags.indexOf(s))throw Error("Unpaired tag can not be used as closing tag: "));var l=0;c&&-1!==this.options.unpairedTags.indexOf(c)?(l=i.lastIndexOf(".",i.lastIndexOf(".")-1),this.tagsNodeStack.pop()):l=i.lastIndexOf("."),i=i.substring(0,l),r=this.tagsNodeStack.pop(),n="",o=a}else if("?"===e[o+1]){var f=og(e,o,!1,"?>");if(!f)throw Error("Pi Tag is not closed.");if(n=this.saveTextToParentTag(n,r,i),this.options.ignoreDeclaration&&"?xml"===f.tagName||this.options.ignorePiTags);else{var d=new i9(f.tagName);d.add(this.options.textNodeName,""),f.tagName!==f.tagExp&&f.attrExpPresent&&(d[":@"]=this.buildAttributesMap(f.tagExp,i,f.tagName)),this.addChild(r,d,i)}o=f.closeIndex+1}else if("!--"===e.substr(o+1,3)){var h=ov(e,"-->",o+4,"Comment is not closed.");if(this.options.commentPropName){var p=e.substring(o+4,h-2);n=this.saveTextToParentTag(n,r,i),r.add(this.options.commentPropName,[tW({},this.options.textNodeName,p)])}o=h}else if("!D"===e.substr(o+1,2)){var m=i7(e,o);this.docTypeEntities=m.entities,o=m.i}else if("!["===e.substr(o+1,2)){var v=ov(e,"]]>",o,"CDATA is not closed.")-2,g=e.substring(o+9,v);n=this.saveTextToParentTag(n,r,i);var y=this.parseTextData(g,r.tagname,i,!0,!1,!0,!0);void 0==y&&(y=""),this.options.cdataPropName?r.add(this.options.cdataPropName,[tW({},this.options.textNodeName,g)]):r.add(this.options.textNodeName,y),o=v+2}else{var b=og(e,o,this.options.removeNSPrefix),w=b.tagName,x=b.rawTagName,E=b.tagExp,S=b.attrExpPresent,k=b.closeIndex;this.options.transformTagName&&(w=this.options.transformTagName(w)),r&&n&&"!xml"!==r.tagname&&(n=this.saveTextToParentTag(n,r,i,!1));var A=r;if(A&&-1!==this.options.unpairedTags.indexOf(A.tagname)&&(r=this.tagsNodeStack.pop(),i=i.substring(0,i.lastIndexOf("."))),w!==t.tagname&&(i+=i?"."+w:w),this.isItStopNode(this.options.stopNodes,i,w)){var I="";if(E.length>0&&E.lastIndexOf("/")===E.length-1)"/"===w[w.length-1]?(w=w.substr(0,w.length-1),i=i.substr(0,i.length-1),E=w):E=E.substr(0,E.length-1),o=b.closeIndex;else if(-1!==this.options.unpairedTags.indexOf(w))o=b.closeIndex;else{var T=this.readStopNodeData(e,x,k+1);if(!T)throw Error("Unexpected end of ".concat(x));o=T.i,I=T.tagContent}var N=new i9(w);w!==E&&S&&(N[":@"]=this.buildAttributesMap(E,i,w)),I&&(I=this.parseTextData(I,w,i,!0,S,!0,!0)),i=i.substr(0,i.lastIndexOf(".")),N.add(this.options.textNodeName,I),this.addChild(r,N,i)}else{if(E.length>0&&E.lastIndexOf("/")===E.length-1){"/"===w[w.length-1]?(w=w.substr(0,w.length-1),i=i.substr(0,i.length-1),E=w):E=E.substr(0,E.length-1),this.options.transformTagName&&(w=this.options.transformTagName(w));var O=new i9(w);w!==E&&S&&(O[":@"]=this.buildAttributesMap(E,i,w)),this.addChild(r,O,i),i=i.substr(0,i.lastIndexOf("."))}else{var _=new i9(w);this.tagsNodeStack.push(r),w!==E&&S&&(_[":@"]=this.buildAttributesMap(E,i,w)),this.addChild(r,_,i),r=_}n="",o=k}}}else n+=e[o];return t.child};function od(e,t,r){var n=this.options.updateTag(t.tagname,r,t[":@"]);!1===n||("string"==typeof n&&(t.tagname=n),e.addChild(t))}var oh=function(e){if(this.options.processEntities){for(var t in this.docTypeEntities){var r=this.docTypeEntities[t];e=e.replace(r.regx,r.val)}for(var n in this.lastEntities){var i=this.lastEntities[n];e=e.replace(i.regex,i.val)}if(this.options.htmlEntities)for(var o in this.htmlEntities){var a=this.htmlEntities[o];e=e.replace(a.regex,a.val)}e=e.replace(this.ampEntity.regex,this.ampEntity.val)}return e};function op(e,t,r,n){return e&&(void 0===n&&(n=0===Object.keys(t.child).length),void 0!==(e=this.parseTextData(e,t.tagname,r,!1,!!t[":@"]&&0!==Object.keys(t[":@"]).length,n))&&""!==e&&t.add(this.options.textNodeName,e),e=""),e}function om(e,t,r){var n="*."+r;for(var i in e){var o=e[i];if(n===o||t===o)return!0}return!1}function ov(e,t,r,n){var i=e.indexOf(t,r);if(-1!==i)return i+t.length-1;throw Error(n)}function og(e,t,r){var n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:">",i=function(e,t){for(var r,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:">",i="",o=t;o",r,"".concat(t," is not closed"));if(e.substring(r+2,o).trim()===t&&0==--i)return{tagContent:e.substring(n,r),i:o};r=o}else if("?"===e[r+1])r=ov(e,"?>",r+1,"StopNode is not closed.");else if("!--"===e.substr(r+1,3))r=ov(e,"-->",r+3,"StopNode is not closed.");else if("!["===e.substr(r+1,2))r=ov(e,"]]>",r,"StopNode is not closed.")-2;else{var a=og(e,r,">");a&&((a&&a.tagName)===t&&"/"!==a.tagExp[a.tagExp.length-1]&&i++,r=a.closeIndex)}}}function ob(e,t,r){if(t&&"string"==typeof e){var n=e.trim();return"true"===n||"false"!==n&&ot(e,r)}return eM(e)?e:""}i4=function e(t){tf(this,e),this.options=t,this.currentNode=null,this.tagsNodeStack=[],this.docTypeEntities={},this.lastEntities={apos:{regex:/&(apos|#39|#x27);/g,val:"'"},gt:{regex:/&(gt|#62|#x3E);/g,val:">"},lt:{regex:/&(lt|#60|#x3C);/g,val:"<"},quot:{regex:/&(quot|#34|#x22);/g,val:'"'}},this.ampEntity={regex:/&(amp|#38|#x26);/g,val:"&"},this.htmlEntities={space:{regex:/&(nbsp|#160);/g,val:" "},cent:{regex:/&(cent|#162);/g,val:"¢"},pound:{regex:/&(pound|#163);/g,val:"£"},yen:{regex:/&(yen|#165);/g,val:"¥"},euro:{regex:/&(euro|#8364);/g,val:"€"},copyright:{regex:/&(copy|#169);/g,val:"©"},reg:{regex:/&(reg|#174);/g,val:"®"},inr:{regex:/&(inr|#8377);/g,val:"₹"},num_dec:{regex:/&#([0-9]{1,7});/g,val:function(e,t){return String.fromCharCode(Number.parseInt(t,10))}},num_hex:{regex:/&#x([0-9a-fA-F]{1,6});/g,val:function(e,t){return String.fromCharCode(Number.parseInt(t,16))}}},this.addExternalEntities=oa,this.parseXml=of,this.parseTextData=os,this.resolveNameSpace=ou,this.buildAttributesMap=ol,this.isItStopNode=om,this.replaceEntitiesValue=oh,this.readStopNodeData=oy,this.saveTextToParentTag=op,this.addChild=od,this.ignoreAttributesFn=oo(this.options.ignoreAttributes)},eF=function(e,t){return function e(t,r,n){for(var i,o={},a=0;a0&&(o[r.textNodeName]=i):void 0!==i&&(o[r.textNodeName]=i),o}(e,t)},i8=/*#__PURE__*/function(){function e(t){tf(this,e),this.externalEntities={},this.options=ej(t)}return th(e,[{key:"parse",value:function(e,t){if("string"==typeof e);else if(e.toString)e=e.toString();else throw Error("XML data is accepted in String or Bytes[] form.");if(t){!0===t&&(t={});var r=eR(e,t);if(!0!==r)throw Error("".concat(r.err.msg,":").concat(r.err.line,":").concat(r.err.col))}var n=new i4(this.options);n.addExternalEntities(this.externalEntities);var i=n.parseXml(e);return this.options.preserveOrder||void 0===i?i:eF(i,this.options)}},{key:"addEntity",value:function(e,t){if(-1!==t.indexOf("&"))throw Error("Entity value can't have '&'");if(-1!==e.indexOf("&")||-1!==e.indexOf(";"))throw Error("An entity must be set without '&' and ';'. Eg. use '#xD' for ' '");if("&"===t)throw Error("An entity with value '&' is not permitted");this.externalEntities[e]=t}}]),e}();var ow={};function ox(e,t){var r="";if(e&&!t.ignoreAttributes){for(var n in e)if(e.hasOwnProperty(n)){var i=t.attributeValueProcessor(n,e[n]);!0===(i=oE(i,t))&&t.suppressBooleanAttributes?r+=" ".concat(n.substr(t.attributeNamePrefix.length)):r+=" ".concat(n.substr(t.attributeNamePrefix.length),'="').concat(i,'"')}}return r}function oE(e,t){if(e&&e.length>0&&t.processEntities)for(var r=0;r0&&(r="\n"),function e(t,r,n,i){for(var o="",a=!1,s=0;s"),a=!1;continue}if(c===r.commentPropName){o+=i+""),a=!0;continue}if("?"===c[0]){var d=ox(u[":@"],r),h="?xml"===c?"":i,p=u[c][0][r.textNodeName];p=0!==p.length?" "+p:"",o+=h+"<".concat(c).concat(p).concat(d,"?>"),a=!0;continue}var m=i;""!==m&&(m+=r.indentBy);var v=ox(u[":@"],r),g=i+"<".concat(c).concat(v),y=e(u[c],r,l,m);-1!==r.unpairedTags.indexOf(c)?r.suppressUnpairedNode?o+=g+">":o+=g+"/>":(!y||0===y.length)&&r.suppressEmptyNode?o+=g+"/>":y&&y.endsWith(">")?o+=g+">".concat(y).concat(i,""):(o+=g+">",y&&""!==i&&(y.includes("/>")||y.includes("")),a=!0}}return o}(e,t,"",r)};var oS={attributeNamePrefix:"@_",attributesGroupName:!1,textNodeName:"#text",ignoreAttributes:!0,cdataPropName:!1,format:!1,indentBy:" ",suppressEmptyNode:!1,suppressUnpairedNode:!0,suppressBooleanAttributes:!0,tagValueProcessor:function(e,t){return t},attributeValueProcessor:function(e,t){return t},preserveOrder:!1,commentPropName:!1,unpairedTags:[],entities:[{regex:RegExp("&","g"),val:"&"},{regex:RegExp(">","g"),val:">"},{regex:RegExp("<","g"),val:"<"},{regex:RegExp("'","g"),val:"'"},{regex:RegExp('"',"g"),val:"""}],processEntities:!0,stopNodes:[],oneListGroup:!1};function ok(e){this.options=Object.assign({},oS,e),!0===this.options.ignoreAttributes||this.options.attributesGroupName?this.isAttribute=function(){return!1}:(this.ignoreAttributesFn=oo(this.options.ignoreAttributes),this.attrPrefixLen=this.options.attributeNamePrefix.length,this.isAttribute=oT),this.processTextOrObjNode=oA,this.options.format?(this.indentate=oI,this.tagEndChar=">\n",this.newLine="\n"):(this.indentate=function(){return""},this.tagEndChar=">",this.newLine="")}function oA(e,t,r,n){var i=this.j2x(e,r+1,n.concat(t));return void 0!==e[this.options.textNodeName]&&1===Object.keys(e).length?this.buildTextValNode(e[this.options.textNodeName],t,i.attrStr,r):this.buildObjectNode(i.val,t,i.attrStr,r)}function oI(e){return this.options.indentBy.repeat(e)}function oT(e){return!!e.startsWith(this.options.attributeNamePrefix)&&e!==this.options.textNodeName&&e.substr(this.attrPrefixLen)}ok.prototype.build=function(e){return this.options.preserveOrder?ow(e,this.options):(Array.isArray(e)&&this.options.arrayNodeName&&this.options.arrayNodeName.length>1&&(e=tW({},this.options.arrayNodeName,e)),this.j2x(e,0,[]).val)},ok.prototype.j2x=function(e,t,r){var n="",i="",o=r.join(".");for(var a in e)if(Object.prototype.hasOwnProperty.call(e,a)){if(void 0===e[a])this.isAttribute(a)&&(i+="");else if(null===e[a])this.isAttribute(a)?i+="":"?"===a[0]?i+=this.indentate(t)+"<"+a+"?"+this.tagEndChar:i+=this.indentate(t)+"<"+a+"/"+this.tagEndChar;else if(e[a]instanceof Date)i+=this.buildTextValNode(e[a],a,"",t);else if("object"!=typeof e[a]){var s=this.isAttribute(a);if(s&&!this.ignoreAttributesFn(s,o))n+=this.buildAttrPairStr(s,""+e[a]);else if(!s){if(a===this.options.textNodeName){var u=this.options.tagValueProcessor(a,""+e[a]);i+=this.replaceEntitiesValue(u)}else i+=this.buildTextValNode(e[a],a,"",t)}}else if(Array.isArray(e[a])){for(var c=e[a].length,l="",f="",d=0;d"+e+i:!1!==this.options.commentPropName&&t===this.options.commentPropName&&0===o.length?this.indentate(n)+"")+this.newLine:this.indentate(n)+"<"+t+r+o+this.tagEndChar+e+this.indentate(n)+i},ok.prototype.closeTag=function(e){var t="";return -1!==this.options.unpairedTags.indexOf(e)?this.options.suppressUnpairedNode||(t="/"):t=this.options.suppressEmptyNode?"/":">")+this.newLine;if(!1!==this.options.commentPropName&&t===this.options.commentPropName)return this.indentate(n)+"")+this.newLine;if("?"===t[0])return this.indentate(n)+"<"+t+r+"?"+this.tagEndChar;var i=this.options.tagValueProcessor(t,e);return""===(i=this.replaceEntitiesValue(i))?this.indentate(n)+"<"+t+r+this.closeTag(t)+this.tagEndChar:this.indentate(n)+"<"+t+r+">"+i+"0&&this.options.processEntities)for(var t=0;t0))return[3,5];i.label=1;case 1:return i.trys.push([1,3,,4]),[4,o2(r)];case 2:return i.sent(),o$.last_update=new Date,/*@__PURE__*/t(tt).setItem("settings",o$),[3,4];case 3:return i.sent(),[3,4];case 4:return[3,6];case 5:alert("Generated download list is empty."),i.label=6;case 6:return[3,8];case 7:console.error("No OPML content found."),i.label=8;case 8:return[2]}})}),function(e){return en.apply(this,arguments)}),o3=function(e){var t=oY.parseFromString(e,"text/xml");if(!t||t.getElementsByTagName("parsererror").length>0)return console.error("Invalid OPML data."),{error:"Invalid OPML data",downloadList:[]};var r=t.querySelector("body");if(!r)return console.error("No 'body' element found in the OPML data."),{error:"No 'body' element found",downloadList:[]};var n=0,i=r.querySelectorAll("outline"),o=[];return i.forEach(function(e){e.querySelectorAll("outline").forEach(function(t){var r=t.getAttribute("xmlUrl");r&&o.push({error:"",title:t.getAttribute("title")||"Untitled",url:r,index:n++,channel:e.getAttribute("text")||"Unknown",type:t.getAttribute("type")||"rss",maxEpisodes:t.getAttribute("maxEpisodes")||5})})}),{error:"",downloadList:o}},o2=(ei=eY(function(e){var r,n,i,o,a;return(0,eJ.__generator)(this,function(s){return r=0,n=e.length,i=!1,o=function(){o9=localStorage.getItem("last_channel_filter"),r===n&&(console.log("All feeds are loaded"),/*@__PURE__*/t(tt).setItem("articles",oK).then(function(){oK.sort(function(e,t){return new Date(t.isoDate)-new Date(e.isoDate)}),oK.forEach(function(e){-1===oH.indexOf(e.channel)&&e.channel&&oH.push(e.channel)}),oH.length>0&&!i&&(o9=localStorage.getItem("last_channel_filter")||oH[0],i=!0),/*@__PURE__*/t(tn).route.set("/start")}).catch(function(e){console.error("Feeds cached",e)}))},a=[],e.forEach(function(e){if("mastodon"===e.type)fetch(e.url).then(function(e){return e.json()}).then(function(t){t.forEach(function(t,r){if(!(r>5)){var n={channel:e.channel,id:t.id,type:"mastodon",pubDate:t.created_at,isoDate:t.created_at,title:t.account.display_name||t.account.username,content:t.content,url:t.uri,reblog:!1};t.media_attachments.length>0&&("image"===t.media_attachments[0].type?n.content+="
"):"video"===t.media_attachments[0].type?n.enclosure={"@_type":"video",url:t.media_attachments[0].url}:"audio"===t.media_attachments[0].type&&(n.enclosure={"@_type":"audio",url:t.media_attachments[0].url})),""==t.content&&(n.content=t.reblog.content,n.reblog=!0,n.reblogUser=t.account.display_name||t.reblog.account.acct,t.reblog.media_attachments.length>0&&("image"===t.reblog.media_attachments[0].type?n.content+="
"):"video"===t.reblog.media_attachments[0].type?n.enclosure={"@_type":"video",url:t.reblog.media_attachments[0].url}:"audio"===t.reblog.media_attachments[0].type&&(n.enclosure={"@_type":"audio",url:t.reblog.media_attachments[0].url}))),oK.push(n)}})}).catch(function(t){e.error=t}).finally(function(){r++,o()});else{var n=new XMLHttpRequest;new Date().getTime();var i=e.url;n.open("GET",oj+i,!0),n.onload=function(){if(200!==n.status){e.error=n.status,r++,o();return}var i=n.response;if(!i){e.error=n.status,r++,o();return}try{var s=oM.parse(i);s.feed&&s.feed.entry.forEach(function(r,n){if(n15)){var r={channel:"Mastodon",id:e.id,type:"mastodon",pubDate:e.created_at,isoDate:e.created_at,title:e.account.display_name,content:e.content,url:e.uri,reblog:!1};e.media_attachments.length>0&&("image"===e.media_attachments[0].type?r.content+="
"):"video"===e.media_attachments[0].type?r.enclosure={"@_type":"video",url:e.media_attachments[0].url}:"audio"===e.media_attachments[0].type&&(r.enclosure={"@_type":"audio",url:e.media_attachments[0].url}));try{""==e.content&&(r.content=e.reblog.content,r.reblog=!0,r.reblogUser=e.reblog.account.display_name||e.reblog.account.acct,e.reblog.media_attachments.length>0&&("image"===e.reblog.media_attachments[0].type?r.content+="
"):"video"===e.reblog.media_attachments[0].type?r.enclosure={"@_type":"video",url:e.reblog.media_attachments[0].url}:"audio"===e.reblog.media_attachments[0].type&&(r.enclosure={"@_type":"audio",url:e.reblog.media_attachments[0].url})))}catch(e){}oK.push(r)}}),oH.push("Mastodon"),e8("Logged in as "+oq.mastodon_logged,4e3)})},o8=function(){o0(oj+o$.opml_url+"?time="+new Date),o$.opml_local&&o1(o$.opml_local),o$.mastodon_token&&te(o$.mastodon_server_url,o$.mastodon_token).then(function(e){oq.mastodon_logged=e.display_name,o5(),setTimeout(function(){},5e3)}).catch(function(e){}),o9=localStorage.getItem("last_channel_filter")};/*@__PURE__*/t(tt).getItem("settings").then(function(e){null==e&&(o$=oF,/*@__PURE__*/t(tt).setItem("settings",o$).then(function(e){}).catch(function(e){console.log(e)})),(o$=e).cache_time=o$.cache_time||1e3,o$.last_update?oq.last_update_duration=new Date/1e3-o$.last_update/1e3:oq.last_update_duration=3600,o$.opml_url||o$.opml_local_filename||e8("The feed could not be loaded because no OPML was defined in the settings.",6e3),fetch("https://www.google.com",{method:"HEAD",mode:"no-cors"}).then(function(){return!0}).catch(function(){return!1}).then(function(e){e&&oq.last_update_duration>o$.cache_time?(o8(),e8("Load feeds",4e3)):/*@__PURE__*/t(tt).getItem("articles").then(function(e){(oK=e).sort(function(e,t){return new Date(t.isoDate)-new Date(e.isoDate)}),oK.forEach(function(e){-1===oH.indexOf(e.channel)&&e.channel&&oH.push(e.channel)}),oH.length&&(o9=localStorage.getItem("last_channel_filter")||oH[0]),/*@__PURE__*/t(tn).route.set("/start?index=0"),e8("Cached feeds loaded",4e3),o$.mastodon_token&&te(o$.mastodon_server_url,o$.mastodon_token).then(function(e){oq.mastodon_logged=e.display_name}).catch(function(e){})}).catch(function(e){})})}).catch(function(e){e8("The default settings was loaded",3e3),o0(oj+(o$=oF).opml_url),/*@__PURE__*/t(tt).setItem("settings",o$).then(function(e){}).catch(function(e){console.log(e)})});var o6=document.getElementById("app"),o4=-1,o9=localStorage.getItem("last_channel_filter")||"",o7=0,ae=function(e){return /*@__PURE__*/t(iH).duration(e,"seconds").format("mm:ss")},at={videoElement:null,videoDuration:0,currentTime:0,isPlaying:!1,seekAmount:5,oncreate:function(e){var r=e.attrs;oq.notKaiOS&&e9("","",""),at.videoElement=document.createElement("video"),document.getElementById("video-container").appendChild(at.videoElement);var n=r.url;n&&(at.videoElement.src=n,at.videoElement.play(),at.isPlaying=!0),at.videoElement.onloadedmetadata=function(){at.videoDuration=at.videoElement.duration,/*@__PURE__*/t(tn).redraw()},at.videoElement.ontimeupdate=function(){at.currentTime=at.videoElement.currentTime,/*@__PURE__*/t(tn).redraw()},document.addEventListener("keydown",at.handleKeydown)},onremove:function(){document.removeEventListener("keydown",at.handleKeydown)},handleKeydown:function(e){"Enter"===e.key?at.togglePlayPause():"ArrowLeft"===e.key?at.seek("left"):"ArrowRight"===e.key&&at.seek("right")},togglePlayPause:function(){at.isPlaying?at.videoElement.pause():at.videoElement.play(),at.isPlaying=!at.isPlaying},seek:function(e){var t=at.videoElement.currentTime;"left"===e?at.videoElement.currentTime=Math.max(0,t-at.seekAmount):"right"===e&&(at.videoElement.currentTime=Math.min(at.videoDuration,t+at.seekAmount))},view:function(e){e.attrs;var r=at.videoDuration>0?at.currentTime/at.videoDuration*100:0;return /*@__PURE__*/t(tn)("div",{class:"video-player"},[/*@__PURE__*/t(tn)("div",{id:"video-container",class:"video-container"}),/*@__PURE__*/t(tn)("div",{class:"video-info"},[" ".concat(ae(at.currentTime)," / ").concat(ae(at.videoDuration))]),/*@__PURE__*/t(tn)("div",{class:"progress-bar-container"},[/*@__PURE__*/t(tn)("div",{class:"progress-bar",style:{width:"".concat(r,"%")}})])])}},ar={player:null,oncreate:function(e){var t=e.attrs;oq.notKaiOS&&e9("","",""),e4("","",""),YT?ar.player=new YT.Player("video-container",{videoId:t.videoId,events:{onReady:ar.onPlayerReady}}):alert("YouTube player not loaded"),document.addEventListener("keydown",ar.handleKeydown)},onPlayerReady:function(e){e.target.playVideo()},handleKeydown:function(e){"Enter"===e.key?ar.togglePlayPause():"ArrowLeft"===e.key?ar.seek("left"):"ArrowRight"===e.key&&ar.seek("right")},togglePlayPause:function(){1===ar.player.getPlayerState()?ar.player.pauseVideo():ar.player.playVideo()},seek:function(e){var t=ar.player.getCurrentTime();"left"===e?ar.player.seekTo(Math.max(0,t-5),!0):"right"===e&&ar.player.seekTo(t+5,!0)},view:function(){return /*@__PURE__*/t(tn)("div",{class:"youtube-player"},[/*@__PURE__*/t(tn)("div",{id:"video-container",class:"video-container"})])}},an=document.createElement("audio");if(an.preload="auto","b2g"in navigator)try{an.mozAudioChannelType="content",navigator.b2g.AudioChannelManager&&(navigator.b2g.AudioChannelManager.volumeControlChannel="content")}catch(e){console.log(e)}var ai=[];try{/*@__PURE__*/t(tt).getItem("hasPlayedAudio").then(function(e){ai=e||[],console.log("Loaded hasPlayedAudio:",ai)})}catch(e){console.error("Failed to load hasPlayedAudio:",e)}var ao=(eo=eY(function(e,r,n){var i;return(0,eJ.__generator)(this,function(o){return -1!==(i=ai.findIndex(function(t){return t.url===e}))?ai[i].time=r:ai.push({url:e,time:r,id:n}),aa(),/*@__PURE__*/t(tt).setItem("hasPlayedAudio",ai).then(function(){}),[2]})}),function(e,t,r){return eo.apply(this,arguments)}),aa=function(){ai=ai.filter(function(e){return oV.includes(e.id)})},as=0,au=0,ac=0,al=0,af=!1,ad=null,ah={audioDuration:0,currentTime:0,isPlaying:!1,seekAmount:5,oninit:function(e){var r=e.attrs;r.url&&an.src!==r.url&&(an.src=r.url,an.play().catch(function(){}),ah.isPlaying=!0,ai.map(function(e){e.url===an.src&&!0==confirm("continue playing ?")&&(an.currentTime=e.time)})),an.onloadedmetadata=function(){ah.audioDuration=an.duration,/*@__PURE__*/t(tn).redraw()},an.ontimeupdate=function(){ah.currentTime=an.currentTime,ao(an.src,an.currentTime,r.id),oq.player=!0,/*@__PURE__*/t(tn).redraw()},ah.isPlaying=!an.paused,document.addEventListener("keydown",ah.handleKeydown)},oncreate:function(){var e=function(e){ad||(ah.seek(e),ad=setInterval(function(){ah.seek(e),document.querySelector(".audio-info").style.padding="20px"},1e3))},t=function(){ad&&(clearInterval(ad),ad=null,document.querySelector(".audio-info").style.padding="10px")};e9("","",""),e4("","",""),o$.sleepTimer&&(e4("","",""),document.querySelector("div.button-left").addEventListener("click",function(e){oq.sleepTimer?oR():oB(6e4*o$.sleepTimer)})),oq.notKaiOS&&e9("","",""),document.querySelector("div.button-center").addEventListener("click",function(e){ah.togglePlayPause()}),document.addEventListener("touchstart",function(e){var t=e.touches[0];as=t.clientX,au=t.clientY}),document.addEventListener("touchmove",function(t){var r=t.touches[0];ac=r.clientX,al=r.clientY;var n=ac-as,i=al-au;Math.abs(n)>Math.abs(i)?n>30?(e("right"),af=!0):n<-30&&(e("left"),af=!0):i>30?console.log("Swiping down (not used in this context)"):i<-30&&console.log("Swiping up (not used in this context)")}),document.addEventListener("touchend",function(){af&&(af=!1,t())})},onremove:function(){document.removeEventListener("keydown",ah.handleKeydown)},handleKeydown:function(e){"Enter"===e.key?ah.togglePlayPause():"ArrowLeft"===e.key?ah.seek("left"):"ArrowRight"===e.key&&ah.seek("right")},togglePlayPause:function(){ah.isPlaying?an.pause():an.play().catch(function(){}),ah.isPlaying=!ah.isPlaying},seek:function(e){var t=an.currentTime;"left"===e?an.currentTime=Math.max(0,t-ah.seekAmount):"right"===e&&(an.currentTime=Math.min(ah.audioDuration,t+ah.seekAmount))},view:function(e){e.attrs;var r=ah.audioDuration>0?ah.currentTime/ah.audioDuration*100:0;return /*@__PURE__*/t(tn)("div",{class:"audio-player"},[/*@__PURE__*/t(tn)("div",{id:"audio-container",class:"audio-container"}),/*@__PURE__*/t(tn)("div",{class:"cover-container",style:{"background-color":"rgb(121, 71, 255)","background-image":"url(".concat(oU.cover,")")}}),/*@__PURE__*/t(tn)("div",{class:"audio-info",style:{background:"linear-gradient(to right, #3498db ".concat(r,"%, white ").concat(r,"%)")}},["".concat(ae(ah.currentTime)," / ").concat(ae(ah.audioDuration))]),/*@__PURE__*/t(tn)("div",{class:"progress-bar-container"},[/*@__PURE__*/t(tn)("div",{class:"progress-bar",style:{width:"".concat(r,"%")}})])])}};function ap(){var e=document.activeElement;if(e){for(var t=e.getBoundingClientRect(),r=t.top+t.height/2,n=e.parentNode;n;){if(n.scrollHeight>n.clientHeight||n.scrollWidth>n.clientWidth){var i=n.getBoundingClientRect();r=t.top-i.top+t.height/2;break}n=n.parentNode}n?n.scrollBy({left:0,top:r-n.clientHeight/2,behavior:"smooth"}):document.body.scrollBy({left:0,top:r-window.innerHeight/2,behavior:"smooth"})}}/*@__PURE__*/t(tn).route(o6,"/intro",{"/article":{view:function(){var e=oK.find(function(e){return /*@__PURE__*/t(tn).route.param("index")==e.id&&(oU=e,!0)});return /*@__PURE__*/t(tn)("div",{id:"article",class:"page",oncreate:function(){oq.notKaiOS&&e9("","",""),e4("","","")}},e?/*@__PURE__*/t(tn)("article",{class:"item",tabindex:0,oncreate:function(t){t.dom.focus(),("audio"===e.type||"video"===e.type||"youtube"===e.type)&&e4("","","")}},[/*@__PURE__*/t(tn)("time",{id:"top",oncreate:function(){setTimeout(function(){document.querySelector("#top").scrollIntoView()},1e3)}},/*@__PURE__*/t(iH)(e.isoDate).format("DD MMM YYYY")),/*@__PURE__*/t(tn)("h2",{class:"article-title",oncreate:function(t){var r=t.dom;e.reblog&&r.classList.add("reblog")}},e.title),/*@__PURE__*/t(tn)("div",{class:"text"},[/*@__PURE__*/t(tn).trust(oX(e.content))]),e.reblog?/*@__PURE__*/t(tn)("div",{class:"text"},"reblogged from:"+e.reblogUser):""]):/*@__PURE__*/t(tn)("div","Article not found"))}},"/settingsView":{view:function(){return /*@__PURE__*/t(tn)("div",{class:"flex justify-content-center page",id:"settings-page",oncreate:function(){oq.notKaiOS||(oq.local_opml=[],eX("opml",function(e){oq.local_opml.push(e)})),e4("","",""),oq.notKaiOS&&e4("","",""),document.querySelectorAll(".item").forEach(function(e,t){e.setAttribute("tabindex",t)}),oq.notKaiOS&&e9("","",""),oq.notKaiOS&&e4("","","")}},[/*@__PURE__*/t(tn)("div",{class:"item input-parent flex",oncreate:function(){am()}},[/*@__PURE__*/t(tn)("label",{for:"url-opml"},"OPML"),/*@__PURE__*/t(tn)("input",{id:"url-opml",placeholder:"",value:o$.opml_url||"",type:"url"})]),/*@__PURE__*/t(tn)("button",{class:"item",onclick:function(){o$.opml_local_filename?(o$.opml_local="",o$.opml_local_filename="",/*@__PURE__*/t(tt).setItem("settings",o$).then(function(){e8("OPML file removed",4e3),/*@__PURE__*/t(tn).redraw()})):oq.notKaiOS?e7(function(e){var r=new FileReader;r.onload=function(){o3(r.result).error?e8("OPML file not valid",4e3):(o$.opml_local=r.result,o$.opml_local_filename=e.filename,/*@__PURE__*/t(tt).setItem("settings",o$).then(function(){e8("OPML file added",4e3)}))},r.onerror=function(){e8("OPML file not valid",4e3)},r.readAsText(e.blob)}):oq.local_opml.length>0?/*@__PURE__*/t(tn).route.set("/localOPML"):e8("not enough",3e3)}},o$.opml_local_filename?"Remove OPML file":"Upload OPML file"),/*@__PURE__*/t(tn)("div",o$.opml_local_filename),/*@__PURE__*/t(tn)("div",{class:"seperation"}),/*@__PURE__*/t(tn)("div",{class:"item input-parent flex "},[/*@__PURE__*/t(tn)("label",{for:"url-proxy"},"PROXY"),/*@__PURE__*/t(tn)("input",{id:"url-proxy",placeholder:"",value:o$.proxy_url||"",type:"url"})]),/*@__PURE__*/t(tn)("div",{class:"seperation"}),/*@__PURE__*/t(tn)("h2",{class:"flex justify-content-spacearound"},"Mastodon Account"),oq.mastodon_logged?/*@__PURE__*/t(tn)("div",{id:"account_info",class:"item"},"You have successfully logged in as ".concat(oq.mastodon_logged," and the data is being loaded from server ").concat(o$.mastodon_server_url,".")):null,oq.mastodon_logged?/*@__PURE__*/t(tn)("button",{class:"item",onclick:function(){o$.mastodon_server_url="",o$.mastodon_token="",/*@__PURE__*/t(tt).setItem("settings",o$),oq.mastodon_logged="",/*@__PURE__*/t(tn).route.set("/settingsView")}},"Disconnect"):null,oq.mastodon_logged?null:/*@__PURE__*/t(tn)("div",{class:"item input-parent flex justify-content-spacearound"},[/*@__PURE__*/t(tn)("label",{for:"mastodon-server-url"},"URL"),/*@__PURE__*/t(tn)("input",{id:"mastodon-server-url",placeholder:"Server URL",value:o$.mastodon_server_url})]),oq.mastodon_logged?null:/*@__PURE__*/t(tn)("button",{class:"item",onclick:function(){/*@__PURE__*/t(tt).setItem("settings",o$),o$.mastodon_server_url=document.getElementById("mastodon-server-url").value;var e=o$.mastodon_server_url+"/oauth/authorize?client_id=HqIUbDiOkeIoDPoOJNLQOgVyPi1ZOkPMW29UVkhl3i8&scope=read&redirect_uri=https://feedolin.strukturart.com&response_type=code";window.open(e)}},"Connect"),/*@__PURE__*/t(tn)("div",{class:"seperation"}),/*@__PURE__*/t(tn)("div",{class:"item input-parent flex "},[/*@__PURE__*/t(tn)("label",{for:"sleep-timer"},"Sleep timer in minutes"),/*@__PURE__*/t(tn)("input",{id:"sleep-timer",placeholder:"",value:o$.sleepTimer,type:"tel"})]),/*@__PURE__*/t(tn)("button",{class:"item",id:"button-save-settings",onclick:function(){e=document.getElementById("url-opml").value,/(ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?/.test(e)||e8("URL not valid"),o$.opml_url=document.getElementById("url-opml").value,o$.proxy_url=document.getElementById("url-proxy").value;var e,r=document.getElementById("sleep-timer").value;r&&!isNaN(r)&&Number(r)>0?o$.sleepTimer=parseInt(r,10):o$.sleepTimer="",oq.mastodon_logged||(o$.mastodon_server_url=document.getElementById("mastodon-server-url").value),/*@__PURE__*/t(tt).setItem("settings",o$).then(function(e){e8("settings saved",2e3)}).catch(function(e){console.log(e)})}},"save settings")])}},"/intro":{view:function(){return /*@__PURE__*/t(tn)("div",{class:"width-100 height-100",id:"intro",oninit:function(){oq.notKaiOS&&oJ()},onremove:function(){localStorage.setItem("version",oq.version),document.querySelector(".loading-spinner").style.display="none"}},[/*@__PURE__*/t(tn)("img",{src:"./assets/icons/intro.svg",oncreate:function(){document.querySelector(".loading-spinner").style.display="block",e3(function(e){try{oq.version=e.manifest.version,document.querySelector("#version").textContent=e.manifest.version}catch(e){}("b2g"in navigator||oq.notKaiOS)&&fetch("/manifest.webmanifest").then(function(e){return e.json()}).then(function(e){oq.version=e.b2g_features.version})})}}),/*@__PURE__*/t(tn)("div",{class:"flex width-100 justify-content-center ",id:"version-box"},[/*@__PURE__*/t(tn)("kbd",{id:"version"},localStorage.getItem("version")||0)])])}},"/start":{view:function(){var e=oK.filter(function(e){return""===o9||o9===e.channel});return oK.forEach(function(e){oV.push(e.id)}),/*@__PURE__*/t(tn)("div",{id:"start",oncreate:function(){o7=/*@__PURE__*/t(tn).route.param("index")||0,e4("","",""),oq.notKaiOS&&e4("","",""),oq.notKaiOS&&e9("","",""),oq.notKaiOS&&oq.player&&e9("","","")}},/*@__PURE__*/t(tn)("span",{class:"channel",oncreate:function(){}},o9),e.map(function(r,n){var i,o=oz.includes(r.id)?"read":"";return /*@__PURE__*/t(tn)("article",{class:"item ".concat(o),"data-id":r.id,"data-type":r.type,oncreate:function(t){0==o7&&0==n?setTimeout(function(){t.dom.focus()},1200):r.id==o7&&setTimeout(function(){t.dom.focus(),ap()},1200),n==e.length-1&&setTimeout(function(){document.querySelectorAll(".item").forEach(function(e,t){e.setAttribute("tabindex",t)})},1e3)},onclick:function(){/*@__PURE__*/t(tn).route.set("/article?index="+r.id),oG(r.id)},onkeydown:function(e){"Enter"===e.key&&(/*@__PURE__*/t(tn).route.set("/article?index="+r.id),oG(r.id))}},[/*@__PURE__*/t(tn)("span",{class:"type-indicator"},r.type),/*@__PURE__*/t(tn)("time",/*@__PURE__*/t(iH)(r.isoDate).format("DD MMM YYYY")),/*@__PURE__*/t(tn)("h2",{oncreate:function(e){var t=e.dom;!0===r.reblog&&t.classList.add("reblog")}},oX(r.feed_title)),/*@__PURE__*/t(tn)("h3",oX(r.title)),"mastodon"==r.type?/*@__PURE__*/t(tn)("h3",(i=r.content.substring(0,30),tl(i,{allowedTags:[],allowedAttributes:{}})+"...")):null])}))}},"/options":{view:function(){return /*@__PURE__*/t(tn)("div",{id:"optionsView",class:"flex",oncreate:function(){e9("","",""),oq.notKaiOS&&e9("","",""),e4("","",""),oq.notKaiOS&&e4("","","")}},[/*@__PURE__*/t(tn)("button",{tabindex:0,class:"item",oncreate:function(e){e.dom.focus(),ap()},onclick:function(){/*@__PURE__*/t(tn).route.set("/about")}},"About"),/*@__PURE__*/t(tn)("button",{tabindex:1,class:"item",onclick:function(){/*@__PURE__*/t(tn).route.set("/settingsView")}},"Settings"),/*@__PURE__*/t(tn)("button",{tabindex:2,class:"item",onclick:function(){/*@__PURE__*/t(tn).route.set("/privacy_policy")}},"Privacy Policy"),/*@__PURE__*/t(tn)("div",{id:"KaiOSads-Wrapper",class:"",oncreate:function(){!1==oq.notKaiOS&&eQ()}})])}},"/about":{view:function(){return /*@__PURE__*/t(tn)("div",{class:"page"},/*@__PURE__*/t(tn)("p","Feedolin is an RSS/Atom reader and podcast player, available for both KaiOS and non-KaiOS users."),/*@__PURE__*/t(tn)("p","It supports connecting a Mastodon account to display articles alongside your RSS/Atom feeds."),/*@__PURE__*/t(tn)("p","The app allows you to listen to audio and watch videos directly if the feed provides the necessary URLs."),/*@__PURE__*/t(tn)("p","The list of subscribed websites and podcasts is managed either locally or via an OPML file from an external source, such as a public link in the cloud."),/*@__PURE__*/t(tn)("p","For non-KaiOS users, local files must be uploaded to the app."),/*@__PURE__*/t(tn)("h4",{style:"margin-top:20px; margin-bottom:10px;"},"Navigation:"),/*@__PURE__*/t(tn)("ul",[/*@__PURE__*/t(tn)("li",/*@__PURE__*/t(tn).trust("Use the up and down arrow keys to navigate between articles.

")),/*@__PURE__*/t(tn)("li",/*@__PURE__*/t(tn).trust("Use the left and right arrow keys to switch between categories.

")),/*@__PURE__*/t(tn)("li",/*@__PURE__*/t(tn).trust("Press Enter to view the content of an article.

")),/*@__PURE__*/t(tn)("li",{oncreate:function(e){oq.notKaiOS||(e.dom.style.display="none")}},/*@__PURE__*/t(tn).trust("Use Alt to access various options.")),/*@__PURE__*/t(tn)("li",{oncreate:function(e){oq.notKaiOS&&(e.dom.style.display="none")}},/*@__PURE__*/t(tn).trust("Use # Volume")),/*@__PURE__*/t(tn)("li",{oncreate:function(e){oq.notKaiOS&&(e.dom.style.display="none")}},/*@__PURE__*/t(tn).trust("Use * Audioplayer

")),/*@__PURE__*/t(tn)("li","Version: "+oq.version)]))}},"/privacy_policy":{view:function(){return /*@__PURE__*/t(tn)("div",{id:"privacy_policy",class:"page"},[/*@__PURE__*/t(tn)("h1","Privacy Policy for Feedolin"),/*@__PURE__*/t(tn)("p","Feedolin is committed to protecting your privacy. This policy explains how data is handled within the app."),/*@__PURE__*/t(tn)("h2","Data Storage and Collection"),/*@__PURE__*/t(tn)("p",["All data related to your RSS/Atom feeds and Mastodon account is stored ",/*@__PURE__*/t(tn)("strong","locally")," in your device’s browser. Feedolin does ",/*@__PURE__*/t(tn)("strong","not")," collect or store any data on external servers. The following information is stored locally:"]),/*@__PURE__*/t(tn)("ul",[/*@__PURE__*/t(tn)("li","Your subscribed RSS/Atom feeds and podcasts."),/*@__PURE__*/t(tn)("li","OPML files you upload or manage."),/*@__PURE__*/t(tn)("li","Your Mastodon account information and related data.")]),/*@__PURE__*/t(tn)("p","No server-side data storage or collection is performed."),/*@__PURE__*/t(tn)("h2","KaiOS Users"),/*@__PURE__*/t(tn)("p",["If you are using Feedolin on a KaiOS device, the app uses ",/*@__PURE__*/t(tn)("strong","KaiOS Ads"),", which may collect data related to your usage. The data collected by KaiOS Ads is subject to the ",/*@__PURE__*/t(tn)("a",{href:"https://www.kaiostech.com/privacy-policy/",target:"_blank",rel:"noopener noreferrer"},"KaiOS privacy policy"),"."]),/*@__PURE__*/t(tn)("p",["For users on all other platforms, ",/*@__PURE__*/t(tn)("strong","no ads")," are used, and no external data collection occurs."]),/*@__PURE__*/t(tn)("h2","External Sources Responsibility"),/*@__PURE__*/t(tn)("p",["Feedolin enables you to add feeds and connect to external sources such as RSS/Atom feeds, podcasts, and Mastodon accounts. You are ",/*@__PURE__*/t(tn)("strong","solely responsible")," for the sources you choose to trust and subscribe to. Feedolin does not verify or control the content or data provided by these external sources."]),/*@__PURE__*/t(tn)("h2","Third-Party Services"),/*@__PURE__*/t(tn)("p","Feedolin integrates with third-party services such as Mastodon. These services have their own privacy policies, and you should review them to understand how your data is handled."),/*@__PURE__*/t(tn)("h2","Policy Updates"),/*@__PURE__*/t(tn)("p","This Privacy Policy may be updated periodically. Any changes will be communicated through updates to the app."),/*@__PURE__*/t(tn)("p","By using Feedolin, you acknowledge and agree to this Privacy Policy.")])}},"/localOPML":{view:function(){return /*@__PURE__*/t(tn)("div",{class:"flex",id:"index",oncreate:function(){oq.notKaiOS&&e9("","",""),e4("","","")}},oq.local_opml.map(function(e,r){var n=e.split("/");return n=n[n.length-1],/*@__PURE__*/t(tn)("button",{class:"item",tabindex:r,oncreate:function(e){0==r&&e.dom.focus()},onclick:function(){try{var r=navigator.b2g.getDeviceStorage("sdcard").get(e);r.onsuccess=function(){var e=new FileReader;e.onload=function(){o3(e.result).error?e8("OPML file not valid",4e3):(o$.opml_local=e.result,o$.opml_local_filename=n,/*@__PURE__*/t(tt).setItem("settings",o$).then(function(){e8("OPML file added",4e3),/*@__PURE__*/t(tn).route.set("/settingsView")}))},e.onerror=function(){e8("OPML file not valid",4e3)},e.readAsText(this.result)},r.onerror=function(e){}}catch(e){}}},n)}))}},"/AudioPlayerView":ah,"/VideoPlayerView":at,"/YouTubePlayerView":ar});var am=function(){document.body.scrollTo({left:0,top:0,behavior:"smooth"}),document.documentElement.scrollTo({left:0,top:0,behavior:"smooth"})};document.addEventListener("DOMContentLoaded",function(e){var r,n,i=function(e){if("SELECT"==document.activeElement.nodeName||"date"==document.activeElement.type||"time"==document.activeElement.type||"volume"==oq.window_status)return!1;if(document.activeElement.classList.contains("scroll")){var t=document.querySelector(".scroll");1==e?t.scrollBy({left:0,top:10}):t.scrollBy({left:0,top:-10})}var r=document.activeElement.tabIndex+e,n=0;if(n=document.getElementById("app").querySelectorAll(".item"),document.activeElement.parentNode.classList.contains("input-parent"))return document.activeElement.parentNode.focus(),!0;r<=n.length&&(0,n[r]).focus(),r>=n.length&&(0,n[0]).focus(),ap()};function o(e){c({key:e})}r=0,document.addEventListener("touchstart",function(e){r=e.touches[0].pageX,document.querySelector("body").style.opacity=1},!1),document.addEventListener("touchmove",function(e){var n=1-Math.min(Math.abs(e.touches[0].pageX-r)/300,1);/*@__PURE__*/t(tn).route.get().startsWith("/article")&&(document.querySelector("body").style.opacity=n)},!1),document.addEventListener("touchend",function(e){document.querySelector("body").style.opacity=1},!1),document.querySelector("div.button-left").addEventListener("click",function(e){o("SoftLeft")}),document.querySelector("div.button-right").addEventListener("click",function(e){o("SoftRight")}),document.querySelector("div.button-center").addEventListener("click",function(e){o("Enter")}),document.querySelector("#top-bar div div.button-left").addEventListener("click",function(e){o("Backspace")}),document.querySelector("#top-bar div div.button-right").addEventListener("click",function(e){o("*")});var a=!1;document.addEventListener("keydown",function(e){a||("Backspace"==e.key&&"INPUT"!=document.activeElement.tagName&&e.preventDefault(),"EndCall"===e.key&&(e.preventDefault(),window.close()),e.repeat||(u=!1,n=setTimeout(function(){u=!0,function(e){switch(e.key){case"Backspace":window.close();break;case"0":oK=[],oW()}}(e)},2e3)),e.repeat&&("Backspace"==e.key&&e.preventDefault(),"Backspace"==e.key&&(u=!1),e.key),a=!0,setTimeout(function(){a=!1},300))});var s=!1;document.addEventListener("keyup",function(e){s||(function(e){if("Backspace"==e.key&&e.preventDefault(),!1===oq.visibility)return 0;clearTimeout(n),u||c(e)}(e),s=!0,setTimeout(function(){s=!1},300))}),document.addEventListener("swiped",function(e){var r=/*@__PURE__*/t(tn).route.get(),n=e.detail.dir;if("down"==n&&(0===window.scrollY||0===document.documentElement.scrollTop)&&(e.detail.yEnd,e.detail.yStart),"right"==n&&r.startsWith("/start")){--o4<1&&(o4=oH.length-1),o9=oH[o4],/*@__PURE__*/t(tn).redraw();var i=/*@__PURE__*/t(tn).route.param();i.index=0,/*@__PURE__*/t(tn).route.set("/start",i)}if("left"==n&&r.startsWith("/start")){++o4>oH.length-1&&(o4=0),o9=oH[o4],/*@__PURE__*/t(tn).redraw();var o=/*@__PURE__*/t(tn).route.param();o.index=0,/*@__PURE__*/t(tn).route.set("/start",o)}});var u=!1;function c(e){var r=/*@__PURE__*/t(tn).route.get();switch(e.key){case"ArrowRight":if(r.startsWith("/start")){++o4>oH.length-1&&(o4=0),o9=oH[o4],/*@__PURE__*/t(tn).redraw();var n=/*@__PURE__*/t(tn).route.param();n.index=0,/*@__PURE__*/t(tn).route.set("/start",n),setTimeout(function(){document.querySelectorAll("article.item")[0].focus(),ap()},500)}break;case"ArrowLeft":if(r.startsWith("/start")){--o4<0&&(o4=oH.length-1),o9=oH[o4],/*@__PURE__*/t(tn).redraw();var o=/*@__PURE__*/t(tn).route.param();o.index=0,/*@__PURE__*/t(tn).route.set("/start",o),setTimeout(function(){document.querySelectorAll("article.item")[0].focus(),ap()},500)}break;case"ArrowUp":i(-1),"volume"==oq.window_status&&(navigator.volumeManager.requestVolumeUp(),oq.window_status="volume",setTimeout(function(){oq.window_status=""},2e3));break;case"ArrowDown":i(1),"volume"==oq.window_status&&(navigator.volumeManager.requestVolumeDown(),oq.window_status="volume",setTimeout(function(){oq.window_status=""},2e3));break;case"SoftRight":case"Alt":r.startsWith("/start")&&/*@__PURE__*/t(tn).route.set("/options"),r.startsWith("/article")&&("audio"==oU.type&&/*@__PURE__*/t(tn).route.set("/AudioPlayerView?url=".concat(encodeURIComponent(oU.enclosure["@_url"]),"&id=").concat(oU.id)),"video"==oU.type&&/*@__PURE__*/t(tn).route.set("/VideoPlayerView?url=".concat(encodeURIComponent(oU.enclosure["@_url"]))),"youtube"==oU.type&&/*@__PURE__*/t(tn).route.set("/YouTubePlayerView?videoId=".concat(encodeURIComponent(oU.youtubeid))));break;case"SoftLeft":case"Control":r.startsWith("/start")&&oW(),r.startsWith("/article")&&window.open(oU.url),r.startsWith("/AudioPlayerView")&&(oq.sleepTimer?oR():oB(6e4*o$.sleepTimer));break;case"Enter":document.activeElement.classList.contains("input-parent")&&document.activeElement.children[0].focus();break;case"*":/*@__PURE__*/t(tn).route.set("/AudioPlayerView");break;case"#":e0();break;case"Backspace":if(r.startsWith("/article")){var a=/*@__PURE__*/t(tn).route.param("index");/*@__PURE__*/t(tn).route.set("/start?index="+a)}if(r.startsWith("/YouTubePlayerView")){var s=/*@__PURE__*/t(tn).route.param("index");/*@__PURE__*/t(tn).route.set("/start?index="+s)}if(r.startsWith("/localOPML")&&history.back(),r.startsWith("/index")&&/*@__PURE__*/t(tn).route.set("/start?index=0"),r.startsWith("/about")&&/*@__PURE__*/t(tn).route.set("/options"),r.startsWith("/privacy_policy")&&/*@__PURE__*/t(tn).route.set("/options"),r.startsWith("/options")&&/*@__PURE__*/t(tn).route.set("/start?index=0"),r.startsWith("/settingsView")){if("INPUT"==document.activeElement.tagName)return!1;/*@__PURE__*/t(tn).route.set("/options")}r.startsWith("/Video")&&history.back(),r.startsWith("/Audio")&&history.back()}}document.addEventListener("visibilitychange",function(){"visible"===document.visibilityState&&o$.last_update?(oq.visibility=!0,new Date/1e3-o$.last_update/1e3>o$.cache_time&&(oK=[],e8("load new content",4e3),o8())):oq.visibility=!1})}),window.addEventListener("online",function(){oq.deviceOnline=!0}),window.addEventListener("offline",function(){oq.deviceOnline=!1}),window.addEventListener("beforeunload",function(e){var r=window.performance.getEntriesByType("navigation"),n=window.performance.navigation?window.performance.navigation.type:null;(r.length&&"reload"===r[0].type||1===n)&&(e.preventDefault(),oK=[],e8("load new content",4e3),o8(),/*@__PURE__*/t(tn).route.set("/intro"),e.returnValue="Are you sure you want to leave the page?")});var av={};av=ez("e6gnT").getBundleURL("3BHab")+"sw.js";try{navigator.serviceWorker.register(av).then(function(e){console.log("Service Worker registered successfully."),e.waiting&&(console.log("A waiting Service Worker is already in place."),e.update()),"b2g"in navigator&&(e.systemMessageManager?e.systemMessageManager.subscribe("activity").then(function(){console.log("Subscribed to general activity.")},function(e){alert("Error subscribing to activity:",e)}):alert("systemMessageManager is not available."))}).catch(function(e){alert("Service Worker registration failed:",e)})}catch(e){console.error("Error during Service Worker setup:",e)}oD.addEventListener("message",function(e){var r=e.data.oauth_success;if(r){var n=new Headers;n.append("Content-Type","application/x-www-form-urlencoded");var i=new URLSearchParams;i.append("code",r),i.append("scope","read"),i.append("grant_type","authorization_code"),i.append("redirect_uri","https://feedolin.strukturart.com"),i.append("client_id","HqIUbDiOkeIoDPoOJNLQOgVyPi1ZOkPMW29UVkhl3i8"),i.append("client_secret","R_9DvQ5V84yZQg3BEdDHjz5uGQGUN4qrPx9YgmrJ81Q"),fetch(o$.mastodon_server_url+"/oauth/token",{method:"POST",headers:n,body:i,redirect:"follow"}).then(function(e){return e.json()}).then(function(e){o$.mastodon_token=e.access_token,/*@__PURE__*/t(tt).setItem("settings",o$),/*@__PURE__*/t(tn).route.set("/start?index=0"),e8("Successfully connected",1e4)}).catch(function(e){console.error("Error:",e),e8("Connection failed")})}}); \ No newline at end of file diff --git a/docs/manifest.webapp b/docs/manifest.webapp index 5d27093..bb4dfce 100644 --- a/docs/manifest.webapp +++ b/docs/manifest.webapp @@ -1,5 +1,5 @@ { - "version": "2.0.7", + "version": "2.0.8", "name": "feedolin", "description": "Feedolin is an RSS / Atom / Mastodon reader and podcast player. It is intended for users who already use an rss reader client and want to read their feeds on a kaios device. the list of subscribed websites / podcasts is managed locally or online in an opml file.", "launch_path": "/index.html", diff --git a/docs/manifest.webmanifest b/docs/manifest.webmanifest index e52d740..877a3c6 100644 --- a/docs/manifest.webmanifest +++ b/docs/manifest.webmanifest @@ -24,7 +24,7 @@ ], "b2g_features": { - "version": "1.8.112", + "version": "1.8.117", "id": "feedolin", "subtitle": "RSS Reader and Mastodon Reader", "core": true, diff --git a/docs/sw.js b/docs/sw.js index 1a2b5e0..71fc175 100644 --- a/docs/sw.js +++ b/docs/sw.js @@ -1 +1 @@ -!function(){function e(e,t,n,r,a,o,s){try{var c=e[o](s),i=c.value}catch(e){n(e);return}c.done?t(i):Promise.resolve(i).then(r,a)}"function"==typeof SuppressedError&&SuppressedError;var t,n,r=new BroadcastChannel("sw-messages");r.addEventListener("message",function(e){r.postMessage({test:e.data.test})}),self.addEventListener("systemmessage",(t=function(e){var t,n;return function(e,t){var n,r,a,o={label:0,sent:function(){if(1&a[0])throw a[1];return a[1]},trys:[],ops:[]},s=Object.create(("function"==typeof Iterator?Iterator:Object).prototype);return s.next=c(0),s.throw=c(1),s.return=c(2),"function"==typeof Symbol&&(s[Symbol.iterator]=function(){return this}),s;function c(c){return function(i){return function(c){if(n)throw TypeError("Generator is already executing.");for(;s&&(s=0,c[0]&&(o=0)),o;)try{if(n=1,r&&(a=2&c[0]?r.return:c[0]?r.throw||((a=r.return)&&a.call(r),0):r.next)&&!(a=a.call(r,c[1])).done)return a;switch(r=0,a&&(c=[2&c[0],a.value]),c[0]){case 0:case 1:a=c;break;case 4:return o.label++,{value:c[1],done:!1};case 5:o.label++,r=c[1],c=[0];continue;case 7:c=o.ops.pop(),o.trys.pop();continue;default:if(!(a=(a=o.trys).length>0&&a[a.length-1])&&(6===c[0]||2===c[0])){o=0;continue}if(3===c[0]&&(!a||c[1]>a[0]&&c[1]0&&a[a.length-1])&&(6===c[0]||2===c[0])){o=0;continue}if(3===c[0]&&(!a||c[1]>a[0]&&c[1]