From c635d78b479510ebe2556a420948effcd30a0731 Mon Sep 17 00:00:00 2001
From: skyouc
Date: 星期六, 21 十二月 2024 18:40:43 +0800
Subject: [PATCH] 新建德森项目分支

---
 zy-asrs-openapi/src/main/webapp/static/js/showdown.min.js |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/zy-asrs-openapi/src/main/webapp/static/js/showdown.min.js b/zy-asrs-openapi/src/main/webapp/static/js/showdown.min.js
index 72ed9bc..54001f3 100644
--- a/zy-asrs-openapi/src/main/webapp/static/js/showdown.min.js
+++ b/zy-asrs-openapi/src/main/webapp/static/js/showdown.min.js
@@ -1,3 +1,3 @@
-/*! showdown v 1.9.0 - 10-11-2018 */
-(function(){function e(e){"use strict";var r={omitExtraWLInCodeBlocks:{defaultValue:!1,describe:"Omit the default extra whiteline added to code blocks",type:"boolean"},noHeaderId:{defaultValue:!1,describe:"Turn on/off generated header id",type:"boolean"},prefixHeaderId:{defaultValue:!1,describe:"Add a prefix to the generated header ids. Passing a string will prefix that string to the header id. Setting to true will add a generic 'section-' prefix",type:"string"},rawPrefixHeaderId:{defaultValue:!1,describe:'Setting this option to true will prevent showdown from modifying the prefix. This might result in malformed IDs (if, for instance, the " char is used in the prefix)',type:"boolean"},ghCompatibleHeaderId:{defaultValue:!1,describe:"Generate header ids compatible with github style (spaces are replaced with dashes, a bunch of non alphanumeric chars are removed)",type:"boolean"},rawHeaderId:{defaultValue:!1,describe:"Remove only spaces, ' and \" from generated header ids (including prefixes), replacing them with dashes (-). WARNING: This might result in malformed ids",type:"boolean"},headerLevelStart:{defaultValue:!1,describe:"The header blocks level start",type:"integer"},parseImgDimensions:{defaultValue:!1,describe:"Turn on/off image dimension parsing",type:"boolean"},simplifiedAutoLink:{defaultValue:!1,describe:"Turn on/off GFM autolink style",type:"boolean"},excludeTrailingPunctuationFromURLs:{defaultValue:!1,describe:"Excludes trailing punctuation from links generated with autoLinking",type:"boolean"},literalMidWordUnderscores:{defaultValue:!1,describe:"Parse midword underscores as literal underscores",type:"boolean"},literalMidWordAsterisks:{defaultValue:!1,describe:"Parse midword asterisks as literal asterisks",type:"boolean"},strikethrough:{defaultValue:!1,describe:"Turn on/off strikethrough support",type:"boolean"},tables:{defaultValue:!1,describe:"Turn on/off tables support",type:"boolean"},tablesHeaderId:{defaultValue:!1,describe:"Add an id to table headers",type:"boolean"},ghCodeBlocks:{defaultValue:!0,describe:"Turn on/off GFM fenced code blocks support",type:"boolean"},tasklists:{defaultValue:!1,describe:"Turn on/off GFM tasklist support",type:"boolean"},smoothLivePreview:{defaultValue:!1,describe:"Prevents weird effects in live previews due to incomplete input",type:"boolean"},smartIndentationFix:{defaultValue:!1,description:"Tries to smartly fix indentation in es6 strings",type:"boolean"},disableForced4SpacesIndentedSublists:{defaultValue:!1,description:"Disables the requirement of indenting nested sublists by 4 spaces",type:"boolean"},simpleLineBreaks:{defaultValue:!1,description:"Parses simple line breaks as <br> (GFM Style)",type:"boolean"},requireSpaceBeforeHeadingText:{defaultValue:!1,description:"Makes adding a space between `#` and the header text mandatory (GFM Style)",type:"boolean"},ghMentions:{defaultValue:!1,description:"Enables github @mentions",type:"boolean"},ghMentionsLink:{defaultValue:"https://github.com/{u}",description:"Changes the link generated by @mentions. Only applies if ghMentions option is enabled.",type:"string"},encodeEmails:{defaultValue:!0,description:"Encode e-mail addresses through the use of Character Entities, transforming ASCII e-mail addresses into its equivalent decimal entities",type:"boolean"},openLinksInNewWindow:{defaultValue:!1,description:"Open all links in new windows",type:"boolean"},backslashEscapesHTMLTags:{defaultValue:!1,description:"Support for HTML Tag escaping. ex: <div>foo</div>",type:"boolean"},emoji:{defaultValue:!1,description:"Enable emoji support. Ex: `this is a :smile: emoji`",type:"boolean"},underline:{defaultValue:!1,description:"Enable support for underline. Syntax is double or triple underscores: `__underline word__`. With this option enabled, underscores no longer parses into `<em>` and `<strong>`",type:"boolean"},completeHTMLDocument:{defaultValue:!1,description:"Outputs a complete html document, including `<html>`, `<head>` and `<body>` tags",type:"boolean"},metadata:{defaultValue:!1,description:"Enable support for document metadata (defined at the top of the document between `芦芦芦` and `禄禄禄` or between `---` and `---`).",type:"boolean"},splitAdjacentBlockquotes:{defaultValue:!1,description:"Split adjacent blockquote blocks",type:"boolean"}};if(!1===e)return JSON.parse(JSON.stringify(r));var t={};for(var a in r)r.hasOwnProperty(a)&&(t[a]=r[a].defaultValue);return t}function r(e,r){"use strict";var t=r?"Error in "+r+" extension->":"Error in unnamed extension",n={valid:!0,error:""};a.helper.isArray(e)||(e=[e]);for(var s=0;s<e.length;++s){var o=t+" sub-extension "+s+": ",i=e[s];if("object"!=typeof i)return n.valid=!1,n.error=o+"must be an object, but "+typeof i+" given",n;if(!a.helper.isString(i.type))return n.valid=!1,n.error=o+'property "type" must be a string, but '+typeof i.type+" given",n;var l=i.type=i.type.toLowerCase();if("language"===l&&(l=i.type="lang"),"html"===l&&(l=i.type="output"),"lang"!==l&&"output"!==l&&"listener"!==l)return n.valid=!1,n.error=o+"type "+l+' is not recognized. Valid values: "lang/language", "output/html" or "listener"',n;if("listener"===l){if(a.helper.isUndefined(i.listeners))return n.valid=!1,n.error=o+'. Extensions of type "listener" must have a property called "listeners"',n}else if(a.helper.isUndefined(i.filter)&&a.helper.isUndefined(i.regex))return n.valid=!1,n.error=o+l+' extensions must define either a "regex" property or a "filter" method',n;if(i.listeners){if("object"!=typeof i.listeners)return n.valid=!1,n.error=o+'"listeners" property must be an object but '+typeof i.listeners+" given",n;for(var c in i.listeners)if(i.listeners.hasOwnProperty(c)&&"function"!=typeof i.listeners[c])return n.valid=!1,n.error=o+'"listeners" property must be an hash of [event name]: [callback]. listeners.'+c+" must be a function but "+typeof i.listeners[c]+" given",n}if(i.filter){if("function"!=typeof i.filter)return n.valid=!1,n.error=o+'"filter" must be a function, but '+typeof i.filter+" given",n}else if(i.regex){if(a.helper.isString(i.regex)&&(i.regex=new RegExp(i.regex,"g")),!(i.regex instanceof RegExp))return n.valid=!1,n.error=o+'"regex" property must either be a string or a RegExp object, but '+typeof i.regex+" given",n;if(a.helper.isUndefined(i.replace))return n.valid=!1,n.error=o+'"regex" extensions must implement a replace string or function',n}}return n}function t(e,r){"use strict";return"篓E"+r.charCodeAt(0)+"E"}var a={},n={},s={},o=e(!0),i="vanilla",l={github:{omitExtraWLInCodeBlocks:!0,simplifiedAutoLink:!0,excludeTrailingPunctuationFromURLs:!0,literalMidWordUnderscores:!0,strikethrough:!0,tables:!0,tablesHeaderId:!0,ghCodeBlocks:!0,tasklists:!0,disableForced4SpacesIndentedSublists:!0,simpleLineBreaks:!0,requireSpaceBeforeHeadingText:!0,ghCompatibleHeaderId:!0,ghMentions:!0,backslashEscapesHTMLTags:!0,emoji:!0,splitAdjacentBlockquotes:!0},original:{noHeaderId:!0,ghCodeBlocks:!1},ghost:{omitExtraWLInCodeBlocks:!0,parseImgDimensions:!0,simplifiedAutoLink:!0,excludeTrailingPunctuationFromURLs:!0,literalMidWordUnderscores:!0,strikethrough:!0,tables:!0,tablesHeaderId:!0,ghCodeBlocks:!0,tasklists:!0,smoothLivePreview:!0,simpleLineBreaks:!0,requireSpaceBeforeHeadingText:!0,ghMentions:!1,encodeEmails:!0},vanilla:e(!0),allOn:function(){"use strict";var r=e(!0),t={};for(var a in r)r.hasOwnProperty(a)&&(t[a]=!0);return t}()};a.helper={},a.extensions={},a.setOption=function(e,r){"use strict";return o[e]=r,this},a.getOption=function(e){"use strict";return o[e]},a.getOptions=function(){"use strict";return o},a.resetOptions=function(){"use strict";o=e(!0)},a.setFlavor=function(e){"use strict";if(!l.hasOwnProperty(e))throw Error(e+" flavor was not found");a.resetOptions();var r=l[e];i=e;for(var t in r)r.hasOwnProperty(t)&&(o[t]=r[t])},a.getFlavor=function(){"use strict";return i},a.getFlavorOptions=function(e){"use strict";if(l.hasOwnProperty(e))return l[e]},a.getDefaultOptions=function(r){"use strict";return e(r)},a.subParser=function(e,r){"use strict";if(a.helper.isString(e)){if(void 0===r){if(n.hasOwnProperty(e))return n[e];throw Error("SubParser named "+e+" not registered!")}n[e]=r}},a.extension=function(e,t){"use strict";if(!a.helper.isString(e))throw Error("Extension 'name' must be a string");if(e=a.helper.stdExtName(e),a.helper.isUndefined(t)){if(!s.hasOwnProperty(e))throw Error("Extension named "+e+" is not registered!");return s[e]}"function"==typeof t&&(t=t()),a.helper.isArray(t)||(t=[t]);var n=r(t,e);if(!n.valid)throw Error(n.error);s[e]=t},a.getAllExtensions=function(){"use strict";return s},a.removeExtension=function(e){"use strict";delete s[e]},a.resetExtensions=function(){"use strict";s={}},a.validateExtension=function(e){"use strict";var t=r(e,null);return!!t.valid||(console.warn(t.error),!1)},a.hasOwnProperty("helper")||(a.helper={}),a.helper.isString=function(e){"use strict";return"string"==typeof e||e instanceof String},a.helper.isFunction=function(e){"use strict";return e&&"[object Function]"==={}.toString.call(e)},a.helper.isArray=function(e){"use strict";return Array.isArray(e)},a.helper.isUndefined=function(e){"use strict";return void 0===e},a.helper.forEach=function(e,r){"use strict";if(a.helper.isUndefined(e))throw new Error("obj param is required");if(a.helper.isUndefined(r))throw new Error("callback param is required");if(!a.helper.isFunction(r))throw new Error("callback param must be a function/closure");if("function"==typeof e.forEach)e.forEach(r);else if(a.helper.isArray(e))for(var t=0;t<e.length;t++)r(e[t],t,e);else{if("object"!=typeof e)throw new Error("obj does not seem to be an array or an iterable object");for(var n in e)e.hasOwnProperty(n)&&r(e[n],n,e)}},a.helper.stdExtName=function(e){"use strict";return e.replace(/[_?*+\/\\.^-]/g,"").replace(/\s/g,"").toLowerCase()},a.helper.escapeCharactersCallback=t,a.helper.escapeCharacters=function(e,r,a){"use strict";var n="(["+r.replace(/([\[\]\\])/g,"\\$1")+"])";a&&(n="\\\\"+n);var s=new RegExp(n,"g");return e=e.replace(s,t)},a.helper.unescapeHTMLEntities=function(e){"use strict";return e.replace(/&quot;/g,'"').replace(/&lt;/g,"<").replace(/&gt;/g,">").replace(/&amp;/g,"&")};var c=function(e,r,t,a){"use strict";var n,s,o,i,l,c=a||"",u=c.indexOf("g")>-1,d=new RegExp(r+"|"+t,"g"+c.replace(/g/g,"")),p=new RegExp(r,c.replace(/g/g,"")),h=[];do{for(n=0;o=d.exec(e);)if(p.test(o[0]))n++||(i=(s=d.lastIndex)-o[0].length);else if(n&&!--n){l=o.index+o[0].length;var _={left:{start:i,end:s},match:{start:s,end:o.index},right:{start:o.index,end:l},wholeMatch:{start:i,end:l}};if(h.push(_),!u)return h}}while(n&&(d.lastIndex=s));return h};a.helper.matchRecursiveRegExp=function(e,r,t,a){"use strict";for(var n=c(e,r,t,a),s=[],o=0;o<n.length;++o)s.push([e.slice(n[o].wholeMatch.start,n[o].wholeMatch.end),e.slice(n[o].match.start,n[o].match.end),e.slice(n[o].left.start,n[o].left.end),e.slice(n[o].right.start,n[o].right.end)]);return s},a.helper.replaceRecursiveRegExp=function(e,r,t,n,s){"use strict";if(!a.helper.isFunction(r)){var o=r;r=function(){return o}}var i=c(e,t,n,s),l=e,u=i.length;if(u>0){var d=[];0!==i[0].wholeMatch.start&&d.push(e.slice(0,i[0].wholeMatch.start));for(var p=0;p<u;++p)d.push(r(e.slice(i[p].wholeMatch.start,i[p].wholeMatch.end),e.slice(i[p].match.start,i[p].match.end),e.slice(i[p].left.start,i[p].left.end),e.slice(i[p].right.start,i[p].right.end))),p<u-1&&d.push(e.slice(i[p].wholeMatch.end,i[p+1].wholeMatch.start));i[u-1].wholeMatch.end<e.length&&d.push(e.slice(i[u-1].wholeMatch.end)),l=d.join("")}return l},a.helper.regexIndexOf=function(e,r,t){"use strict";if(!a.helper.isString(e))throw"InvalidArgumentError: first parameter of showdown.helper.regexIndexOf function must be a string";if(r instanceof RegExp==!1)throw"InvalidArgumentError: second parameter of showdown.helper.regexIndexOf function must be an instance of RegExp";var n=e.substring(t||0).search(r);return n>=0?n+(t||0):n},a.helper.splitAtIndex=function(e,r){"use strict";if(!a.helper.isString(e))throw"InvalidArgumentError: first parameter of showdown.helper.regexIndexOf function must be a string";return[e.substring(0,r),e.substring(r)]},a.helper.encodeEmailAddress=function(e){"use strict";var r=[function(e){return"&#"+e.charCodeAt(0)+";"},function(e){return"&#x"+e.charCodeAt(0).toString(16)+";"},function(e){return e}];return e=e.replace(/./g,function(e){if("@"===e)e=r[Math.floor(2*Math.random())](e);else{var t=Math.random();e=t>.9?r[2](e):t>.45?r[1](e):r[0](e)}return e})},a.helper.padEnd=function(e,r,t){"use strict";return r>>=0,t=String(t||" "),e.length>r?String(e):((r-=e.length)>t.length&&(t+=t.repeat(r/t.length)),String(e)+t.slice(0,r))},"undefined"==typeof console&&(console={warn:function(e){"use strict";alert(e)},log:function(e){"use strict";alert(e)},error:function(e){"use strict";throw e}}),a.helper.regexes={asteriskDashAndColon:/([*_:~])/g},a.helper.emojis={"+1":"馃憤","-1":"馃憥",100:"馃挴",1234:"馃敘","1st_place_medal":"馃","2nd_place_medal":"馃","3rd_place_medal":"馃","8ball":"馃幈",a:"馃叞锔�",ab:"馃啂",abc:"馃敜",abcd:"馃敗",accept:"馃墤",aerial_tramway:"馃殹",airplane:"鉁堬笍",alarm_clock:"鈴�",alembic:"鈿楋笍",alien:"馃懡",ambulance:"馃殤",amphora:"馃徍",anchor:"鈿擄笍",angel:"馃懠",anger:"馃挗",angry:"馃槧",anguished:"馃槯",ant:"馃悳",apple:"馃崕",aquarius:"鈾掞笍",aries:"鈾堬笍",arrow_backward:"鈼�锔�",arrow_double_down:"鈴�",arrow_double_up:"鈴�",arrow_down:"猬囷笍",arrow_down_small:"馃斀",arrow_forward:"鈻讹笍",arrow_heading_down:"猡碉笍",arrow_heading_up:"猡达笍",arrow_left:"猬咃笍",arrow_lower_left:"鈫欙笍",arrow_lower_right:"鈫橈笍",arrow_right:"鉃★笍",arrow_right_hook:"鈫笍",arrow_up:"猬嗭笍",arrow_up_down:"鈫曪笍",arrow_up_small:"馃敿",arrow_upper_left:"鈫栵笍",arrow_upper_right:"鈫楋笍",arrows_clockwise:"馃攦",arrows_counterclockwise:"馃攧",art:"馃帹",articulated_lorry:"馃殯",artificial_satellite:"馃洶",astonished:"馃槻",athletic_shoe:"馃憻",atm:"馃彠",atom_symbol:"鈿涳笍",avocado:"馃",b:"馃叡锔�",baby:"馃懚",baby_bottle:"馃嵓",baby_chick:"馃悿",baby_symbol:"馃毤",back:"馃敊",bacon:"馃",badminton:"馃徃",baggage_claim:"馃泟",baguette_bread:"馃",balance_scale:"鈿栵笍",balloon:"馃巿",ballot_box:"馃棾",ballot_box_with_check:"鈽戯笍",bamboo:"馃帊",banana:"馃崒",bangbang:"鈥硷笍",bank:"馃彟",bar_chart:"馃搳",barber:"馃拡",baseball:"鈿撅笍",basketball:"馃弨",basketball_man:"鉀癸笍",basketball_woman:"鉀癸笍&zwj;鈾�锔�",bat:"馃",bath:"馃泙",bathtub:"馃泚",battery:"馃攱",beach_umbrella:"馃彇",bear:"馃惢",bed:"馃洀",bee:"馃悵",beer:"馃嵑",beers:"馃嵒",beetle:"馃悶",beginner:"馃敯",bell:"馃敂",bellhop_bell:"馃泿",bento:"馃嵄",biking_man:"馃毚",bike:"馃毑",biking_woman:"馃毚&zwj;鈾�锔�",bikini:"馃憴",biohazard:"鈽o笍",bird:"馃惁",birthday:"馃巶",black_circle:"鈿笍",black_flag:"馃彺",black_heart:"馃枻",black_joker:"馃儚",black_large_square:"猬涳笍",black_medium_small_square:"鈼撅笍",black_medium_square:"鈼硷笍",black_nib:"鉁掞笍",black_small_square:"鈻笍",black_square_button:"馃敳",blonde_man:"馃懕",blonde_woman:"馃懕&zwj;鈾�锔�",blossom:"馃尲",blowfish:"馃悺",blue_book:"馃摌",blue_car:"馃殭",blue_heart:"馃挋",blush:"馃槉",boar:"馃悧",boat:"鉀碉笍",bomb:"馃挘",book:"馃摉",bookmark:"馃敄",bookmark_tabs:"馃搼",books:"馃摎",boom:"馃挜",boot:"馃憿",bouquet:"馃拹",bowing_man:"馃檱",bow_and_arrow:"馃徆",bowing_woman:"馃檱&zwj;鈾�锔�",bowling:"馃幊",boxing_glove:"馃",boy:"馃懄",bread:"馃崬",bride_with_veil:"馃懓",bridge_at_night:"馃寜",briefcase:"馃捈",broken_heart:"馃挃",bug:"馃悰",building_construction:"馃彈",bulb:"馃挕",bullettrain_front:"馃殔",bullettrain_side:"馃殑",burrito:"馃尟",bus:"馃殞",business_suit_levitating:"馃暣",busstop:"馃殢",bust_in_silhouette:"馃懁",busts_in_silhouette:"馃懃",butterfly:"馃",cactus:"馃尩",cake:"馃嵃",calendar:"馃搯",call_me_hand:"馃",calling:"馃摬",camel:"馃惈",camera:"馃摲",camera_flash:"馃摳",camping:"馃彆",cancer:"鈾嬶笍",candle:"馃暞",candy:"馃崿",canoe:"馃浂",capital_abcd:"馃敔",capricorn:"鈾戯笍",car:"馃殫",card_file_box:"馃梼",card_index:"馃搰",card_index_dividers:"馃梻",carousel_horse:"馃帬",carrot:"馃",cat:"馃惐",cat2:"馃悎",cd:"馃捒",chains:"鉀�",champagne:"馃嵕",chart:"馃捁",chart_with_downwards_trend:"馃搲",chart_with_upwards_trend:"馃搱",checkered_flag:"馃弫",cheese:"馃",cherries:"馃崚",cherry_blossom:"馃尭",chestnut:"馃尠",chicken:"馃悢",children_crossing:"馃毟",chipmunk:"馃惪",chocolate_bar:"馃崼",christmas_tree:"馃巹",church:"鉀笍",cinema:"馃帵",circus_tent:"馃帾",city_sunrise:"馃寚",city_sunset:"馃寙",cityscape:"馃彊",cl:"馃啈",clamp:"馃棞",clap:"馃憦",clapper:"馃幀",classical_building:"馃彌",clinking_glasses:"馃",clipboard:"馃搵",clock1:"馃晲",clock10:"馃暀",clock1030:"馃暐",clock11:"馃暁",clock1130:"馃暒",clock12:"馃暃",clock1230:"馃暓",clock130:"馃暅",clock2:"馃晳",clock230:"馃暆",clock3:"馃晵",clock330:"馃暈",clock4:"馃晸",clock430:"馃暉",clock5:"馃晹",clock530:"馃暊",clock6:"馃晻",clock630:"馃暋",clock7:"馃晼",clock730:"馃暍",clock8:"馃晽",clock830:"馃暎",clock9:"馃晿",clock930:"馃暏",closed_book:"馃摃",closed_lock_with_key:"馃攼",closed_umbrella:"馃寕",cloud:"鈽侊笍",cloud_with_lightning:"馃尒",cloud_with_lightning_and_rain:"鉀�",cloud_with_rain:"馃導",cloud_with_snow:"馃尐",clown_face:"馃ぁ",clubs:"鈾o笍",cocktail:"馃嵏",coffee:"鈽曪笍",coffin:"鈿帮笍",cold_sweat:"馃槹",comet:"鈽勶笍",computer:"馃捇",computer_mouse:"馃柋",confetti_ball:"馃帄",confounded:"馃槚",confused:"馃槙",congratulations:"銑楋笍",construction:"馃毀",construction_worker_man:"馃懛",construction_worker_woman:"馃懛&zwj;鈾�锔�",control_knobs:"馃帥",convenience_store:"馃彧",cookie:"馃崻",cool:"馃啋",policeman:"馃懏",copyright:"漏锔�",corn:"馃尳",couch_and_lamp:"馃泲",couple:"馃懌",couple_with_heart_woman_man:"馃拺",couple_with_heart_man_man:"馃懆&zwj;鉂わ笍&zwj;馃懆",couple_with_heart_woman_woman:"馃懇&zwj;鉂わ笍&zwj;馃懇",couplekiss_man_man:"馃懆&zwj;鉂わ笍&zwj;馃拫&zwj;馃懆",couplekiss_man_woman:"馃拸",couplekiss_woman_woman:"馃懇&zwj;鉂わ笍&zwj;馃拫&zwj;馃懇",cow:"馃惍",cow2:"馃悇",cowboy_hat_face:"馃",crab:"馃",crayon:"馃枍",credit_card:"馃挸",crescent_moon:"馃寵",cricket:"馃弿",crocodile:"馃悐",croissant:"馃",crossed_fingers:"馃",crossed_flags:"馃帉",crossed_swords:"鈿旓笍",crown:"馃憫",cry:"馃槩",crying_cat_face:"馃樋",crystal_ball:"馃敭",cucumber:"馃",cupid:"馃挊",curly_loop:"鉃�",currency_exchange:"馃挶",curry:"馃崨",custard:"馃嵁",customs:"馃泝",cyclone:"馃寑",dagger:"馃棥",dancer:"馃拑",dancing_women:"馃懐",dancing_men:"馃懐&zwj;鈾傦笍",dango:"馃崱",dark_sunglasses:"馃暥",dart:"馃幆",dash:"馃挩",date:"馃搮",deciduous_tree:"馃尦",deer:"馃",department_store:"馃彫",derelict_house:"馃彋",desert:"馃彍",desert_island:"馃彎",desktop_computer:"馃枼",male_detective:"馃暤锔�",diamond_shape_with_a_dot_inside:"馃挔",diamonds:"鈾︼笍",disappointed:"馃槥",disappointed_relieved:"馃槬",dizzy:"馃挮",dizzy_face:"馃樀",do_not_litter:"馃毌",dog:"馃惗",dog2:"馃悤",dollar:"馃挼",dolls:"馃帋",dolphin:"馃惉",door:"馃毆",doughnut:"馃崺",dove:"馃晩",dragon:"馃悏",dragon_face:"馃惒",dress:"馃憲",dromedary_camel:"馃惇",drooling_face:"馃い",droplet:"馃挧",drum:"馃",duck:"馃",dvd:"馃搥","e-mail":"馃摟",eagle:"馃",ear:"馃憘",ear_of_rice:"馃尵",earth_africa:"馃實",earth_americas:"馃寧",earth_asia:"馃審",egg:"馃",eggplant:"馃崋",eight_pointed_black_star:"鉁达笍",eight_spoked_asterisk:"鉁筹笍",electric_plug:"馃攲",elephant:"馃悩",email:"鉁夛笍",end:"馃敋",envelope_with_arrow:"馃摡",euro:"馃挾",european_castle:"馃彴",european_post_office:"馃彜",evergreen_tree:"馃尣",exclamation:"鉂楋笍",expressionless:"馃槕",eye:"馃憗",eye_speech_bubble:"馃憗&zwj;馃棬",eyeglasses:"馃憮",eyes:"馃憖",face_with_head_bandage:"馃",face_with_thermometer:"馃",fist_oncoming:"馃憡",factory:"馃彮",fallen_leaf:"馃崅",family_man_woman_boy:"馃應",family_man_boy:"馃懆&zwj;馃懄",family_man_boy_boy:"馃懆&zwj;馃懄&zwj;馃懄",family_man_girl:"馃懆&zwj;馃懅",family_man_girl_boy:"馃懆&zwj;馃懅&zwj;馃懄",family_man_girl_girl:"馃懆&zwj;馃懅&zwj;馃懅",family_man_man_boy:"馃懆&zwj;馃懆&zwj;馃懄",family_man_man_boy_boy:"馃懆&zwj;馃懆&zwj;馃懄&zwj;馃懄",family_man_man_girl:"馃懆&zwj;馃懆&zwj;馃懅",family_man_man_girl_boy:"馃懆&zwj;馃懆&zwj;馃懅&zwj;馃懄",family_man_man_girl_girl:"馃懆&zwj;馃懆&zwj;馃懅&zwj;馃懅",family_man_woman_boy_boy:"馃懆&zwj;馃懇&zwj;馃懄&zwj;馃懄",family_man_woman_girl:"馃懆&zwj;馃懇&zwj;馃懅",family_man_woman_girl_boy:"馃懆&zwj;馃懇&zwj;馃懅&zwj;馃懄",family_man_woman_girl_girl:"馃懆&zwj;馃懇&zwj;馃懅&zwj;馃懅",family_woman_boy:"馃懇&zwj;馃懄",family_woman_boy_boy:"馃懇&zwj;馃懄&zwj;馃懄",family_woman_girl:"馃懇&zwj;馃懅",family_woman_girl_boy:"馃懇&zwj;馃懅&zwj;馃懄",family_woman_girl_girl:"馃懇&zwj;馃懅&zwj;馃懅",family_woman_woman_boy:"馃懇&zwj;馃懇&zwj;馃懄",family_woman_woman_boy_boy:"馃懇&zwj;馃懇&zwj;馃懄&zwj;馃懄",family_woman_woman_girl:"馃懇&zwj;馃懇&zwj;馃懅",family_woman_woman_girl_boy:"馃懇&zwj;馃懇&zwj;馃懅&zwj;馃懄",family_woman_woman_girl_girl:"馃懇&zwj;馃懇&zwj;馃懅&zwj;馃懅",fast_forward:"鈴�",fax:"馃摖",fearful:"馃槰",feet:"馃惥",female_detective:"馃暤锔�&zwj;鈾�锔�",ferris_wheel:"馃帯",ferry:"鉀�",field_hockey:"馃彂",file_cabinet:"馃梽",file_folder:"馃搧",film_projector:"馃摻",film_strip:"馃帪",fire:"馃敟",fire_engine:"馃殥",fireworks:"馃巻",first_quarter_moon:"馃寭",first_quarter_moon_with_face:"馃寷",fish:"馃悷",fish_cake:"馃崶",fishing_pole_and_fish:"馃帲",fist_raised:"鉁�",fist_left:"馃",fist_right:"馃",flags:"馃帍",flashlight:"馃敠",fleur_de_lis:"鈿滐笍",flight_arrival:"馃洭",flight_departure:"馃洬",floppy_disk:"馃捑",flower_playing_cards:"馃幋",flushed:"馃槼",fog:"馃尗",foggy:"馃寔",football:"馃張",footprints:"馃懀",fork_and_knife:"馃嵈",fountain:"鉀诧笍",fountain_pen:"馃枊",four_leaf_clover:"馃崁",fox_face:"馃",framed_picture:"馃柤",free:"馃啌",fried_egg:"馃嵆",fried_shrimp:"馃崵",fries:"馃崯",frog:"馃惛",frowning:"馃槮",frowning_face:"鈽癸笍",frowning_man:"馃檷&zwj;鈾傦笍",frowning_woman:"馃檷",middle_finger:"馃枙",fuelpump:"鉀斤笍",full_moon:"馃寱",full_moon_with_face:"馃対",funeral_urn:"鈿憋笍",game_die:"馃幉",gear:"鈿欙笍",gem:"馃拵",gemini:"鈾婏笍",ghost:"馃懟",gift:"馃巵",gift_heart:"馃挐",girl:"馃懅",globe_with_meridians:"馃寪",goal_net:"馃",goat:"馃悙",golf:"鉀筹笍",golfing_man:"馃弻锔�",golfing_woman:"馃弻锔�&zwj;鈾�锔�",gorilla:"馃",grapes:"馃崌",green_apple:"馃崗",green_book:"馃摋",green_heart:"馃挌",green_salad:"馃",grey_exclamation:"鉂�",grey_question:"鉂�",grimacing:"馃槵",grin:"馃榿",grinning:"馃榾",guardsman:"馃拏",guardswoman:"馃拏&zwj;鈾�锔�",guitar:"馃幐",gun:"馃敨",haircut_woman:"馃拠",haircut_man:"馃拠&zwj;鈾傦笍",hamburger:"馃崝",hammer:"馃敤",hammer_and_pick:"鈿�",hammer_and_wrench:"馃洜",hamster:"馃惞",hand:"鉁�",handbag:"馃憸",handshake:"馃",hankey:"馃挬",hatched_chick:"馃惀",hatching_chick:"馃悾",headphones:"馃帶",hear_no_evil:"馃檳",heart:"鉂わ笍",heart_decoration:"馃挓",heart_eyes:"馃槏",heart_eyes_cat:"馃樆",heartbeat:"馃挀",heartpulse:"馃挆",hearts:"鈾ワ笍",heavy_check_mark:"鉁旓笍",heavy_division_sign:"鉃�",heavy_dollar_sign:"馃挷",heavy_heart_exclamation:"鉂o笍",heavy_minus_sign:"鉃�",heavy_multiplication_x:"鉁栵笍",heavy_plus_sign:"鉃�",helicopter:"馃殎",herb:"馃尶",hibiscus:"馃尯",high_brightness:"馃攩",high_heel:"馃憼",hocho:"馃敧",hole:"馃暢",honey_pot:"馃嵂",horse:"馃惔",horse_racing:"馃弴",hospital:"馃彞",hot_pepper:"馃尪",hotdog:"馃尛",hotel:"馃彣",hotsprings:"鈾笍",hourglass:"鈱涳笍",hourglass_flowing_sand:"鈴�",house:"馃彔",house_with_garden:"馃彙",houses:"馃彉",hugs:"馃",hushed:"馃槸",ice_cream:"馃崹",ice_hockey:"馃彃",ice_skate:"鉀�",icecream:"馃崷",id:"馃啍",ideograph_advantage:"馃墣",imp:"馃懣",inbox_tray:"馃摜",incoming_envelope:"馃摠",tipping_hand_woman:"馃拋",information_source:"鈩癸笍",innocent:"馃槆",interrobang:"鈦夛笍",iphone:"馃摫",izakaya_lantern:"馃彯",jack_o_lantern:"馃巸",japan:"馃椌",japanese_castle:"馃彲",japanese_goblin:"馃懞",japanese_ogre:"馃懝",jeans:"馃憱",joy:"馃槀",joy_cat:"馃樄",joystick:"馃暪",kaaba:"馃晪",key:"馃攽",keyboard:"鈱笍",keycap_ten:"馃敓",kick_scooter:"馃洿",kimono:"馃憳",kiss:"馃拫",kissing:"馃槜",kissing_cat:"馃樈",kissing_closed_eyes:"馃槡",kissing_heart:"馃槝",kissing_smiling_eyes:"馃槞",kiwi_fruit:"馃",koala:"馃惃",koko:"馃垇",label:"馃彿",large_blue_circle:"馃數",large_blue_diamond:"馃敺",large_orange_diamond:"馃敹",last_quarter_moon:"馃寳",last_quarter_moon_with_face:"馃寽",latin_cross:"鉁濓笍",laughing:"馃槅",leaves:"馃崈",ledger:"馃搾",left_luggage:"馃泤",left_right_arrow:"鈫旓笍",leftwards_arrow_with_hook:"鈫╋笍",lemon:"馃崑",leo:"鈾岋笍",leopard:"馃悊",level_slider:"馃帤",libra:"鈾庯笍",light_rail:"馃殘",link:"馃敆",lion:"馃",lips:"馃憚",lipstick:"馃拕",lizard:"馃",lock:"馃敀",lock_with_ink_pen:"馃攺",lollipop:"馃嵀",loop:"鉃�",loud_sound:"馃攰",loudspeaker:"馃摙",love_hotel:"馃彥",love_letter:"馃拰",low_brightness:"馃攨",lying_face:"馃ぅ",m:"鈸傦笍",mag:"馃攳",mag_right:"馃攷",mahjong:"馃�勶笍",mailbox:"馃摣",mailbox_closed:"馃摢",mailbox_with_mail:"馃摤",mailbox_with_no_mail:"馃摥",man:"馃懆",man_artist:"馃懆&zwj;馃帹",man_astronaut:"馃懆&zwj;馃殌",man_cartwheeling:"馃じ&zwj;鈾傦笍",man_cook:"馃懆&zwj;馃嵆",man_dancing:"馃暫",man_facepalming:"馃う&zwj;鈾傦笍",man_factory_worker:"馃懆&zwj;馃彮",man_farmer:"馃懆&zwj;馃尵",man_firefighter:"馃懆&zwj;馃殥",man_health_worker:"馃懆&zwj;鈿曪笍",man_in_tuxedo:"馃さ",man_judge:"馃懆&zwj;鈿栵笍",man_juggling:"馃す&zwj;鈾傦笍",man_mechanic:"馃懆&zwj;馃敡",man_office_worker:"馃懆&zwj;馃捈",man_pilot:"馃懆&zwj;鉁堬笍",man_playing_handball:"馃ぞ&zwj;鈾傦笍",man_playing_water_polo:"馃そ&zwj;鈾傦笍",man_scientist:"馃懆&zwj;馃敩",man_shrugging:"馃し&zwj;鈾傦笍",man_singer:"馃懆&zwj;馃帳",man_student:"馃懆&zwj;馃帗",man_teacher:"馃懆&zwj;馃彨",man_technologist:"馃懆&zwj;馃捇",man_with_gua_pi_mao:"馃懖",man_with_turban:"馃懗",tangerine:"馃崐",mans_shoe:"馃憺",mantelpiece_clock:"馃暟",maple_leaf:"馃崄",martial_arts_uniform:"馃",mask:"馃樂",massage_woman:"馃拞",massage_man:"馃拞&zwj;鈾傦笍",meat_on_bone:"馃崠",medal_military:"馃帠",medal_sports:"馃弲",mega:"馃摚",melon:"馃崍",memo:"馃摑",men_wrestling:"馃ぜ&zwj;鈾傦笍",menorah:"馃晭",mens:"馃毠",metal:"馃",metro:"馃殗",microphone:"馃帳",microscope:"馃敩",milk_glass:"馃",milky_way:"馃寣",minibus:"馃殣",minidisc:"馃捊",mobile_phone_off:"馃摯",money_mouth_face:"馃",money_with_wings:"馃捀",moneybag:"馃挵",monkey:"馃悞",monkey_face:"馃惖",monorail:"馃殱",moon:"馃寯",mortar_board:"馃帗",mosque:"馃晫",motor_boat:"馃洢",motor_scooter:"馃浀",motorcycle:"馃弽",motorway:"馃洠",mount_fuji:"馃椈",mountain:"鉀�",mountain_biking_man:"馃毜",mountain_biking_woman:"馃毜&zwj;鈾�锔�",mountain_cableway:"馃殸",mountain_railway:"馃殲",mountain_snow:"馃彅",mouse:"馃惌",mouse2:"馃悂",movie_camera:"馃帴",moyai:"馃椏",mrs_claus:"馃ざ",muscle:"馃挭",mushroom:"馃崉",musical_keyboard:"馃幑",musical_note:"馃幍",musical_score:"馃幖",mute:"馃攪",nail_care:"馃拝",name_badge:"馃摏",national_park:"馃彏",nauseated_face:"馃あ",necktie:"馃憯",negative_squared_cross_mark:"鉂�",nerd_face:"馃",neutral_face:"馃槓",new:"馃啎",new_moon:"馃寫",new_moon_with_face:"馃寶",newspaper:"馃摪",newspaper_roll:"馃棡",next_track_button:"鈴�",ng:"馃問",no_good_man:"馃檯&zwj;鈾傦笍",no_good_woman:"馃檯",night_with_stars:"馃寖",no_bell:"馃敃",no_bicycles:"馃毘",no_entry:"鉀旓笍",no_entry_sign:"馃毇",no_mobile_phones:"馃摰",no_mouth:"馃樁",no_pedestrians:"馃毞",no_smoking:"馃毉","non-potable_water":"馃毐",nose:"馃憙",notebook:"馃摀",notebook_with_decorative_cover:"馃摂",notes:"馃幎",nut_and_bolt:"馃敥",o:"猸曪笍",o2:"馃吘锔�",ocean:"馃寠",octopus:"馃悪",oden:"馃崲",office:"馃彚",oil_drum:"馃洟",ok:"馃啑",ok_hand:"馃憣",ok_man:"馃檰&zwj;鈾傦笍",ok_woman:"馃檰",old_key:"馃棟",older_man:"馃懘",older_woman:"馃懙",om:"馃晧",on:"馃敍",oncoming_automobile:"馃殬",oncoming_bus:"馃殟",oncoming_police_car:"馃殧",oncoming_taxi:"馃殩",open_file_folder:"馃搨",open_hands:"馃憪",open_mouth:"馃槷",open_umbrella:"鈽傦笍",ophiuchus:"鉀�",orange_book:"馃摍",orthodox_cross:"鈽︼笍",outbox_tray:"馃摛",owl:"馃",ox:"馃悅",package:"馃摝",page_facing_up:"馃搫",page_with_curl:"馃搩",pager:"馃摕",paintbrush:"馃枌",palm_tree:"馃尨",pancakes:"馃",panda_face:"馃惣",paperclip:"馃搸",paperclips:"馃枃",parasol_on_ground:"鉀�",parking:"馃吙锔�",part_alternation_mark:"銆斤笍",partly_sunny:"鉀咃笍",passenger_ship:"馃洺",passport_control:"馃泜",pause_button:"鈴�",peace_symbol:"鈽笍",peach:"馃崙",peanuts:"馃",pear:"馃崘",pen:"馃枈",pencil2:"鉁忥笍",penguin:"馃惂",pensive:"馃様",performing_arts:"馃幁",persevere:"馃槪",person_fencing:"馃ず",pouting_woman:"馃檸",phone:"鈽庯笍",pick:"鉀�",pig:"馃惙",pig2:"馃悥",pig_nose:"馃惤",pill:"馃拪",pineapple:"馃崓",ping_pong:"馃彄",pisces:"鈾擄笍",pizza:"馃崟",place_of_worship:"馃洂",plate_with_cutlery:"馃嵔",play_or_pause_button:"鈴�",point_down:"馃憞",point_left:"馃憟",point_right:"馃憠",point_up:"鈽濓笍",point_up_2:"馃憜",police_car:"馃殦",policewoman:"馃懏&zwj;鈾�锔�",poodle:"馃惄",popcorn:"馃嵖",post_office:"馃彛",postal_horn:"馃摨",postbox:"馃摦",potable_water:"馃毎",potato:"馃",pouch:"馃憹",poultry_leg:"馃崡",pound:"馃挿",rage:"馃槨",pouting_cat:"馃樉",pouting_man:"馃檸&zwj;鈾傦笍",pray:"馃檹",prayer_beads:"馃摽",pregnant_woman:"馃ぐ",previous_track_button:"鈴�",prince:"馃ご",princess:"馃懜",printer:"馃枿",purple_heart:"馃挏",purse:"馃憶",pushpin:"馃搶",put_litter_in_its_place:"馃毊",question:"鉂�",rabbit:"馃惏",rabbit2:"馃悋",racehorse:"馃悗",racing_car:"馃弾",radio:"馃摶",radio_button:"馃敇",radioactive:"鈽笍",railway_car:"馃殐",railway_track:"馃洡",rainbow:"馃寛",rainbow_flag:"馃彸锔�&zwj;馃寛",raised_back_of_hand:"馃",raised_hand_with_fingers_splayed:"馃枑",raised_hands:"馃檶",raising_hand_woman:"馃檵",raising_hand_man:"馃檵&zwj;鈾傦笍",ram:"馃悘",ramen:"馃崪",rat:"馃悁",record_button:"鈴�",recycle:"鈾伙笍",red_circle:"馃敶",registered:"庐锔�",relaxed:"鈽猴笍",relieved:"馃槍",reminder_ribbon:"馃帡",repeat:"馃攣",repeat_one:"馃攤",rescue_worker_helmet:"鉀�",restroom:"馃毣",revolving_hearts:"馃挒",rewind:"鈴�",rhinoceros:"馃",ribbon:"馃巰",rice:"馃崥",rice_ball:"馃崣",rice_cracker:"馃崢",rice_scene:"馃帒",right_anger_bubble:"馃棷",ring:"馃拲",robot:"馃",rocket:"馃殌",rofl:"馃ぃ",roll_eyes:"馃檮",roller_coaster:"馃帰",rooster:"馃悡",rose:"馃尮",rosette:"馃彽",rotating_light:"馃毃",round_pushpin:"馃搷",rowing_man:"馃殻",rowing_woman:"馃殻&zwj;鈾�锔�",rugby_football:"馃弶",running_man:"馃弮",running_shirt_with_sash:"馃幗",running_woman:"馃弮&zwj;鈾�锔�",sa:"馃垈锔�",sagittarius:"鈾愶笍",sake:"馃嵍",sandal:"馃憽",santa:"馃巺",satellite:"馃摗",saxophone:"馃幏",school:"馃彨",school_satchel:"馃帓",scissors:"鉁傦笍",scorpion:"馃",scorpius:"鈾忥笍",scream:"馃槺",scream_cat:"馃檧",scroll:"馃摐",seat:"馃捄",secret:"銑欙笍",see_no_evil:"馃檲",seedling:"馃尡",selfie:"馃こ",shallow_pan_of_food:"馃",shamrock:"鈽橈笍",shark:"馃",shaved_ice:"馃崸",sheep:"馃悜",shell:"馃悮",shield:"馃洝",shinto_shrine:"鉀�",ship:"馃殺",shirt:"馃憰",shopping:"馃泹",shopping_cart:"馃洅",shower:"馃毧",shrimp:"馃",signal_strength:"馃摱",six_pointed_star:"馃敮",ski:"馃幙",skier:"鉀�",skull:"馃拃",skull_and_crossbones:"鈽狅笍",sleeping:"馃槾",sleeping_bed:"馃泴",sleepy:"馃槳",slightly_frowning_face:"馃檨",slightly_smiling_face:"馃檪",slot_machine:"馃幇",small_airplane:"馃洨",small_blue_diamond:"馃敼",small_orange_diamond:"馃敻",small_red_triangle:"馃敽",small_red_triangle_down:"馃敾",smile:"馃槃",smile_cat:"馃樃",smiley:"馃槂",smiley_cat:"馃樅",smiling_imp:"馃槇",smirk:"馃槒",smirk_cat:"馃樇",smoking:"馃毈",snail:"馃悓",snake:"馃悕",sneezing_face:"馃ぇ",snowboarder:"馃弬",snowflake:"鉂勶笍",snowman:"鉀勶笍",snowman_with_snow:"鈽冿笍",sob:"馃槶",soccer:"鈿斤笍",soon:"馃敎",sos:"馃啒",sound:"馃攭",space_invader:"馃懢",spades:"鈾狅笍",spaghetti:"馃崫",sparkle:"鉂囷笍",sparkler:"馃巼",sparkles:"鉁�",sparkling_heart:"馃挅",speak_no_evil:"馃檴",speaker:"馃攬",speaking_head:"馃棧",speech_balloon:"馃挰",speedboat:"馃殼",spider:"馃暦",spider_web:"馃暩",spiral_calendar:"馃棑",spiral_notepad:"馃棐",spoon:"馃",squid:"馃",stadium:"馃彑",star:"猸愶笍",star2:"馃専",star_and_crescent:"鈽笍",star_of_david:"鉁★笍",stars:"馃尃",station:"馃殙",statue_of_liberty:"馃椊",steam_locomotive:"馃殏",stew:"馃嵅",stop_button:"鈴�",stop_sign:"馃洃",stopwatch:"鈴�",straight_ruler:"馃搹",strawberry:"馃崜",stuck_out_tongue:"馃槢",stuck_out_tongue_closed_eyes:"馃槤",stuck_out_tongue_winking_eye:"馃槣",studio_microphone:"馃帣",stuffed_flatbread:"馃",sun_behind_large_cloud:"馃尌",sun_behind_rain_cloud:"馃對",sun_behind_small_cloud:"馃尋",sun_with_face:"馃尀",sunflower:"馃尰",sunglasses:"馃槑",sunny:"鈽�锔�",sunrise:"馃寘",sunrise_over_mountains:"馃寗",surfing_man:"馃弰",surfing_woman:"馃弰&zwj;鈾�锔�",sushi:"馃崳",suspension_railway:"馃殶",sweat:"馃槗",sweat_drops:"馃挦",sweat_smile:"馃槄",sweet_potato:"馃崰",swimming_man:"馃強",swimming_woman:"馃強&zwj;鈾�锔�",symbols:"馃敚",synagogue:"馃晬",syringe:"馃拤",taco:"馃尞",tada:"馃帀",tanabata_tree:"馃帇",taurus:"鈾夛笍",taxi:"馃殨",tea:"馃嵉",telephone_receiver:"馃摓",telescope:"馃敪",tennis:"馃幘",tent:"鉀猴笍",thermometer:"馃尅",thinking:"馃",thought_balloon:"馃挱",ticket:"馃帿",tickets:"馃師",tiger:"馃惎",tiger2:"馃悈",timer_clock:"鈴�",tipping_hand_man:"馃拋&zwj;鈾傦笍",tired_face:"馃槴",tm:"鈩笍",toilet:"馃毥",tokyo_tower:"馃椉",tomato:"馃崊",tongue:"馃憛",top:"馃敐",tophat:"馃帺",tornado:"馃尓",trackball:"馃柌",tractor:"馃殰",traffic_light:"馃殽",train:"馃殝",train2:"馃殕",tram:"馃殜",triangular_flag_on_post:"馃毄",triangular_ruler:"馃搻",trident:"馃敱",triumph:"馃槫",trolleybus:"馃殠",trophy:"馃弳",tropical_drink:"馃嵐",tropical_fish:"馃悹",truck:"馃殮",trumpet:"馃幒",tulip:"馃尫",tumbler_glass:"馃",turkey:"馃",turtle:"馃悽",tv:"馃摵",twisted_rightwards_arrows:"馃攢",two_hearts:"馃挄",two_men_holding_hands:"馃懍",two_women_holding_hands:"馃懎",u5272:"馃埞",u5408:"馃埓",u55b6:"馃埡",u6307:"馃埊锔�",u6708:"馃埛锔�",u6709:"馃埗",u6e80:"馃埖",u7121:"馃垰锔�",u7533:"馃埜",u7981:"馃埐",u7a7a:"馃埑",umbrella:"鈽旓笍",unamused:"馃槖",underage:"馃敒",unicorn:"馃",unlock:"馃敁",up:"馃啓",upside_down_face:"馃檭",v:"鉁岋笍",vertical_traffic_light:"馃殾",vhs:"馃摷",vibration_mode:"馃摮",video_camera:"馃摴",video_game:"馃幃",violin:"馃幓",virgo:"鈾嶏笍",volcano:"馃寢",volleyball:"馃彁",vs:"馃啔",vulcan_salute:"馃枛",walking_man:"馃毝",walking_woman:"馃毝&zwj;鈾�锔�",waning_crescent_moon:"馃寴",waning_gibbous_moon:"馃寲",warning:"鈿狅笍",wastebasket:"馃棏",watch:"鈱氾笍",water_buffalo:"馃悆",watermelon:"馃崏",wave:"馃憢",wavy_dash:"銆帮笍",waxing_crescent_moon:"馃寬",wc:"馃毦",weary:"馃槱",wedding:"馃拻",weight_lifting_man:"馃弸锔�",weight_lifting_woman:"馃弸锔�&zwj;鈾�锔�",whale:"馃惓",whale2:"馃悑",wheel_of_dharma:"鈽革笍",wheelchair:"鈾匡笍",white_check_mark:"鉁�",white_circle:"鈿笍",white_flag:"馃彸锔�",white_flower:"馃挳",white_large_square:"猬滐笍",white_medium_small_square:"鈼斤笍",white_medium_square:"鈼伙笍",white_small_square:"鈻笍",white_square_button:"馃敵",wilted_flower:"馃",wind_chime:"馃帎",wind_face:"馃尙",wine_glass:"馃嵎",wink:"馃槈",wolf:"馃惡",woman:"馃懇",woman_artist:"馃懇&zwj;馃帹",woman_astronaut:"馃懇&zwj;馃殌",woman_cartwheeling:"馃じ&zwj;鈾�锔�",woman_cook:"馃懇&zwj;馃嵆",woman_facepalming:"馃う&zwj;鈾�锔�",woman_factory_worker:"馃懇&zwj;馃彮",woman_farmer:"馃懇&zwj;馃尵",woman_firefighter:"馃懇&zwj;馃殥",woman_health_worker:"馃懇&zwj;鈿曪笍",woman_judge:"馃懇&zwj;鈿栵笍",woman_juggling:"馃す&zwj;鈾�锔�",woman_mechanic:"馃懇&zwj;馃敡",woman_office_worker:"馃懇&zwj;馃捈",woman_pilot:"馃懇&zwj;鉁堬笍",woman_playing_handball:"馃ぞ&zwj;鈾�锔�",woman_playing_water_polo:"馃そ&zwj;鈾�锔�",woman_scientist:"馃懇&zwj;馃敩",woman_shrugging:"馃し&zwj;鈾�锔�",woman_singer:"馃懇&zwj;馃帳",woman_student:"馃懇&zwj;馃帗",woman_teacher:"馃懇&zwj;馃彨",woman_technologist:"馃懇&zwj;馃捇",woman_with_turban:"馃懗&zwj;鈾�锔�",womans_clothes:"馃憵",womans_hat:"馃憭",women_wrestling:"馃ぜ&zwj;鈾�锔�",womens:"馃毢",world_map:"馃椇",worried:"馃槦",wrench:"馃敡",writing_hand:"鉁嶏笍",x:"鉂�",yellow_heart:"馃挍",yen:"馃挻",yin_yang:"鈽笍",yum:"馃構",zap:"鈿★笍",zipper_mouth_face:"馃",zzz:"馃挙",octocat:'<img alt=":octocat:" height="20" width="20" align="absmiddle" src="https://assets-cdn.github.com/images/icons/emoji/octocat.png">',showdown:"<span style=\"font-family: 'Anonymous Pro', monospace; text-decoration: underline; text-decoration-style: dashed; text-decoration-color: #3e8b8a;text-underline-position: under;\">S</span>"},a.Converter=function(e){"use strict";function t(e,t){if(t=t||null,a.helper.isString(e)){if(e=a.helper.stdExtName(e),t=e,a.extensions[e])return console.warn("DEPRECATION WARNING: "+e+" is an old extension that uses a deprecated loading method.Please inform the developer that the extension should be updated!"),void function(e,t){"function"==typeof e&&(e=e(new a.Converter));a.helper.isArray(e)||(e=[e]);var n=r(e,t);if(!n.valid)throw Error(n.error);for(var s=0;s<e.length;++s)switch(e[s].type){case"lang":u.push(e[s]);break;case"output":d.push(e[s]);break;default:throw Error("Extension loader error: Type unrecognized!!!")}}(a.extensions[e],e);if(a.helper.isUndefined(s[e]))throw Error('Extension "'+e+'" could not be loaded. It was either not found or is not a valid extension.');e=s[e]}"function"==typeof e&&(e=e()),a.helper.isArray(e)||(e=[e]);var o=r(e,t);if(!o.valid)throw Error(o.error);for(var i=0;i<e.length;++i){switch(e[i].type){case"lang":u.push(e[i]);break;case"output":d.push(e[i])}if(e[i].hasOwnProperty("listeners"))for(var l in e[i].listeners)e[i].listeners.hasOwnProperty(l)&&n(l,e[i].listeners[l])}}function n(e,r){if(!a.helper.isString(e))throw Error("Invalid argument in converter.listen() method: name must be a string, but "+typeof e+" given");if("function"!=typeof r)throw Error("Invalid argument in converter.listen() method: callback must be a function, but "+typeof r+" given");p.hasOwnProperty(e)||(p[e]=[]),p[e].push(r)}var c={},u=[],d=[],p={},h=i,_={parsed:{},raw:"",format:""};!function(){e=e||{};for(var r in o)o.hasOwnProperty(r)&&(c[r]=o[r]);if("object"!=typeof e)throw Error("Converter expects the passed parameter to be an object, but "+typeof e+" was passed instead.");for(var n in e)e.hasOwnProperty(n)&&(c[n]=e[n]);c.extensions&&a.helper.forEach(c.extensions,t)}(),this._dispatch=function(e,r,t,a){if(p.hasOwnProperty(e))for(var n=0;n<p[e].length;++n){var s=p[e][n](e,r,this,t,a);s&&void 0!==s&&(r=s)}return r},this.listen=function(e,r){return n(e,r),this},this.makeHtml=function(e){if(!e)return e;var r={gHtmlBlocks:[],gHtmlMdBlocks:[],gHtmlSpans:[],gUrls:{},gTitles:{},gDimensions:{},gListLevel:0,hashLinkCounts:{},langExtensions:u,outputModifiers:d,converter:this,ghCodeBlocks:[],metadata:{parsed:{},raw:"",format:""}};return e=e.replace(/篓/g,"篓T"),e=e.replace(/\$/g,"篓D"),e=e.replace(/\r\n/g,"\n"),e=e.replace(/\r/g,"\n"),e=e.replace(/\u00A0/g,"&nbsp;"),c.smartIndentationFix&&(e=function(e){var r=e.match(/^\s*/)[0].length,t=new RegExp("^\\s{0,"+r+"}","gm");return e.replace(t,"")}(e)),e="\n\n"+e+"\n\n",e=a.subParser("detab")(e,c,r),e=e.replace(/^[ \t]+$/gm,""),a.helper.forEach(u,function(t){e=a.subParser("runExtension")(t,e,c,r)}),e=a.subParser("metadata")(e,c,r),e=a.subParser("hashPreCodeTags")(e,c,r),e=a.subParser("githubCodeBlocks")(e,c,r),e=a.subParser("hashHTMLBlocks")(e,c,r),e=a.subParser("hashCodeTags")(e,c,r),e=a.subParser("stripLinkDefinitions")(e,c,r),e=a.subParser("blockGamut")(e,c,r),e=a.subParser("unhashHTMLSpans")(e,c,r),e=a.subParser("unescapeSpecialChars")(e,c,r),e=e.replace(/篓D/g,"$$"),e=e.replace(/篓T/g,"篓"),e=a.subParser("completeHTMLDocument")(e,c,r),a.helper.forEach(d,function(t){e=a.subParser("runExtension")(t,e,c,r)}),_=r.metadata,e},this.makeMarkdown=this.makeMd=function(e,r){function t(e){for(var r=0;r<e.childNodes.length;++r){var a=e.childNodes[r];3===a.nodeType?/\S/.test(a.nodeValue)?(a.nodeValue=a.nodeValue.split("\n").join(" "),a.nodeValue=a.nodeValue.replace(/(\s)+/g,"$1")):(e.removeChild(a),--r):1===a.nodeType&&t(a)}}if(e=e.replace(/\r\n/g,"\n"),e=e.replace(/\r/g,"\n"),e=e.replace(/>[ \t]+</,">篓NBSP;<"),!r){if(!window||!window.document)throw new Error("HTMLParser is undefined. If in a webworker or nodejs environment, you need to provide a WHATWG DOM and HTML such as JSDOM");r=window.document}var n=r.createElement("div");n.innerHTML=e;var s={preList:function(e){for(var r=e.querySelectorAll("pre"),t=[],n=0;n<r.length;++n)if(1===r[n].childElementCount&&"code"===r[n].firstChild.tagName.toLowerCase()){var s=r[n].firstChild.innerHTML.trim(),o=r[n].firstChild.getAttribute("data-language")||"";if(""===o)for(var i=r[n].firstChild.className.split(" "),l=0;l<i.length;++l){var c=i[l].match(/^language-(.+)$/);if(null!==c){o=c[1];break}}s=a.helper.unescapeHTMLEntities(s),t.push(s),r[n].outerHTML='<precode language="'+o+'" precodenum="'+n.toString()+'"></precode>'}else t.push(r[n].innerHTML),r[n].innerHTML="",r[n].setAttribute("prenum",n.toString());return t}(n)};t(n);for(var o=n.childNodes,i="",l=0;l<o.length;l++)i+=a.subParser("makeMarkdown.node")(o[l],s);return i},this.setOption=function(e,r){c[e]=r},this.getOption=function(e){return c[e]},this.getOptions=function(){return c},this.addExtension=function(e,r){t(e,r=r||null)},this.useExtension=function(e){t(e)},this.setFlavor=function(e){if(!l.hasOwnProperty(e))throw Error(e+" flavor was not found");var r=l[e];h=e;for(var t in r)r.hasOwnProperty(t)&&(c[t]=r[t])},this.getFlavor=function(){return h},this.removeExtension=function(e){a.helper.isArray(e)||(e=[e]);for(var r=0;r<e.length;++r){for(var t=e[r],n=0;n<u.length;++n)u[n]===t&&u[n].splice(n,1);for(;0<d.length;++n)d[0]===t&&d[0].splice(n,1)}},this.getAllExtensions=function(){return{language:u,output:d}},this.getMetadata=function(e){return e?_.raw:_.parsed},this.getMetadataFormat=function(){return _.format},this._setMetadataPair=function(e,r){_.parsed[e]=r},this._setMetadataFormat=function(e){_.format=e},this._setMetadataRaw=function(e){_.raw=e}},a.subParser("anchors",function(e,r,t){"use strict";var n=function(e,n,s,o,i,l,c){if(a.helper.isUndefined(c)&&(c=""),s=s.toLowerCase(),e.search(/\(<?\s*>? ?(['"].*['"])?\)$/m)>-1)o="";else if(!o){if(s||(s=n.toLowerCase().replace(/ ?\n/g," ")),o="#"+s,a.helper.isUndefined(t.gUrls[s]))return e;o=t.gUrls[s],a.helper.isUndefined(t.gTitles[s])||(c=t.gTitles[s])}var u='<a href="'+(o=o.replace(a.helper.regexes.asteriskDashAndColon,a.helper.escapeCharactersCallback))+'"';return""!==c&&null!==c&&(u+=' title="'+(c=(c=c.replace(/"/g,"&quot;")).replace(a.helper.regexes.asteriskDashAndColon,a.helper.escapeCharactersCallback))+'"'),r.openLinksInNewWindow&&!/^#/.test(o)&&(u+=' target="篓E95Eblank"'),u+=">"+n+"</a>"};return e=(e=t.converter._dispatch("anchors.before",e,r,t)).replace(/\[((?:\[[^\]]*]|[^\[\]])*)] ?(?:\n *)?\[(.*?)]()()()()/g,n),e=e.replace(/\[((?:\[[^\]]*]|[^\[\]])*)]()[ \t]*\([ \t]?<([^>]*)>(?:[ \t]*((["'])([^"]*?)\5))?[ \t]?\)/g,n),e=e.replace(/\[((?:\[[^\]]*]|[^\[\]])*)]()[ \t]*\([ \t]?<?([\S]+?(?:\([\S]*?\)[\S]*?)?)>?(?:[ \t]*((["'])([^"]*?)\5))?[ \t]?\)/g,n),e=e.replace(/\[([^\[\]]+)]()()()()()/g,n),r.ghMentions&&(e=e.replace(/(^|\s)(\\)?(@([a-z\d]+(?:[a-z\d.-]+?[a-z\d]+)*))/gim,function(e,t,n,s,o){if("\\"===n)return t+s;if(!a.helper.isString(r.ghMentionsLink))throw new Error("ghMentionsLink option must be a string");var i=r.ghMentionsLink.replace(/\{u}/g,o),l="";return r.openLinksInNewWindow&&(l=' target="篓E95Eblank"'),t+'<a href="'+i+'"'+l+">"+s+"</a>"})),e=t.converter._dispatch("anchors.after",e,r,t)});var u=/([*~_]+|\b)(((https?|ftp|dict):\/\/|www\.)[^'">\s]+?\.[^'">\s]+?)()(\1)?(?=\s|$)(?!["<>])/gi,d=/([*~_]+|\b)(((https?|ftp|dict):\/\/|www\.)[^'">\s]+\.[^'">\s]+?)([.!?,()\[\]])?(\1)?(?=\s|$)(?!["<>])/gi,p=/()<(((https?|ftp|dict):\/\/|www\.)[^'">\s]+)()>()/gi,h=/(^|\s)(?:mailto:)?([A-Za-z0-9!#$%&'*+-/=?^_`{|}~.]+@[-a-z0-9]+(\.[-a-z0-9]+)*\.[a-z]+)(?=$|\s)/gim,_=/<()(?:mailto:)?([-.\w]+@[-a-z0-9]+(\.[-a-z0-9]+)*\.[a-z]+)>/gi,g=function(e){"use strict";return function(r,t,n,s,o,i,l){var c=n=n.replace(a.helper.regexes.asteriskDashAndColon,a.helper.escapeCharactersCallback),u="",d="",p=t||"",h=l||"";return/^www\./i.test(n)&&(n=n.replace(/^www\./i,"http://www.")),e.excludeTrailingPunctuationFromURLs&&i&&(u=i),e.openLinksInNewWindow&&(d=' target="篓E95Eblank"'),p+'<a href="'+n+'"'+d+">"+c+"</a>"+u+h}},m=function(e,r){"use strict";return function(t,n,s){var o="mailto:";return n=n||"",s=a.subParser("unescapeSpecialChars")(s,e,r),e.encodeEmails?(o=a.helper.encodeEmailAddress(o+s),s=a.helper.encodeEmailAddress(s)):o+=s,n+'<a href="'+o+'">'+s+"</a>"}};a.subParser("autoLinks",function(e,r,t){"use strict";return e=t.converter._dispatch("autoLinks.before",e,r,t),e=e.replace(p,g(r)),e=e.replace(_,m(r,t)),e=t.converter._dispatch("autoLinks.after",e,r,t)}),a.subParser("simplifiedAutoLinks",function(e,r,t){"use strict";return r.simplifiedAutoLink?(e=t.converter._dispatch("simplifiedAutoLinks.before",e,r,t),e=r.excludeTrailingPunctuationFromURLs?e.replace(d,g(r)):e.replace(u,g(r)),e=e.replace(h,m(r,t)),e=t.converter._dispatch("simplifiedAutoLinks.after",e,r,t)):e}),a.subParser("blockGamut",function(e,r,t){"use strict";return e=t.converter._dispatch("blockGamut.before",e,r,t),e=a.subParser("blockQuotes")(e,r,t),e=a.subParser("headers")(e,r,t),e=a.subParser("horizontalRule")(e,r,t),e=a.subParser("lists")(e,r,t),e=a.subParser("codeBlocks")(e,r,t),e=a.subParser("tables")(e,r,t),e=a.subParser("hashHTMLBlocks")(e,r,t),e=a.subParser("paragraphs")(e,r,t),e=t.converter._dispatch("blockGamut.after",e,r,t)}),a.subParser("blockQuotes",function(e,r,t){"use strict";e=t.converter._dispatch("blockQuotes.before",e,r,t),e+="\n\n";var n=/(^ {0,3}>[ \t]?.+\n(.+\n)*\n*)+/gm;return r.splitAdjacentBlockquotes&&(n=/^ {0,3}>[\s\S]*?(?:\n\n)/gm),e=e.replace(n,function(e){return e=e.replace(/^[ \t]*>[ \t]?/gm,""),e=e.replace(/篓0/g,""),e=e.replace(/^[ \t]+$/gm,""),e=a.subParser("githubCodeBlocks")(e,r,t),e=a.subParser("blockGamut")(e,r,t),e=e.replace(/(^|\n)/g,"$1  "),e=e.replace(/(\s*<pre>[^\r]+?<\/pre>)/gm,function(e,r){var t=r;return t=t.replace(/^  /gm,"篓0"),t=t.replace(/篓0/g,"")}),a.subParser("hashBlock")("<blockquote>\n"+e+"\n</blockquote>",r,t)}),e=t.converter._dispatch("blockQuotes.after",e,r,t)}),a.subParser("codeBlocks",function(e,r,t){"use strict";e=t.converter._dispatch("codeBlocks.before",e,r,t);return e=(e+="篓0").replace(/(?:\n\n|^)((?:(?:[ ]{4}|\t).*\n+)+)(\n*[ ]{0,3}[^ \t\n]|(?=篓0))/g,function(e,n,s){var o=n,i=s,l="\n";return o=a.subParser("outdent")(o,r,t),o=a.subParser("encodeCode")(o,r,t),o=a.subParser("detab")(o,r,t),o=o.replace(/^\n+/g,""),o=o.replace(/\n+$/g,""),r.omitExtraWLInCodeBlocks&&(l=""),o="<pre><code>"+o+l+"</code></pre>",a.subParser("hashBlock")(o,r,t)+i}),e=e.replace(/篓0/,""),e=t.converter._dispatch("codeBlocks.after",e,r,t)}),a.subParser("codeSpans",function(e,r,t){"use strict";return void 0===(e=t.converter._dispatch("codeSpans.before",e,r,t))&&(e=""),e=e.replace(/(^|[^\\])(`+)([^\r]*?[^`])\2(?!`)/gm,function(e,n,s,o){var i=o;return i=i.replace(/^([ \t]*)/g,""),i=i.replace(/[ \t]*$/g,""),i=a.subParser("encodeCode")(i,r,t),i=n+"<code>"+i+"</code>",i=a.subParser("hashHTMLSpans")(i,r,t)}),e=t.converter._dispatch("codeSpans.after",e,r,t)}),a.subParser("completeHTMLDocument",function(e,r,t){"use strict";if(!r.completeHTMLDocument)return e;e=t.converter._dispatch("completeHTMLDocument.before",e,r,t);var a="html",n="<!DOCTYPE HTML>\n",s="",o='<meta charset="utf-8">\n',i="",l="";void 0!==t.metadata.parsed.doctype&&(n="<!DOCTYPE "+t.metadata.parsed.doctype+">\n","html"!==(a=t.metadata.parsed.doctype.toString().toLowerCase())&&"html5"!==a||(o='<meta charset="utf-8">'));for(var c in t.metadata.parsed)if(t.metadata.parsed.hasOwnProperty(c))switch(c.toLowerCase()){case"doctype":break;case"title":s="<title>"+t.metadata.parsed.title+"</title>\n";break;case"charset":o="html"===a||"html5"===a?'<meta charset="'+t.metadata.parsed.charset+'">\n':'<meta name="charset" content="'+t.metadata.parsed.charset+'">\n';break;case"language":case"lang":i=' lang="'+t.metadata.parsed[c]+'"',l+='<meta name="'+c+'" content="'+t.metadata.parsed[c]+'">\n';break;default:l+='<meta name="'+c+'" content="'+t.metadata.parsed[c]+'">\n'}return e=n+"<html"+i+">\n<head>\n"+s+o+l+"</head>\n<body>\n"+e.trim()+"\n</body>\n</html>",e=t.converter._dispatch("completeHTMLDocument.after",e,r,t)}),a.subParser("detab",function(e,r,t){"use strict";return e=t.converter._dispatch("detab.before",e,r,t),e=e.replace(/\t(?=\t)/g,"    "),e=e.replace(/\t/g,"篓A篓B"),e=e.replace(/篓B(.+?)篓A/g,function(e,r){for(var t=r,a=4-t.length%4,n=0;n<a;n++)t+=" ";return t}),e=e.replace(/篓A/g,"    "),e=e.replace(/篓B/g,""),e=t.converter._dispatch("detab.after",e,r,t)}),a.subParser("ellipsis",function(e,r,t){"use strict";return e=t.converter._dispatch("ellipsis.before",e,r,t),e=e.replace(/\.\.\./g,"鈥�"),e=t.converter._dispatch("ellipsis.after",e,r,t)}),a.subParser("emoji",function(e,r,t){"use strict";if(!r.emoji)return e;return e=(e=t.converter._dispatch("emoji.before",e,r,t)).replace(/:([\S]+?):/g,function(e,r){return a.helper.emojis.hasOwnProperty(r)?a.helper.emojis[r]:e}),e=t.converter._dispatch("emoji.after",e,r,t)}),a.subParser("encodeAmpsAndAngles",function(e,r,t){"use strict";return e=t.converter._dispatch("encodeAmpsAndAngles.before",e,r,t),e=e.replace(/&(?!#?[xX]?(?:[0-9a-fA-F]+|\w+);)/g,"&amp;"),e=e.replace(/<(?![a-z\/?$!])/gi,"&lt;"),e=e.replace(/</g,"&lt;"),e=e.replace(/>/g,"&gt;"),e=t.converter._dispatch("encodeAmpsAndAngles.after",e,r,t)}),a.subParser("encodeBackslashEscapes",function(e,r,t){"use strict";return e=t.converter._dispatch("encodeBackslashEscapes.before",e,r,t),e=e.replace(/\\(\\)/g,a.helper.escapeCharactersCallback),e=e.replace(/\\([`*_{}\[\]()>#+.!~=|-])/g,a.helper.escapeCharactersCallback),e=t.converter._dispatch("encodeBackslashEscapes.after",e,r,t)}),a.subParser("encodeCode",function(e,r,t){"use strict";return e=t.converter._dispatch("encodeCode.before",e,r,t),e=e.replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/([*_{}\[\]\\=~-])/g,a.helper.escapeCharactersCallback),e=t.converter._dispatch("encodeCode.after",e,r,t)}),a.subParser("escapeSpecialCharsWithinTagAttributes",function(e,r,t){"use strict";return e=(e=t.converter._dispatch("escapeSpecialCharsWithinTagAttributes.before",e,r,t)).replace(/<\/?[a-z\d_:-]+(?:[\s]+[\s\S]+?)?>/gi,function(e){return e.replace(/(.)<\/?code>(?=.)/g,"$1`").replace(/([\\`*_~=|])/g,a.helper.escapeCharactersCallback)}),e=e.replace(/<!(--(?:(?:[^>-]|-[^>])(?:[^-]|-[^-])*)--)>/gi,function(e){return e.replace(/([\\`*_~=|])/g,a.helper.escapeCharactersCallback)}),e=t.converter._dispatch("escapeSpecialCharsWithinTagAttributes.after",e,r,t)}),a.subParser("githubCodeBlocks",function(e,r,t){"use strict";return r.ghCodeBlocks?(e=t.converter._dispatch("githubCodeBlocks.before",e,r,t),e+="篓0",e=e.replace(/(?:^|\n)(?: {0,3})(```+|~~~+)(?: *)([^\s`~]*)\n([\s\S]*?)\n(?: {0,3})\1/g,function(e,n,s,o){var i=r.omitExtraWLInCodeBlocks?"":"\n";return o=a.subParser("encodeCode")(o,r,t),o=a.subParser("detab")(o,r,t),o=o.replace(/^\n+/g,""),o=o.replace(/\n+$/g,""),o="<pre><code"+(s?' class="'+s+" language-"+s+'"':"")+">"+o+i+"</code></pre>",o=a.subParser("hashBlock")(o,r,t),"\n\n篓G"+(t.ghCodeBlocks.push({text:e,codeblock:o})-1)+"G\n\n"}),e=e.replace(/篓0/,""),t.converter._dispatch("githubCodeBlocks.after",e,r,t)):e}),a.subParser("hashBlock",function(e,r,t){"use strict";return e=t.converter._dispatch("hashBlock.before",e,r,t),e=e.replace(/(^\n+|\n+$)/g,""),e="\n\n篓K"+(t.gHtmlBlocks.push(e)-1)+"K\n\n",e=t.converter._dispatch("hashBlock.after",e,r,t)}),a.subParser("hashCodeTags",function(e,r,t){"use strict";e=t.converter._dispatch("hashCodeTags.before",e,r,t);return e=a.helper.replaceRecursiveRegExp(e,function(e,n,s,o){var i=s+a.subParser("encodeCode")(n,r,t)+o;return"篓C"+(t.gHtmlSpans.push(i)-1)+"C"},"<code\\b[^>]*>","</code>","gim"),e=t.converter._dispatch("hashCodeTags.after",e,r,t)}),a.subParser("hashElement",function(e,r,t){"use strict";return function(e,r){var a=r;return a=a.replace(/\n\n/g,"\n"),a=a.replace(/^\n/,""),a=a.replace(/\n+$/g,""),a="\n\n篓K"+(t.gHtmlBlocks.push(a)-1)+"K\n\n"}}),a.subParser("hashHTMLBlocks",function(e,r,t){"use strict";e=t.converter._dispatch("hashHTMLBlocks.before",e,r,t);var n=["pre","div","h1","h2","h3","h4","h5","h6","blockquote","table","dl","ol","ul","script","noscript","form","fieldset","iframe","math","style","section","header","footer","nav","article","aside","address","audio","canvas","figure","hgroup","output","video","p"],s=function(e,r,a,n){var s=e;return-1!==a.search(/\bmarkdown\b/)&&(s=a+t.converter.makeHtml(r)+n),"\n\n篓K"+(t.gHtmlBlocks.push(s)-1)+"K\n\n"};r.backslashEscapesHTMLTags&&(e=e.replace(/\\<(\/?[^>]+?)>/g,function(e,r){return"&lt;"+r+"&gt;"}));for(var o=0;o<n.length;++o)for(var i,l=new RegExp("^ {0,3}(<"+n[o]+"\\b[^>]*>)","im"),c="<"+n[o]+"\\b[^>]*>",u="</"+n[o]+">";-1!==(i=a.helper.regexIndexOf(e,l));){var d=a.helper.splitAtIndex(e,i),p=a.helper.replaceRecursiveRegExp(d[1],s,c,u,"im");if(p===d[1])break;e=d[0].concat(p)}return e=e.replace(/(\n {0,3}(<(hr)\b([^<>])*?\/?>)[ \t]*(?=\n{2,}))/g,a.subParser("hashElement")(e,r,t)),e=a.helper.replaceRecursiveRegExp(e,function(e){return"\n\n篓K"+(t.gHtmlBlocks.push(e)-1)+"K\n\n"},"^ {0,3}\x3c!--","--\x3e","gm"),e=e.replace(/(?:\n\n)( {0,3}(?:<([?%])[^\r]*?\2>)[ \t]*(?=\n{2,}))/g,a.subParser("hashElement")(e,r,t)),e=t.converter._dispatch("hashHTMLBlocks.after",e,r,t)}),a.subParser("hashHTMLSpans",function(e,r,t){"use strict";function a(e){return"篓C"+(t.gHtmlSpans.push(e)-1)+"C"}return e=t.converter._dispatch("hashHTMLSpans.before",e,r,t),e=e.replace(/<[^>]+?\/>/gi,function(e){return a(e)}),e=e.replace(/<([^>]+?)>[\s\S]*?<\/\1>/g,function(e){return a(e)}),e=e.replace(/<([^>]+?)\s[^>]+?>[\s\S]*?<\/\1>/g,function(e){return a(e)}),e=e.replace(/<[^>]+?>/gi,function(e){return a(e)}),e=t.converter._dispatch("hashHTMLSpans.after",e,r,t)}),a.subParser("unhashHTMLSpans",function(e,r,t){"use strict";e=t.converter._dispatch("unhashHTMLSpans.before",e,r,t);for(var a=0;a<t.gHtmlSpans.length;++a){for(var n=t.gHtmlSpans[a],s=0;/篓C(\d+)C/.test(n);){var o=RegExp.$1;if(n=n.replace("篓C"+o+"C",t.gHtmlSpans[o]),10===s){console.error("maximum nesting of 10 spans reached!!!");break}++s}e=e.replace("篓C"+a+"C",n)}return e=t.converter._dispatch("unhashHTMLSpans.after",e,r,t)}),a.subParser("hashPreCodeTags",function(e,r,t){"use strict";e=t.converter._dispatch("hashPreCodeTags.before",e,r,t);return e=a.helper.replaceRecursiveRegExp(e,function(e,n,s,o){var i=s+a.subParser("encodeCode")(n,r,t)+o;return"\n\n篓G"+(t.ghCodeBlocks.push({text:e,codeblock:i})-1)+"G\n\n"},"^ {0,3}<pre\\b[^>]*>\\s*<code\\b[^>]*>","^ {0,3}</code>\\s*</pre>","gim"),e=t.converter._dispatch("hashPreCodeTags.after",e,r,t)}),a.subParser("headers",function(e,r,t){"use strict";function n(e){var n,s;if(r.customizedHeaderId){var o=e.match(/\{([^{]+?)}\s*$/);o&&o[1]&&(e=o[1])}return n=e,s=a.helper.isString(r.prefixHeaderId)?r.prefixHeaderId:!0===r.prefixHeaderId?"section-":"",r.rawPrefixHeaderId||(n=s+n),n=r.ghCompatibleHeaderId?n.replace(/ /g,"-").replace(/&amp;/g,"").replace(/篓T/g,"").replace(/篓D/g,"").replace(/[&+$,\/:;=?@"#{}|^篓~\[\]`\\*)(%.!'<>]/g,"").toLowerCase():r.rawHeaderId?n.replace(/ /g,"-").replace(/&amp;/g,"&").replace(/篓T/g,"篓").replace(/篓D/g,"$").replace(/["']/g,"-").toLowerCase():n.replace(/[^\w]/g,"").toLowerCase(),r.rawPrefixHeaderId&&(n=s+n),t.hashLinkCounts[n]?n=n+"-"+t.hashLinkCounts[n]++:t.hashLinkCounts[n]=1,n}e=t.converter._dispatch("headers.before",e,r,t);var s=isNaN(parseInt(r.headerLevelStart))?1:parseInt(r.headerLevelStart),o=r.smoothLivePreview?/^(.+)[ \t]*\n={2,}[ \t]*\n+/gm:/^(.+)[ \t]*\n=+[ \t]*\n+/gm,i=r.smoothLivePreview?/^(.+)[ \t]*\n-{2,}[ \t]*\n+/gm:/^(.+)[ \t]*\n-+[ \t]*\n+/gm;e=(e=e.replace(o,function(e,o){var i=a.subParser("spanGamut")(o,r,t),l=r.noHeaderId?"":' id="'+n(o)+'"',c="<h"+s+l+">"+i+"</h"+s+">";return a.subParser("hashBlock")(c,r,t)})).replace(i,function(e,o){var i=a.subParser("spanGamut")(o,r,t),l=r.noHeaderId?"":' id="'+n(o)+'"',c=s+1,u="<h"+c+l+">"+i+"</h"+c+">";return a.subParser("hashBlock")(u,r,t)});var l=r.requireSpaceBeforeHeadingText?/^(#{1,6})[ \t]+(.+?)[ \t]*#*\n+/gm:/^(#{1,6})[ \t]*(.+?)[ \t]*#*\n+/gm;return e=e.replace(l,function(e,o,i){var l=i;r.customizedHeaderId&&(l=i.replace(/\s?\{([^{]+?)}\s*$/,""));var c=a.subParser("spanGamut")(l,r,t),u=r.noHeaderId?"":' id="'+n(i)+'"',d=s-1+o.length,p="<h"+d+u+">"+c+"</h"+d+">";return a.subParser("hashBlock")(p,r,t)}),e=t.converter._dispatch("headers.after",e,r,t)}),a.subParser("horizontalRule",function(e,r,t){"use strict";e=t.converter._dispatch("horizontalRule.before",e,r,t);var n=a.subParser("hashBlock")("<hr />",r,t);return e=e.replace(/^ {0,2}( ?-){3,}[ \t]*$/gm,n),e=e.replace(/^ {0,2}( ?\*){3,}[ \t]*$/gm,n),e=e.replace(/^ {0,2}( ?_){3,}[ \t]*$/gm,n),e=t.converter._dispatch("horizontalRule.after",e,r,t)}),a.subParser("images",function(e,r,t){"use strict";function n(e,r,n,s,o,i,l,c){var u=t.gUrls,d=t.gTitles,p=t.gDimensions;if(n=n.toLowerCase(),c||(c=""),e.search(/\(<?\s*>? ?(['"].*['"])?\)$/m)>-1)s="";else if(""===s||null===s){if(""!==n&&null!==n||(n=r.toLowerCase().replace(/ ?\n/g," ")),s="#"+n,a.helper.isUndefined(u[n]))return e;s=u[n],a.helper.isUndefined(d[n])||(c=d[n]),a.helper.isUndefined(p[n])||(o=p[n].width,i=p[n].height)}r=r.replace(/"/g,"&quot;").replace(a.helper.regexes.asteriskDashAndColon,a.helper.escapeCharactersCallback);var h='<img src="'+(s=s.replace(a.helper.regexes.asteriskDashAndColon,a.helper.escapeCharactersCallback))+'" alt="'+r+'"';return c&&a.helper.isString(c)&&(h+=' title="'+(c=c.replace(/"/g,"&quot;").replace(a.helper.regexes.asteriskDashAndColon,a.helper.escapeCharactersCallback))+'"'),o&&i&&(h+=' width="'+(o="*"===o?"auto":o)+'"',h+=' height="'+(i="*"===i?"auto":i)+'"'),h+=" />"}return e=(e=t.converter._dispatch("images.before",e,r,t)).replace(/!\[([^\]]*?)] ?(?:\n *)?\[([\s\S]*?)]()()()()()/g,n),e=e.replace(/!\[([^\]]*?)][ \t]*()\([ \t]?<?(data:.+?\/.+?;base64,[A-Za-z0-9+/=\n]+?)>?(?: =([*\d]+[A-Za-z%]{0,4})x([*\d]+[A-Za-z%]{0,4}))?[ \t]*(?:(["'])([^"]*?)\6)?[ \t]?\)/g,function(e,r,t,a,s,o,i,l){return a=a.replace(/\s/g,""),n(e,r,t,a,s,o,0,l)}),e=e.replace(/!\[([^\]]*?)][ \t]*()\([ \t]?<([^>]*)>(?: =([*\d]+[A-Za-z%]{0,4})x([*\d]+[A-Za-z%]{0,4}))?[ \t]*(?:(?:(["'])([^"]*?)\6))?[ \t]?\)/g,n),e=e.replace(/!\[([^\]]*?)][ \t]*()\([ \t]?<?([\S]+?(?:\([\S]*?\)[\S]*?)?)>?(?: =([*\d]+[A-Za-z%]{0,4})x([*\d]+[A-Za-z%]{0,4}))?[ \t]*(?:(["'])([^"]*?)\6)?[ \t]?\)/g,n),e=e.replace(/!\[([^\[\]]+)]()()()()()/g,n),e=t.converter._dispatch("images.after",e,r,t)}),a.subParser("italicsAndBold",function(e,r,t){"use strict";function a(e,r,t){return r+e+t}return e=t.converter._dispatch("italicsAndBold.before",e,r,t),e=r.literalMidWordUnderscores?(e=(e=e.replace(/\b___(\S[\s\S]*?)___\b/g,function(e,r){return a(r,"<strong><em>","</em></strong>")})).replace(/\b__(\S[\s\S]*?)__\b/g,function(e,r){return a(r,"<strong>","</strong>")})).replace(/\b_(\S[\s\S]*?)_\b/g,function(e,r){return a(r,"<em>","</em>")}):(e=(e=e.replace(/___(\S[\s\S]*?)___/g,function(e,r){return/\S$/.test(r)?a(r,"<strong><em>","</em></strong>"):e})).replace(/__(\S[\s\S]*?)__/g,function(e,r){return/\S$/.test(r)?a(r,"<strong>","</strong>"):e})).replace(/_([^\s_][\s\S]*?)_/g,function(e,r){return/\S$/.test(r)?a(r,"<em>","</em>"):e}),e=r.literalMidWordAsterisks?(e=(e=e.replace(/([^*]|^)\B\*\*\*(\S[\s\S]*?)\*\*\*\B(?!\*)/g,function(e,r,t){return a(t,r+"<strong><em>","</em></strong>")})).replace(/([^*]|^)\B\*\*(\S[\s\S]*?)\*\*\B(?!\*)/g,function(e,r,t){return a(t,r+"<strong>","</strong>")})).replace(/([^*]|^)\B\*(\S[\s\S]*?)\*\B(?!\*)/g,function(e,r,t){return a(t,r+"<em>","</em>")}):(e=(e=e.replace(/\*\*\*(\S[\s\S]*?)\*\*\*/g,function(e,r){return/\S$/.test(r)?a(r,"<strong><em>","</em></strong>"):e})).replace(/\*\*(\S[\s\S]*?)\*\*/g,function(e,r){return/\S$/.test(r)?a(r,"<strong>","</strong>"):e})).replace(/\*([^\s*][\s\S]*?)\*/g,function(e,r){return/\S$/.test(r)?a(r,"<em>","</em>"):e}),e=t.converter._dispatch("italicsAndBold.after",e,r,t)}),a.subParser("lists",function(e,r,t){"use strict";function n(e,n){t.gListLevel++,e=e.replace(/\n{2,}$/,"\n");var s=/(\n)?(^ {0,3})([*+-]|\d+[.])[ \t]+((\[(x|X| )?])?[ \t]*[^\r]+?(\n{1,2}))(?=\n*(篓0| {0,3}([*+-]|\d+[.])[ \t]+))/gm,o=/\n[ \t]*\n(?!篓0)/.test(e+="篓0");return r.disableForced4SpacesIndentedSublists&&(s=/(\n)?(^ {0,3})([*+-]|\d+[.])[ \t]+((\[(x|X| )?])?[ \t]*[^\r]+?(\n{1,2}))(?=\n*(篓0|\2([*+-]|\d+[.])[ \t]+))/gm),e=e.replace(s,function(e,n,s,i,l,c,u){u=u&&""!==u.trim();var d=a.subParser("outdent")(l,r,t),p="";return c&&r.tasklists&&(p=' class="task-list-item" style="list-style-type: none;"',d=d.replace(/^[ \t]*\[(x|X| )?]/m,function(){var e='<input type="checkbox" disabled style="margin: 0px 0.35em 0.25em -1.6em; vertical-align: middle;"';return u&&(e+=" checked"),e+=">"})),d=d.replace(/^([-*+]|\d\.)[ \t]+[\S\n ]*/g,function(e){return"篓A"+e}),n||d.search(/\n{2,}/)>-1?(d=a.subParser("githubCodeBlocks")(d,r,t),d=a.subParser("blockGamut")(d,r,t)):(d=(d=a.subParser("lists")(d,r,t)).replace(/\n$/,""),d=(d=a.subParser("hashHTMLBlocks")(d,r,t)).replace(/\n\n+/g,"\n\n"),d=o?a.subParser("paragraphs")(d,r,t):a.subParser("spanGamut")(d,r,t)),d=d.replace("篓A",""),d="<li"+p+">"+d+"</li>\n"}),e=e.replace(/篓0/g,""),t.gListLevel--,n&&(e=e.replace(/\s+$/,"")),e}function s(e,r){if("ol"===r){var t=e.match(/^ *(\d+)\./);if(t&&"1"!==t[1])return' start="'+t[1]+'"'}return""}function o(e,t,a){var o=r.disableForced4SpacesIndentedSublists?/^ ?\d+\.[ \t]/gm:/^ {0,3}\d+\.[ \t]/gm,i=r.disableForced4SpacesIndentedSublists?/^ ?[*+-][ \t]/gm:/^ {0,3}[*+-][ \t]/gm,l="ul"===t?o:i,c="";if(-1!==e.search(l))!function r(u){var d=u.search(l),p=s(e,t);-1!==d?(c+="\n\n<"+t+p+">\n"+n(u.slice(0,d),!!a)+"</"+t+">\n",l="ul"===(t="ul"===t?"ol":"ul")?o:i,r(u.slice(d))):c+="\n\n<"+t+p+">\n"+n(u,!!a)+"</"+t+">\n"}(e);else{var u=s(e,t);c="\n\n<"+t+u+">\n"+n(e,!!a)+"</"+t+">\n"}return c}return e=t.converter._dispatch("lists.before",e,r,t),e+="篓0",e=t.gListLevel?e.replace(/^(( {0,3}([*+-]|\d+[.])[ \t]+)[^\r]+?(篓0|\n{2,}(?=\S)(?![ \t]*(?:[*+-]|\d+[.])[ \t]+)))/gm,function(e,r,t){return o(r,t.search(/[*+-]/g)>-1?"ul":"ol",!0)}):e.replace(/(\n\n|^\n?)(( {0,3}([*+-]|\d+[.])[ \t]+)[^\r]+?(篓0|\n{2,}(?=\S)(?![ \t]*(?:[*+-]|\d+[.])[ \t]+)))/gm,function(e,r,t,a){return o(t,a.search(/[*+-]/g)>-1?"ul":"ol",!1)}),e=e.replace(/篓0/,""),e=t.converter._dispatch("lists.after",e,r,t)}),a.subParser("metadata",function(e,r,t){"use strict";function a(e){t.metadata.raw=e,(e=(e=e.replace(/&/g,"&amp;").replace(/"/g,"&quot;")).replace(/\n {4}/g," ")).replace(/^([\S ]+): +([\s\S]+?)$/gm,function(e,r,a){return t.metadata.parsed[r]=a,""})}return r.metadata?(e=t.converter._dispatch("metadata.before",e,r,t),e=e.replace(/^\s*芦芦芦+(\S*?)\n([\s\S]+?)\n禄禄禄+\n/,function(e,r,t){return a(t),"篓M"}),e=e.replace(/^\s*---+(\S*?)\n([\s\S]+?)\n---+\n/,function(e,r,n){return r&&(t.metadata.format=r),a(n),"篓M"}),e=e.replace(/篓M/g,""),e=t.converter._dispatch("metadata.after",e,r,t)):e}),a.subParser("outdent",function(e,r,t){"use strict";return e=t.converter._dispatch("outdent.before",e,r,t),e=e.replace(/^(\t|[ ]{1,4})/gm,"篓0"),e=e.replace(/篓0/g,""),e=t.converter._dispatch("outdent.after",e,r,t)}),a.subParser("paragraphs",function(e,r,t){"use strict";for(var n=(e=(e=(e=t.converter._dispatch("paragraphs.before",e,r,t)).replace(/^\n+/g,"")).replace(/\n+$/g,"")).split(/\n{2,}/g),s=[],o=n.length,i=0;i<o;i++){var l=n[i];l.search(/篓(K|G)(\d+)\1/g)>=0?s.push(l):l.search(/\S/)>=0&&(l=(l=a.subParser("spanGamut")(l,r,t)).replace(/^([ \t]*)/g,"<p>"),l+="</p>",s.push(l))}for(o=s.length,i=0;i<o;i++){for(var c="",u=s[i],d=!1;/篓(K|G)(\d+)\1/.test(u);){var p=RegExp.$1,h=RegExp.$2;c=(c="K"===p?t.gHtmlBlocks[h]:d?a.subParser("encodeCode")(t.ghCodeBlocks[h].text,r,t):t.ghCodeBlocks[h].codeblock).replace(/\$/g,"$$$$"),u=u.replace(/(\n\n)?篓(K|G)\d+\2(\n\n)?/,c),/^<pre\b[^>]*>\s*<code\b[^>]*>/.test(u)&&(d=!0)}s[i]=u}return e=s.join("\n"),e=e.replace(/^\n+/g,""),e=e.replace(/\n+$/g,""),t.converter._dispatch("paragraphs.after",e,r,t)}),a.subParser("runExtension",function(e,r,t,a){"use strict";if(e.filter)r=e.filter(r,a.converter,t);else if(e.regex){var n=e.regex;n instanceof RegExp||(n=new RegExp(n,"g")),r=r.replace(n,e.replace)}return r}),a.subParser("spanGamut",function(e,r,t){"use strict";return e=t.converter._dispatch("spanGamut.before",e,r,t),e=a.subParser("codeSpans")(e,r,t),e=a.subParser("escapeSpecialCharsWithinTagAttributes")(e,r,t),e=a.subParser("encodeBackslashEscapes")(e,r,t),e=a.subParser("images")(e,r,t),e=a.subParser("anchors")(e,r,t),e=a.subParser("autoLinks")(e,r,t),e=a.subParser("simplifiedAutoLinks")(e,r,t),e=a.subParser("emoji")(e,r,t),e=a.subParser("underline")(e,r,t),e=a.subParser("italicsAndBold")(e,r,t),e=a.subParser("strikethrough")(e,r,t),e=a.subParser("ellipsis")(e,r,t),e=a.subParser("hashHTMLSpans")(e,r,t),e=a.subParser("encodeAmpsAndAngles")(e,r,t),r.simpleLineBreaks?/\n\n篓K/.test(e)||(e=e.replace(/\n+/g,"<br />\n")):e=e.replace(/  +\n/g,"<br />\n"),e=t.converter._dispatch("spanGamut.after",e,r,t)}),a.subParser("strikethrough",function(e,r,t){"use strict";return r.strikethrough&&(e=(e=t.converter._dispatch("strikethrough.before",e,r,t)).replace(/(?:~){2}([\s\S]+?)(?:~){2}/g,function(e,n){return function(e){return r.simplifiedAutoLink&&(e=a.subParser("simplifiedAutoLinks")(e,r,t)),"<del>"+e+"</del>"}(n)}),e=t.converter._dispatch("strikethrough.after",e,r,t)),e}),a.subParser("stripLinkDefinitions",function(e,r,t){"use strict";var n=function(e,n,s,o,i,l,c){return n=n.toLowerCase(),s.match(/^data:.+?\/.+?;base64,/)?t.gUrls[n]=s.replace(/\s/g,""):t.gUrls[n]=a.subParser("encodeAmpsAndAngles")(s,r,t),l?l+c:(c&&(t.gTitles[n]=c.replace(/"|'/g,"&quot;")),r.parseImgDimensions&&o&&i&&(t.gDimensions[n]={width:o,height:i}),"")};return e=(e+="篓0").replace(/^ {0,3}\[(.+)]:[ \t]*\n?[ \t]*<?(data:.+?\/.+?;base64,[A-Za-z0-9+/=\n]+?)>?(?: =([*\d]+[A-Za-z%]{0,4})x([*\d]+[A-Za-z%]{0,4}))?[ \t]*\n?[ \t]*(?:(\n*)["|'(](.+?)["|')][ \t]*)?(?:\n\n|(?=篓0)|(?=\n\[))/gm,n),e=e.replace(/^ {0,3}\[(.+)]:[ \t]*\n?[ \t]*<?([^>\s]+)>?(?: =([*\d]+[A-Za-z%]{0,4})x([*\d]+[A-Za-z%]{0,4}))?[ \t]*\n?[ \t]*(?:(\n*)["|'(](.+?)["|')][ \t]*)?(?:\n+|(?=篓0))/gm,n),e=e.replace(/篓0/,"")}),a.subParser("tables",function(e,r,t){"use strict";function n(e){return/^:[ \t]*--*$/.test(e)?' style="text-align:left;"':/^--*[ \t]*:[ \t]*$/.test(e)?' style="text-align:right;"':/^:[ \t]*--*[ \t]*:$/.test(e)?' style="text-align:center;"':""}function s(e,n){var s="";return e=e.trim(),(r.tablesHeaderId||r.tableHeaderId)&&(s=' id="'+e.replace(/ /g,"_").toLowerCase()+'"'),e=a.subParser("spanGamut")(e,r,t),"<th"+s+n+">"+e+"</th>\n"}function o(e,n){return"<td"+n+">"+a.subParser("spanGamut")(e,r,t)+"</td>\n"}function i(e){var i,l=e.split("\n");for(i=0;i<l.length;++i)/^ {0,3}\|/.test(l[i])&&(l[i]=l[i].replace(/^ {0,3}\|/,"")),/\|[ \t]*$/.test(l[i])&&(l[i]=l[i].replace(/\|[ \t]*$/,"")),l[i]=a.subParser("codeSpans")(l[i],r,t);var c=l[0].split("|").map(function(e){return e.trim()}),u=l[1].split("|").map(function(e){return e.trim()}),d=[],p=[],h=[],_=[];for(l.shift(),l.shift(),i=0;i<l.length;++i)""!==l[i].trim()&&d.push(l[i].split("|").map(function(e){return e.trim()}));if(c.length<u.length)return e;for(i=0;i<u.length;++i)h.push(n(u[i]));for(i=0;i<c.length;++i)a.helper.isUndefined(h[i])&&(h[i]=""),p.push(s(c[i],h[i]));for(i=0;i<d.length;++i){for(var g=[],m=0;m<p.length;++m)a.helper.isUndefined(d[i][m]),g.push(o(d[i][m],h[m]));_.push(g)}return function(e,r){for(var t="<table>\n<thead>\n<tr>\n",a=e.length,n=0;n<a;++n)t+=e[n];for(t+="</tr>\n</thead>\n<tbody>\n",n=0;n<r.length;++n){t+="<tr>\n";for(var s=0;s<a;++s)t+=r[n][s];t+="</tr>\n"}return t+="</tbody>\n</table>\n"}(p,_)}if(!r.tables)return e;return e=t.converter._dispatch("tables.before",e,r,t),e=e.replace(/\\(\|)/g,a.helper.escapeCharactersCallback),e=e.replace(/^ {0,3}\|?.+\|.+\n {0,3}\|?[ \t]*:?[ \t]*(?:[-=]){2,}[ \t]*:?[ \t]*\|[ \t]*:?[ \t]*(?:[-=]){2,}[\s\S]+?(?:\n\n|篓0)/gm,i),e=e.replace(/^ {0,3}\|.+\|[ \t]*\n {0,3}\|[ \t]*:?[ \t]*(?:[-=]){2,}[ \t]*:?[ \t]*\|[ \t]*\n( {0,3}\|.+\|[ \t]*\n)*(?:\n|篓0)/gm,i),e=t.converter._dispatch("tables.after",e,r,t)}),a.subParser("underline",function(e,r,t){"use strict";return r.underline?(e=t.converter._dispatch("underline.before",e,r,t),e=r.literalMidWordUnderscores?(e=e.replace(/\b___(\S[\s\S]*?)___\b/g,function(e,r){return"<u>"+r+"</u>"})).replace(/\b__(\S[\s\S]*?)__\b/g,function(e,r){return"<u>"+r+"</u>"}):(e=e.replace(/___(\S[\s\S]*?)___/g,function(e,r){return/\S$/.test(r)?"<u>"+r+"</u>":e})).replace(/__(\S[\s\S]*?)__/g,function(e,r){return/\S$/.test(r)?"<u>"+r+"</u>":e}),e=e.replace(/(_)/g,a.helper.escapeCharactersCallback),e=t.converter._dispatch("underline.after",e,r,t)):e}),a.subParser("unescapeSpecialChars",function(e,r,t){"use strict";return e=t.converter._dispatch("unescapeSpecialChars.before",e,r,t),e=e.replace(/篓E(\d+)E/g,function(e,r){var t=parseInt(r);return String.fromCharCode(t)}),e=t.converter._dispatch("unescapeSpecialChars.after",e,r,t)}),a.subParser("makeMarkdown.blockquote",function(e,r){"use strict";var t="";if(e.hasChildNodes())for(var n=e.childNodes,s=n.length,o=0;o<s;++o){var i=a.subParser("makeMarkdown.node")(n[o],r);""!==i&&(t+=i)}return t=t.trim(),t="> "+t.split("\n").join("\n> ")}),a.subParser("makeMarkdown.codeBlock",function(e,r){"use strict";var t=e.getAttribute("language"),a=e.getAttribute("precodenum");return"```"+t+"\n"+r.preList[a]+"\n```"}),a.subParser("makeMarkdown.codeSpan",function(e){"use strict";return"`"+e.innerHTML+"`"}),a.subParser("makeMarkdown.emphasis",function(e,r){"use strict";var t="";if(e.hasChildNodes()){t+="*";for(var n=e.childNodes,s=n.length,o=0;o<s;++o)t+=a.subParser("makeMarkdown.node")(n[o],r);t+="*"}return t}),a.subParser("makeMarkdown.header",function(e,r,t){"use strict";var n=new Array(t+1).join("#"),s="";if(e.hasChildNodes()){s=n+" ";for(var o=e.childNodes,i=o.length,l=0;l<i;++l)s+=a.subParser("makeMarkdown.node")(o[l],r)}return s}),a.subParser("makeMarkdown.hr",function(){"use strict";return"---"}),a.subParser("makeMarkdown.image",function(e){"use strict";var r="";return e.hasAttribute("src")&&(r+="!["+e.getAttribute("alt")+"](",r+="<"+e.getAttribute("src")+">",e.hasAttribute("width")&&e.hasAttribute("height")&&(r+=" ="+e.getAttribute("width")+"x"+e.getAttribute("height")),e.hasAttribute("title")&&(r+=' "'+e.getAttribute("title")+'"'),r+=")"),r}),a.subParser("makeMarkdown.links",function(e,r){"use strict";var t="";if(e.hasChildNodes()&&e.hasAttribute("href")){var n=e.childNodes,s=n.length;t="[";for(var o=0;o<s;++o)t+=a.subParser("makeMarkdown.node")(n[o],r);t+="](",t+="<"+e.getAttribute("href")+">",e.hasAttribute("title")&&(t+=' "'+e.getAttribute("title")+'"'),t+=")"}return t}),a.subParser("makeMarkdown.list",function(e,r,t){"use strict";var n="";if(!e.hasChildNodes())return"";for(var s=e.childNodes,o=s.length,i=e.getAttribute("start")||1,l=0;l<o;++l)if(void 0!==s[l].tagName&&"li"===s[l].tagName.toLowerCase()){n+=("ol"===t?i.toString()+". ":"- ")+a.subParser("makeMarkdown.listItem")(s[l],r),++i}return(n+="\n\x3c!-- --\x3e\n").trim()}),a.subParser("makeMarkdown.listItem",function(e,r){"use strict";for(var t="",n=e.childNodes,s=n.length,o=0;o<s;++o)t+=a.subParser("makeMarkdown.node")(n[o],r);return/\n$/.test(t)?t=t.split("\n").join("\n    ").replace(/^ {4}$/gm,"").replace(/\n\n+/g,"\n\n"):t+="\n",t}),a.subParser("makeMarkdown.node",function(e,r,t){"use strict";t=t||!1;var n="";if(3===e.nodeType)return a.subParser("makeMarkdown.txt")(e,r);if(8===e.nodeType)return"\x3c!--"+e.data+"--\x3e\n\n";if(1!==e.nodeType)return"";switch(e.tagName.toLowerCase()){case"h1":t||(n=a.subParser("makeMarkdown.header")(e,r,1)+"\n\n");break;case"h2":t||(n=a.subParser("makeMarkdown.header")(e,r,2)+"\n\n");break;case"h3":t||(n=a.subParser("makeMarkdown.header")(e,r,3)+"\n\n");break;case"h4":t||(n=a.subParser("makeMarkdown.header")(e,r,4)+"\n\n");break;case"h5":t||(n=a.subParser("makeMarkdown.header")(e,r,5)+"\n\n");break;case"h6":t||(n=a.subParser("makeMarkdown.header")(e,r,6)+"\n\n");break;case"p":t||(n=a.subParser("makeMarkdown.paragraph")(e,r)+"\n\n");break;case"blockquote":t||(n=a.subParser("makeMarkdown.blockquote")(e,r)+"\n\n");break;case"hr":t||(n=a.subParser("makeMarkdown.hr")(e,r)+"\n\n");break;case"ol":t||(n=a.subParser("makeMarkdown.list")(e,r,"ol")+"\n\n");break;case"ul":t||(n=a.subParser("makeMarkdown.list")(e,r,"ul")+"\n\n");break;case"precode":t||(n=a.subParser("makeMarkdown.codeBlock")(e,r)+"\n\n");break;case"pre":t||(n=a.subParser("makeMarkdown.pre")(e,r)+"\n\n");break;case"table":t||(n=a.subParser("makeMarkdown.table")(e,r)+"\n\n");break;case"code":n=a.subParser("makeMarkdown.codeSpan")(e,r);break;case"em":case"i":n=a.subParser("makeMarkdown.emphasis")(e,r);break;case"strong":case"b":n=a.subParser("makeMarkdown.strong")(e,r);break;case"del":n=a.subParser("makeMarkdown.strikethrough")(e,r);break;case"a":n=a.subParser("makeMarkdown.links")(e,r);break;case"img":n=a.subParser("makeMarkdown.image")(e,r);break;default:n=e.outerHTML+"\n\n"}return n}),a.subParser("makeMarkdown.paragraph",function(e,r){"use strict";var t="";if(e.hasChildNodes())for(var n=e.childNodes,s=n.length,o=0;o<s;++o)t+=a.subParser("makeMarkdown.node")(n[o],r);return t=t.trim()}),a.subParser("makeMarkdown.pre",function(e,r){"use strict";var t=e.getAttribute("prenum");return"<pre>"+r.preList[t]+"</pre>"}),a.subParser("makeMarkdown.strikethrough",function(e,r){"use strict";var t="";if(e.hasChildNodes()){t+="~~";for(var n=e.childNodes,s=n.length,o=0;o<s;++o)t+=a.subParser("makeMarkdown.node")(n[o],r);t+="~~"}return t}),a.subParser("makeMarkdown.strong",function(e,r){"use strict";var t="";if(e.hasChildNodes()){t+="**";for(var n=e.childNodes,s=n.length,o=0;o<s;++o)t+=a.subParser("makeMarkdown.node")(n[o],r);t+="**"}return t}),a.subParser("makeMarkdown.table",function(e,r){"use strict";var t,n,s="",o=[[],[]],i=e.querySelectorAll("thead>tr>th"),l=e.querySelectorAll("tbody>tr");for(t=0;t<i.length;++t){var c=a.subParser("makeMarkdown.tableCell")(i[t],r),u="---";if(i[t].hasAttribute("style")){switch(i[t].getAttribute("style").toLowerCase().replace(/\s/g,"")){case"text-align:left;":u=":---";break;case"text-align:right;":u="---:";break;case"text-align:center;":u=":---:"}}o[0][t]=c.trim(),o[1][t]=u}for(t=0;t<l.length;++t){var d=o.push([])-1,p=l[t].getElementsByTagName("td");for(n=0;n<i.length;++n){var h=" ";void 0!==p[n]&&(h=a.subParser("makeMarkdown.tableCell")(p[n],r)),o[d].push(h)}}var _=3;for(t=0;t<o.length;++t)for(n=0;n<o[t].length;++n){var g=o[t][n].length;g>_&&(_=g)}for(t=0;t<o.length;++t){for(n=0;n<o[t].length;++n)1===t?":"===o[t][n].slice(-1)?o[t][n]=a.helper.padEnd(o[t][n].slice(-1),_-1,"-")+":":o[t][n]=a.helper.padEnd(o[t][n],_,"-"):o[t][n]=a.helper.padEnd(o[t][n],_);s+="| "+o[t].join(" | ")+" |\n"}return s.trim()}),a.subParser("makeMarkdown.tableCell",function(e,r){"use strict";var t="";if(!e.hasChildNodes())return"";for(var n=e.childNodes,s=n.length,o=0;o<s;++o)t+=a.subParser("makeMarkdown.node")(n[o],r,!0);return t.trim()}),a.subParser("makeMarkdown.txt",function(e){"use strict";var r=e.nodeValue;return r=r.replace(/ +/g," "),r=r.replace(/篓NBSP;/g," "),r=a.helper.unescapeHTMLEntities(r),r=r.replace(/([*_~|`])/g,"\\$1"),r=r.replace(/^(\s*)>/g,"\\$1>"),r=r.replace(/^#/gm,"\\#"),r=r.replace(/^(\s*)([-=]{3,})(\s*)$/,"$1\\$2$3"),r=r.replace(/^( {0,3}\d+)\./gm,"$1\\."),r=r.replace(/^( {0,3})([+-])/gm,"$1\\$2"),r=r.replace(/]([\s]*)\(/g,"\\]$1\\("),r=r.replace(/^ {0,3}\[([\S \t]*?)]:/gm,"\\[$1]:")});"function"==typeof define&&define.amd?define(function(){"use strict";return a}):"undefined"!=typeof module&&module.exports?module.exports=a:this.showdown=a}).call(this);
-//# sourceMappingURL=showdown.min.js.map
+/*! showdown v 1.9.0 - 10-11-2018 */
+(function(){function e(e){"use strict";var r={omitExtraWLInCodeBlocks:{defaultValue:!1,describe:"Omit the default extra whiteline added to code blocks",type:"boolean"},noHeaderId:{defaultValue:!1,describe:"Turn on/off generated header id",type:"boolean"},prefixHeaderId:{defaultValue:!1,describe:"Add a prefix to the generated header ids. Passing a string will prefix that string to the header id. Setting to true will add a generic 'section-' prefix",type:"string"},rawPrefixHeaderId:{defaultValue:!1,describe:'Setting this option to true will prevent showdown from modifying the prefix. This might result in malformed IDs (if, for instance, the " char is used in the prefix)',type:"boolean"},ghCompatibleHeaderId:{defaultValue:!1,describe:"Generate header ids compatible with github style (spaces are replaced with dashes, a bunch of non alphanumeric chars are removed)",type:"boolean"},rawHeaderId:{defaultValue:!1,describe:"Remove only spaces, ' and \" from generated header ids (including prefixes), replacing them with dashes (-). WARNING: This might result in malformed ids",type:"boolean"},headerLevelStart:{defaultValue:!1,describe:"The header blocks level start",type:"integer"},parseImgDimensions:{defaultValue:!1,describe:"Turn on/off image dimension parsing",type:"boolean"},simplifiedAutoLink:{defaultValue:!1,describe:"Turn on/off GFM autolink style",type:"boolean"},excludeTrailingPunctuationFromURLs:{defaultValue:!1,describe:"Excludes trailing punctuation from links generated with autoLinking",type:"boolean"},literalMidWordUnderscores:{defaultValue:!1,describe:"Parse midword underscores as literal underscores",type:"boolean"},literalMidWordAsterisks:{defaultValue:!1,describe:"Parse midword asterisks as literal asterisks",type:"boolean"},strikethrough:{defaultValue:!1,describe:"Turn on/off strikethrough support",type:"boolean"},tables:{defaultValue:!1,describe:"Turn on/off tables support",type:"boolean"},tablesHeaderId:{defaultValue:!1,describe:"Add an id to table headers",type:"boolean"},ghCodeBlocks:{defaultValue:!0,describe:"Turn on/off GFM fenced code blocks support",type:"boolean"},tasklists:{defaultValue:!1,describe:"Turn on/off GFM tasklist support",type:"boolean"},smoothLivePreview:{defaultValue:!1,describe:"Prevents weird effects in live previews due to incomplete input",type:"boolean"},smartIndentationFix:{defaultValue:!1,description:"Tries to smartly fix indentation in es6 strings",type:"boolean"},disableForced4SpacesIndentedSublists:{defaultValue:!1,description:"Disables the requirement of indenting nested sublists by 4 spaces",type:"boolean"},simpleLineBreaks:{defaultValue:!1,description:"Parses simple line breaks as <br> (GFM Style)",type:"boolean"},requireSpaceBeforeHeadingText:{defaultValue:!1,description:"Makes adding a space between `#` and the header text mandatory (GFM Style)",type:"boolean"},ghMentions:{defaultValue:!1,description:"Enables github @mentions",type:"boolean"},ghMentionsLink:{defaultValue:"https://github.com/{u}",description:"Changes the link generated by @mentions. Only applies if ghMentions option is enabled.",type:"string"},encodeEmails:{defaultValue:!0,description:"Encode e-mail addresses through the use of Character Entities, transforming ASCII e-mail addresses into its equivalent decimal entities",type:"boolean"},openLinksInNewWindow:{defaultValue:!1,description:"Open all links in new windows",type:"boolean"},backslashEscapesHTMLTags:{defaultValue:!1,description:"Support for HTML Tag escaping. ex: <div>foo</div>",type:"boolean"},emoji:{defaultValue:!1,description:"Enable emoji support. Ex: `this is a :smile: emoji`",type:"boolean"},underline:{defaultValue:!1,description:"Enable support for underline. Syntax is double or triple underscores: `__underline word__`. With this option enabled, underscores no longer parses into `<em>` and `<strong>`",type:"boolean"},completeHTMLDocument:{defaultValue:!1,description:"Outputs a complete html document, including `<html>`, `<head>` and `<body>` tags",type:"boolean"},metadata:{defaultValue:!1,description:"Enable support for document metadata (defined at the top of the document between `芦芦芦` and `禄禄禄` or between `---` and `---`).",type:"boolean"},splitAdjacentBlockquotes:{defaultValue:!1,description:"Split adjacent blockquote blocks",type:"boolean"}};if(!1===e)return JSON.parse(JSON.stringify(r));var t={};for(var a in r)r.hasOwnProperty(a)&&(t[a]=r[a].defaultValue);return t}function r(e,r){"use strict";var t=r?"Error in "+r+" extension->":"Error in unnamed extension",n={valid:!0,error:""};a.helper.isArray(e)||(e=[e]);for(var s=0;s<e.length;++s){var o=t+" sub-extension "+s+": ",i=e[s];if("object"!=typeof i)return n.valid=!1,n.error=o+"must be an object, but "+typeof i+" given",n;if(!a.helper.isString(i.type))return n.valid=!1,n.error=o+'property "type" must be a string, but '+typeof i.type+" given",n;var l=i.type=i.type.toLowerCase();if("language"===l&&(l=i.type="lang"),"html"===l&&(l=i.type="output"),"lang"!==l&&"output"!==l&&"listener"!==l)return n.valid=!1,n.error=o+"type "+l+' is not recognized. Valid values: "lang/language", "output/html" or "listener"',n;if("listener"===l){if(a.helper.isUndefined(i.listeners))return n.valid=!1,n.error=o+'. Extensions of type "listener" must have a property called "listeners"',n}else if(a.helper.isUndefined(i.filter)&&a.helper.isUndefined(i.regex))return n.valid=!1,n.error=o+l+' extensions must define either a "regex" property or a "filter" method',n;if(i.listeners){if("object"!=typeof i.listeners)return n.valid=!1,n.error=o+'"listeners" property must be an object but '+typeof i.listeners+" given",n;for(var c in i.listeners)if(i.listeners.hasOwnProperty(c)&&"function"!=typeof i.listeners[c])return n.valid=!1,n.error=o+'"listeners" property must be an hash of [event name]: [callback]. listeners.'+c+" must be a function but "+typeof i.listeners[c]+" given",n}if(i.filter){if("function"!=typeof i.filter)return n.valid=!1,n.error=o+'"filter" must be a function, but '+typeof i.filter+" given",n}else if(i.regex){if(a.helper.isString(i.regex)&&(i.regex=new RegExp(i.regex,"g")),!(i.regex instanceof RegExp))return n.valid=!1,n.error=o+'"regex" property must either be a string or a RegExp object, but '+typeof i.regex+" given",n;if(a.helper.isUndefined(i.replace))return n.valid=!1,n.error=o+'"regex" extensions must implement a replace string or function',n}}return n}function t(e,r){"use strict";return"篓E"+r.charCodeAt(0)+"E"}var a={},n={},s={},o=e(!0),i="vanilla",l={github:{omitExtraWLInCodeBlocks:!0,simplifiedAutoLink:!0,excludeTrailingPunctuationFromURLs:!0,literalMidWordUnderscores:!0,strikethrough:!0,tables:!0,tablesHeaderId:!0,ghCodeBlocks:!0,tasklists:!0,disableForced4SpacesIndentedSublists:!0,simpleLineBreaks:!0,requireSpaceBeforeHeadingText:!0,ghCompatibleHeaderId:!0,ghMentions:!0,backslashEscapesHTMLTags:!0,emoji:!0,splitAdjacentBlockquotes:!0},original:{noHeaderId:!0,ghCodeBlocks:!1},ghost:{omitExtraWLInCodeBlocks:!0,parseImgDimensions:!0,simplifiedAutoLink:!0,excludeTrailingPunctuationFromURLs:!0,literalMidWordUnderscores:!0,strikethrough:!0,tables:!0,tablesHeaderId:!0,ghCodeBlocks:!0,tasklists:!0,smoothLivePreview:!0,simpleLineBreaks:!0,requireSpaceBeforeHeadingText:!0,ghMentions:!1,encodeEmails:!0},vanilla:e(!0),allOn:function(){"use strict";var r=e(!0),t={};for(var a in r)r.hasOwnProperty(a)&&(t[a]=!0);return t}()};a.helper={},a.extensions={},a.setOption=function(e,r){"use strict";return o[e]=r,this},a.getOption=function(e){"use strict";return o[e]},a.getOptions=function(){"use strict";return o},a.resetOptions=function(){"use strict";o=e(!0)},a.setFlavor=function(e){"use strict";if(!l.hasOwnProperty(e))throw Error(e+" flavor was not found");a.resetOptions();var r=l[e];i=e;for(var t in r)r.hasOwnProperty(t)&&(o[t]=r[t])},a.getFlavor=function(){"use strict";return i},a.getFlavorOptions=function(e){"use strict";if(l.hasOwnProperty(e))return l[e]},a.getDefaultOptions=function(r){"use strict";return e(r)},a.subParser=function(e,r){"use strict";if(a.helper.isString(e)){if(void 0===r){if(n.hasOwnProperty(e))return n[e];throw Error("SubParser named "+e+" not registered!")}n[e]=r}},a.extension=function(e,t){"use strict";if(!a.helper.isString(e))throw Error("Extension 'name' must be a string");if(e=a.helper.stdExtName(e),a.helper.isUndefined(t)){if(!s.hasOwnProperty(e))throw Error("Extension named "+e+" is not registered!");return s[e]}"function"==typeof t&&(t=t()),a.helper.isArray(t)||(t=[t]);var n=r(t,e);if(!n.valid)throw Error(n.error);s[e]=t},a.getAllExtensions=function(){"use strict";return s},a.removeExtension=function(e){"use strict";delete s[e]},a.resetExtensions=function(){"use strict";s={}},a.validateExtension=function(e){"use strict";var t=r(e,null);return!!t.valid||(console.warn(t.error),!1)},a.hasOwnProperty("helper")||(a.helper={}),a.helper.isString=function(e){"use strict";return"string"==typeof e||e instanceof String},a.helper.isFunction=function(e){"use strict";return e&&"[object Function]"==={}.toString.call(e)},a.helper.isArray=function(e){"use strict";return Array.isArray(e)},a.helper.isUndefined=function(e){"use strict";return void 0===e},a.helper.forEach=function(e,r){"use strict";if(a.helper.isUndefined(e))throw new Error("obj param is required");if(a.helper.isUndefined(r))throw new Error("callback param is required");if(!a.helper.isFunction(r))throw new Error("callback param must be a function/closure");if("function"==typeof e.forEach)e.forEach(r);else if(a.helper.isArray(e))for(var t=0;t<e.length;t++)r(e[t],t,e);else{if("object"!=typeof e)throw new Error("obj does not seem to be an array or an iterable object");for(var n in e)e.hasOwnProperty(n)&&r(e[n],n,e)}},a.helper.stdExtName=function(e){"use strict";return e.replace(/[_?*+\/\\.^-]/g,"").replace(/\s/g,"").toLowerCase()},a.helper.escapeCharactersCallback=t,a.helper.escapeCharacters=function(e,r,a){"use strict";var n="(["+r.replace(/([\[\]\\])/g,"\\$1")+"])";a&&(n="\\\\"+n);var s=new RegExp(n,"g");return e=e.replace(s,t)},a.helper.unescapeHTMLEntities=function(e){"use strict";return e.replace(/&quot;/g,'"').replace(/&lt;/g,"<").replace(/&gt;/g,">").replace(/&amp;/g,"&")};var c=function(e,r,t,a){"use strict";var n,s,o,i,l,c=a||"",u=c.indexOf("g")>-1,d=new RegExp(r+"|"+t,"g"+c.replace(/g/g,"")),p=new RegExp(r,c.replace(/g/g,"")),h=[];do{for(n=0;o=d.exec(e);)if(p.test(o[0]))n++||(i=(s=d.lastIndex)-o[0].length);else if(n&&!--n){l=o.index+o[0].length;var _={left:{start:i,end:s},match:{start:s,end:o.index},right:{start:o.index,end:l},wholeMatch:{start:i,end:l}};if(h.push(_),!u)return h}}while(n&&(d.lastIndex=s));return h};a.helper.matchRecursiveRegExp=function(e,r,t,a){"use strict";for(var n=c(e,r,t,a),s=[],o=0;o<n.length;++o)s.push([e.slice(n[o].wholeMatch.start,n[o].wholeMatch.end),e.slice(n[o].match.start,n[o].match.end),e.slice(n[o].left.start,n[o].left.end),e.slice(n[o].right.start,n[o].right.end)]);return s},a.helper.replaceRecursiveRegExp=function(e,r,t,n,s){"use strict";if(!a.helper.isFunction(r)){var o=r;r=function(){return o}}var i=c(e,t,n,s),l=e,u=i.length;if(u>0){var d=[];0!==i[0].wholeMatch.start&&d.push(e.slice(0,i[0].wholeMatch.start));for(var p=0;p<u;++p)d.push(r(e.slice(i[p].wholeMatch.start,i[p].wholeMatch.end),e.slice(i[p].match.start,i[p].match.end),e.slice(i[p].left.start,i[p].left.end),e.slice(i[p].right.start,i[p].right.end))),p<u-1&&d.push(e.slice(i[p].wholeMatch.end,i[p+1].wholeMatch.start));i[u-1].wholeMatch.end<e.length&&d.push(e.slice(i[u-1].wholeMatch.end)),l=d.join("")}return l},a.helper.regexIndexOf=function(e,r,t){"use strict";if(!a.helper.isString(e))throw"InvalidArgumentError: first parameter of showdown.helper.regexIndexOf function must be a string";if(r instanceof RegExp==!1)throw"InvalidArgumentError: second parameter of showdown.helper.regexIndexOf function must be an instance of RegExp";var n=e.substring(t||0).search(r);return n>=0?n+(t||0):n},a.helper.splitAtIndex=function(e,r){"use strict";if(!a.helper.isString(e))throw"InvalidArgumentError: first parameter of showdown.helper.regexIndexOf function must be a string";return[e.substring(0,r),e.substring(r)]},a.helper.encodeEmailAddress=function(e){"use strict";var r=[function(e){return"&#"+e.charCodeAt(0)+";"},function(e){return"&#x"+e.charCodeAt(0).toString(16)+";"},function(e){return e}];return e=e.replace(/./g,function(e){if("@"===e)e=r[Math.floor(2*Math.random())](e);else{var t=Math.random();e=t>.9?r[2](e):t>.45?r[1](e):r[0](e)}return e})},a.helper.padEnd=function(e,r,t){"use strict";return r>>=0,t=String(t||" "),e.length>r?String(e):((r-=e.length)>t.length&&(t+=t.repeat(r/t.length)),String(e)+t.slice(0,r))},"undefined"==typeof console&&(console={warn:function(e){"use strict";alert(e)},log:function(e){"use strict";alert(e)},error:function(e){"use strict";throw e}}),a.helper.regexes={asteriskDashAndColon:/([*_:~])/g},a.helper.emojis={"+1":"馃憤","-1":"馃憥",100:"馃挴",1234:"馃敘","1st_place_medal":"馃","2nd_place_medal":"馃","3rd_place_medal":"馃","8ball":"馃幈",a:"馃叞锔�",ab:"馃啂",abc:"馃敜",abcd:"馃敗",accept:"馃墤",aerial_tramway:"馃殹",airplane:"鉁堬笍",alarm_clock:"鈴�",alembic:"鈿楋笍",alien:"馃懡",ambulance:"馃殤",amphora:"馃徍",anchor:"鈿擄笍",angel:"馃懠",anger:"馃挗",angry:"馃槧",anguished:"馃槯",ant:"馃悳",apple:"馃崕",aquarius:"鈾掞笍",aries:"鈾堬笍",arrow_backward:"鈼�锔�",arrow_double_down:"鈴�",arrow_double_up:"鈴�",arrow_down:"猬囷笍",arrow_down_small:"馃斀",arrow_forward:"鈻讹笍",arrow_heading_down:"猡碉笍",arrow_heading_up:"猡达笍",arrow_left:"猬咃笍",arrow_lower_left:"鈫欙笍",arrow_lower_right:"鈫橈笍",arrow_right:"鉃★笍",arrow_right_hook:"鈫笍",arrow_up:"猬嗭笍",arrow_up_down:"鈫曪笍",arrow_up_small:"馃敿",arrow_upper_left:"鈫栵笍",arrow_upper_right:"鈫楋笍",arrows_clockwise:"馃攦",arrows_counterclockwise:"馃攧",art:"馃帹",articulated_lorry:"馃殯",artificial_satellite:"馃洶",astonished:"馃槻",athletic_shoe:"馃憻",atm:"馃彠",atom_symbol:"鈿涳笍",avocado:"馃",b:"馃叡锔�",baby:"馃懚",baby_bottle:"馃嵓",baby_chick:"馃悿",baby_symbol:"馃毤",back:"馃敊",bacon:"馃",badminton:"馃徃",baggage_claim:"馃泟",baguette_bread:"馃",balance_scale:"鈿栵笍",balloon:"馃巿",ballot_box:"馃棾",ballot_box_with_check:"鈽戯笍",bamboo:"馃帊",banana:"馃崒",bangbang:"鈥硷笍",bank:"馃彟",bar_chart:"馃搳",barber:"馃拡",baseball:"鈿撅笍",basketball:"馃弨",basketball_man:"鉀癸笍",basketball_woman:"鉀癸笍&zwj;鈾�锔�",bat:"馃",bath:"馃泙",bathtub:"馃泚",battery:"馃攱",beach_umbrella:"馃彇",bear:"馃惢",bed:"馃洀",bee:"馃悵",beer:"馃嵑",beers:"馃嵒",beetle:"馃悶",beginner:"馃敯",bell:"馃敂",bellhop_bell:"馃泿",bento:"馃嵄",biking_man:"馃毚",bike:"馃毑",biking_woman:"馃毚&zwj;鈾�锔�",bikini:"馃憴",biohazard:"鈽o笍",bird:"馃惁",birthday:"馃巶",black_circle:"鈿笍",black_flag:"馃彺",black_heart:"馃枻",black_joker:"馃儚",black_large_square:"猬涳笍",black_medium_small_square:"鈼撅笍",black_medium_square:"鈼硷笍",black_nib:"鉁掞笍",black_small_square:"鈻笍",black_square_button:"馃敳",blonde_man:"馃懕",blonde_woman:"馃懕&zwj;鈾�锔�",blossom:"馃尲",blowfish:"馃悺",blue_book:"馃摌",blue_car:"馃殭",blue_heart:"馃挋",blush:"馃槉",boar:"馃悧",boat:"鉀碉笍",bomb:"馃挘",book:"馃摉",bookmark:"馃敄",bookmark_tabs:"馃搼",books:"馃摎",boom:"馃挜",boot:"馃憿",bouquet:"馃拹",bowing_man:"馃檱",bow_and_arrow:"馃徆",bowing_woman:"馃檱&zwj;鈾�锔�",bowling:"馃幊",boxing_glove:"馃",boy:"馃懄",bread:"馃崬",bride_with_veil:"馃懓",bridge_at_night:"馃寜",briefcase:"馃捈",broken_heart:"馃挃",bug:"馃悰",building_construction:"馃彈",bulb:"馃挕",bullettrain_front:"馃殔",bullettrain_side:"馃殑",burrito:"馃尟",bus:"馃殞",business_suit_levitating:"馃暣",busstop:"馃殢",bust_in_silhouette:"馃懁",busts_in_silhouette:"馃懃",butterfly:"馃",cactus:"馃尩",cake:"馃嵃",calendar:"馃搯",call_me_hand:"馃",calling:"馃摬",camel:"馃惈",camera:"馃摲",camera_flash:"馃摳",camping:"馃彆",cancer:"鈾嬶笍",candle:"馃暞",candy:"馃崿",canoe:"馃浂",capital_abcd:"馃敔",capricorn:"鈾戯笍",car:"馃殫",card_file_box:"馃梼",card_index:"馃搰",card_index_dividers:"馃梻",carousel_horse:"馃帬",carrot:"馃",cat:"馃惐",cat2:"馃悎",cd:"馃捒",chains:"鉀�",champagne:"馃嵕",chart:"馃捁",chart_with_downwards_trend:"馃搲",chart_with_upwards_trend:"馃搱",checkered_flag:"馃弫",cheese:"馃",cherries:"馃崚",cherry_blossom:"馃尭",chestnut:"馃尠",chicken:"馃悢",children_crossing:"馃毟",chipmunk:"馃惪",chocolate_bar:"馃崼",christmas_tree:"馃巹",church:"鉀笍",cinema:"馃帵",circus_tent:"馃帾",city_sunrise:"馃寚",city_sunset:"馃寙",cityscape:"馃彊",cl:"馃啈",clamp:"馃棞",clap:"馃憦",clapper:"馃幀",classical_building:"馃彌",clinking_glasses:"馃",clipboard:"馃搵",clock1:"馃晲",clock10:"馃暀",clock1030:"馃暐",clock11:"馃暁",clock1130:"馃暒",clock12:"馃暃",clock1230:"馃暓",clock130:"馃暅",clock2:"馃晳",clock230:"馃暆",clock3:"馃晵",clock330:"馃暈",clock4:"馃晸",clock430:"馃暉",clock5:"馃晹",clock530:"馃暊",clock6:"馃晻",clock630:"馃暋",clock7:"馃晼",clock730:"馃暍",clock8:"馃晽",clock830:"馃暎",clock9:"馃晿",clock930:"馃暏",closed_book:"馃摃",closed_lock_with_key:"馃攼",closed_umbrella:"馃寕",cloud:"鈽侊笍",cloud_with_lightning:"馃尒",cloud_with_lightning_and_rain:"鉀�",cloud_with_rain:"馃導",cloud_with_snow:"馃尐",clown_face:"馃ぁ",clubs:"鈾o笍",cocktail:"馃嵏",coffee:"鈽曪笍",coffin:"鈿帮笍",cold_sweat:"馃槹",comet:"鈽勶笍",computer:"馃捇",computer_mouse:"馃柋",confetti_ball:"馃帄",confounded:"馃槚",confused:"馃槙",congratulations:"銑楋笍",construction:"馃毀",construction_worker_man:"馃懛",construction_worker_woman:"馃懛&zwj;鈾�锔�",control_knobs:"馃帥",convenience_store:"馃彧",cookie:"馃崻",cool:"馃啋",policeman:"馃懏",copyright:"漏锔�",corn:"馃尳",couch_and_lamp:"馃泲",couple:"馃懌",couple_with_heart_woman_man:"馃拺",couple_with_heart_man_man:"馃懆&zwj;鉂わ笍&zwj;馃懆",couple_with_heart_woman_woman:"馃懇&zwj;鉂わ笍&zwj;馃懇",couplekiss_man_man:"馃懆&zwj;鉂わ笍&zwj;馃拫&zwj;馃懆",couplekiss_man_woman:"馃拸",couplekiss_woman_woman:"馃懇&zwj;鉂わ笍&zwj;馃拫&zwj;馃懇",cow:"馃惍",cow2:"馃悇",cowboy_hat_face:"馃",crab:"馃",crayon:"馃枍",credit_card:"馃挸",crescent_moon:"馃寵",cricket:"馃弿",crocodile:"馃悐",croissant:"馃",crossed_fingers:"馃",crossed_flags:"馃帉",crossed_swords:"鈿旓笍",crown:"馃憫",cry:"馃槩",crying_cat_face:"馃樋",crystal_ball:"馃敭",cucumber:"馃",cupid:"馃挊",curly_loop:"鉃�",currency_exchange:"馃挶",curry:"馃崨",custard:"馃嵁",customs:"馃泝",cyclone:"馃寑",dagger:"馃棥",dancer:"馃拑",dancing_women:"馃懐",dancing_men:"馃懐&zwj;鈾傦笍",dango:"馃崱",dark_sunglasses:"馃暥",dart:"馃幆",dash:"馃挩",date:"馃搮",deciduous_tree:"馃尦",deer:"馃",department_store:"馃彫",derelict_house:"馃彋",desert:"馃彍",desert_island:"馃彎",desktop_computer:"馃枼",male_detective:"馃暤锔�",diamond_shape_with_a_dot_inside:"馃挔",diamonds:"鈾︼笍",disappointed:"馃槥",disappointed_relieved:"馃槬",dizzy:"馃挮",dizzy_face:"馃樀",do_not_litter:"馃毌",dog:"馃惗",dog2:"馃悤",dollar:"馃挼",dolls:"馃帋",dolphin:"馃惉",door:"馃毆",doughnut:"馃崺",dove:"馃晩",dragon:"馃悏",dragon_face:"馃惒",dress:"馃憲",dromedary_camel:"馃惇",drooling_face:"馃い",droplet:"馃挧",drum:"馃",duck:"馃",dvd:"馃搥","e-mail":"馃摟",eagle:"馃",ear:"馃憘",ear_of_rice:"馃尵",earth_africa:"馃實",earth_americas:"馃寧",earth_asia:"馃審",egg:"馃",eggplant:"馃崋",eight_pointed_black_star:"鉁达笍",eight_spoked_asterisk:"鉁筹笍",electric_plug:"馃攲",elephant:"馃悩",email:"鉁夛笍",end:"馃敋",envelope_with_arrow:"馃摡",euro:"馃挾",european_castle:"馃彴",european_post_office:"馃彜",evergreen_tree:"馃尣",exclamation:"鉂楋笍",expressionless:"馃槕",eye:"馃憗",eye_speech_bubble:"馃憗&zwj;馃棬",eyeglasses:"馃憮",eyes:"馃憖",face_with_head_bandage:"馃",face_with_thermometer:"馃",fist_oncoming:"馃憡",factory:"馃彮",fallen_leaf:"馃崅",family_man_woman_boy:"馃應",family_man_boy:"馃懆&zwj;馃懄",family_man_boy_boy:"馃懆&zwj;馃懄&zwj;馃懄",family_man_girl:"馃懆&zwj;馃懅",family_man_girl_boy:"馃懆&zwj;馃懅&zwj;馃懄",family_man_girl_girl:"馃懆&zwj;馃懅&zwj;馃懅",family_man_man_boy:"馃懆&zwj;馃懆&zwj;馃懄",family_man_man_boy_boy:"馃懆&zwj;馃懆&zwj;馃懄&zwj;馃懄",family_man_man_girl:"馃懆&zwj;馃懆&zwj;馃懅",family_man_man_girl_boy:"馃懆&zwj;馃懆&zwj;馃懅&zwj;馃懄",family_man_man_girl_girl:"馃懆&zwj;馃懆&zwj;馃懅&zwj;馃懅",family_man_woman_boy_boy:"馃懆&zwj;馃懇&zwj;馃懄&zwj;馃懄",family_man_woman_girl:"馃懆&zwj;馃懇&zwj;馃懅",family_man_woman_girl_boy:"馃懆&zwj;馃懇&zwj;馃懅&zwj;馃懄",family_man_woman_girl_girl:"馃懆&zwj;馃懇&zwj;馃懅&zwj;馃懅",family_woman_boy:"馃懇&zwj;馃懄",family_woman_boy_boy:"馃懇&zwj;馃懄&zwj;馃懄",family_woman_girl:"馃懇&zwj;馃懅",family_woman_girl_boy:"馃懇&zwj;馃懅&zwj;馃懄",family_woman_girl_girl:"馃懇&zwj;馃懅&zwj;馃懅",family_woman_woman_boy:"馃懇&zwj;馃懇&zwj;馃懄",family_woman_woman_boy_boy:"馃懇&zwj;馃懇&zwj;馃懄&zwj;馃懄",family_woman_woman_girl:"馃懇&zwj;馃懇&zwj;馃懅",family_woman_woman_girl_boy:"馃懇&zwj;馃懇&zwj;馃懅&zwj;馃懄",family_woman_woman_girl_girl:"馃懇&zwj;馃懇&zwj;馃懅&zwj;馃懅",fast_forward:"鈴�",fax:"馃摖",fearful:"馃槰",feet:"馃惥",female_detective:"馃暤锔�&zwj;鈾�锔�",ferris_wheel:"馃帯",ferry:"鉀�",field_hockey:"馃彂",file_cabinet:"馃梽",file_folder:"馃搧",film_projector:"馃摻",film_strip:"馃帪",fire:"馃敟",fire_engine:"馃殥",fireworks:"馃巻",first_quarter_moon:"馃寭",first_quarter_moon_with_face:"馃寷",fish:"馃悷",fish_cake:"馃崶",fishing_pole_and_fish:"馃帲",fist_raised:"鉁�",fist_left:"馃",fist_right:"馃",flags:"馃帍",flashlight:"馃敠",fleur_de_lis:"鈿滐笍",flight_arrival:"馃洭",flight_departure:"馃洬",floppy_disk:"馃捑",flower_playing_cards:"馃幋",flushed:"馃槼",fog:"馃尗",foggy:"馃寔",football:"馃張",footprints:"馃懀",fork_and_knife:"馃嵈",fountain:"鉀诧笍",fountain_pen:"馃枊",four_leaf_clover:"馃崁",fox_face:"馃",framed_picture:"馃柤",free:"馃啌",fried_egg:"馃嵆",fried_shrimp:"馃崵",fries:"馃崯",frog:"馃惛",frowning:"馃槮",frowning_face:"鈽癸笍",frowning_man:"馃檷&zwj;鈾傦笍",frowning_woman:"馃檷",middle_finger:"馃枙",fuelpump:"鉀斤笍",full_moon:"馃寱",full_moon_with_face:"馃対",funeral_urn:"鈿憋笍",game_die:"馃幉",gear:"鈿欙笍",gem:"馃拵",gemini:"鈾婏笍",ghost:"馃懟",gift:"馃巵",gift_heart:"馃挐",girl:"馃懅",globe_with_meridians:"馃寪",goal_net:"馃",goat:"馃悙",golf:"鉀筹笍",golfing_man:"馃弻锔�",golfing_woman:"馃弻锔�&zwj;鈾�锔�",gorilla:"馃",grapes:"馃崌",green_apple:"馃崗",green_book:"馃摋",green_heart:"馃挌",green_salad:"馃",grey_exclamation:"鉂�",grey_question:"鉂�",grimacing:"馃槵",grin:"馃榿",grinning:"馃榾",guardsman:"馃拏",guardswoman:"馃拏&zwj;鈾�锔�",guitar:"馃幐",gun:"馃敨",haircut_woman:"馃拠",haircut_man:"馃拠&zwj;鈾傦笍",hamburger:"馃崝",hammer:"馃敤",hammer_and_pick:"鈿�",hammer_and_wrench:"馃洜",hamster:"馃惞",hand:"鉁�",handbag:"馃憸",handshake:"馃",hankey:"馃挬",hatched_chick:"馃惀",hatching_chick:"馃悾",headphones:"馃帶",hear_no_evil:"馃檳",heart:"鉂わ笍",heart_decoration:"馃挓",heart_eyes:"馃槏",heart_eyes_cat:"馃樆",heartbeat:"馃挀",heartpulse:"馃挆",hearts:"鈾ワ笍",heavy_check_mark:"鉁旓笍",heavy_division_sign:"鉃�",heavy_dollar_sign:"馃挷",heavy_heart_exclamation:"鉂o笍",heavy_minus_sign:"鉃�",heavy_multiplication_x:"鉁栵笍",heavy_plus_sign:"鉃�",helicopter:"馃殎",herb:"馃尶",hibiscus:"馃尯",high_brightness:"馃攩",high_heel:"馃憼",hocho:"馃敧",hole:"馃暢",honey_pot:"馃嵂",horse:"馃惔",horse_racing:"馃弴",hospital:"馃彞",hot_pepper:"馃尪",hotdog:"馃尛",hotel:"馃彣",hotsprings:"鈾笍",hourglass:"鈱涳笍",hourglass_flowing_sand:"鈴�",house:"馃彔",house_with_garden:"馃彙",houses:"馃彉",hugs:"馃",hushed:"馃槸",ice_cream:"馃崹",ice_hockey:"馃彃",ice_skate:"鉀�",icecream:"馃崷",id:"馃啍",ideograph_advantage:"馃墣",imp:"馃懣",inbox_tray:"馃摜",incoming_envelope:"馃摠",tipping_hand_woman:"馃拋",information_source:"鈩癸笍",innocent:"馃槆",interrobang:"鈦夛笍",iphone:"馃摫",izakaya_lantern:"馃彯",jack_o_lantern:"馃巸",japan:"馃椌",japanese_castle:"馃彲",japanese_goblin:"馃懞",japanese_ogre:"馃懝",jeans:"馃憱",joy:"馃槀",joy_cat:"馃樄",joystick:"馃暪",kaaba:"馃晪",key:"馃攽",keyboard:"鈱笍",keycap_ten:"馃敓",kick_scooter:"馃洿",kimono:"馃憳",kiss:"馃拫",kissing:"馃槜",kissing_cat:"馃樈",kissing_closed_eyes:"馃槡",kissing_heart:"馃槝",kissing_smiling_eyes:"馃槞",kiwi_fruit:"馃",koala:"馃惃",koko:"馃垇",label:"馃彿",large_blue_circle:"馃數",large_blue_diamond:"馃敺",large_orange_diamond:"馃敹",last_quarter_moon:"馃寳",last_quarter_moon_with_face:"馃寽",latin_cross:"鉁濓笍",laughing:"馃槅",leaves:"馃崈",ledger:"馃搾",left_luggage:"馃泤",left_right_arrow:"鈫旓笍",leftwards_arrow_with_hook:"鈫╋笍",lemon:"馃崑",leo:"鈾岋笍",leopard:"馃悊",level_slider:"馃帤",libra:"鈾庯笍",light_rail:"馃殘",link:"馃敆",lion:"馃",lips:"馃憚",lipstick:"馃拕",lizard:"馃",lock:"馃敀",lock_with_ink_pen:"馃攺",lollipop:"馃嵀",loop:"鉃�",loud_sound:"馃攰",loudspeaker:"馃摙",love_hotel:"馃彥",love_letter:"馃拰",low_brightness:"馃攨",lying_face:"馃ぅ",m:"鈸傦笍",mag:"馃攳",mag_right:"馃攷",mahjong:"馃�勶笍",mailbox:"馃摣",mailbox_closed:"馃摢",mailbox_with_mail:"馃摤",mailbox_with_no_mail:"馃摥",man:"馃懆",man_artist:"馃懆&zwj;馃帹",man_astronaut:"馃懆&zwj;馃殌",man_cartwheeling:"馃じ&zwj;鈾傦笍",man_cook:"馃懆&zwj;馃嵆",man_dancing:"馃暫",man_facepalming:"馃う&zwj;鈾傦笍",man_factory_worker:"馃懆&zwj;馃彮",man_farmer:"馃懆&zwj;馃尵",man_firefighter:"馃懆&zwj;馃殥",man_health_worker:"馃懆&zwj;鈿曪笍",man_in_tuxedo:"馃さ",man_judge:"馃懆&zwj;鈿栵笍",man_juggling:"馃す&zwj;鈾傦笍",man_mechanic:"馃懆&zwj;馃敡",man_office_worker:"馃懆&zwj;馃捈",man_pilot:"馃懆&zwj;鉁堬笍",man_playing_handball:"馃ぞ&zwj;鈾傦笍",man_playing_water_polo:"馃そ&zwj;鈾傦笍",man_scientist:"馃懆&zwj;馃敩",man_shrugging:"馃し&zwj;鈾傦笍",man_singer:"馃懆&zwj;馃帳",man_student:"馃懆&zwj;馃帗",man_teacher:"馃懆&zwj;馃彨",man_technologist:"馃懆&zwj;馃捇",man_with_gua_pi_mao:"馃懖",man_with_turban:"馃懗",tangerine:"馃崐",mans_shoe:"馃憺",mantelpiece_clock:"馃暟",maple_leaf:"馃崄",martial_arts_uniform:"馃",mask:"馃樂",massage_woman:"馃拞",massage_man:"馃拞&zwj;鈾傦笍",meat_on_bone:"馃崠",medal_military:"馃帠",medal_sports:"馃弲",mega:"馃摚",melon:"馃崍",memo:"馃摑",men_wrestling:"馃ぜ&zwj;鈾傦笍",menorah:"馃晭",mens:"馃毠",metal:"馃",metro:"馃殗",microphone:"馃帳",microscope:"馃敩",milk_glass:"馃",milky_way:"馃寣",minibus:"馃殣",minidisc:"馃捊",mobile_phone_off:"馃摯",money_mouth_face:"馃",money_with_wings:"馃捀",moneybag:"馃挵",monkey:"馃悞",monkey_face:"馃惖",monorail:"馃殱",moon:"馃寯",mortar_board:"馃帗",mosque:"馃晫",motor_boat:"馃洢",motor_scooter:"馃浀",motorcycle:"馃弽",motorway:"馃洠",mount_fuji:"馃椈",mountain:"鉀�",mountain_biking_man:"馃毜",mountain_biking_woman:"馃毜&zwj;鈾�锔�",mountain_cableway:"馃殸",mountain_railway:"馃殲",mountain_snow:"馃彅",mouse:"馃惌",mouse2:"馃悂",movie_camera:"馃帴",moyai:"馃椏",mrs_claus:"馃ざ",muscle:"馃挭",mushroom:"馃崉",musical_keyboard:"馃幑",musical_note:"馃幍",musical_score:"馃幖",mute:"馃攪",nail_care:"馃拝",name_badge:"馃摏",national_park:"馃彏",nauseated_face:"馃あ",necktie:"馃憯",negative_squared_cross_mark:"鉂�",nerd_face:"馃",neutral_face:"馃槓",new:"馃啎",new_moon:"馃寫",new_moon_with_face:"馃寶",newspaper:"馃摪",newspaper_roll:"馃棡",next_track_button:"鈴�",ng:"馃問",no_good_man:"馃檯&zwj;鈾傦笍",no_good_woman:"馃檯",night_with_stars:"馃寖",no_bell:"馃敃",no_bicycles:"馃毘",no_entry:"鉀旓笍",no_entry_sign:"馃毇",no_mobile_phones:"馃摰",no_mouth:"馃樁",no_pedestrians:"馃毞",no_smoking:"馃毉","non-potable_water":"馃毐",nose:"馃憙",notebook:"馃摀",notebook_with_decorative_cover:"馃摂",notes:"馃幎",nut_and_bolt:"馃敥",o:"猸曪笍",o2:"馃吘锔�",ocean:"馃寠",octopus:"馃悪",oden:"馃崲",office:"馃彚",oil_drum:"馃洟",ok:"馃啑",ok_hand:"馃憣",ok_man:"馃檰&zwj;鈾傦笍",ok_woman:"馃檰",old_key:"馃棟",older_man:"馃懘",older_woman:"馃懙",om:"馃晧",on:"馃敍",oncoming_automobile:"馃殬",oncoming_bus:"馃殟",oncoming_police_car:"馃殧",oncoming_taxi:"馃殩",open_file_folder:"馃搨",open_hands:"馃憪",open_mouth:"馃槷",open_umbrella:"鈽傦笍",ophiuchus:"鉀�",orange_book:"馃摍",orthodox_cross:"鈽︼笍",outbox_tray:"馃摛",owl:"馃",ox:"馃悅",package:"馃摝",page_facing_up:"馃搫",page_with_curl:"馃搩",pager:"馃摕",paintbrush:"馃枌",palm_tree:"馃尨",pancakes:"馃",panda_face:"馃惣",paperclip:"馃搸",paperclips:"馃枃",parasol_on_ground:"鉀�",parking:"馃吙锔�",part_alternation_mark:"銆斤笍",partly_sunny:"鉀咃笍",passenger_ship:"馃洺",passport_control:"馃泜",pause_button:"鈴�",peace_symbol:"鈽笍",peach:"馃崙",peanuts:"馃",pear:"馃崘",pen:"馃枈",pencil2:"鉁忥笍",penguin:"馃惂",pensive:"馃様",performing_arts:"馃幁",persevere:"馃槪",person_fencing:"馃ず",pouting_woman:"馃檸",phone:"鈽庯笍",pick:"鉀�",pig:"馃惙",pig2:"馃悥",pig_nose:"馃惤",pill:"馃拪",pineapple:"馃崓",ping_pong:"馃彄",pisces:"鈾擄笍",pizza:"馃崟",place_of_worship:"馃洂",plate_with_cutlery:"馃嵔",play_or_pause_button:"鈴�",point_down:"馃憞",point_left:"馃憟",point_right:"馃憠",point_up:"鈽濓笍",point_up_2:"馃憜",police_car:"馃殦",policewoman:"馃懏&zwj;鈾�锔�",poodle:"馃惄",popcorn:"馃嵖",post_office:"馃彛",postal_horn:"馃摨",postbox:"馃摦",potable_water:"馃毎",potato:"馃",pouch:"馃憹",poultry_leg:"馃崡",pound:"馃挿",rage:"馃槨",pouting_cat:"馃樉",pouting_man:"馃檸&zwj;鈾傦笍",pray:"馃檹",prayer_beads:"馃摽",pregnant_woman:"馃ぐ",previous_track_button:"鈴�",prince:"馃ご",princess:"馃懜",printer:"馃枿",purple_heart:"馃挏",purse:"馃憶",pushpin:"馃搶",put_litter_in_its_place:"馃毊",question:"鉂�",rabbit:"馃惏",rabbit2:"馃悋",racehorse:"馃悗",racing_car:"馃弾",radio:"馃摶",radio_button:"馃敇",radioactive:"鈽笍",railway_car:"馃殐",railway_track:"馃洡",rainbow:"馃寛",rainbow_flag:"馃彸锔�&zwj;馃寛",raised_back_of_hand:"馃",raised_hand_with_fingers_splayed:"馃枑",raised_hands:"馃檶",raising_hand_woman:"馃檵",raising_hand_man:"馃檵&zwj;鈾傦笍",ram:"馃悘",ramen:"馃崪",rat:"馃悁",record_button:"鈴�",recycle:"鈾伙笍",red_circle:"馃敶",registered:"庐锔�",relaxed:"鈽猴笍",relieved:"馃槍",reminder_ribbon:"馃帡",repeat:"馃攣",repeat_one:"馃攤",rescue_worker_helmet:"鉀�",restroom:"馃毣",revolving_hearts:"馃挒",rewind:"鈴�",rhinoceros:"馃",ribbon:"馃巰",rice:"馃崥",rice_ball:"馃崣",rice_cracker:"馃崢",rice_scene:"馃帒",right_anger_bubble:"馃棷",ring:"馃拲",robot:"馃",rocket:"馃殌",rofl:"馃ぃ",roll_eyes:"馃檮",roller_coaster:"馃帰",rooster:"馃悡",rose:"馃尮",rosette:"馃彽",rotating_light:"馃毃",round_pushpin:"馃搷",rowing_man:"馃殻",rowing_woman:"馃殻&zwj;鈾�锔�",rugby_football:"馃弶",running_man:"馃弮",running_shirt_with_sash:"馃幗",running_woman:"馃弮&zwj;鈾�锔�",sa:"馃垈锔�",sagittarius:"鈾愶笍",sake:"馃嵍",sandal:"馃憽",santa:"馃巺",satellite:"馃摗",saxophone:"馃幏",school:"馃彨",school_satchel:"馃帓",scissors:"鉁傦笍",scorpion:"馃",scorpius:"鈾忥笍",scream:"馃槺",scream_cat:"馃檧",scroll:"馃摐",seat:"馃捄",secret:"銑欙笍",see_no_evil:"馃檲",seedling:"馃尡",selfie:"馃こ",shallow_pan_of_food:"馃",shamrock:"鈽橈笍",shark:"馃",shaved_ice:"馃崸",sheep:"馃悜",shell:"馃悮",shield:"馃洝",shinto_shrine:"鉀�",ship:"馃殺",shirt:"馃憰",shopping:"馃泹",shopping_cart:"馃洅",shower:"馃毧",shrimp:"馃",signal_strength:"馃摱",six_pointed_star:"馃敮",ski:"馃幙",skier:"鉀�",skull:"馃拃",skull_and_crossbones:"鈽狅笍",sleeping:"馃槾",sleeping_bed:"馃泴",sleepy:"馃槳",slightly_frowning_face:"馃檨",slightly_smiling_face:"馃檪",slot_machine:"馃幇",small_airplane:"馃洨",small_blue_diamond:"馃敼",small_orange_diamond:"馃敻",small_red_triangle:"馃敽",small_red_triangle_down:"馃敾",smile:"馃槃",smile_cat:"馃樃",smiley:"馃槂",smiley_cat:"馃樅",smiling_imp:"馃槇",smirk:"馃槒",smirk_cat:"馃樇",smoking:"馃毈",snail:"馃悓",snake:"馃悕",sneezing_face:"馃ぇ",snowboarder:"馃弬",snowflake:"鉂勶笍",snowman:"鉀勶笍",snowman_with_snow:"鈽冿笍",sob:"馃槶",soccer:"鈿斤笍",soon:"馃敎",sos:"馃啒",sound:"馃攭",space_invader:"馃懢",spades:"鈾狅笍",spaghetti:"馃崫",sparkle:"鉂囷笍",sparkler:"馃巼",sparkles:"鉁�",sparkling_heart:"馃挅",speak_no_evil:"馃檴",speaker:"馃攬",speaking_head:"馃棧",speech_balloon:"馃挰",speedboat:"馃殼",spider:"馃暦",spider_web:"馃暩",spiral_calendar:"馃棑",spiral_notepad:"馃棐",spoon:"馃",squid:"馃",stadium:"馃彑",star:"猸愶笍",star2:"馃専",star_and_crescent:"鈽笍",star_of_david:"鉁★笍",stars:"馃尃",station:"馃殙",statue_of_liberty:"馃椊",steam_locomotive:"馃殏",stew:"馃嵅",stop_button:"鈴�",stop_sign:"馃洃",stopwatch:"鈴�",straight_ruler:"馃搹",strawberry:"馃崜",stuck_out_tongue:"馃槢",stuck_out_tongue_closed_eyes:"馃槤",stuck_out_tongue_winking_eye:"馃槣",studio_microphone:"馃帣",stuffed_flatbread:"馃",sun_behind_large_cloud:"馃尌",sun_behind_rain_cloud:"馃對",sun_behind_small_cloud:"馃尋",sun_with_face:"馃尀",sunflower:"馃尰",sunglasses:"馃槑",sunny:"鈽�锔�",sunrise:"馃寘",sunrise_over_mountains:"馃寗",surfing_man:"馃弰",surfing_woman:"馃弰&zwj;鈾�锔�",sushi:"馃崳",suspension_railway:"馃殶",sweat:"馃槗",sweat_drops:"馃挦",sweat_smile:"馃槄",sweet_potato:"馃崰",swimming_man:"馃強",swimming_woman:"馃強&zwj;鈾�锔�",symbols:"馃敚",synagogue:"馃晬",syringe:"馃拤",taco:"馃尞",tada:"馃帀",tanabata_tree:"馃帇",taurus:"鈾夛笍",taxi:"馃殨",tea:"馃嵉",telephone_receiver:"馃摓",telescope:"馃敪",tennis:"馃幘",tent:"鉀猴笍",thermometer:"馃尅",thinking:"馃",thought_balloon:"馃挱",ticket:"馃帿",tickets:"馃師",tiger:"馃惎",tiger2:"馃悈",timer_clock:"鈴�",tipping_hand_man:"馃拋&zwj;鈾傦笍",tired_face:"馃槴",tm:"鈩笍",toilet:"馃毥",tokyo_tower:"馃椉",tomato:"馃崊",tongue:"馃憛",top:"馃敐",tophat:"馃帺",tornado:"馃尓",trackball:"馃柌",tractor:"馃殰",traffic_light:"馃殽",train:"馃殝",train2:"馃殕",tram:"馃殜",triangular_flag_on_post:"馃毄",triangular_ruler:"馃搻",trident:"馃敱",triumph:"馃槫",trolleybus:"馃殠",trophy:"馃弳",tropical_drink:"馃嵐",tropical_fish:"馃悹",truck:"馃殮",trumpet:"馃幒",tulip:"馃尫",tumbler_glass:"馃",turkey:"馃",turtle:"馃悽",tv:"馃摵",twisted_rightwards_arrows:"馃攢",two_hearts:"馃挄",two_men_holding_hands:"馃懍",two_women_holding_hands:"馃懎",u5272:"馃埞",u5408:"馃埓",u55b6:"馃埡",u6307:"馃埊锔�",u6708:"馃埛锔�",u6709:"馃埗",u6e80:"馃埖",u7121:"馃垰锔�",u7533:"馃埜",u7981:"馃埐",u7a7a:"馃埑",umbrella:"鈽旓笍",unamused:"馃槖",underage:"馃敒",unicorn:"馃",unlock:"馃敁",up:"馃啓",upside_down_face:"馃檭",v:"鉁岋笍",vertical_traffic_light:"馃殾",vhs:"馃摷",vibration_mode:"馃摮",video_camera:"馃摴",video_game:"馃幃",violin:"馃幓",virgo:"鈾嶏笍",volcano:"馃寢",volleyball:"馃彁",vs:"馃啔",vulcan_salute:"馃枛",walking_man:"馃毝",walking_woman:"馃毝&zwj;鈾�锔�",waning_crescent_moon:"馃寴",waning_gibbous_moon:"馃寲",warning:"鈿狅笍",wastebasket:"馃棏",watch:"鈱氾笍",water_buffalo:"馃悆",watermelon:"馃崏",wave:"馃憢",wavy_dash:"銆帮笍",waxing_crescent_moon:"馃寬",wc:"馃毦",weary:"馃槱",wedding:"馃拻",weight_lifting_man:"馃弸锔�",weight_lifting_woman:"馃弸锔�&zwj;鈾�锔�",whale:"馃惓",whale2:"馃悑",wheel_of_dharma:"鈽革笍",wheelchair:"鈾匡笍",white_check_mark:"鉁�",white_circle:"鈿笍",white_flag:"馃彸锔�",white_flower:"馃挳",white_large_square:"猬滐笍",white_medium_small_square:"鈼斤笍",white_medium_square:"鈼伙笍",white_small_square:"鈻笍",white_square_button:"馃敵",wilted_flower:"馃",wind_chime:"馃帎",wind_face:"馃尙",wine_glass:"馃嵎",wink:"馃槈",wolf:"馃惡",woman:"馃懇",woman_artist:"馃懇&zwj;馃帹",woman_astronaut:"馃懇&zwj;馃殌",woman_cartwheeling:"馃じ&zwj;鈾�锔�",woman_cook:"馃懇&zwj;馃嵆",woman_facepalming:"馃う&zwj;鈾�锔�",woman_factory_worker:"馃懇&zwj;馃彮",woman_farmer:"馃懇&zwj;馃尵",woman_firefighter:"馃懇&zwj;馃殥",woman_health_worker:"馃懇&zwj;鈿曪笍",woman_judge:"馃懇&zwj;鈿栵笍",woman_juggling:"馃す&zwj;鈾�锔�",woman_mechanic:"馃懇&zwj;馃敡",woman_office_worker:"馃懇&zwj;馃捈",woman_pilot:"馃懇&zwj;鉁堬笍",woman_playing_handball:"馃ぞ&zwj;鈾�锔�",woman_playing_water_polo:"馃そ&zwj;鈾�锔�",woman_scientist:"馃懇&zwj;馃敩",woman_shrugging:"馃し&zwj;鈾�锔�",woman_singer:"馃懇&zwj;馃帳",woman_student:"馃懇&zwj;馃帗",woman_teacher:"馃懇&zwj;馃彨",woman_technologist:"馃懇&zwj;馃捇",woman_with_turban:"馃懗&zwj;鈾�锔�",womans_clothes:"馃憵",womans_hat:"馃憭",women_wrestling:"馃ぜ&zwj;鈾�锔�",womens:"馃毢",world_map:"馃椇",worried:"馃槦",wrench:"馃敡",writing_hand:"鉁嶏笍",x:"鉂�",yellow_heart:"馃挍",yen:"馃挻",yin_yang:"鈽笍",yum:"馃構",zap:"鈿★笍",zipper_mouth_face:"馃",zzz:"馃挙",octocat:'<img alt=":octocat:" height="20" width="20" align="absmiddle" src="https://assets-cdn.github.com/images/icons/emoji/octocat.png">',showdown:"<span style=\"font-family: 'Anonymous Pro', monospace; text-decoration: underline; text-decoration-style: dashed; text-decoration-color: #3e8b8a;text-underline-position: under;\">S</span>"},a.Converter=function(e){"use strict";function t(e,t){if(t=t||null,a.helper.isString(e)){if(e=a.helper.stdExtName(e),t=e,a.extensions[e])return console.warn("DEPRECATION WARNING: "+e+" is an old extension that uses a deprecated loading method.Please inform the developer that the extension should be updated!"),void function(e,t){"function"==typeof e&&(e=e(new a.Converter));a.helper.isArray(e)||(e=[e]);var n=r(e,t);if(!n.valid)throw Error(n.error);for(var s=0;s<e.length;++s)switch(e[s].type){case"lang":u.push(e[s]);break;case"output":d.push(e[s]);break;default:throw Error("Extension loader error: Type unrecognized!!!")}}(a.extensions[e],e);if(a.helper.isUndefined(s[e]))throw Error('Extension "'+e+'" could not be loaded. It was either not found or is not a valid extension.');e=s[e]}"function"==typeof e&&(e=e()),a.helper.isArray(e)||(e=[e]);var o=r(e,t);if(!o.valid)throw Error(o.error);for(var i=0;i<e.length;++i){switch(e[i].type){case"lang":u.push(e[i]);break;case"output":d.push(e[i])}if(e[i].hasOwnProperty("listeners"))for(var l in e[i].listeners)e[i].listeners.hasOwnProperty(l)&&n(l,e[i].listeners[l])}}function n(e,r){if(!a.helper.isString(e))throw Error("Invalid argument in converter.listen() method: name must be a string, but "+typeof e+" given");if("function"!=typeof r)throw Error("Invalid argument in converter.listen() method: callback must be a function, but "+typeof r+" given");p.hasOwnProperty(e)||(p[e]=[]),p[e].push(r)}var c={},u=[],d=[],p={},h=i,_={parsed:{},raw:"",format:""};!function(){e=e||{};for(var r in o)o.hasOwnProperty(r)&&(c[r]=o[r]);if("object"!=typeof e)throw Error("Converter expects the passed parameter to be an object, but "+typeof e+" was passed instead.");for(var n in e)e.hasOwnProperty(n)&&(c[n]=e[n]);c.extensions&&a.helper.forEach(c.extensions,t)}(),this._dispatch=function(e,r,t,a){if(p.hasOwnProperty(e))for(var n=0;n<p[e].length;++n){var s=p[e][n](e,r,this,t,a);s&&void 0!==s&&(r=s)}return r},this.listen=function(e,r){return n(e,r),this},this.makeHtml=function(e){if(!e)return e;var r={gHtmlBlocks:[],gHtmlMdBlocks:[],gHtmlSpans:[],gUrls:{},gTitles:{},gDimensions:{},gListLevel:0,hashLinkCounts:{},langExtensions:u,outputModifiers:d,converter:this,ghCodeBlocks:[],metadata:{parsed:{},raw:"",format:""}};return e=e.replace(/篓/g,"篓T"),e=e.replace(/\$/g,"篓D"),e=e.replace(/\r\n/g,"\n"),e=e.replace(/\r/g,"\n"),e=e.replace(/\u00A0/g,"&nbsp;"),c.smartIndentationFix&&(e=function(e){var r=e.match(/^\s*/)[0].length,t=new RegExp("^\\s{0,"+r+"}","gm");return e.replace(t,"")}(e)),e="\n\n"+e+"\n\n",e=a.subParser("detab")(e,c,r),e=e.replace(/^[ \t]+$/gm,""),a.helper.forEach(u,function(t){e=a.subParser("runExtension")(t,e,c,r)}),e=a.subParser("metadata")(e,c,r),e=a.subParser("hashPreCodeTags")(e,c,r),e=a.subParser("githubCodeBlocks")(e,c,r),e=a.subParser("hashHTMLBlocks")(e,c,r),e=a.subParser("hashCodeTags")(e,c,r),e=a.subParser("stripLinkDefinitions")(e,c,r),e=a.subParser("blockGamut")(e,c,r),e=a.subParser("unhashHTMLSpans")(e,c,r),e=a.subParser("unescapeSpecialChars")(e,c,r),e=e.replace(/篓D/g,"$$"),e=e.replace(/篓T/g,"篓"),e=a.subParser("completeHTMLDocument")(e,c,r),a.helper.forEach(d,function(t){e=a.subParser("runExtension")(t,e,c,r)}),_=r.metadata,e},this.makeMarkdown=this.makeMd=function(e,r){function t(e){for(var r=0;r<e.childNodes.length;++r){var a=e.childNodes[r];3===a.nodeType?/\S/.test(a.nodeValue)?(a.nodeValue=a.nodeValue.split("\n").join(" "),a.nodeValue=a.nodeValue.replace(/(\s)+/g,"$1")):(e.removeChild(a),--r):1===a.nodeType&&t(a)}}if(e=e.replace(/\r\n/g,"\n"),e=e.replace(/\r/g,"\n"),e=e.replace(/>[ \t]+</,">篓NBSP;<"),!r){if(!window||!window.document)throw new Error("HTMLParser is undefined. If in a webworker or nodejs environment, you need to provide a WHATWG DOM and HTML such as JSDOM");r=window.document}var n=r.createElement("div");n.innerHTML=e;var s={preList:function(e){for(var r=e.querySelectorAll("pre"),t=[],n=0;n<r.length;++n)if(1===r[n].childElementCount&&"code"===r[n].firstChild.tagName.toLowerCase()){var s=r[n].firstChild.innerHTML.trim(),o=r[n].firstChild.getAttribute("data-language")||"";if(""===o)for(var i=r[n].firstChild.className.split(" "),l=0;l<i.length;++l){var c=i[l].match(/^language-(.+)$/);if(null!==c){o=c[1];break}}s=a.helper.unescapeHTMLEntities(s),t.push(s),r[n].outerHTML='<precode language="'+o+'" precodenum="'+n.toString()+'"></precode>'}else t.push(r[n].innerHTML),r[n].innerHTML="",r[n].setAttribute("prenum",n.toString());return t}(n)};t(n);for(var o=n.childNodes,i="",l=0;l<o.length;l++)i+=a.subParser("makeMarkdown.node")(o[l],s);return i},this.setOption=function(e,r){c[e]=r},this.getOption=function(e){return c[e]},this.getOptions=function(){return c},this.addExtension=function(e,r){t(e,r=r||null)},this.useExtension=function(e){t(e)},this.setFlavor=function(e){if(!l.hasOwnProperty(e))throw Error(e+" flavor was not found");var r=l[e];h=e;for(var t in r)r.hasOwnProperty(t)&&(c[t]=r[t])},this.getFlavor=function(){return h},this.removeExtension=function(e){a.helper.isArray(e)||(e=[e]);for(var r=0;r<e.length;++r){for(var t=e[r],n=0;n<u.length;++n)u[n]===t&&u[n].splice(n,1);for(;0<d.length;++n)d[0]===t&&d[0].splice(n,1)}},this.getAllExtensions=function(){return{language:u,output:d}},this.getMetadata=function(e){return e?_.raw:_.parsed},this.getMetadataFormat=function(){return _.format},this._setMetadataPair=function(e,r){_.parsed[e]=r},this._setMetadataFormat=function(e){_.format=e},this._setMetadataRaw=function(e){_.raw=e}},a.subParser("anchors",function(e,r,t){"use strict";var n=function(e,n,s,o,i,l,c){if(a.helper.isUndefined(c)&&(c=""),s=s.toLowerCase(),e.search(/\(<?\s*>? ?(['"].*['"])?\)$/m)>-1)o="";else if(!o){if(s||(s=n.toLowerCase().replace(/ ?\n/g," ")),o="#"+s,a.helper.isUndefined(t.gUrls[s]))return e;o=t.gUrls[s],a.helper.isUndefined(t.gTitles[s])||(c=t.gTitles[s])}var u='<a href="'+(o=o.replace(a.helper.regexes.asteriskDashAndColon,a.helper.escapeCharactersCallback))+'"';return""!==c&&null!==c&&(u+=' title="'+(c=(c=c.replace(/"/g,"&quot;")).replace(a.helper.regexes.asteriskDashAndColon,a.helper.escapeCharactersCallback))+'"'),r.openLinksInNewWindow&&!/^#/.test(o)&&(u+=' target="篓E95Eblank"'),u+=">"+n+"</a>"};return e=(e=t.converter._dispatch("anchors.before",e,r,t)).replace(/\[((?:\[[^\]]*]|[^\[\]])*)] ?(?:\n *)?\[(.*?)]()()()()/g,n),e=e.replace(/\[((?:\[[^\]]*]|[^\[\]])*)]()[ \t]*\([ \t]?<([^>]*)>(?:[ \t]*((["'])([^"]*?)\5))?[ \t]?\)/g,n),e=e.replace(/\[((?:\[[^\]]*]|[^\[\]])*)]()[ \t]*\([ \t]?<?([\S]+?(?:\([\S]*?\)[\S]*?)?)>?(?:[ \t]*((["'])([^"]*?)\5))?[ \t]?\)/g,n),e=e.replace(/\[([^\[\]]+)]()()()()()/g,n),r.ghMentions&&(e=e.replace(/(^|\s)(\\)?(@([a-z\d]+(?:[a-z\d.-]+?[a-z\d]+)*))/gim,function(e,t,n,s,o){if("\\"===n)return t+s;if(!a.helper.isString(r.ghMentionsLink))throw new Error("ghMentionsLink option must be a string");var i=r.ghMentionsLink.replace(/\{u}/g,o),l="";return r.openLinksInNewWindow&&(l=' target="篓E95Eblank"'),t+'<a href="'+i+'"'+l+">"+s+"</a>"})),e=t.converter._dispatch("anchors.after",e,r,t)});var u=/([*~_]+|\b)(((https?|ftp|dict):\/\/|www\.)[^'">\s]+?\.[^'">\s]+?)()(\1)?(?=\s|$)(?!["<>])/gi,d=/([*~_]+|\b)(((https?|ftp|dict):\/\/|www\.)[^'">\s]+\.[^'">\s]+?)([.!?,()\[\]])?(\1)?(?=\s|$)(?!["<>])/gi,p=/()<(((https?|ftp|dict):\/\/|www\.)[^'">\s]+)()>()/gi,h=/(^|\s)(?:mailto:)?([A-Za-z0-9!#$%&'*+-/=?^_`{|}~.]+@[-a-z0-9]+(\.[-a-z0-9]+)*\.[a-z]+)(?=$|\s)/gim,_=/<()(?:mailto:)?([-.\w]+@[-a-z0-9]+(\.[-a-z0-9]+)*\.[a-z]+)>/gi,g=function(e){"use strict";return function(r,t,n,s,o,i,l){var c=n=n.replace(a.helper.regexes.asteriskDashAndColon,a.helper.escapeCharactersCallback),u="",d="",p=t||"",h=l||"";return/^www\./i.test(n)&&(n=n.replace(/^www\./i,"http://www.")),e.excludeTrailingPunctuationFromURLs&&i&&(u=i),e.openLinksInNewWindow&&(d=' target="篓E95Eblank"'),p+'<a href="'+n+'"'+d+">"+c+"</a>"+u+h}},m=function(e,r){"use strict";return function(t,n,s){var o="mailto:";return n=n||"",s=a.subParser("unescapeSpecialChars")(s,e,r),e.encodeEmails?(o=a.helper.encodeEmailAddress(o+s),s=a.helper.encodeEmailAddress(s)):o+=s,n+'<a href="'+o+'">'+s+"</a>"}};a.subParser("autoLinks",function(e,r,t){"use strict";return e=t.converter._dispatch("autoLinks.before",e,r,t),e=e.replace(p,g(r)),e=e.replace(_,m(r,t)),e=t.converter._dispatch("autoLinks.after",e,r,t)}),a.subParser("simplifiedAutoLinks",function(e,r,t){"use strict";return r.simplifiedAutoLink?(e=t.converter._dispatch("simplifiedAutoLinks.before",e,r,t),e=r.excludeTrailingPunctuationFromURLs?e.replace(d,g(r)):e.replace(u,g(r)),e=e.replace(h,m(r,t)),e=t.converter._dispatch("simplifiedAutoLinks.after",e,r,t)):e}),a.subParser("blockGamut",function(e,r,t){"use strict";return e=t.converter._dispatch("blockGamut.before",e,r,t),e=a.subParser("blockQuotes")(e,r,t),e=a.subParser("headers")(e,r,t),e=a.subParser("horizontalRule")(e,r,t),e=a.subParser("lists")(e,r,t),e=a.subParser("codeBlocks")(e,r,t),e=a.subParser("tables")(e,r,t),e=a.subParser("hashHTMLBlocks")(e,r,t),e=a.subParser("paragraphs")(e,r,t),e=t.converter._dispatch("blockGamut.after",e,r,t)}),a.subParser("blockQuotes",function(e,r,t){"use strict";e=t.converter._dispatch("blockQuotes.before",e,r,t),e+="\n\n";var n=/(^ {0,3}>[ \t]?.+\n(.+\n)*\n*)+/gm;return r.splitAdjacentBlockquotes&&(n=/^ {0,3}>[\s\S]*?(?:\n\n)/gm),e=e.replace(n,function(e){return e=e.replace(/^[ \t]*>[ \t]?/gm,""),e=e.replace(/篓0/g,""),e=e.replace(/^[ \t]+$/gm,""),e=a.subParser("githubCodeBlocks")(e,r,t),e=a.subParser("blockGamut")(e,r,t),e=e.replace(/(^|\n)/g,"$1  "),e=e.replace(/(\s*<pre>[^\r]+?<\/pre>)/gm,function(e,r){var t=r;return t=t.replace(/^  /gm,"篓0"),t=t.replace(/篓0/g,"")}),a.subParser("hashBlock")("<blockquote>\n"+e+"\n</blockquote>",r,t)}),e=t.converter._dispatch("blockQuotes.after",e,r,t)}),a.subParser("codeBlocks",function(e,r,t){"use strict";e=t.converter._dispatch("codeBlocks.before",e,r,t);return e=(e+="篓0").replace(/(?:\n\n|^)((?:(?:[ ]{4}|\t).*\n+)+)(\n*[ ]{0,3}[^ \t\n]|(?=篓0))/g,function(e,n,s){var o=n,i=s,l="\n";return o=a.subParser("outdent")(o,r,t),o=a.subParser("encodeCode")(o,r,t),o=a.subParser("detab")(o,r,t),o=o.replace(/^\n+/g,""),o=o.replace(/\n+$/g,""),r.omitExtraWLInCodeBlocks&&(l=""),o="<pre><code>"+o+l+"</code></pre>",a.subParser("hashBlock")(o,r,t)+i}),e=e.replace(/篓0/,""),e=t.converter._dispatch("codeBlocks.after",e,r,t)}),a.subParser("codeSpans",function(e,r,t){"use strict";return void 0===(e=t.converter._dispatch("codeSpans.before",e,r,t))&&(e=""),e=e.replace(/(^|[^\\])(`+)([^\r]*?[^`])\2(?!`)/gm,function(e,n,s,o){var i=o;return i=i.replace(/^([ \t]*)/g,""),i=i.replace(/[ \t]*$/g,""),i=a.subParser("encodeCode")(i,r,t),i=n+"<code>"+i+"</code>",i=a.subParser("hashHTMLSpans")(i,r,t)}),e=t.converter._dispatch("codeSpans.after",e,r,t)}),a.subParser("completeHTMLDocument",function(e,r,t){"use strict";if(!r.completeHTMLDocument)return e;e=t.converter._dispatch("completeHTMLDocument.before",e,r,t);var a="html",n="<!DOCTYPE HTML>\n",s="",o='<meta charset="utf-8">\n',i="",l="";void 0!==t.metadata.parsed.doctype&&(n="<!DOCTYPE "+t.metadata.parsed.doctype+">\n","html"!==(a=t.metadata.parsed.doctype.toString().toLowerCase())&&"html5"!==a||(o='<meta charset="utf-8">'));for(var c in t.metadata.parsed)if(t.metadata.parsed.hasOwnProperty(c))switch(c.toLowerCase()){case"doctype":break;case"title":s="<title>"+t.metadata.parsed.title+"</title>\n";break;case"charset":o="html"===a||"html5"===a?'<meta charset="'+t.metadata.parsed.charset+'">\n':'<meta name="charset" content="'+t.metadata.parsed.charset+'">\n';break;case"language":case"lang":i=' lang="'+t.metadata.parsed[c]+'"',l+='<meta name="'+c+'" content="'+t.metadata.parsed[c]+'">\n';break;default:l+='<meta name="'+c+'" content="'+t.metadata.parsed[c]+'">\n'}return e=n+"<html"+i+">\n<head>\n"+s+o+l+"</head>\n<body>\n"+e.trim()+"\n</body>\n</html>",e=t.converter._dispatch("completeHTMLDocument.after",e,r,t)}),a.subParser("detab",function(e,r,t){"use strict";return e=t.converter._dispatch("detab.before",e,r,t),e=e.replace(/\t(?=\t)/g,"    "),e=e.replace(/\t/g,"篓A篓B"),e=e.replace(/篓B(.+?)篓A/g,function(e,r){for(var t=r,a=4-t.length%4,n=0;n<a;n++)t+=" ";return t}),e=e.replace(/篓A/g,"    "),e=e.replace(/篓B/g,""),e=t.converter._dispatch("detab.after",e,r,t)}),a.subParser("ellipsis",function(e,r,t){"use strict";return e=t.converter._dispatch("ellipsis.before",e,r,t),e=e.replace(/\.\.\./g,"鈥�"),e=t.converter._dispatch("ellipsis.after",e,r,t)}),a.subParser("emoji",function(e,r,t){"use strict";if(!r.emoji)return e;return e=(e=t.converter._dispatch("emoji.before",e,r,t)).replace(/:([\S]+?):/g,function(e,r){return a.helper.emojis.hasOwnProperty(r)?a.helper.emojis[r]:e}),e=t.converter._dispatch("emoji.after",e,r,t)}),a.subParser("encodeAmpsAndAngles",function(e,r,t){"use strict";return e=t.converter._dispatch("encodeAmpsAndAngles.before",e,r,t),e=e.replace(/&(?!#?[xX]?(?:[0-9a-fA-F]+|\w+);)/g,"&amp;"),e=e.replace(/<(?![a-z\/?$!])/gi,"&lt;"),e=e.replace(/</g,"&lt;"),e=e.replace(/>/g,"&gt;"),e=t.converter._dispatch("encodeAmpsAndAngles.after",e,r,t)}),a.subParser("encodeBackslashEscapes",function(e,r,t){"use strict";return e=t.converter._dispatch("encodeBackslashEscapes.before",e,r,t),e=e.replace(/\\(\\)/g,a.helper.escapeCharactersCallback),e=e.replace(/\\([`*_{}\[\]()>#+.!~=|-])/g,a.helper.escapeCharactersCallback),e=t.converter._dispatch("encodeBackslashEscapes.after",e,r,t)}),a.subParser("encodeCode",function(e,r,t){"use strict";return e=t.converter._dispatch("encodeCode.before",e,r,t),e=e.replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/([*_{}\[\]\\=~-])/g,a.helper.escapeCharactersCallback),e=t.converter._dispatch("encodeCode.after",e,r,t)}),a.subParser("escapeSpecialCharsWithinTagAttributes",function(e,r,t){"use strict";return e=(e=t.converter._dispatch("escapeSpecialCharsWithinTagAttributes.before",e,r,t)).replace(/<\/?[a-z\d_:-]+(?:[\s]+[\s\S]+?)?>/gi,function(e){return e.replace(/(.)<\/?code>(?=.)/g,"$1`").replace(/([\\`*_~=|])/g,a.helper.escapeCharactersCallback)}),e=e.replace(/<!(--(?:(?:[^>-]|-[^>])(?:[^-]|-[^-])*)--)>/gi,function(e){return e.replace(/([\\`*_~=|])/g,a.helper.escapeCharactersCallback)}),e=t.converter._dispatch("escapeSpecialCharsWithinTagAttributes.after",e,r,t)}),a.subParser("githubCodeBlocks",function(e,r,t){"use strict";return r.ghCodeBlocks?(e=t.converter._dispatch("githubCodeBlocks.before",e,r,t),e+="篓0",e=e.replace(/(?:^|\n)(?: {0,3})(```+|~~~+)(?: *)([^\s`~]*)\n([\s\S]*?)\n(?: {0,3})\1/g,function(e,n,s,o){var i=r.omitExtraWLInCodeBlocks?"":"\n";return o=a.subParser("encodeCode")(o,r,t),o=a.subParser("detab")(o,r,t),o=o.replace(/^\n+/g,""),o=o.replace(/\n+$/g,""),o="<pre><code"+(s?' class="'+s+" language-"+s+'"':"")+">"+o+i+"</code></pre>",o=a.subParser("hashBlock")(o,r,t),"\n\n篓G"+(t.ghCodeBlocks.push({text:e,codeblock:o})-1)+"G\n\n"}),e=e.replace(/篓0/,""),t.converter._dispatch("githubCodeBlocks.after",e,r,t)):e}),a.subParser("hashBlock",function(e,r,t){"use strict";return e=t.converter._dispatch("hashBlock.before",e,r,t),e=e.replace(/(^\n+|\n+$)/g,""),e="\n\n篓K"+(t.gHtmlBlocks.push(e)-1)+"K\n\n",e=t.converter._dispatch("hashBlock.after",e,r,t)}),a.subParser("hashCodeTags",function(e,r,t){"use strict";e=t.converter._dispatch("hashCodeTags.before",e,r,t);return e=a.helper.replaceRecursiveRegExp(e,function(e,n,s,o){var i=s+a.subParser("encodeCode")(n,r,t)+o;return"篓C"+(t.gHtmlSpans.push(i)-1)+"C"},"<code\\b[^>]*>","</code>","gim"),e=t.converter._dispatch("hashCodeTags.after",e,r,t)}),a.subParser("hashElement",function(e,r,t){"use strict";return function(e,r){var a=r;return a=a.replace(/\n\n/g,"\n"),a=a.replace(/^\n/,""),a=a.replace(/\n+$/g,""),a="\n\n篓K"+(t.gHtmlBlocks.push(a)-1)+"K\n\n"}}),a.subParser("hashHTMLBlocks",function(e,r,t){"use strict";e=t.converter._dispatch("hashHTMLBlocks.before",e,r,t);var n=["pre","div","h1","h2","h3","h4","h5","h6","blockquote","table","dl","ol","ul","script","noscript","form","fieldset","iframe","math","style","section","header","footer","nav","article","aside","address","audio","canvas","figure","hgroup","output","video","p"],s=function(e,r,a,n){var s=e;return-1!==a.search(/\bmarkdown\b/)&&(s=a+t.converter.makeHtml(r)+n),"\n\n篓K"+(t.gHtmlBlocks.push(s)-1)+"K\n\n"};r.backslashEscapesHTMLTags&&(e=e.replace(/\\<(\/?[^>]+?)>/g,function(e,r){return"&lt;"+r+"&gt;"}));for(var o=0;o<n.length;++o)for(var i,l=new RegExp("^ {0,3}(<"+n[o]+"\\b[^>]*>)","im"),c="<"+n[o]+"\\b[^>]*>",u="</"+n[o]+">";-1!==(i=a.helper.regexIndexOf(e,l));){var d=a.helper.splitAtIndex(e,i),p=a.helper.replaceRecursiveRegExp(d[1],s,c,u,"im");if(p===d[1])break;e=d[0].concat(p)}return e=e.replace(/(\n {0,3}(<(hr)\b([^<>])*?\/?>)[ \t]*(?=\n{2,}))/g,a.subParser("hashElement")(e,r,t)),e=a.helper.replaceRecursiveRegExp(e,function(e){return"\n\n篓K"+(t.gHtmlBlocks.push(e)-1)+"K\n\n"},"^ {0,3}\x3c!--","--\x3e","gm"),e=e.replace(/(?:\n\n)( {0,3}(?:<([?%])[^\r]*?\2>)[ \t]*(?=\n{2,}))/g,a.subParser("hashElement")(e,r,t)),e=t.converter._dispatch("hashHTMLBlocks.after",e,r,t)}),a.subParser("hashHTMLSpans",function(e,r,t){"use strict";function a(e){return"篓C"+(t.gHtmlSpans.push(e)-1)+"C"}return e=t.converter._dispatch("hashHTMLSpans.before",e,r,t),e=e.replace(/<[^>]+?\/>/gi,function(e){return a(e)}),e=e.replace(/<([^>]+?)>[\s\S]*?<\/\1>/g,function(e){return a(e)}),e=e.replace(/<([^>]+?)\s[^>]+?>[\s\S]*?<\/\1>/g,function(e){return a(e)}),e=e.replace(/<[^>]+?>/gi,function(e){return a(e)}),e=t.converter._dispatch("hashHTMLSpans.after",e,r,t)}),a.subParser("unhashHTMLSpans",function(e,r,t){"use strict";e=t.converter._dispatch("unhashHTMLSpans.before",e,r,t);for(var a=0;a<t.gHtmlSpans.length;++a){for(var n=t.gHtmlSpans[a],s=0;/篓C(\d+)C/.test(n);){var o=RegExp.$1;if(n=n.replace("篓C"+o+"C",t.gHtmlSpans[o]),10===s){console.error("maximum nesting of 10 spans reached!!!");break}++s}e=e.replace("篓C"+a+"C",n)}return e=t.converter._dispatch("unhashHTMLSpans.after",e,r,t)}),a.subParser("hashPreCodeTags",function(e,r,t){"use strict";e=t.converter._dispatch("hashPreCodeTags.before",e,r,t);return e=a.helper.replaceRecursiveRegExp(e,function(e,n,s,o){var i=s+a.subParser("encodeCode")(n,r,t)+o;return"\n\n篓G"+(t.ghCodeBlocks.push({text:e,codeblock:i})-1)+"G\n\n"},"^ {0,3}<pre\\b[^>]*>\\s*<code\\b[^>]*>","^ {0,3}</code>\\s*</pre>","gim"),e=t.converter._dispatch("hashPreCodeTags.after",e,r,t)}),a.subParser("headers",function(e,r,t){"use strict";function n(e){var n,s;if(r.customizedHeaderId){var o=e.match(/\{([^{]+?)}\s*$/);o&&o[1]&&(e=o[1])}return n=e,s=a.helper.isString(r.prefixHeaderId)?r.prefixHeaderId:!0===r.prefixHeaderId?"section-":"",r.rawPrefixHeaderId||(n=s+n),n=r.ghCompatibleHeaderId?n.replace(/ /g,"-").replace(/&amp;/g,"").replace(/篓T/g,"").replace(/篓D/g,"").replace(/[&+$,\/:;=?@"#{}|^篓~\[\]`\\*)(%.!'<>]/g,"").toLowerCase():r.rawHeaderId?n.replace(/ /g,"-").replace(/&amp;/g,"&").replace(/篓T/g,"篓").replace(/篓D/g,"$").replace(/["']/g,"-").toLowerCase():n.replace(/[^\w]/g,"").toLowerCase(),r.rawPrefixHeaderId&&(n=s+n),t.hashLinkCounts[n]?n=n+"-"+t.hashLinkCounts[n]++:t.hashLinkCounts[n]=1,n}e=t.converter._dispatch("headers.before",e,r,t);var s=isNaN(parseInt(r.headerLevelStart))?1:parseInt(r.headerLevelStart),o=r.smoothLivePreview?/^(.+)[ \t]*\n={2,}[ \t]*\n+/gm:/^(.+)[ \t]*\n=+[ \t]*\n+/gm,i=r.smoothLivePreview?/^(.+)[ \t]*\n-{2,}[ \t]*\n+/gm:/^(.+)[ \t]*\n-+[ \t]*\n+/gm;e=(e=e.replace(o,function(e,o){var i=a.subParser("spanGamut")(o,r,t),l=r.noHeaderId?"":' id="'+n(o)+'"',c="<h"+s+l+">"+i+"</h"+s+">";return a.subParser("hashBlock")(c,r,t)})).replace(i,function(e,o){var i=a.subParser("spanGamut")(o,r,t),l=r.noHeaderId?"":' id="'+n(o)+'"',c=s+1,u="<h"+c+l+">"+i+"</h"+c+">";return a.subParser("hashBlock")(u,r,t)});var l=r.requireSpaceBeforeHeadingText?/^(#{1,6})[ \t]+(.+?)[ \t]*#*\n+/gm:/^(#{1,6})[ \t]*(.+?)[ \t]*#*\n+/gm;return e=e.replace(l,function(e,o,i){var l=i;r.customizedHeaderId&&(l=i.replace(/\s?\{([^{]+?)}\s*$/,""));var c=a.subParser("spanGamut")(l,r,t),u=r.noHeaderId?"":' id="'+n(i)+'"',d=s-1+o.length,p="<h"+d+u+">"+c+"</h"+d+">";return a.subParser("hashBlock")(p,r,t)}),e=t.converter._dispatch("headers.after",e,r,t)}),a.subParser("horizontalRule",function(e,r,t){"use strict";e=t.converter._dispatch("horizontalRule.before",e,r,t);var n=a.subParser("hashBlock")("<hr />",r,t);return e=e.replace(/^ {0,2}( ?-){3,}[ \t]*$/gm,n),e=e.replace(/^ {0,2}( ?\*){3,}[ \t]*$/gm,n),e=e.replace(/^ {0,2}( ?_){3,}[ \t]*$/gm,n),e=t.converter._dispatch("horizontalRule.after",e,r,t)}),a.subParser("images",function(e,r,t){"use strict";function n(e,r,n,s,o,i,l,c){var u=t.gUrls,d=t.gTitles,p=t.gDimensions;if(n=n.toLowerCase(),c||(c=""),e.search(/\(<?\s*>? ?(['"].*['"])?\)$/m)>-1)s="";else if(""===s||null===s){if(""!==n&&null!==n||(n=r.toLowerCase().replace(/ ?\n/g," ")),s="#"+n,a.helper.isUndefined(u[n]))return e;s=u[n],a.helper.isUndefined(d[n])||(c=d[n]),a.helper.isUndefined(p[n])||(o=p[n].width,i=p[n].height)}r=r.replace(/"/g,"&quot;").replace(a.helper.regexes.asteriskDashAndColon,a.helper.escapeCharactersCallback);var h='<img src="'+(s=s.replace(a.helper.regexes.asteriskDashAndColon,a.helper.escapeCharactersCallback))+'" alt="'+r+'"';return c&&a.helper.isString(c)&&(h+=' title="'+(c=c.replace(/"/g,"&quot;").replace(a.helper.regexes.asteriskDashAndColon,a.helper.escapeCharactersCallback))+'"'),o&&i&&(h+=' width="'+(o="*"===o?"auto":o)+'"',h+=' height="'+(i="*"===i?"auto":i)+'"'),h+=" />"}return e=(e=t.converter._dispatch("images.before",e,r,t)).replace(/!\[([^\]]*?)] ?(?:\n *)?\[([\s\S]*?)]()()()()()/g,n),e=e.replace(/!\[([^\]]*?)][ \t]*()\([ \t]?<?(data:.+?\/.+?;base64,[A-Za-z0-9+/=\n]+?)>?(?: =([*\d]+[A-Za-z%]{0,4})x([*\d]+[A-Za-z%]{0,4}))?[ \t]*(?:(["'])([^"]*?)\6)?[ \t]?\)/g,function(e,r,t,a,s,o,i,l){return a=a.replace(/\s/g,""),n(e,r,t,a,s,o,0,l)}),e=e.replace(/!\[([^\]]*?)][ \t]*()\([ \t]?<([^>]*)>(?: =([*\d]+[A-Za-z%]{0,4})x([*\d]+[A-Za-z%]{0,4}))?[ \t]*(?:(?:(["'])([^"]*?)\6))?[ \t]?\)/g,n),e=e.replace(/!\[([^\]]*?)][ \t]*()\([ \t]?<?([\S]+?(?:\([\S]*?\)[\S]*?)?)>?(?: =([*\d]+[A-Za-z%]{0,4})x([*\d]+[A-Za-z%]{0,4}))?[ \t]*(?:(["'])([^"]*?)\6)?[ \t]?\)/g,n),e=e.replace(/!\[([^\[\]]+)]()()()()()/g,n),e=t.converter._dispatch("images.after",e,r,t)}),a.subParser("italicsAndBold",function(e,r,t){"use strict";function a(e,r,t){return r+e+t}return e=t.converter._dispatch("italicsAndBold.before",e,r,t),e=r.literalMidWordUnderscores?(e=(e=e.replace(/\b___(\S[\s\S]*?)___\b/g,function(e,r){return a(r,"<strong><em>","</em></strong>")})).replace(/\b__(\S[\s\S]*?)__\b/g,function(e,r){return a(r,"<strong>","</strong>")})).replace(/\b_(\S[\s\S]*?)_\b/g,function(e,r){return a(r,"<em>","</em>")}):(e=(e=e.replace(/___(\S[\s\S]*?)___/g,function(e,r){return/\S$/.test(r)?a(r,"<strong><em>","</em></strong>"):e})).replace(/__(\S[\s\S]*?)__/g,function(e,r){return/\S$/.test(r)?a(r,"<strong>","</strong>"):e})).replace(/_([^\s_][\s\S]*?)_/g,function(e,r){return/\S$/.test(r)?a(r,"<em>","</em>"):e}),e=r.literalMidWordAsterisks?(e=(e=e.replace(/([^*]|^)\B\*\*\*(\S[\s\S]*?)\*\*\*\B(?!\*)/g,function(e,r,t){return a(t,r+"<strong><em>","</em></strong>")})).replace(/([^*]|^)\B\*\*(\S[\s\S]*?)\*\*\B(?!\*)/g,function(e,r,t){return a(t,r+"<strong>","</strong>")})).replace(/([^*]|^)\B\*(\S[\s\S]*?)\*\B(?!\*)/g,function(e,r,t){return a(t,r+"<em>","</em>")}):(e=(e=e.replace(/\*\*\*(\S[\s\S]*?)\*\*\*/g,function(e,r){return/\S$/.test(r)?a(r,"<strong><em>","</em></strong>"):e})).replace(/\*\*(\S[\s\S]*?)\*\*/g,function(e,r){return/\S$/.test(r)?a(r,"<strong>","</strong>"):e})).replace(/\*([^\s*][\s\S]*?)\*/g,function(e,r){return/\S$/.test(r)?a(r,"<em>","</em>"):e}),e=t.converter._dispatch("italicsAndBold.after",e,r,t)}),a.subParser("lists",function(e,r,t){"use strict";function n(e,n){t.gListLevel++,e=e.replace(/\n{2,}$/,"\n");var s=/(\n)?(^ {0,3})([*+-]|\d+[.])[ \t]+((\[(x|X| )?])?[ \t]*[^\r]+?(\n{1,2}))(?=\n*(篓0| {0,3}([*+-]|\d+[.])[ \t]+))/gm,o=/\n[ \t]*\n(?!篓0)/.test(e+="篓0");return r.disableForced4SpacesIndentedSublists&&(s=/(\n)?(^ {0,3})([*+-]|\d+[.])[ \t]+((\[(x|X| )?])?[ \t]*[^\r]+?(\n{1,2}))(?=\n*(篓0|\2([*+-]|\d+[.])[ \t]+))/gm),e=e.replace(s,function(e,n,s,i,l,c,u){u=u&&""!==u.trim();var d=a.subParser("outdent")(l,r,t),p="";return c&&r.tasklists&&(p=' class="task-list-item" style="list-style-type: none;"',d=d.replace(/^[ \t]*\[(x|X| )?]/m,function(){var e='<input type="checkbox" disabled style="margin: 0px 0.35em 0.25em -1.6em; vertical-align: middle;"';return u&&(e+=" checked"),e+=">"})),d=d.replace(/^([-*+]|\d\.)[ \t]+[\S\n ]*/g,function(e){return"篓A"+e}),n||d.search(/\n{2,}/)>-1?(d=a.subParser("githubCodeBlocks")(d,r,t),d=a.subParser("blockGamut")(d,r,t)):(d=(d=a.subParser("lists")(d,r,t)).replace(/\n$/,""),d=(d=a.subParser("hashHTMLBlocks")(d,r,t)).replace(/\n\n+/g,"\n\n"),d=o?a.subParser("paragraphs")(d,r,t):a.subParser("spanGamut")(d,r,t)),d=d.replace("篓A",""),d="<li"+p+">"+d+"</li>\n"}),e=e.replace(/篓0/g,""),t.gListLevel--,n&&(e=e.replace(/\s+$/,"")),e}function s(e,r){if("ol"===r){var t=e.match(/^ *(\d+)\./);if(t&&"1"!==t[1])return' start="'+t[1]+'"'}return""}function o(e,t,a){var o=r.disableForced4SpacesIndentedSublists?/^ ?\d+\.[ \t]/gm:/^ {0,3}\d+\.[ \t]/gm,i=r.disableForced4SpacesIndentedSublists?/^ ?[*+-][ \t]/gm:/^ {0,3}[*+-][ \t]/gm,l="ul"===t?o:i,c="";if(-1!==e.search(l))!function r(u){var d=u.search(l),p=s(e,t);-1!==d?(c+="\n\n<"+t+p+">\n"+n(u.slice(0,d),!!a)+"</"+t+">\n",l="ul"===(t="ul"===t?"ol":"ul")?o:i,r(u.slice(d))):c+="\n\n<"+t+p+">\n"+n(u,!!a)+"</"+t+">\n"}(e);else{var u=s(e,t);c="\n\n<"+t+u+">\n"+n(e,!!a)+"</"+t+">\n"}return c}return e=t.converter._dispatch("lists.before",e,r,t),e+="篓0",e=t.gListLevel?e.replace(/^(( {0,3}([*+-]|\d+[.])[ \t]+)[^\r]+?(篓0|\n{2,}(?=\S)(?![ \t]*(?:[*+-]|\d+[.])[ \t]+)))/gm,function(e,r,t){return o(r,t.search(/[*+-]/g)>-1?"ul":"ol",!0)}):e.replace(/(\n\n|^\n?)(( {0,3}([*+-]|\d+[.])[ \t]+)[^\r]+?(篓0|\n{2,}(?=\S)(?![ \t]*(?:[*+-]|\d+[.])[ \t]+)))/gm,function(e,r,t,a){return o(t,a.search(/[*+-]/g)>-1?"ul":"ol",!1)}),e=e.replace(/篓0/,""),e=t.converter._dispatch("lists.after",e,r,t)}),a.subParser("metadata",function(e,r,t){"use strict";function a(e){t.metadata.raw=e,(e=(e=e.replace(/&/g,"&amp;").replace(/"/g,"&quot;")).replace(/\n {4}/g," ")).replace(/^([\S ]+): +([\s\S]+?)$/gm,function(e,r,a){return t.metadata.parsed[r]=a,""})}return r.metadata?(e=t.converter._dispatch("metadata.before",e,r,t),e=e.replace(/^\s*芦芦芦+(\S*?)\n([\s\S]+?)\n禄禄禄+\n/,function(e,r,t){return a(t),"篓M"}),e=e.replace(/^\s*---+(\S*?)\n([\s\S]+?)\n---+\n/,function(e,r,n){return r&&(t.metadata.format=r),a(n),"篓M"}),e=e.replace(/篓M/g,""),e=t.converter._dispatch("metadata.after",e,r,t)):e}),a.subParser("outdent",function(e,r,t){"use strict";return e=t.converter._dispatch("outdent.before",e,r,t),e=e.replace(/^(\t|[ ]{1,4})/gm,"篓0"),e=e.replace(/篓0/g,""),e=t.converter._dispatch("outdent.after",e,r,t)}),a.subParser("paragraphs",function(e,r,t){"use strict";for(var n=(e=(e=(e=t.converter._dispatch("paragraphs.before",e,r,t)).replace(/^\n+/g,"")).replace(/\n+$/g,"")).split(/\n{2,}/g),s=[],o=n.length,i=0;i<o;i++){var l=n[i];l.search(/篓(K|G)(\d+)\1/g)>=0?s.push(l):l.search(/\S/)>=0&&(l=(l=a.subParser("spanGamut")(l,r,t)).replace(/^([ \t]*)/g,"<p>"),l+="</p>",s.push(l))}for(o=s.length,i=0;i<o;i++){for(var c="",u=s[i],d=!1;/篓(K|G)(\d+)\1/.test(u);){var p=RegExp.$1,h=RegExp.$2;c=(c="K"===p?t.gHtmlBlocks[h]:d?a.subParser("encodeCode")(t.ghCodeBlocks[h].text,r,t):t.ghCodeBlocks[h].codeblock).replace(/\$/g,"$$$$"),u=u.replace(/(\n\n)?篓(K|G)\d+\2(\n\n)?/,c),/^<pre\b[^>]*>\s*<code\b[^>]*>/.test(u)&&(d=!0)}s[i]=u}return e=s.join("\n"),e=e.replace(/^\n+/g,""),e=e.replace(/\n+$/g,""),t.converter._dispatch("paragraphs.after",e,r,t)}),a.subParser("runExtension",function(e,r,t,a){"use strict";if(e.filter)r=e.filter(r,a.converter,t);else if(e.regex){var n=e.regex;n instanceof RegExp||(n=new RegExp(n,"g")),r=r.replace(n,e.replace)}return r}),a.subParser("spanGamut",function(e,r,t){"use strict";return e=t.converter._dispatch("spanGamut.before",e,r,t),e=a.subParser("codeSpans")(e,r,t),e=a.subParser("escapeSpecialCharsWithinTagAttributes")(e,r,t),e=a.subParser("encodeBackslashEscapes")(e,r,t),e=a.subParser("images")(e,r,t),e=a.subParser("anchors")(e,r,t),e=a.subParser("autoLinks")(e,r,t),e=a.subParser("simplifiedAutoLinks")(e,r,t),e=a.subParser("emoji")(e,r,t),e=a.subParser("underline")(e,r,t),e=a.subParser("italicsAndBold")(e,r,t),e=a.subParser("strikethrough")(e,r,t),e=a.subParser("ellipsis")(e,r,t),e=a.subParser("hashHTMLSpans")(e,r,t),e=a.subParser("encodeAmpsAndAngles")(e,r,t),r.simpleLineBreaks?/\n\n篓K/.test(e)||(e=e.replace(/\n+/g,"<br />\n")):e=e.replace(/  +\n/g,"<br />\n"),e=t.converter._dispatch("spanGamut.after",e,r,t)}),a.subParser("strikethrough",function(e,r,t){"use strict";return r.strikethrough&&(e=(e=t.converter._dispatch("strikethrough.before",e,r,t)).replace(/(?:~){2}([\s\S]+?)(?:~){2}/g,function(e,n){return function(e){return r.simplifiedAutoLink&&(e=a.subParser("simplifiedAutoLinks")(e,r,t)),"<del>"+e+"</del>"}(n)}),e=t.converter._dispatch("strikethrough.after",e,r,t)),e}),a.subParser("stripLinkDefinitions",function(e,r,t){"use strict";var n=function(e,n,s,o,i,l,c){return n=n.toLowerCase(),s.match(/^data:.+?\/.+?;base64,/)?t.gUrls[n]=s.replace(/\s/g,""):t.gUrls[n]=a.subParser("encodeAmpsAndAngles")(s,r,t),l?l+c:(c&&(t.gTitles[n]=c.replace(/"|'/g,"&quot;")),r.parseImgDimensions&&o&&i&&(t.gDimensions[n]={width:o,height:i}),"")};return e=(e+="篓0").replace(/^ {0,3}\[(.+)]:[ \t]*\n?[ \t]*<?(data:.+?\/.+?;base64,[A-Za-z0-9+/=\n]+?)>?(?: =([*\d]+[A-Za-z%]{0,4})x([*\d]+[A-Za-z%]{0,4}))?[ \t]*\n?[ \t]*(?:(\n*)["|'(](.+?)["|')][ \t]*)?(?:\n\n|(?=篓0)|(?=\n\[))/gm,n),e=e.replace(/^ {0,3}\[(.+)]:[ \t]*\n?[ \t]*<?([^>\s]+)>?(?: =([*\d]+[A-Za-z%]{0,4})x([*\d]+[A-Za-z%]{0,4}))?[ \t]*\n?[ \t]*(?:(\n*)["|'(](.+?)["|')][ \t]*)?(?:\n+|(?=篓0))/gm,n),e=e.replace(/篓0/,"")}),a.subParser("tables",function(e,r,t){"use strict";function n(e){return/^:[ \t]*--*$/.test(e)?' style="text-align:left;"':/^--*[ \t]*:[ \t]*$/.test(e)?' style="text-align:right;"':/^:[ \t]*--*[ \t]*:$/.test(e)?' style="text-align:center;"':""}function s(e,n){var s="";return e=e.trim(),(r.tablesHeaderId||r.tableHeaderId)&&(s=' id="'+e.replace(/ /g,"_").toLowerCase()+'"'),e=a.subParser("spanGamut")(e,r,t),"<th"+s+n+">"+e+"</th>\n"}function o(e,n){return"<td"+n+">"+a.subParser("spanGamut")(e,r,t)+"</td>\n"}function i(e){var i,l=e.split("\n");for(i=0;i<l.length;++i)/^ {0,3}\|/.test(l[i])&&(l[i]=l[i].replace(/^ {0,3}\|/,"")),/\|[ \t]*$/.test(l[i])&&(l[i]=l[i].replace(/\|[ \t]*$/,"")),l[i]=a.subParser("codeSpans")(l[i],r,t);var c=l[0].split("|").map(function(e){return e.trim()}),u=l[1].split("|").map(function(e){return e.trim()}),d=[],p=[],h=[],_=[];for(l.shift(),l.shift(),i=0;i<l.length;++i)""!==l[i].trim()&&d.push(l[i].split("|").map(function(e){return e.trim()}));if(c.length<u.length)return e;for(i=0;i<u.length;++i)h.push(n(u[i]));for(i=0;i<c.length;++i)a.helper.isUndefined(h[i])&&(h[i]=""),p.push(s(c[i],h[i]));for(i=0;i<d.length;++i){for(var g=[],m=0;m<p.length;++m)a.helper.isUndefined(d[i][m]),g.push(o(d[i][m],h[m]));_.push(g)}return function(e,r){for(var t="<table>\n<thead>\n<tr>\n",a=e.length,n=0;n<a;++n)t+=e[n];for(t+="</tr>\n</thead>\n<tbody>\n",n=0;n<r.length;++n){t+="<tr>\n";for(var s=0;s<a;++s)t+=r[n][s];t+="</tr>\n"}return t+="</tbody>\n</table>\n"}(p,_)}if(!r.tables)return e;return e=t.converter._dispatch("tables.before",e,r,t),e=e.replace(/\\(\|)/g,a.helper.escapeCharactersCallback),e=e.replace(/^ {0,3}\|?.+\|.+\n {0,3}\|?[ \t]*:?[ \t]*(?:[-=]){2,}[ \t]*:?[ \t]*\|[ \t]*:?[ \t]*(?:[-=]){2,}[\s\S]+?(?:\n\n|篓0)/gm,i),e=e.replace(/^ {0,3}\|.+\|[ \t]*\n {0,3}\|[ \t]*:?[ \t]*(?:[-=]){2,}[ \t]*:?[ \t]*\|[ \t]*\n( {0,3}\|.+\|[ \t]*\n)*(?:\n|篓0)/gm,i),e=t.converter._dispatch("tables.after",e,r,t)}),a.subParser("underline",function(e,r,t){"use strict";return r.underline?(e=t.converter._dispatch("underline.before",e,r,t),e=r.literalMidWordUnderscores?(e=e.replace(/\b___(\S[\s\S]*?)___\b/g,function(e,r){return"<u>"+r+"</u>"})).replace(/\b__(\S[\s\S]*?)__\b/g,function(e,r){return"<u>"+r+"</u>"}):(e=e.replace(/___(\S[\s\S]*?)___/g,function(e,r){return/\S$/.test(r)?"<u>"+r+"</u>":e})).replace(/__(\S[\s\S]*?)__/g,function(e,r){return/\S$/.test(r)?"<u>"+r+"</u>":e}),e=e.replace(/(_)/g,a.helper.escapeCharactersCallback),e=t.converter._dispatch("underline.after",e,r,t)):e}),a.subParser("unescapeSpecialChars",function(e,r,t){"use strict";return e=t.converter._dispatch("unescapeSpecialChars.before",e,r,t),e=e.replace(/篓E(\d+)E/g,function(e,r){var t=parseInt(r);return String.fromCharCode(t)}),e=t.converter._dispatch("unescapeSpecialChars.after",e,r,t)}),a.subParser("makeMarkdown.blockquote",function(e,r){"use strict";var t="";if(e.hasChildNodes())for(var n=e.childNodes,s=n.length,o=0;o<s;++o){var i=a.subParser("makeMarkdown.node")(n[o],r);""!==i&&(t+=i)}return t=t.trim(),t="> "+t.split("\n").join("\n> ")}),a.subParser("makeMarkdown.codeBlock",function(e,r){"use strict";var t=e.getAttribute("language"),a=e.getAttribute("precodenum");return"```"+t+"\n"+r.preList[a]+"\n```"}),a.subParser("makeMarkdown.codeSpan",function(e){"use strict";return"`"+e.innerHTML+"`"}),a.subParser("makeMarkdown.emphasis",function(e,r){"use strict";var t="";if(e.hasChildNodes()){t+="*";for(var n=e.childNodes,s=n.length,o=0;o<s;++o)t+=a.subParser("makeMarkdown.node")(n[o],r);t+="*"}return t}),a.subParser("makeMarkdown.header",function(e,r,t){"use strict";var n=new Array(t+1).join("#"),s="";if(e.hasChildNodes()){s=n+" ";for(var o=e.childNodes,i=o.length,l=0;l<i;++l)s+=a.subParser("makeMarkdown.node")(o[l],r)}return s}),a.subParser("makeMarkdown.hr",function(){"use strict";return"---"}),a.subParser("makeMarkdown.image",function(e){"use strict";var r="";return e.hasAttribute("src")&&(r+="!["+e.getAttribute("alt")+"](",r+="<"+e.getAttribute("src")+">",e.hasAttribute("width")&&e.hasAttribute("height")&&(r+=" ="+e.getAttribute("width")+"x"+e.getAttribute("height")),e.hasAttribute("title")&&(r+=' "'+e.getAttribute("title")+'"'),r+=")"),r}),a.subParser("makeMarkdown.links",function(e,r){"use strict";var t="";if(e.hasChildNodes()&&e.hasAttribute("href")){var n=e.childNodes,s=n.length;t="[";for(var o=0;o<s;++o)t+=a.subParser("makeMarkdown.node")(n[o],r);t+="](",t+="<"+e.getAttribute("href")+">",e.hasAttribute("title")&&(t+=' "'+e.getAttribute("title")+'"'),t+=")"}return t}),a.subParser("makeMarkdown.list",function(e,r,t){"use strict";var n="";if(!e.hasChildNodes())return"";for(var s=e.childNodes,o=s.length,i=e.getAttribute("start")||1,l=0;l<o;++l)if(void 0!==s[l].tagName&&"li"===s[l].tagName.toLowerCase()){n+=("ol"===t?i.toString()+". ":"- ")+a.subParser("makeMarkdown.listItem")(s[l],r),++i}return(n+="\n\x3c!-- --\x3e\n").trim()}),a.subParser("makeMarkdown.listItem",function(e,r){"use strict";for(var t="",n=e.childNodes,s=n.length,o=0;o<s;++o)t+=a.subParser("makeMarkdown.node")(n[o],r);return/\n$/.test(t)?t=t.split("\n").join("\n    ").replace(/^ {4}$/gm,"").replace(/\n\n+/g,"\n\n"):t+="\n",t}),a.subParser("makeMarkdown.node",function(e,r,t){"use strict";t=t||!1;var n="";if(3===e.nodeType)return a.subParser("makeMarkdown.txt")(e,r);if(8===e.nodeType)return"\x3c!--"+e.data+"--\x3e\n\n";if(1!==e.nodeType)return"";switch(e.tagName.toLowerCase()){case"h1":t||(n=a.subParser("makeMarkdown.header")(e,r,1)+"\n\n");break;case"h2":t||(n=a.subParser("makeMarkdown.header")(e,r,2)+"\n\n");break;case"h3":t||(n=a.subParser("makeMarkdown.header")(e,r,3)+"\n\n");break;case"h4":t||(n=a.subParser("makeMarkdown.header")(e,r,4)+"\n\n");break;case"h5":t||(n=a.subParser("makeMarkdown.header")(e,r,5)+"\n\n");break;case"h6":t||(n=a.subParser("makeMarkdown.header")(e,r,6)+"\n\n");break;case"p":t||(n=a.subParser("makeMarkdown.paragraph")(e,r)+"\n\n");break;case"blockquote":t||(n=a.subParser("makeMarkdown.blockquote")(e,r)+"\n\n");break;case"hr":t||(n=a.subParser("makeMarkdown.hr")(e,r)+"\n\n");break;case"ol":t||(n=a.subParser("makeMarkdown.list")(e,r,"ol")+"\n\n");break;case"ul":t||(n=a.subParser("makeMarkdown.list")(e,r,"ul")+"\n\n");break;case"precode":t||(n=a.subParser("makeMarkdown.codeBlock")(e,r)+"\n\n");break;case"pre":t||(n=a.subParser("makeMarkdown.pre")(e,r)+"\n\n");break;case"table":t||(n=a.subParser("makeMarkdown.table")(e,r)+"\n\n");break;case"code":n=a.subParser("makeMarkdown.codeSpan")(e,r);break;case"em":case"i":n=a.subParser("makeMarkdown.emphasis")(e,r);break;case"strong":case"b":n=a.subParser("makeMarkdown.strong")(e,r);break;case"del":n=a.subParser("makeMarkdown.strikethrough")(e,r);break;case"a":n=a.subParser("makeMarkdown.links")(e,r);break;case"img":n=a.subParser("makeMarkdown.image")(e,r);break;default:n=e.outerHTML+"\n\n"}return n}),a.subParser("makeMarkdown.paragraph",function(e,r){"use strict";var t="";if(e.hasChildNodes())for(var n=e.childNodes,s=n.length,o=0;o<s;++o)t+=a.subParser("makeMarkdown.node")(n[o],r);return t=t.trim()}),a.subParser("makeMarkdown.pre",function(e,r){"use strict";var t=e.getAttribute("prenum");return"<pre>"+r.preList[t]+"</pre>"}),a.subParser("makeMarkdown.strikethrough",function(e,r){"use strict";var t="";if(e.hasChildNodes()){t+="~~";for(var n=e.childNodes,s=n.length,o=0;o<s;++o)t+=a.subParser("makeMarkdown.node")(n[o],r);t+="~~"}return t}),a.subParser("makeMarkdown.strong",function(e,r){"use strict";var t="";if(e.hasChildNodes()){t+="**";for(var n=e.childNodes,s=n.length,o=0;o<s;++o)t+=a.subParser("makeMarkdown.node")(n[o],r);t+="**"}return t}),a.subParser("makeMarkdown.table",function(e,r){"use strict";var t,n,s="",o=[[],[]],i=e.querySelectorAll("thead>tr>th"),l=e.querySelectorAll("tbody>tr");for(t=0;t<i.length;++t){var c=a.subParser("makeMarkdown.tableCell")(i[t],r),u="---";if(i[t].hasAttribute("style")){switch(i[t].getAttribute("style").toLowerCase().replace(/\s/g,"")){case"text-align:left;":u=":---";break;case"text-align:right;":u="---:";break;case"text-align:center;":u=":---:"}}o[0][t]=c.trim(),o[1][t]=u}for(t=0;t<l.length;++t){var d=o.push([])-1,p=l[t].getElementsByTagName("td");for(n=0;n<i.length;++n){var h=" ";void 0!==p[n]&&(h=a.subParser("makeMarkdown.tableCell")(p[n],r)),o[d].push(h)}}var _=3;for(t=0;t<o.length;++t)for(n=0;n<o[t].length;++n){var g=o[t][n].length;g>_&&(_=g)}for(t=0;t<o.length;++t){for(n=0;n<o[t].length;++n)1===t?":"===o[t][n].slice(-1)?o[t][n]=a.helper.padEnd(o[t][n].slice(-1),_-1,"-")+":":o[t][n]=a.helper.padEnd(o[t][n],_,"-"):o[t][n]=a.helper.padEnd(o[t][n],_);s+="| "+o[t].join(" | ")+" |\n"}return s.trim()}),a.subParser("makeMarkdown.tableCell",function(e,r){"use strict";var t="";if(!e.hasChildNodes())return"";for(var n=e.childNodes,s=n.length,o=0;o<s;++o)t+=a.subParser("makeMarkdown.node")(n[o],r,!0);return t.trim()}),a.subParser("makeMarkdown.txt",function(e){"use strict";var r=e.nodeValue;return r=r.replace(/ +/g," "),r=r.replace(/篓NBSP;/g," "),r=a.helper.unescapeHTMLEntities(r),r=r.replace(/([*_~|`])/g,"\\$1"),r=r.replace(/^(\s*)>/g,"\\$1>"),r=r.replace(/^#/gm,"\\#"),r=r.replace(/^(\s*)([-=]{3,})(\s*)$/,"$1\\$2$3"),r=r.replace(/^( {0,3}\d+)\./gm,"$1\\."),r=r.replace(/^( {0,3})([+-])/gm,"$1\\$2"),r=r.replace(/]([\s]*)\(/g,"\\]$1\\("),r=r.replace(/^ {0,3}\[([\S \t]*?)]:/gm,"\\[$1]:")});"function"==typeof define&&define.amd?define(function(){"use strict";return a}):"undefined"!=typeof module&&module.exports?module.exports=a:this.showdown=a}).call(this);
+//# sourceMappingURL=showdown.min.js.map

--
Gitblit v1.9.1