From 4b829dc84387c895678f3075b1e1ff5f8d8d0028 Mon Sep 17 00:00:00 2001 From: MarceauKa Date: Sun, 29 Sep 2019 16:33:58 +0200 Subject: [PATCH] :sparkles: Move tagged posts to another tag :recycle: Refactored managing tags :wrench: Loader vue component --- .../Controllers/Api/Manage/TagsController.php | 39 +++++++ app/Http/Controllers/ManageController.php | 32 ++---- app/Observers/TagObserver.php | 16 +++ app/Providers/EventServiceProvider.php | 20 +--- changelog.md | 9 ++ public/js/app.js | 2 +- public/mix-manifest.json | 2 +- resources/js/components/Loader.vue | 18 +++ resources/js/components/ManageTags.vue | 107 ++++++++++++++++++ resources/lang/fr.json | 5 + resources/views/manage/tags.blade.php | 33 +----- routes/api.php | 11 ++ routes/web.php | 1 - 13 files changed, 218 insertions(+), 77 deletions(-) create mode 100644 app/Http/Controllers/Api/Manage/TagsController.php create mode 100644 app/Observers/TagObserver.php create mode 100644 resources/js/components/Loader.vue create mode 100644 resources/js/components/ManageTags.vue diff --git a/app/Http/Controllers/Api/Manage/TagsController.php b/app/Http/Controllers/Api/Manage/TagsController.php new file mode 100644 index 0000000..36a9fc3 --- /dev/null +++ b/app/Http/Controllers/Api/Manage/TagsController.php @@ -0,0 +1,39 @@ +orderByDesc('posts_count') + ->get(); + + return response()->json($tags); + } + + public function move(Request $request, string $from, string $to) + { + $posts = Post::withAnyTags($from)->get(); + + $posts->each(function ($item) use ($to) { + $item->attachTag($to); + }); + + return $this->delete($request, $from); + } + + public function delete(Request $request, string $tag) + { + $tag = Tag::findNamedOrCreate($tag); + $tag->delete(); + + return response()->json(); + } +} diff --git a/app/Http/Controllers/ManageController.php b/app/Http/Controllers/ManageController.php index 3a31f02..7a5d172 100644 --- a/app/Http/Controllers/ManageController.php +++ b/app/Http/Controllers/ManageController.php @@ -22,31 +22,6 @@ class ManageController extends Controller $this->middleware('auth'); } - public function tags() - { - $tags = Tag::withCount('posts') - ->orderByDesc('posts_count') - ->get(); - - return view('manage.tags')->with([ - 'page_title' => __('Tags'), - 'tags' => $tags, - ]); - } - - public function deleteTag(Request $request, string $tag, string $hash) - { - if ($hash != csrf_token()) { - abort(403); - } - - $tag = Tag::findNamedOrCreate($tag); - $tag->delete(); - - $this->flash(__('Tag :name has been deleted', ['name' => $tag->name]), 'success'); - return redirect()->back(); - } - public function importForm(Request $request) { return view('manage.import')->with([ @@ -138,4 +113,11 @@ class ManageController extends Controller 'page_title' => __('Logins'), ]); } + + public function tags() + { + return view('manage.tags')->with([ + 'page_title' => __('Tags'), + ]); + } } diff --git a/app/Observers/TagObserver.php b/app/Observers/TagObserver.php new file mode 100644 index 0000000..6a22856 --- /dev/null +++ b/app/Observers/TagObserver.php @@ -0,0 +1,16 @@ +where('tag_id', $tag->id) + ->delete(); + } +} diff --git a/app/Providers/EventServiceProvider.php b/app/Providers/EventServiceProvider.php index e4e3b08..88a6ff8 100644 --- a/app/Providers/EventServiceProvider.php +++ b/app/Providers/EventServiceProvider.php @@ -2,35 +2,21 @@ namespace App\Providers; -use App\Events\LinkArchiveRequested; -use App\Listeners\MakeLinkArchive; use Illuminate\Support\Facades\Event; -use Illuminate\Auth\Events\Registered; -use Illuminate\Auth\Listeners\SendEmailVerificationNotification; use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider; class EventServiceProvider extends ServiceProvider { - /** - * The event listener mappings for the application. - * - * @var array - */ protected $listen = [ - LinkArchiveRequested::class => [ - MakeLinkArchive::class + \App\Events\LinkArchiveRequested::class => [ + \App\Listeners\MakeLinkArchive::class ] ]; - /** - * Register any events for your application. - * - * @return void - */ public function boot() { parent::boot(); - // + \App\Tag::observe(\App\Observers\TagObserver::class); } } diff --git a/changelog.md b/changelog.md index 1c656cb..df5bed1 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,14 @@ # Unreleased +## Added + +- Move tagged posts to another tag +- Loader vue component + +## Changed + +- Refactored managing tags + ## Fixed - Missing translations (custom background images) diff --git a/public/js/app.js b/public/js/app.js index a338a76..a5864db 100644 --- a/public/js/app.js +++ b/public/js/app.js @@ -1 +1 @@ -!function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/",n(n.s=0)}({"+80P":function(e,t,n){"use strict";function r(e){return Array.prototype.slice.call(arguments,1).forEach(function(t){t&&Object.keys(t).forEach(function(n){e[n]=t[n]})}),e}function i(e){return Object.prototype.toString.call(e)}function o(e){return"[object Function]"===i(e)}function a(e){return e.replace(/[.?*+^$[\]\\(){}|-]/g,"\\$&")}var s={fuzzyLink:!0,fuzzyEmail:!0,fuzzyIP:!1};var l={"http:":{validate:function(e,t,n){var r=e.slice(t);return n.re.http||(n.re.http=new RegExp("^\\/\\/"+n.re.src_auth+n.re.src_host_port_strict+n.re.src_path,"i")),n.re.http.test(r)?r.match(n.re.http)[0].length:0}},"https:":"http:","ftp:":"http:","//":{validate:function(e,t,n){var r=e.slice(t);return n.re.no_http||(n.re.no_http=new RegExp("^"+n.re.src_auth+"(?:localhost|(?:(?:"+n.re.src_domain+")\\.)+"+n.re.src_domain_root+")"+n.re.src_port+n.re.src_host_terminator+n.re.src_path,"i")),n.re.no_http.test(r)?t>=3&&":"===e[t-3]?0:t>=3&&"/"===e[t-3]?0:r.match(n.re.no_http)[0].length:0}},"mailto:":{validate:function(e,t,n){var r=e.slice(t);return n.re.mailto||(n.re.mailto=new RegExp("^"+n.re.src_email_name+"@"+n.re.src_host_strict,"i")),n.re.mailto.test(r)?r.match(n.re.mailto)[0].length:0}}},u="a[cdefgilmnoqrstuwxz]|b[abdefghijmnorstvwyz]|c[acdfghiklmnoruvwxyz]|d[ejkmoz]|e[cegrstu]|f[ijkmor]|g[abdefghilmnpqrstuwy]|h[kmnrtu]|i[delmnoqrst]|j[emop]|k[eghimnprwyz]|l[abcikrstuvy]|m[acdeghklmnopqrstuvwxyz]|n[acefgilopruz]|om|p[aefghklmnrstwy]|qa|r[eosuw]|s[abcdeghijklmnortuvxyz]|t[cdfghjklmnortvwz]|u[agksyz]|v[aceginu]|w[fs]|y[et]|z[amw]",c="biz|com|edu|gov|net|org|pro|web|xxx|aero|asia|coop|info|museum|name|shop|ั€ั„".split("|");function f(e){var t=e.re=r({},n("sRdV")),s=e.__tlds__.slice();function l(e){return e.replace("%TLDS%",t.src_tlds)}e.__tlds_replaced__||s.push(u),s.push(t.src_xn),t.src_tlds=s.join("|"),t.email_fuzzy=RegExp(l(t.tpl_email_fuzzy),"i"),t.link_fuzzy=RegExp(l(t.tpl_link_fuzzy),"i"),t.link_no_ip_fuzzy=RegExp(l(t.tpl_link_no_ip_fuzzy),"i"),t.host_fuzzy_test=RegExp(l(t.tpl_host_fuzzy_test),"i");var c=[];function f(e,t){throw new Error('(LinkifyIt) Invalid schema "'+e+'": '+t)}e.__compiled__={},Object.keys(e.__schemas__).forEach(function(t){var n=e.__schemas__[t];if(null!==n){var r={validate:null,link:null};if(e.__compiled__[t]=r,"[object Object]"===i(n))return!function(e){return"[object RegExp]"===i(e)}(n.validate)?o(n.validate)?r.validate=n.validate:f(t,n):r.validate=function(e){return function(t,n){var r=t.slice(n);return e.test(r)?r.match(e)[0].length:0}}(n.validate),void(o(n.normalize)?r.normalize=n.normalize:n.normalize?f(t,n):r.normalize=function(e,t){t.normalize(e)});!function(e){return"[object String]"===i(e)}(n)?f(t,n):c.push(t)}}),c.forEach(function(t){e.__compiled__[e.__schemas__[t]]&&(e.__compiled__[t].validate=e.__compiled__[e.__schemas__[t]].validate,e.__compiled__[t].normalize=e.__compiled__[e.__schemas__[t]].normalize)}),e.__compiled__[""]={validate:null,normalize:function(e,t){t.normalize(e)}};var p=Object.keys(e.__compiled__).filter(function(t){return t.length>0&&e.__compiled__[t]}).map(a).join("|");e.re.schema_test=RegExp("(^|(?!_)(?:[><]|"+t.src_ZPCc+"))("+p+")","i"),e.re.schema_search=RegExp("(^|(?!_)(?:[><]|"+t.src_ZPCc+"))("+p+")","ig"),e.re.pretest=RegExp("("+e.re.schema_test.source+")|("+e.re.host_fuzzy_test.source+")|@","i"),function(e){e.__index__=-1,e.__text_cache__=""}(e)}function p(e,t){var n=e.__index__,r=e.__last_index__,i=e.__text_cache__.slice(n,r);this.schema=e.__schema__.toLowerCase(),this.index=n+t,this.lastIndex=r+t,this.raw=i,this.text=i,this.url=i}function h(e,t){var n=new p(e,t);return e.__compiled__[n.schema].normalize(n,e),n}function d(e,t){if(!(this instanceof d))return new d(e,t);var n;t||(n=e,Object.keys(n||{}).reduce(function(e,t){return e||s.hasOwnProperty(t)},!1)&&(t=e,e={})),this.__opts__=r({},s,t),this.__index__=-1,this.__last_index__=-1,this.__schema__="",this.__text_cache__="",this.__schemas__=r({},l,e),this.__compiled__={},this.__tlds__=c,this.__tlds_replaced__=!1,this.re={},f(this)}d.prototype.add=function(e,t){return this.__schemas__[e]=t,f(this),this},d.prototype.set=function(e){return this.__opts__=r(this.__opts__,e),this},d.prototype.test=function(e){if(this.__text_cache__=e,this.__index__=-1,!e.length)return!1;var t,n,r,i,o,a,s,l;if(this.re.schema_test.test(e))for((s=this.re.schema_search).lastIndex=0;null!==(t=s.exec(e));)if(i=this.testSchemaAt(e,t[2],s.lastIndex)){this.__schema__=t[2],this.__index__=t.index+t[1].length,this.__last_index__=t.index+t[0].length+i;break}return this.__opts__.fuzzyLink&&this.__compiled__["http:"]&&(l=e.search(this.re.host_fuzzy_test))>=0&&(this.__index__<0||l=0&&null!==(r=e.match(this.re.email_fuzzy))&&(o=r.index+r[1].length,a=r.index+r[0].length,(this.__index__<0||othis.__last_index__)&&(this.__schema__="mailto:",this.__index__=o,this.__last_index__=a)),this.__index__>=0},d.prototype.pretest=function(e){return this.re.pretest.test(e)},d.prototype.testSchemaAt=function(e,t,n){return this.__compiled__[t.toLowerCase()]?this.__compiled__[t.toLowerCase()].validate(e,n,this):0},d.prototype.match=function(e){var t=0,n=[];this.__index__>=0&&this.__text_cache__===e&&(n.push(h(this,t)),t=this.__last_index__);for(var r=t?e.slice(t):e;this.test(r);)n.push(h(this,t)),r=r.slice(this.__last_index__),t+=this.__last_index__;return n.length?n:null},d.prototype.tlds=function(e,t){return e=Array.isArray(e)?e:[e],t?(this.__tlds__=this.__tlds__.concat(e).sort().filter(function(e,t,n){return e!==n[t-1]}).reverse(),f(this),this):(this.__tlds__=e.slice(),this.__tlds_replaced__=!0,f(this),this)},d.prototype.normalize=function(e){e.schema||(e.url="http://"+e.url),"mailto:"!==e.schema||/^mailto:/i.test(e.url)||(e.url="mailto:"+e.url)},e.exports=d},"+fAT":function(e,t,n){var r={"./components/ChestForm.vue":"0O8z","./components/ChestLines.vue":"0TP3","./components/Confirm.vue":"cNyC","./components/Flash.vue":"tEIc","./components/LinkForm.vue":"ugYh","./components/Search.vue":"JX/T","./components/Sharer.vue":"zV0C","./components/StoryForm.vue":"5lKZ","./components/Tags.vue":"4dkW"};function i(e){var t=o(e);return n(t)}function o(e){if(!n.o(r,e)){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return r[e]}i.keys=function(){return Object.keys(r)},i.resolve=o,e.exports=i,i.id="+fAT"},"+jil":function(e){e.exports=JSON.parse('{"100":"๐Ÿ’ฏ","1234":"๐Ÿ”ข","grinning":"๐Ÿ˜€","smiley":"๐Ÿ˜ƒ","smile":"๐Ÿ˜„","grin":"๐Ÿ˜","laughing":"๐Ÿ˜†","satisfied":"๐Ÿ˜†","sweat_smile":"๐Ÿ˜…","joy":"๐Ÿ˜‚","rofl":"๐Ÿคฃ","relaxed":"โ˜บ๏ธ","blush":"๐Ÿ˜Š","innocent":"๐Ÿ˜‡","slightly_smiling_face":"๐Ÿ™‚","upside_down_face":"๐Ÿ™ƒ","wink":"๐Ÿ˜‰","relieved":"๐Ÿ˜Œ","heart_eyes":"๐Ÿ˜","kissing_heart":"๐Ÿ˜˜","kissing":"๐Ÿ˜—","kissing_smiling_eyes":"๐Ÿ˜™","kissing_closed_eyes":"๐Ÿ˜š","yum":"๐Ÿ˜‹","stuck_out_tongue_winking_eye":"๐Ÿ˜œ","stuck_out_tongue_closed_eyes":"๐Ÿ˜","stuck_out_tongue":"๐Ÿ˜›","money_mouth_face":"๐Ÿค‘","hugs":"๐Ÿค—","nerd_face":"๐Ÿค“","sunglasses":"๐Ÿ˜Ž","clown_face":"๐Ÿคก","cowboy_hat_face":"๐Ÿค ","smirk":"๐Ÿ˜","unamused":"๐Ÿ˜’","disappointed":"๐Ÿ˜ž","pensive":"๐Ÿ˜”","worried":"๐Ÿ˜Ÿ","confused":"๐Ÿ˜•","slightly_frowning_face":"๐Ÿ™","frowning_face":"โ˜น๏ธ","persevere":"๐Ÿ˜ฃ","confounded":"๐Ÿ˜–","tired_face":"๐Ÿ˜ซ","weary":"๐Ÿ˜ฉ","triumph":"๐Ÿ˜ค","angry":"๐Ÿ˜ ","rage":"๐Ÿ˜ก","pout":"๐Ÿ˜ก","no_mouth":"๐Ÿ˜ถ","neutral_face":"๐Ÿ˜","expressionless":"๐Ÿ˜‘","hushed":"๐Ÿ˜ฏ","frowning":"๐Ÿ˜ฆ","anguished":"๐Ÿ˜ง","open_mouth":"๐Ÿ˜ฎ","astonished":"๐Ÿ˜ฒ","dizzy_face":"๐Ÿ˜ต","flushed":"๐Ÿ˜ณ","scream":"๐Ÿ˜ฑ","fearful":"๐Ÿ˜จ","cold_sweat":"๐Ÿ˜ฐ","cry":"๐Ÿ˜ข","disappointed_relieved":"๐Ÿ˜ฅ","drooling_face":"๐Ÿคค","sob":"๐Ÿ˜ญ","sweat":"๐Ÿ˜“","sleepy":"๐Ÿ˜ช","sleeping":"๐Ÿ˜ด","roll_eyes":"๐Ÿ™„","thinking":"๐Ÿค”","lying_face":"๐Ÿคฅ","grimacing":"๐Ÿ˜ฌ","zipper_mouth_face":"๐Ÿค","nauseated_face":"๐Ÿคข","sneezing_face":"๐Ÿคง","mask":"๐Ÿ˜ท","face_with_thermometer":"๐Ÿค’","face_with_head_bandage":"๐Ÿค•","smiling_imp":"๐Ÿ˜ˆ","imp":"๐Ÿ‘ฟ","japanese_ogre":"๐Ÿ‘น","japanese_goblin":"๐Ÿ‘บ","hankey":"๐Ÿ’ฉ","poop":"๐Ÿ’ฉ","shit":"๐Ÿ’ฉ","ghost":"๐Ÿ‘ป","skull":"๐Ÿ’€","skull_and_crossbones":"โ˜ ๏ธ","alien":"๐Ÿ‘ฝ","space_invader":"๐Ÿ‘พ","robot":"๐Ÿค–","jack_o_lantern":"๐ŸŽƒ","smiley_cat":"๐Ÿ˜บ","smile_cat":"๐Ÿ˜ธ","joy_cat":"๐Ÿ˜น","heart_eyes_cat":"๐Ÿ˜ป","smirk_cat":"๐Ÿ˜ผ","kissing_cat":"๐Ÿ˜ฝ","scream_cat":"๐Ÿ™€","crying_cat_face":"๐Ÿ˜ฟ","pouting_cat":"๐Ÿ˜พ","open_hands":"๐Ÿ‘","raised_hands":"๐Ÿ™Œ","clap":"๐Ÿ‘","pray":"๐Ÿ™","handshake":"๐Ÿค","+1":"๐Ÿ‘","thumbsup":"๐Ÿ‘","-1":"๐Ÿ‘Ž","thumbsdown":"๐Ÿ‘Ž","fist_oncoming":"๐Ÿ‘Š","facepunch":"๐Ÿ‘Š","punch":"๐Ÿ‘Š","fist_raised":"โœŠ","fist":"โœŠ","fist_left":"๐Ÿค›","fist_right":"๐Ÿคœ","crossed_fingers":"๐Ÿคž","v":"โœŒ๏ธ","metal":"๐Ÿค˜","ok_hand":"๐Ÿ‘Œ","point_left":"๐Ÿ‘ˆ","point_right":"๐Ÿ‘‰","point_up_2":"๐Ÿ‘†","point_down":"๐Ÿ‘‡","point_up":"โ˜๏ธ","hand":"โœ‹","raised_hand":"โœ‹","raised_back_of_hand":"๐Ÿคš","raised_hand_with_fingers_splayed":"๐Ÿ–","vulcan_salute":"๐Ÿ––","wave":"๐Ÿ‘‹","call_me_hand":"๐Ÿค™","muscle":"๐Ÿ’ช","middle_finger":"๐Ÿ–•","fu":"๐Ÿ–•","writing_hand":"โœ๏ธ","selfie":"๐Ÿคณ","nail_care":"๐Ÿ’…","ring":"๐Ÿ’","lipstick":"๐Ÿ’„","kiss":"๐Ÿ’‹","lips":"๐Ÿ‘„","tongue":"๐Ÿ‘…","ear":"๐Ÿ‘‚","nose":"๐Ÿ‘ƒ","footprints":"๐Ÿ‘ฃ","eye":"๐Ÿ‘","eyes":"๐Ÿ‘€","speaking_head":"๐Ÿ—ฃ","bust_in_silhouette":"๐Ÿ‘ค","busts_in_silhouette":"๐Ÿ‘ฅ","baby":"๐Ÿ‘ถ","boy":"๐Ÿ‘ฆ","girl":"๐Ÿ‘ง","man":"๐Ÿ‘จ","woman":"๐Ÿ‘ฉ","blonde_woman":"๐Ÿ‘ฑโ€โ™€","blonde_man":"๐Ÿ‘ฑ","person_with_blond_hair":"๐Ÿ‘ฑ","older_man":"๐Ÿ‘ด","older_woman":"๐Ÿ‘ต","man_with_gua_pi_mao":"๐Ÿ‘ฒ","woman_with_turban":"๐Ÿ‘ณโ€โ™€","man_with_turban":"๐Ÿ‘ณ","policewoman":"๐Ÿ‘ฎโ€โ™€","policeman":"๐Ÿ‘ฎ","cop":"๐Ÿ‘ฎ","construction_worker_woman":"๐Ÿ‘ทโ€โ™€","construction_worker_man":"๐Ÿ‘ท","construction_worker":"๐Ÿ‘ท","guardswoman":"๐Ÿ’‚โ€โ™€","guardsman":"๐Ÿ’‚","female_detective":"๐Ÿ•ต๏ธโ€โ™€๏ธ","male_detective":"๐Ÿ•ต","detective":"๐Ÿ•ต","woman_health_worker":"๐Ÿ‘ฉโ€โš•","man_health_worker":"๐Ÿ‘จโ€โš•","woman_farmer":"๐Ÿ‘ฉโ€๐ŸŒพ","man_farmer":"๐Ÿ‘จโ€๐ŸŒพ","woman_cook":"๐Ÿ‘ฉโ€๐Ÿณ","man_cook":"๐Ÿ‘จโ€๐Ÿณ","woman_student":"๐Ÿ‘ฉโ€๐ŸŽ“","man_student":"๐Ÿ‘จโ€๐ŸŽ“","woman_singer":"๐Ÿ‘ฉโ€๐ŸŽค","man_singer":"๐Ÿ‘จโ€๐ŸŽค","woman_teacher":"๐Ÿ‘ฉโ€๐Ÿซ","man_teacher":"๐Ÿ‘จโ€๐Ÿซ","woman_factory_worker":"๐Ÿ‘ฉโ€๐Ÿญ","man_factory_worker":"๐Ÿ‘จโ€๐Ÿญ","woman_technologist":"๐Ÿ‘ฉโ€๐Ÿ’ป","man_technologist":"๐Ÿ‘จโ€๐Ÿ’ป","woman_office_worker":"๐Ÿ‘ฉโ€๐Ÿ’ผ","man_office_worker":"๐Ÿ‘จโ€๐Ÿ’ผ","woman_mechanic":"๐Ÿ‘ฉโ€๐Ÿ”ง","man_mechanic":"๐Ÿ‘จโ€๐Ÿ”ง","woman_scientist":"๐Ÿ‘ฉโ€๐Ÿ”ฌ","man_scientist":"๐Ÿ‘จโ€๐Ÿ”ฌ","woman_artist":"๐Ÿ‘ฉโ€๐ŸŽจ","man_artist":"๐Ÿ‘จโ€๐ŸŽจ","woman_firefighter":"๐Ÿ‘ฉโ€๐Ÿš’","man_firefighter":"๐Ÿ‘จโ€๐Ÿš’","woman_pilot":"๐Ÿ‘ฉโ€โœˆ","man_pilot":"๐Ÿ‘จโ€โœˆ","woman_astronaut":"๐Ÿ‘ฉโ€๐Ÿš€","man_astronaut":"๐Ÿ‘จโ€๐Ÿš€","woman_judge":"๐Ÿ‘ฉโ€โš–","man_judge":"๐Ÿ‘จโ€โš–","mrs_claus":"๐Ÿคถ","santa":"๐ŸŽ…","princess":"๐Ÿ‘ธ","prince":"๐Ÿคด","bride_with_veil":"๐Ÿ‘ฐ","man_in_tuxedo":"๐Ÿคต","angel":"๐Ÿ‘ผ","pregnant_woman":"๐Ÿคฐ","bowing_woman":"๐Ÿ™‡โ€โ™€","bowing_man":"๐Ÿ™‡","bow":"๐Ÿ™‡","tipping_hand_woman":"๐Ÿ’","information_desk_person":"๐Ÿ’","sassy_woman":"๐Ÿ’","tipping_hand_man":"๐Ÿ’โ€โ™‚","sassy_man":"๐Ÿ’โ€โ™‚","no_good_woman":"๐Ÿ™…","no_good":"๐Ÿ™…","ng_woman":"๐Ÿ™…","no_good_man":"๐Ÿ™…โ€โ™‚","ng_man":"๐Ÿ™…โ€โ™‚","ok_woman":"๐Ÿ™†","ok_man":"๐Ÿ™†โ€โ™‚","raising_hand_woman":"๐Ÿ™‹","raising_hand":"๐Ÿ™‹","raising_hand_man":"๐Ÿ™‹โ€โ™‚","woman_facepalming":"๐Ÿคฆโ€โ™€","man_facepalming":"๐Ÿคฆโ€โ™‚","woman_shrugging":"๐Ÿคทโ€โ™€","man_shrugging":"๐Ÿคทโ€โ™‚","pouting_woman":"๐Ÿ™Ž","person_with_pouting_face":"๐Ÿ™Ž","pouting_man":"๐Ÿ™Žโ€โ™‚","frowning_woman":"๐Ÿ™","person_frowning":"๐Ÿ™","frowning_man":"๐Ÿ™โ€โ™‚","haircut_woman":"๐Ÿ’‡","haircut":"๐Ÿ’‡","haircut_man":"๐Ÿ’‡โ€โ™‚","massage_woman":"๐Ÿ’†","massage":"๐Ÿ’†","massage_man":"๐Ÿ’†โ€โ™‚","business_suit_levitating":"๐Ÿ•ด","dancer":"๐Ÿ’ƒ","man_dancing":"๐Ÿ•บ","dancing_women":"๐Ÿ‘ฏ","dancers":"๐Ÿ‘ฏ","dancing_men":"๐Ÿ‘ฏโ€โ™‚","walking_woman":"๐Ÿšถโ€โ™€","walking_man":"๐Ÿšถ","walking":"๐Ÿšถ","running_woman":"๐Ÿƒโ€โ™€","running_man":"๐Ÿƒ","runner":"๐Ÿƒ","running":"๐Ÿƒ","couple":"๐Ÿ‘ซ","two_women_holding_hands":"๐Ÿ‘ญ","two_men_holding_hands":"๐Ÿ‘ฌ","couple_with_heart_woman_man":"๐Ÿ’‘","couple_with_heart":"๐Ÿ’‘","couple_with_heart_woman_woman":"๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘ฉ","couple_with_heart_man_man":"๐Ÿ‘จโ€โค๏ธโ€๐Ÿ‘จ","couplekiss_man_woman":"๐Ÿ’","couplekiss_woman_woman":"๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ","couplekiss_man_man":"๐Ÿ‘จโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ","family_man_woman_boy":"๐Ÿ‘ช","family":"๐Ÿ‘ช","family_man_woman_girl":"๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ง","family_man_woman_girl_boy":"๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ","family_man_woman_boy_boy":"๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ","family_man_woman_girl_girl":"๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง","family_woman_woman_boy":"๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ","family_woman_woman_girl":"๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ง","family_woman_woman_girl_boy":"๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ","family_woman_woman_boy_boy":"๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ","family_woman_woman_girl_girl":"๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง","family_man_man_boy":"๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆ","family_man_man_girl":"๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ง","family_man_man_girl_boy":"๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ","family_man_man_boy_boy":"๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ","family_man_man_girl_girl":"๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง","family_woman_boy":"๐Ÿ‘ฉโ€๐Ÿ‘ฆ","family_woman_girl":"๐Ÿ‘ฉโ€๐Ÿ‘ง","family_woman_girl_boy":"๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ","family_woman_boy_boy":"๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ","family_woman_girl_girl":"๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง","family_man_boy":"๐Ÿ‘จโ€๐Ÿ‘ฆ","family_man_girl":"๐Ÿ‘จโ€๐Ÿ‘ง","family_man_girl_boy":"๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ","family_man_boy_boy":"๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ","family_man_girl_girl":"๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง","womans_clothes":"๐Ÿ‘š","shirt":"๐Ÿ‘•","tshirt":"๐Ÿ‘•","jeans":"๐Ÿ‘–","necktie":"๐Ÿ‘”","dress":"๐Ÿ‘—","bikini":"๐Ÿ‘™","kimono":"๐Ÿ‘˜","high_heel":"๐Ÿ‘ ","sandal":"๐Ÿ‘ก","boot":"๐Ÿ‘ข","mans_shoe":"๐Ÿ‘ž","shoe":"๐Ÿ‘ž","athletic_shoe":"๐Ÿ‘Ÿ","womans_hat":"๐Ÿ‘’","tophat":"๐ŸŽฉ","mortar_board":"๐ŸŽ“","crown":"๐Ÿ‘‘","rescue_worker_helmet":"โ›‘","school_satchel":"๐ŸŽ’","pouch":"๐Ÿ‘","purse":"๐Ÿ‘›","handbag":"๐Ÿ‘œ","briefcase":"๐Ÿ’ผ","eyeglasses":"๐Ÿ‘“","dark_sunglasses":"๐Ÿ•ถ","closed_umbrella":"๐ŸŒ‚","open_umbrella":"โ˜‚๏ธ","dog":"๐Ÿถ","cat":"๐Ÿฑ","mouse":"๐Ÿญ","hamster":"๐Ÿน","rabbit":"๐Ÿฐ","fox_face":"๐ŸฆŠ","bear":"๐Ÿป","panda_face":"๐Ÿผ","koala":"๐Ÿจ","tiger":"๐Ÿฏ","lion":"๐Ÿฆ","cow":"๐Ÿฎ","pig":"๐Ÿท","pig_nose":"๐Ÿฝ","frog":"๐Ÿธ","monkey_face":"๐Ÿต","see_no_evil":"๐Ÿ™ˆ","hear_no_evil":"๐Ÿ™‰","speak_no_evil":"๐Ÿ™Š","monkey":"๐Ÿ’","chicken":"๐Ÿ”","penguin":"๐Ÿง","bird":"๐Ÿฆ","baby_chick":"๐Ÿค","hatching_chick":"๐Ÿฃ","hatched_chick":"๐Ÿฅ","duck":"๐Ÿฆ†","eagle":"๐Ÿฆ…","owl":"๐Ÿฆ‰","bat":"๐Ÿฆ‡","wolf":"๐Ÿบ","boar":"๐Ÿ—","horse":"๐Ÿด","unicorn":"๐Ÿฆ„","bee":"๐Ÿ","honeybee":"๐Ÿ","bug":"๐Ÿ›","butterfly":"๐Ÿฆ‹","snail":"๐ŸŒ","shell":"๐Ÿš","beetle":"๐Ÿž","ant":"๐Ÿœ","spider":"๐Ÿ•ท","spider_web":"๐Ÿ•ธ","turtle":"๐Ÿข","snake":"๐Ÿ","lizard":"๐ŸฆŽ","scorpion":"๐Ÿฆ‚","crab":"๐Ÿฆ€","squid":"๐Ÿฆ‘","octopus":"๐Ÿ™","shrimp":"๐Ÿฆ","tropical_fish":"๐Ÿ ","fish":"๐ŸŸ","blowfish":"๐Ÿก","dolphin":"๐Ÿฌ","flipper":"๐Ÿฌ","shark":"๐Ÿฆˆ","whale":"๐Ÿณ","whale2":"๐Ÿ‹","crocodile":"๐ŸŠ","leopard":"๐Ÿ†","tiger2":"๐Ÿ…","water_buffalo":"๐Ÿƒ","ox":"๐Ÿ‚","cow2":"๐Ÿ„","deer":"๐ŸฆŒ","dromedary_camel":"๐Ÿช","camel":"๐Ÿซ","elephant":"๐Ÿ˜","rhinoceros":"๐Ÿฆ","gorilla":"๐Ÿฆ","racehorse":"๐ŸŽ","pig2":"๐Ÿ–","goat":"๐Ÿ","ram":"๐Ÿ","sheep":"๐Ÿ‘","dog2":"๐Ÿ•","poodle":"๐Ÿฉ","cat2":"๐Ÿˆ","rooster":"๐Ÿ“","turkey":"๐Ÿฆƒ","dove":"๐Ÿ•Š","rabbit2":"๐Ÿ‡","mouse2":"๐Ÿ","rat":"๐Ÿ€","chipmunk":"๐Ÿฟ","feet":"๐Ÿพ","paw_prints":"๐Ÿพ","dragon":"๐Ÿ‰","dragon_face":"๐Ÿฒ","cactus":"๐ŸŒต","christmas_tree":"๐ŸŽ„","evergreen_tree":"๐ŸŒฒ","deciduous_tree":"๐ŸŒณ","palm_tree":"๐ŸŒด","seedling":"๐ŸŒฑ","herb":"๐ŸŒฟ","shamrock":"โ˜˜๏ธ","four_leaf_clover":"๐Ÿ€","bamboo":"๐ŸŽ","tanabata_tree":"๐ŸŽ‹","leaves":"๐Ÿƒ","fallen_leaf":"๐Ÿ‚","maple_leaf":"๐Ÿ","mushroom":"๐Ÿ„","ear_of_rice":"๐ŸŒพ","bouquet":"๐Ÿ’","tulip":"๐ŸŒท","rose":"๐ŸŒน","wilted_flower":"๐Ÿฅ€","sunflower":"๐ŸŒป","blossom":"๐ŸŒผ","cherry_blossom":"๐ŸŒธ","hibiscus":"๐ŸŒบ","earth_americas":"๐ŸŒŽ","earth_africa":"๐ŸŒ","earth_asia":"๐ŸŒ","full_moon":"๐ŸŒ•","waning_gibbous_moon":"๐ŸŒ–","last_quarter_moon":"๐ŸŒ—","waning_crescent_moon":"๐ŸŒ˜","new_moon":"๐ŸŒ‘","waxing_crescent_moon":"๐ŸŒ’","first_quarter_moon":"๐ŸŒ“","moon":"๐ŸŒ”","waxing_gibbous_moon":"๐ŸŒ”","new_moon_with_face":"๐ŸŒš","full_moon_with_face":"๐ŸŒ","sun_with_face":"๐ŸŒž","first_quarter_moon_with_face":"๐ŸŒ›","last_quarter_moon_with_face":"๐ŸŒœ","crescent_moon":"๐ŸŒ™","dizzy":"๐Ÿ’ซ","star":"โญ๏ธ","star2":"๐ŸŒŸ","sparkles":"โœจ","zap":"โšก๏ธ","fire":"๐Ÿ”ฅ","boom":"๐Ÿ’ฅ","collision":"๐Ÿ’ฅ","comet":"โ˜„","sunny":"โ˜€๏ธ","sun_behind_small_cloud":"๐ŸŒค","partly_sunny":"โ›…๏ธ","sun_behind_large_cloud":"๐ŸŒฅ","sun_behind_rain_cloud":"๐ŸŒฆ","rainbow":"๐ŸŒˆ","cloud":"โ˜๏ธ","cloud_with_rain":"๐ŸŒง","cloud_with_lightning_and_rain":"โ›ˆ","cloud_with_lightning":"๐ŸŒฉ","cloud_with_snow":"๐ŸŒจ","snowman_with_snow":"โ˜ƒ๏ธ","snowman":"โ›„๏ธ","snowflake":"โ„๏ธ","wind_face":"๐ŸŒฌ","dash":"๐Ÿ’จ","tornado":"๐ŸŒช","fog":"๐ŸŒซ","ocean":"๐ŸŒŠ","droplet":"๐Ÿ’ง","sweat_drops":"๐Ÿ’ฆ","umbrella":"โ˜”๏ธ","green_apple":"๐Ÿ","apple":"๐ŸŽ","pear":"๐Ÿ","tangerine":"๐ŸŠ","orange":"๐ŸŠ","mandarin":"๐ŸŠ","lemon":"๐Ÿ‹","banana":"๐ŸŒ","watermelon":"๐Ÿ‰","grapes":"๐Ÿ‡","strawberry":"๐Ÿ“","melon":"๐Ÿˆ","cherries":"๐Ÿ’","peach":"๐Ÿ‘","pineapple":"๐Ÿ","kiwi_fruit":"๐Ÿฅ","avocado":"๐Ÿฅ‘","tomato":"๐Ÿ…","eggplant":"๐Ÿ†","cucumber":"๐Ÿฅ’","carrot":"๐Ÿฅ•","corn":"๐ŸŒฝ","hot_pepper":"๐ŸŒถ","potato":"๐Ÿฅ”","sweet_potato":"๐Ÿ ","chestnut":"๐ŸŒฐ","peanuts":"๐Ÿฅœ","honey_pot":"๐Ÿฏ","croissant":"๐Ÿฅ","bread":"๐Ÿž","baguette_bread":"๐Ÿฅ–","cheese":"๐Ÿง€","egg":"๐Ÿฅš","fried_egg":"๐Ÿณ","bacon":"๐Ÿฅ“","pancakes":"๐Ÿฅž","fried_shrimp":"๐Ÿค","poultry_leg":"๐Ÿ—","meat_on_bone":"๐Ÿ–","pizza":"๐Ÿ•","hotdog":"๐ŸŒญ","hamburger":"๐Ÿ”","fries":"๐ŸŸ","stuffed_flatbread":"๐Ÿฅ™","taco":"๐ŸŒฎ","burrito":"๐ŸŒฏ","green_salad":"๐Ÿฅ—","shallow_pan_of_food":"๐Ÿฅ˜","spaghetti":"๐Ÿ","ramen":"๐Ÿœ","stew":"๐Ÿฒ","fish_cake":"๐Ÿฅ","sushi":"๐Ÿฃ","bento":"๐Ÿฑ","curry":"๐Ÿ›","rice":"๐Ÿš","rice_ball":"๐Ÿ™","rice_cracker":"๐Ÿ˜","oden":"๐Ÿข","dango":"๐Ÿก","shaved_ice":"๐Ÿง","ice_cream":"๐Ÿจ","icecream":"๐Ÿฆ","cake":"๐Ÿฐ","birthday":"๐ŸŽ‚","custard":"๐Ÿฎ","lollipop":"๐Ÿญ","candy":"๐Ÿฌ","chocolate_bar":"๐Ÿซ","popcorn":"๐Ÿฟ","doughnut":"๐Ÿฉ","cookie":"๐Ÿช","milk_glass":"๐Ÿฅ›","baby_bottle":"๐Ÿผ","coffee":"โ˜•๏ธ","tea":"๐Ÿต","sake":"๐Ÿถ","beer":"๐Ÿบ","beers":"๐Ÿป","clinking_glasses":"๐Ÿฅ‚","wine_glass":"๐Ÿท","tumbler_glass":"๐Ÿฅƒ","cocktail":"๐Ÿธ","tropical_drink":"๐Ÿน","champagne":"๐Ÿพ","spoon":"๐Ÿฅ„","fork_and_knife":"๐Ÿด","plate_with_cutlery":"๐Ÿฝ","soccer":"โšฝ๏ธ","basketball":"๐Ÿ€","football":"๐Ÿˆ","baseball":"โšพ๏ธ","tennis":"๐ŸŽพ","volleyball":"๐Ÿ","rugby_football":"๐Ÿ‰","8ball":"๐ŸŽฑ","ping_pong":"๐Ÿ“","badminton":"๐Ÿธ","goal_net":"๐Ÿฅ…","ice_hockey":"๐Ÿ’","field_hockey":"๐Ÿ‘","cricket":"๐Ÿ","golf":"โ›ณ๏ธ","bow_and_arrow":"๐Ÿน","fishing_pole_and_fish":"๐ŸŽฃ","boxing_glove":"๐ŸฅŠ","martial_arts_uniform":"๐Ÿฅ‹","ice_skate":"โ›ธ","ski":"๐ŸŽฟ","skier":"โ›ท","snowboarder":"๐Ÿ‚","weight_lifting_woman":"๐Ÿ‹๏ธโ€โ™€๏ธ","weight_lifting_man":"๐Ÿ‹","person_fencing":"๐Ÿคบ","women_wrestling":"๐Ÿคผโ€โ™€","men_wrestling":"๐Ÿคผโ€โ™‚","woman_cartwheeling":"๐Ÿคธโ€โ™€","man_cartwheeling":"๐Ÿคธโ€โ™‚","basketball_woman":"โ›น๏ธโ€โ™€๏ธ","basketball_man":"โ›น","woman_playing_handball":"๐Ÿคพโ€โ™€","man_playing_handball":"๐Ÿคพโ€โ™‚","golfing_woman":"๐ŸŒ๏ธโ€โ™€๏ธ","golfing_man":"๐ŸŒ","surfing_woman":"๐Ÿ„โ€โ™€","surfing_man":"๐Ÿ„","surfer":"๐Ÿ„","swimming_woman":"๐ŸŠโ€โ™€","swimming_man":"๐ŸŠ","swimmer":"๐ŸŠ","woman_playing_water_polo":"๐Ÿคฝโ€โ™€","man_playing_water_polo":"๐Ÿคฝโ€โ™‚","rowing_woman":"๐Ÿšฃโ€โ™€","rowing_man":"๐Ÿšฃ","rowboat":"๐Ÿšฃ","horse_racing":"๐Ÿ‡","biking_woman":"๐Ÿšดโ€โ™€","biking_man":"๐Ÿšด","bicyclist":"๐Ÿšด","mountain_biking_woman":"๐Ÿšตโ€โ™€","mountain_biking_man":"๐Ÿšต","mountain_bicyclist":"๐Ÿšต","running_shirt_with_sash":"๐ŸŽฝ","medal_sports":"๐Ÿ…","medal_military":"๐ŸŽ–","1st_place_medal":"๐Ÿฅ‡","2nd_place_medal":"๐Ÿฅˆ","3rd_place_medal":"๐Ÿฅ‰","trophy":"๐Ÿ†","rosette":"๐Ÿต","reminder_ribbon":"๐ŸŽ—","ticket":"๐ŸŽซ","tickets":"๐ŸŽŸ","circus_tent":"๐ŸŽช","woman_juggling":"๐Ÿคนโ€โ™€","man_juggling":"๐Ÿคนโ€โ™‚","performing_arts":"๐ŸŽญ","art":"๐ŸŽจ","clapper":"๐ŸŽฌ","microphone":"๐ŸŽค","headphones":"๐ŸŽง","musical_score":"๐ŸŽผ","musical_keyboard":"๐ŸŽน","drum":"๐Ÿฅ","saxophone":"๐ŸŽท","trumpet":"๐ŸŽบ","guitar":"๐ŸŽธ","violin":"๐ŸŽป","game_die":"๐ŸŽฒ","dart":"๐ŸŽฏ","bowling":"๐ŸŽณ","video_game":"๐ŸŽฎ","slot_machine":"๐ŸŽฐ","car":"๐Ÿš—","red_car":"๐Ÿš—","taxi":"๐Ÿš•","blue_car":"๐Ÿš™","bus":"๐ŸšŒ","trolleybus":"๐ŸšŽ","racing_car":"๐ŸŽ","police_car":"๐Ÿš“","ambulance":"๐Ÿš‘","fire_engine":"๐Ÿš’","minibus":"๐Ÿš","truck":"๐Ÿšš","articulated_lorry":"๐Ÿš›","tractor":"๐Ÿšœ","kick_scooter":"๐Ÿ›ด","bike":"๐Ÿšฒ","motor_scooter":"๐Ÿ›ต","motorcycle":"๐Ÿ","rotating_light":"๐Ÿšจ","oncoming_police_car":"๐Ÿš”","oncoming_bus":"๐Ÿš","oncoming_automobile":"๐Ÿš˜","oncoming_taxi":"๐Ÿš–","aerial_tramway":"๐Ÿšก","mountain_cableway":"๐Ÿš ","suspension_railway":"๐ŸšŸ","railway_car":"๐Ÿšƒ","train":"๐Ÿš‹","mountain_railway":"๐Ÿšž","monorail":"๐Ÿš","bullettrain_side":"๐Ÿš„","bullettrain_front":"๐Ÿš…","light_rail":"๐Ÿšˆ","steam_locomotive":"๐Ÿš‚","train2":"๐Ÿš†","metro":"๐Ÿš‡","tram":"๐ŸšŠ","station":"๐Ÿš‰","helicopter":"๐Ÿš","small_airplane":"๐Ÿ›ฉ","airplane":"โœˆ๏ธ","flight_departure":"๐Ÿ›ซ","flight_arrival":"๐Ÿ›ฌ","rocket":"๐Ÿš€","artificial_satellite":"๐Ÿ›ฐ","seat":"๐Ÿ’บ","canoe":"๐Ÿ›ถ","boat":"โ›ต๏ธ","sailboat":"โ›ต๏ธ","motor_boat":"๐Ÿ›ฅ","speedboat":"๐Ÿšค","passenger_ship":"๐Ÿ›ณ","ferry":"โ›ด","ship":"๐Ÿšข","anchor":"โš“๏ธ","construction":"๐Ÿšง","fuelpump":"โ›ฝ๏ธ","busstop":"๐Ÿš","vertical_traffic_light":"๐Ÿšฆ","traffic_light":"๐Ÿšฅ","world_map":"๐Ÿ—บ","moyai":"๐Ÿ—ฟ","statue_of_liberty":"๐Ÿ—ฝ","fountain":"โ›ฒ๏ธ","tokyo_tower":"๐Ÿ—ผ","european_castle":"๐Ÿฐ","japanese_castle":"๐Ÿฏ","stadium":"๐ŸŸ","ferris_wheel":"๐ŸŽก","roller_coaster":"๐ŸŽข","carousel_horse":"๐ŸŽ ","parasol_on_ground":"โ›ฑ","beach_umbrella":"๐Ÿ–","desert_island":"๐Ÿ","mountain":"โ›ฐ","mountain_snow":"๐Ÿ”","mount_fuji":"๐Ÿ—ป","volcano":"๐ŸŒ‹","desert":"๐Ÿœ","camping":"๐Ÿ•","tent":"โ›บ๏ธ","railway_track":"๐Ÿ›ค","motorway":"๐Ÿ›ฃ","building_construction":"๐Ÿ—","factory":"๐Ÿญ","house":"๐Ÿ ","house_with_garden":"๐Ÿก","houses":"๐Ÿ˜","derelict_house":"๐Ÿš","office":"๐Ÿข","department_store":"๐Ÿฌ","post_office":"๐Ÿฃ","european_post_office":"๐Ÿค","hospital":"๐Ÿฅ","bank":"๐Ÿฆ","hotel":"๐Ÿจ","convenience_store":"๐Ÿช","school":"๐Ÿซ","love_hotel":"๐Ÿฉ","wedding":"๐Ÿ’’","classical_building":"๐Ÿ›","church":"โ›ช๏ธ","mosque":"๐Ÿ•Œ","synagogue":"๐Ÿ•","kaaba":"๐Ÿ•‹","shinto_shrine":"โ›ฉ","japan":"๐Ÿ—พ","rice_scene":"๐ŸŽ‘","national_park":"๐Ÿž","sunrise":"๐ŸŒ…","sunrise_over_mountains":"๐ŸŒ„","stars":"๐ŸŒ ","sparkler":"๐ŸŽ‡","fireworks":"๐ŸŽ†","city_sunrise":"๐ŸŒ‡","city_sunset":"๐ŸŒ†","cityscape":"๐Ÿ™","night_with_stars":"๐ŸŒƒ","milky_way":"๐ŸŒŒ","bridge_at_night":"๐ŸŒ‰","foggy":"๐ŸŒ","watch":"โŒš๏ธ","iphone":"๐Ÿ“ฑ","calling":"๐Ÿ“ฒ","computer":"๐Ÿ’ป","keyboard":"โŒจ๏ธ","desktop_computer":"๐Ÿ–ฅ","printer":"๐Ÿ–จ","computer_mouse":"๐Ÿ–ฑ","trackball":"๐Ÿ–ฒ","joystick":"๐Ÿ•น","clamp":"๐Ÿ—œ","minidisc":"๐Ÿ’ฝ","floppy_disk":"๐Ÿ’พ","cd":"๐Ÿ’ฟ","dvd":"๐Ÿ“€","vhs":"๐Ÿ“ผ","camera":"๐Ÿ“ท","camera_flash":"๐Ÿ“ธ","video_camera":"๐Ÿ“น","movie_camera":"๐ŸŽฅ","film_projector":"๐Ÿ“ฝ","film_strip":"๐ŸŽž","telephone_receiver":"๐Ÿ“ž","phone":"โ˜Ž๏ธ","telephone":"โ˜Ž๏ธ","pager":"๐Ÿ“Ÿ","fax":"๐Ÿ“ ","tv":"๐Ÿ“บ","radio":"๐Ÿ“ป","studio_microphone":"๐ŸŽ™","level_slider":"๐ŸŽš","control_knobs":"๐ŸŽ›","stopwatch":"โฑ","timer_clock":"โฒ","alarm_clock":"โฐ","mantelpiece_clock":"๐Ÿ•ฐ","hourglass":"โŒ›๏ธ","hourglass_flowing_sand":"โณ","satellite":"๐Ÿ“ก","battery":"๐Ÿ”‹","electric_plug":"๐Ÿ”Œ","bulb":"๐Ÿ’ก","flashlight":"๐Ÿ”ฆ","candle":"๐Ÿ•ฏ","wastebasket":"๐Ÿ—‘","oil_drum":"๐Ÿ›ข","money_with_wings":"๐Ÿ’ธ","dollar":"๐Ÿ’ต","yen":"๐Ÿ’ด","euro":"๐Ÿ’ถ","pound":"๐Ÿ’ท","moneybag":"๐Ÿ’ฐ","credit_card":"๐Ÿ’ณ","gem":"๐Ÿ’Ž","balance_scale":"โš–๏ธ","wrench":"๐Ÿ”ง","hammer":"๐Ÿ”จ","hammer_and_pick":"โš’","hammer_and_wrench":"๐Ÿ› ","pick":"โ›","nut_and_bolt":"๐Ÿ”ฉ","gear":"โš™๏ธ","chains":"โ›“","gun":"๐Ÿ”ซ","bomb":"๐Ÿ’ฃ","hocho":"๐Ÿ”ช","knife":"๐Ÿ”ช","dagger":"๐Ÿ—ก","crossed_swords":"โš”๏ธ","shield":"๐Ÿ›ก","smoking":"๐Ÿšฌ","coffin":"โšฐ๏ธ","funeral_urn":"โšฑ๏ธ","amphora":"๐Ÿบ","crystal_ball":"๐Ÿ”ฎ","prayer_beads":"๐Ÿ“ฟ","barber":"๐Ÿ’ˆ","alembic":"โš—๏ธ","telescope":"๐Ÿ”ญ","microscope":"๐Ÿ”ฌ","hole":"๐Ÿ•ณ","pill":"๐Ÿ’Š","syringe":"๐Ÿ’‰","thermometer":"๐ŸŒก","toilet":"๐Ÿšฝ","potable_water":"๐Ÿšฐ","shower":"๐Ÿšฟ","bathtub":"๐Ÿ›","bath":"๐Ÿ›€","bellhop_bell":"๐Ÿ›Ž","key":"๐Ÿ”‘","old_key":"๐Ÿ—","door":"๐Ÿšช","couch_and_lamp":"๐Ÿ›‹","bed":"๐Ÿ›","sleeping_bed":"๐Ÿ›Œ","framed_picture":"๐Ÿ–ผ","shopping":"๐Ÿ›","shopping_cart":"๐Ÿ›’","gift":"๐ŸŽ","balloon":"๐ŸŽˆ","flags":"๐ŸŽ","ribbon":"๐ŸŽ€","confetti_ball":"๐ŸŽŠ","tada":"๐ŸŽ‰","dolls":"๐ŸŽŽ","izakaya_lantern":"๐Ÿฎ","lantern":"๐Ÿฎ","wind_chime":"๐ŸŽ","email":"โœ‰๏ธ","envelope":"โœ‰๏ธ","envelope_with_arrow":"๐Ÿ“ฉ","incoming_envelope":"๐Ÿ“จ","e-mail":"๐Ÿ“ง","love_letter":"๐Ÿ’Œ","inbox_tray":"๐Ÿ“ฅ","outbox_tray":"๐Ÿ“ค","package":"๐Ÿ“ฆ","label":"๐Ÿท","mailbox_closed":"๐Ÿ“ช","mailbox":"๐Ÿ“ซ","mailbox_with_mail":"๐Ÿ“ฌ","mailbox_with_no_mail":"๐Ÿ“ญ","postbox":"๐Ÿ“ฎ","postal_horn":"๐Ÿ“ฏ","scroll":"๐Ÿ“œ","page_with_curl":"๐Ÿ“ƒ","page_facing_up":"๐Ÿ“„","bookmark_tabs":"๐Ÿ“‘","bar_chart":"๐Ÿ“Š","chart_with_upwards_trend":"๐Ÿ“ˆ","chart_with_downwards_trend":"๐Ÿ“‰","spiral_notepad":"๐Ÿ—’","spiral_calendar":"๐Ÿ—“","calendar":"๐Ÿ“†","date":"๐Ÿ“…","card_index":"๐Ÿ“‡","card_file_box":"๐Ÿ—ƒ","ballot_box":"๐Ÿ—ณ","file_cabinet":"๐Ÿ—„","clipboard":"๐Ÿ“‹","file_folder":"๐Ÿ“","open_file_folder":"๐Ÿ“‚","card_index_dividers":"๐Ÿ—‚","newspaper_roll":"๐Ÿ—ž","newspaper":"๐Ÿ“ฐ","notebook":"๐Ÿ““","notebook_with_decorative_cover":"๐Ÿ“”","ledger":"๐Ÿ“’","closed_book":"๐Ÿ“•","green_book":"๐Ÿ“—","blue_book":"๐Ÿ“˜","orange_book":"๐Ÿ“™","books":"๐Ÿ“š","book":"๐Ÿ“–","open_book":"๐Ÿ“–","bookmark":"๐Ÿ”–","link":"๐Ÿ”—","paperclip":"๐Ÿ“Ž","paperclips":"๐Ÿ–‡","triangular_ruler":"๐Ÿ“","straight_ruler":"๐Ÿ“","pushpin":"๐Ÿ“Œ","round_pushpin":"๐Ÿ“","scissors":"โœ‚๏ธ","pen":"๐Ÿ–Š","fountain_pen":"๐Ÿ–‹","black_nib":"โœ’๏ธ","paintbrush":"๐Ÿ–Œ","crayon":"๐Ÿ–","memo":"๐Ÿ“","pencil":"๐Ÿ“","pencil2":"โœ๏ธ","mag":"๐Ÿ”","mag_right":"๐Ÿ”Ž","lock_with_ink_pen":"๐Ÿ”","closed_lock_with_key":"๐Ÿ”","lock":"๐Ÿ”’","unlock":"๐Ÿ”“","heart":"โค๏ธ","yellow_heart":"๐Ÿ’›","green_heart":"๐Ÿ’š","blue_heart":"๐Ÿ’™","purple_heart":"๐Ÿ’œ","black_heart":"๐Ÿ–ค","broken_heart":"๐Ÿ’”","heavy_heart_exclamation":"โฃ๏ธ","two_hearts":"๐Ÿ’•","revolving_hearts":"๐Ÿ’ž","heartbeat":"๐Ÿ’“","heartpulse":"๐Ÿ’—","sparkling_heart":"๐Ÿ’–","cupid":"๐Ÿ’˜","gift_heart":"๐Ÿ’","heart_decoration":"๐Ÿ’Ÿ","peace_symbol":"โ˜ฎ๏ธ","latin_cross":"โœ๏ธ","star_and_crescent":"โ˜ช๏ธ","om":"๐Ÿ•‰","wheel_of_dharma":"โ˜ธ๏ธ","star_of_david":"โœก๏ธ","six_pointed_star":"๐Ÿ”ฏ","menorah":"๐Ÿ•Ž","yin_yang":"โ˜ฏ๏ธ","orthodox_cross":"โ˜ฆ๏ธ","place_of_worship":"๐Ÿ›","ophiuchus":"โ›Ž","aries":"โ™ˆ๏ธ","taurus":"โ™‰๏ธ","gemini":"โ™Š๏ธ","cancer":"โ™‹๏ธ","leo":"โ™Œ๏ธ","virgo":"โ™๏ธ","libra":"โ™Ž๏ธ","scorpius":"โ™๏ธ","sagittarius":"โ™๏ธ","capricorn":"โ™‘๏ธ","aquarius":"โ™’๏ธ","pisces":"โ™“๏ธ","id":"๐Ÿ†”","atom_symbol":"โš›๏ธ","accept":"๐Ÿ‰‘","radioactive":"โ˜ข๏ธ","biohazard":"โ˜ฃ๏ธ","mobile_phone_off":"๐Ÿ“ด","vibration_mode":"๐Ÿ“ณ","eight_pointed_black_star":"โœด๏ธ","vs":"๐Ÿ†š","white_flower":"๐Ÿ’ฎ","ideograph_advantage":"๐Ÿ‰","secret":"ใŠ™๏ธ","congratulations":"ใŠ—๏ธ","u6e80":"๐Ÿˆต","a":"๐Ÿ…ฐ๏ธ","b":"๐Ÿ…ฑ๏ธ","ab":"๐Ÿ†Ž","cl":"๐Ÿ†‘","o2":"๐Ÿ…พ๏ธ","sos":"๐Ÿ†˜","x":"โŒ","o":"โญ•๏ธ","stop_sign":"๐Ÿ›‘","no_entry":"โ›”๏ธ","name_badge":"๐Ÿ“›","no_entry_sign":"๐Ÿšซ","anger":"๐Ÿ’ข","hotsprings":"โ™จ๏ธ","no_pedestrians":"๐Ÿšท","do_not_litter":"๐Ÿšฏ","no_bicycles":"๐Ÿšณ","non-potable_water":"๐Ÿšฑ","underage":"๐Ÿ”ž","no_mobile_phones":"๐Ÿ“ต","no_smoking":"๐Ÿšญ","exclamation":"โ—๏ธ","heavy_exclamation_mark":"โ—๏ธ","grey_exclamation":"โ•","question":"โ“","grey_question":"โ”","bangbang":"โ€ผ๏ธ","interrobang":"โ‰๏ธ","low_brightness":"๐Ÿ”…","high_brightness":"๐Ÿ”†","part_alternation_mark":"ใ€ฝ๏ธ","warning":"โš ๏ธ","children_crossing":"๐Ÿšธ","trident":"๐Ÿ”ฑ","fleur_de_lis":"โšœ๏ธ","beginner":"๐Ÿ”ฐ","recycle":"โ™ป๏ธ","white_check_mark":"โœ…","chart":"๐Ÿ’น","sparkle":"โ‡๏ธ","eight_spoked_asterisk":"โœณ๏ธ","negative_squared_cross_mark":"โŽ","globe_with_meridians":"๐ŸŒ","diamond_shape_with_a_dot_inside":"๐Ÿ’ ","m":"โ“‚๏ธ","cyclone":"๐ŸŒ€","zzz":"๐Ÿ’ค","atm":"๐Ÿง","wc":"๐Ÿšพ","wheelchair":"โ™ฟ๏ธ","parking":"๐Ÿ…ฟ๏ธ","sa":"๐Ÿˆ‚๏ธ","passport_control":"๐Ÿ›‚","customs":"๐Ÿ›ƒ","baggage_claim":"๐Ÿ›„","left_luggage":"๐Ÿ›…","mens":"๐Ÿšน","womens":"๐Ÿšบ","baby_symbol":"๐Ÿšผ","restroom":"๐Ÿšป","put_litter_in_its_place":"๐Ÿšฎ","cinema":"๐ŸŽฆ","signal_strength":"๐Ÿ“ถ","koko":"๐Ÿˆ","symbols":"๐Ÿ”ฃ","information_source":"โ„น๏ธ","abc":"๐Ÿ”ค","abcd":"๐Ÿ”ก","capital_abcd":"๐Ÿ” ","ng":"๐Ÿ†–","ok":"๐Ÿ†—","up":"๐Ÿ†™","cool":"๐Ÿ†’","new":"๐Ÿ†•","free":"๐Ÿ†“","zero":"0๏ธโƒฃ","one":"1๏ธโƒฃ","two":"2๏ธโƒฃ","three":"3๏ธโƒฃ","four":"4๏ธโƒฃ","five":"5๏ธโƒฃ","six":"6๏ธโƒฃ","seven":"7๏ธโƒฃ","eight":"8๏ธโƒฃ","nine":"9๏ธโƒฃ","keycap_ten":"๐Ÿ”Ÿ","hash":"#๏ธโƒฃ","asterisk":"*๏ธโƒฃ","arrow_forward":"โ–ถ๏ธ","pause_button":"โธ","play_or_pause_button":"โฏ","stop_button":"โน","record_button":"โบ","next_track_button":"โญ","previous_track_button":"โฎ","fast_forward":"โฉ","rewind":"โช","arrow_double_up":"โซ","arrow_double_down":"โฌ","arrow_backward":"โ—€๏ธ","arrow_up_small":"๐Ÿ”ผ","arrow_down_small":"๐Ÿ”ฝ","arrow_right":"โžก๏ธ","arrow_left":"โฌ…๏ธ","arrow_up":"โฌ†๏ธ","arrow_down":"โฌ‡๏ธ","arrow_upper_right":"โ†—๏ธ","arrow_lower_right":"โ†˜๏ธ","arrow_lower_left":"โ†™๏ธ","arrow_upper_left":"โ†–๏ธ","arrow_up_down":"โ†•๏ธ","left_right_arrow":"โ†”๏ธ","arrow_right_hook":"โ†ช๏ธ","leftwards_arrow_with_hook":"โ†ฉ๏ธ","arrow_heading_up":"โคด๏ธ","arrow_heading_down":"โคต๏ธ","twisted_rightwards_arrows":"๐Ÿ”€","repeat":"๐Ÿ”","repeat_one":"๐Ÿ”‚","arrows_counterclockwise":"๐Ÿ”„","arrows_clockwise":"๐Ÿ”ƒ","musical_note":"๐ŸŽต","notes":"๐ŸŽถ","heavy_plus_sign":"โž•","heavy_minus_sign":"โž–","heavy_division_sign":"โž—","heavy_multiplication_x":"โœ–๏ธ","heavy_dollar_sign":"๐Ÿ’ฒ","currency_exchange":"๐Ÿ’ฑ","tm":"โ„ข๏ธ","copyright":"ยฉ๏ธ","registered":"ยฎ๏ธ","wavy_dash":"ใ€ฐ๏ธ","curly_loop":"โžฐ","loop":"โžฟ","end":"๐Ÿ”š","back":"๐Ÿ”™","on":"๐Ÿ”›","top":"๐Ÿ”","soon":"๐Ÿ”œ","heavy_check_mark":"โœ”๏ธ","ballot_box_with_check":"โ˜‘๏ธ","radio_button":"๐Ÿ”˜","white_circle":"โšช๏ธ","black_circle":"โšซ๏ธ","red_circle":"๐Ÿ”ด","large_blue_circle":"๐Ÿ”ต","small_red_triangle":"๐Ÿ”บ","small_red_triangle_down":"๐Ÿ”ป","small_orange_diamond":"๐Ÿ”ธ","small_blue_diamond":"๐Ÿ”น","large_orange_diamond":"๐Ÿ”ถ","large_blue_diamond":"๐Ÿ”ท","white_square_button":"๐Ÿ”ณ","black_square_button":"๐Ÿ”ฒ","black_small_square":"โ–ช๏ธ","white_small_square":"โ–ซ๏ธ","black_medium_small_square":"โ—พ๏ธ","white_medium_small_square":"โ—ฝ๏ธ","black_medium_square":"โ—ผ๏ธ","white_medium_square":"โ—ป๏ธ","black_large_square":"โฌ›๏ธ","white_large_square":"โฌœ๏ธ","speaker":"๐Ÿ”ˆ","mute":"๐Ÿ”‡","sound":"๐Ÿ”‰","loud_sound":"๐Ÿ”Š","bell":"๐Ÿ””","no_bell":"๐Ÿ”•","mega":"๐Ÿ“ฃ","loudspeaker":"๐Ÿ“ข","eye_speech_bubble":"๐Ÿ‘โ€๐Ÿ—จ","speech_balloon":"๐Ÿ’ฌ","thought_balloon":"๐Ÿ’ญ","right_anger_bubble":"๐Ÿ—ฏ","spades":"โ™ ๏ธ","clubs":"โ™ฃ๏ธ","hearts":"โ™ฅ๏ธ","diamonds":"โ™ฆ๏ธ","black_joker":"๐Ÿƒ","flower_playing_cards":"๐ŸŽด","mahjong":"๐Ÿ€„๏ธ","clock1":"๐Ÿ•","clock2":"๐Ÿ•‘","clock3":"๐Ÿ•’","clock4":"๐Ÿ•“","clock5":"๐Ÿ•”","clock6":"๐Ÿ••","clock7":"๐Ÿ•–","clock8":"๐Ÿ•—","clock9":"๐Ÿ•˜","clock10":"๐Ÿ•™","clock11":"๐Ÿ•š","clock12":"๐Ÿ•›","clock130":"๐Ÿ•œ","clock230":"๐Ÿ•","clock330":"๐Ÿ•ž","clock430":"๐Ÿ•Ÿ","clock530":"๐Ÿ• ","clock630":"๐Ÿ•ก","clock730":"๐Ÿ•ข","clock830":"๐Ÿ•ฃ","clock930":"๐Ÿ•ค","clock1030":"๐Ÿ•ฅ","clock1130":"๐Ÿ•ฆ","clock1230":"๐Ÿ•ง","white_flag":"๐Ÿณ๏ธ","black_flag":"๐Ÿด","checkered_flag":"๐Ÿ","triangular_flag_on_post":"๐Ÿšฉ","rainbow_flag":"๐Ÿณ๏ธโ€๐ŸŒˆ","afghanistan":"๐Ÿ‡ฆ๐Ÿ‡ซ","aland_islands":"๐Ÿ‡ฆ๐Ÿ‡ฝ","albania":"๐Ÿ‡ฆ๐Ÿ‡ฑ","algeria":"๐Ÿ‡ฉ๐Ÿ‡ฟ","american_samoa":"๐Ÿ‡ฆ๐Ÿ‡ธ","andorra":"๐Ÿ‡ฆ๐Ÿ‡ฉ","angola":"๐Ÿ‡ฆ๐Ÿ‡ด","anguilla":"๐Ÿ‡ฆ๐Ÿ‡ฎ","antarctica":"๐Ÿ‡ฆ๐Ÿ‡ถ","antigua_barbuda":"๐Ÿ‡ฆ๐Ÿ‡ฌ","argentina":"๐Ÿ‡ฆ๐Ÿ‡ท","armenia":"๐Ÿ‡ฆ๐Ÿ‡ฒ","aruba":"๐Ÿ‡ฆ๐Ÿ‡ผ","australia":"๐Ÿ‡ฆ๐Ÿ‡บ","austria":"๐Ÿ‡ฆ๐Ÿ‡น","azerbaijan":"๐Ÿ‡ฆ๐Ÿ‡ฟ","bahamas":"๐Ÿ‡ง๐Ÿ‡ธ","bahrain":"๐Ÿ‡ง๐Ÿ‡ญ","bangladesh":"๐Ÿ‡ง๐Ÿ‡ฉ","barbados":"๐Ÿ‡ง๐Ÿ‡ง","belarus":"๐Ÿ‡ง๐Ÿ‡พ","belgium":"๐Ÿ‡ง๐Ÿ‡ช","belize":"๐Ÿ‡ง๐Ÿ‡ฟ","benin":"๐Ÿ‡ง๐Ÿ‡ฏ","bermuda":"๐Ÿ‡ง๐Ÿ‡ฒ","bhutan":"๐Ÿ‡ง๐Ÿ‡น","bolivia":"๐Ÿ‡ง๐Ÿ‡ด","caribbean_netherlands":"๐Ÿ‡ง๐Ÿ‡ถ","bosnia_herzegovina":"๐Ÿ‡ง๐Ÿ‡ฆ","botswana":"๐Ÿ‡ง๐Ÿ‡ผ","brazil":"๐Ÿ‡ง๐Ÿ‡ท","british_indian_ocean_territory":"๐Ÿ‡ฎ๐Ÿ‡ด","british_virgin_islands":"๐Ÿ‡ป๐Ÿ‡ฌ","brunei":"๐Ÿ‡ง๐Ÿ‡ณ","bulgaria":"๐Ÿ‡ง๐Ÿ‡ฌ","burkina_faso":"๐Ÿ‡ง๐Ÿ‡ซ","burundi":"๐Ÿ‡ง๐Ÿ‡ฎ","cape_verde":"๐Ÿ‡จ๐Ÿ‡ป","cambodia":"๐Ÿ‡ฐ๐Ÿ‡ญ","cameroon":"๐Ÿ‡จ๐Ÿ‡ฒ","canada":"๐Ÿ‡จ๐Ÿ‡ฆ","canary_islands":"๐Ÿ‡ฎ๐Ÿ‡จ","cayman_islands":"๐Ÿ‡ฐ๐Ÿ‡พ","central_african_republic":"๐Ÿ‡จ๐Ÿ‡ซ","chad":"๐Ÿ‡น๐Ÿ‡ฉ","chile":"๐Ÿ‡จ๐Ÿ‡ฑ","cn":"๐Ÿ‡จ๐Ÿ‡ณ","christmas_island":"๐Ÿ‡จ๐Ÿ‡ฝ","cocos_islands":"๐Ÿ‡จ๐Ÿ‡จ","colombia":"๐Ÿ‡จ๐Ÿ‡ด","comoros":"๐Ÿ‡ฐ๐Ÿ‡ฒ","congo_brazzaville":"๐Ÿ‡จ๐Ÿ‡ฌ","congo_kinshasa":"๐Ÿ‡จ๐Ÿ‡ฉ","cook_islands":"๐Ÿ‡จ๐Ÿ‡ฐ","costa_rica":"๐Ÿ‡จ๐Ÿ‡ท","cote_divoire":"๐Ÿ‡จ๐Ÿ‡ฎ","croatia":"๐Ÿ‡ญ๐Ÿ‡ท","cuba":"๐Ÿ‡จ๐Ÿ‡บ","curacao":"๐Ÿ‡จ๐Ÿ‡ผ","cyprus":"๐Ÿ‡จ๐Ÿ‡พ","czech_republic":"๐Ÿ‡จ๐Ÿ‡ฟ","denmark":"๐Ÿ‡ฉ๐Ÿ‡ฐ","djibouti":"๐Ÿ‡ฉ๐Ÿ‡ฏ","dominica":"๐Ÿ‡ฉ๐Ÿ‡ฒ","dominican_republic":"๐Ÿ‡ฉ๐Ÿ‡ด","ecuador":"๐Ÿ‡ช๐Ÿ‡จ","egypt":"๐Ÿ‡ช๐Ÿ‡ฌ","el_salvador":"๐Ÿ‡ธ๐Ÿ‡ป","equatorial_guinea":"๐Ÿ‡ฌ๐Ÿ‡ถ","eritrea":"๐Ÿ‡ช๐Ÿ‡ท","estonia":"๐Ÿ‡ช๐Ÿ‡ช","ethiopia":"๐Ÿ‡ช๐Ÿ‡น","eu":"๐Ÿ‡ช๐Ÿ‡บ","european_union":"๐Ÿ‡ช๐Ÿ‡บ","falkland_islands":"๐Ÿ‡ซ๐Ÿ‡ฐ","faroe_islands":"๐Ÿ‡ซ๐Ÿ‡ด","fiji":"๐Ÿ‡ซ๐Ÿ‡ฏ","finland":"๐Ÿ‡ซ๐Ÿ‡ฎ","fr":"๐Ÿ‡ซ๐Ÿ‡ท","french_guiana":"๐Ÿ‡ฌ๐Ÿ‡ซ","french_polynesia":"๐Ÿ‡ต๐Ÿ‡ซ","french_southern_territories":"๐Ÿ‡น๐Ÿ‡ซ","gabon":"๐Ÿ‡ฌ๐Ÿ‡ฆ","gambia":"๐Ÿ‡ฌ๐Ÿ‡ฒ","georgia":"๐Ÿ‡ฌ๐Ÿ‡ช","de":"๐Ÿ‡ฉ๐Ÿ‡ช","ghana":"๐Ÿ‡ฌ๐Ÿ‡ญ","gibraltar":"๐Ÿ‡ฌ๐Ÿ‡ฎ","greece":"๐Ÿ‡ฌ๐Ÿ‡ท","greenland":"๐Ÿ‡ฌ๐Ÿ‡ฑ","grenada":"๐Ÿ‡ฌ๐Ÿ‡ฉ","guadeloupe":"๐Ÿ‡ฌ๐Ÿ‡ต","guam":"๐Ÿ‡ฌ๐Ÿ‡บ","guatemala":"๐Ÿ‡ฌ๐Ÿ‡น","guernsey":"๐Ÿ‡ฌ๐Ÿ‡ฌ","guinea":"๐Ÿ‡ฌ๐Ÿ‡ณ","guinea_bissau":"๐Ÿ‡ฌ๐Ÿ‡ผ","guyana":"๐Ÿ‡ฌ๐Ÿ‡พ","haiti":"๐Ÿ‡ญ๐Ÿ‡น","honduras":"๐Ÿ‡ญ๐Ÿ‡ณ","hong_kong":"๐Ÿ‡ญ๐Ÿ‡ฐ","hungary":"๐Ÿ‡ญ๐Ÿ‡บ","iceland":"๐Ÿ‡ฎ๐Ÿ‡ธ","india":"๐Ÿ‡ฎ๐Ÿ‡ณ","indonesia":"๐Ÿ‡ฎ๐Ÿ‡ฉ","iran":"๐Ÿ‡ฎ๐Ÿ‡ท","iraq":"๐Ÿ‡ฎ๐Ÿ‡ถ","ireland":"๐Ÿ‡ฎ๐Ÿ‡ช","isle_of_man":"๐Ÿ‡ฎ๐Ÿ‡ฒ","israel":"๐Ÿ‡ฎ๐Ÿ‡ฑ","it":"๐Ÿ‡ฎ๐Ÿ‡น","jamaica":"๐Ÿ‡ฏ๐Ÿ‡ฒ","jp":"๐Ÿ‡ฏ๐Ÿ‡ต","crossed_flags":"๐ŸŽŒ","jersey":"๐Ÿ‡ฏ๐Ÿ‡ช","jordan":"๐Ÿ‡ฏ๐Ÿ‡ด","kazakhstan":"๐Ÿ‡ฐ๐Ÿ‡ฟ","kenya":"๐Ÿ‡ฐ๐Ÿ‡ช","kiribati":"๐Ÿ‡ฐ๐Ÿ‡ฎ","kosovo":"๐Ÿ‡ฝ๐Ÿ‡ฐ","kuwait":"๐Ÿ‡ฐ๐Ÿ‡ผ","kyrgyzstan":"๐Ÿ‡ฐ๐Ÿ‡ฌ","laos":"๐Ÿ‡ฑ๐Ÿ‡ฆ","latvia":"๐Ÿ‡ฑ๐Ÿ‡ป","lebanon":"๐Ÿ‡ฑ๐Ÿ‡ง","lesotho":"๐Ÿ‡ฑ๐Ÿ‡ธ","liberia":"๐Ÿ‡ฑ๐Ÿ‡ท","libya":"๐Ÿ‡ฑ๐Ÿ‡พ","liechtenstein":"๐Ÿ‡ฑ๐Ÿ‡ฎ","lithuania":"๐Ÿ‡ฑ๐Ÿ‡น","luxembourg":"๐Ÿ‡ฑ๐Ÿ‡บ","macau":"๐Ÿ‡ฒ๐Ÿ‡ด","macedonia":"๐Ÿ‡ฒ๐Ÿ‡ฐ","madagascar":"๐Ÿ‡ฒ๐Ÿ‡ฌ","malawi":"๐Ÿ‡ฒ๐Ÿ‡ผ","malaysia":"๐Ÿ‡ฒ๐Ÿ‡พ","maldives":"๐Ÿ‡ฒ๐Ÿ‡ป","mali":"๐Ÿ‡ฒ๐Ÿ‡ฑ","malta":"๐Ÿ‡ฒ๐Ÿ‡น","marshall_islands":"๐Ÿ‡ฒ๐Ÿ‡ญ","martinique":"๐Ÿ‡ฒ๐Ÿ‡ถ","mauritania":"๐Ÿ‡ฒ๐Ÿ‡ท","mauritius":"๐Ÿ‡ฒ๐Ÿ‡บ","mayotte":"๐Ÿ‡พ๐Ÿ‡น","mexico":"๐Ÿ‡ฒ๐Ÿ‡ฝ","micronesia":"๐Ÿ‡ซ๐Ÿ‡ฒ","moldova":"๐Ÿ‡ฒ๐Ÿ‡ฉ","monaco":"๐Ÿ‡ฒ๐Ÿ‡จ","mongolia":"๐Ÿ‡ฒ๐Ÿ‡ณ","montenegro":"๐Ÿ‡ฒ๐Ÿ‡ช","montserrat":"๐Ÿ‡ฒ๐Ÿ‡ธ","morocco":"๐Ÿ‡ฒ๐Ÿ‡ฆ","mozambique":"๐Ÿ‡ฒ๐Ÿ‡ฟ","myanmar":"๐Ÿ‡ฒ๐Ÿ‡ฒ","namibia":"๐Ÿ‡ณ๐Ÿ‡ฆ","nauru":"๐Ÿ‡ณ๐Ÿ‡ท","nepal":"๐Ÿ‡ณ๐Ÿ‡ต","netherlands":"๐Ÿ‡ณ๐Ÿ‡ฑ","new_caledonia":"๐Ÿ‡ณ๐Ÿ‡จ","new_zealand":"๐Ÿ‡ณ๐Ÿ‡ฟ","nicaragua":"๐Ÿ‡ณ๐Ÿ‡ฎ","niger":"๐Ÿ‡ณ๐Ÿ‡ช","nigeria":"๐Ÿ‡ณ๐Ÿ‡ฌ","niue":"๐Ÿ‡ณ๐Ÿ‡บ","norfolk_island":"๐Ÿ‡ณ๐Ÿ‡ซ","northern_mariana_islands":"๐Ÿ‡ฒ๐Ÿ‡ต","north_korea":"๐Ÿ‡ฐ๐Ÿ‡ต","norway":"๐Ÿ‡ณ๐Ÿ‡ด","oman":"๐Ÿ‡ด๐Ÿ‡ฒ","pakistan":"๐Ÿ‡ต๐Ÿ‡ฐ","palau":"๐Ÿ‡ต๐Ÿ‡ผ","palestinian_territories":"๐Ÿ‡ต๐Ÿ‡ธ","panama":"๐Ÿ‡ต๐Ÿ‡ฆ","papua_new_guinea":"๐Ÿ‡ต๐Ÿ‡ฌ","paraguay":"๐Ÿ‡ต๐Ÿ‡พ","peru":"๐Ÿ‡ต๐Ÿ‡ช","philippines":"๐Ÿ‡ต๐Ÿ‡ญ","pitcairn_islands":"๐Ÿ‡ต๐Ÿ‡ณ","poland":"๐Ÿ‡ต๐Ÿ‡ฑ","portugal":"๐Ÿ‡ต๐Ÿ‡น","puerto_rico":"๐Ÿ‡ต๐Ÿ‡ท","qatar":"๐Ÿ‡ถ๐Ÿ‡ฆ","reunion":"๐Ÿ‡ท๐Ÿ‡ช","romania":"๐Ÿ‡ท๐Ÿ‡ด","ru":"๐Ÿ‡ท๐Ÿ‡บ","rwanda":"๐Ÿ‡ท๐Ÿ‡ผ","st_barthelemy":"๐Ÿ‡ง๐Ÿ‡ฑ","st_helena":"๐Ÿ‡ธ๐Ÿ‡ญ","st_kitts_nevis":"๐Ÿ‡ฐ๐Ÿ‡ณ","st_lucia":"๐Ÿ‡ฑ๐Ÿ‡จ","st_pierre_miquelon":"๐Ÿ‡ต๐Ÿ‡ฒ","st_vincent_grenadines":"๐Ÿ‡ป๐Ÿ‡จ","samoa":"๐Ÿ‡ผ๐Ÿ‡ธ","san_marino":"๐Ÿ‡ธ๐Ÿ‡ฒ","sao_tome_principe":"๐Ÿ‡ธ๐Ÿ‡น","saudi_arabia":"๐Ÿ‡ธ๐Ÿ‡ฆ","senegal":"๐Ÿ‡ธ๐Ÿ‡ณ","serbia":"๐Ÿ‡ท๐Ÿ‡ธ","seychelles":"๐Ÿ‡ธ๐Ÿ‡จ","sierra_leone":"๐Ÿ‡ธ๐Ÿ‡ฑ","singapore":"๐Ÿ‡ธ๐Ÿ‡ฌ","sint_maarten":"๐Ÿ‡ธ๐Ÿ‡ฝ","slovakia":"๐Ÿ‡ธ๐Ÿ‡ฐ","slovenia":"๐Ÿ‡ธ๐Ÿ‡ฎ","solomon_islands":"๐Ÿ‡ธ๐Ÿ‡ง","somalia":"๐Ÿ‡ธ๐Ÿ‡ด","south_africa":"๐Ÿ‡ฟ๐Ÿ‡ฆ","south_georgia_south_sandwich_islands":"๐Ÿ‡ฌ๐Ÿ‡ธ","kr":"๐Ÿ‡ฐ๐Ÿ‡ท","south_sudan":"๐Ÿ‡ธ๐Ÿ‡ธ","es":"๐Ÿ‡ช๐Ÿ‡ธ","sri_lanka":"๐Ÿ‡ฑ๐Ÿ‡ฐ","sudan":"๐Ÿ‡ธ๐Ÿ‡ฉ","suriname":"๐Ÿ‡ธ๐Ÿ‡ท","swaziland":"๐Ÿ‡ธ๐Ÿ‡ฟ","sweden":"๐Ÿ‡ธ๐Ÿ‡ช","switzerland":"๐Ÿ‡จ๐Ÿ‡ญ","syria":"๐Ÿ‡ธ๐Ÿ‡พ","taiwan":"๐Ÿ‡น๐Ÿ‡ผ","tajikistan":"๐Ÿ‡น๐Ÿ‡ฏ","tanzania":"๐Ÿ‡น๐Ÿ‡ฟ","thailand":"๐Ÿ‡น๐Ÿ‡ญ","timor_leste":"๐Ÿ‡น๐Ÿ‡ฑ","togo":"๐Ÿ‡น๐Ÿ‡ฌ","tokelau":"๐Ÿ‡น๐Ÿ‡ฐ","tonga":"๐Ÿ‡น๐Ÿ‡ด","trinidad_tobago":"๐Ÿ‡น๐Ÿ‡น","tunisia":"๐Ÿ‡น๐Ÿ‡ณ","tr":"๐Ÿ‡น๐Ÿ‡ท","turkmenistan":"๐Ÿ‡น๐Ÿ‡ฒ","turks_caicos_islands":"๐Ÿ‡น๐Ÿ‡จ","tuvalu":"๐Ÿ‡น๐Ÿ‡ป","uganda":"๐Ÿ‡บ๐Ÿ‡ฌ","ukraine":"๐Ÿ‡บ๐Ÿ‡ฆ","united_arab_emirates":"๐Ÿ‡ฆ๐Ÿ‡ช","gb":"๐Ÿ‡ฌ๐Ÿ‡ง","uk":"๐Ÿ‡ฌ๐Ÿ‡ง","us":"๐Ÿ‡บ๐Ÿ‡ธ","us_virgin_islands":"๐Ÿ‡ป๐Ÿ‡ฎ","uruguay":"๐Ÿ‡บ๐Ÿ‡พ","uzbekistan":"๐Ÿ‡บ๐Ÿ‡ฟ","vanuatu":"๐Ÿ‡ป๐Ÿ‡บ","vatican_city":"๐Ÿ‡ป๐Ÿ‡ฆ","venezuela":"๐Ÿ‡ป๐Ÿ‡ช","vietnam":"๐Ÿ‡ป๐Ÿ‡ณ","wallis_futuna":"๐Ÿ‡ผ๐Ÿ‡ซ","western_sahara":"๐Ÿ‡ช๐Ÿ‡ญ","yemen":"๐Ÿ‡พ๐Ÿ‡ช","zambia":"๐Ÿ‡ฟ๐Ÿ‡ฒ","zimbabwe":"๐Ÿ‡ฟ๐Ÿ‡ผ"}')},"/5d6":function(e,t,n){"use strict";e.exports=function(e){var t=e.utils.isSpace;function n(e,t){var n,r,i=e.bMarks[t]+e.tShift[t],o=e.eMarks[t];return i>=o?-1:126!==(r=e.src.charCodeAt(i++))&&58!==r?-1:i===(n=e.skipSpaces(i))?-1:n>=o?-1:i}e.block.ruler.before("paragraph","deflist",function(e,r,i,o){var a,s,l,u,c,f,p,h,d,m,g,_,v,b,y,w,k,x,C,E;if(o)return!(e.ddIndent<0)&&n(e,r)>=0;if((d=r+1)>=i)return!1;if(e.isEmpty(d)&&++d>=i)return!1;if(e.sCount[d]1&&e.isEmpty(e.line-1),e.tShift[l]=y,e.sCount[l]=b,e.tight=w,e.parentType=v,e.blkIndent=_,e.ddIndent=g,E=e.push("dd_close","dd",-1),c[1]=d=e.line,d>=i)break e;if(e.sCount[d]=i)break;if(u=d,e.isEmpty(u))break;if(e.sCount[u]=i)break;if(e.isEmpty(l)&&l++,l>=i)break;if(e.sCount[l]0&&document.getSelection().getRangeAt(0);r.select(),r.setSelectionRange(0,999999),document.execCommand("copy"),document.body.removeChild(r),a&&(document.getSelection().removeAllRanges(),document.getSelection().addRange(a)),r.contentEditable=i,r.readOnly=o},toggleShowPassword:function(e,t){var n=e.target.parentNode.parentNode.firstChild;n.type="password"===n.type?"text":"password",e.target.innerHTML="password"===n.type?this.__("Show"):this.__("Hide")}},watch:{"$attrs.value":function(e){this.lines=e},lines:function(e){this.$emit("input",e)}}},o=(n("z6Vu"),n("KHd+")),a=Object(o.a)(i,function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",[e.preview?n("section",{ref:"preview",staticClass:"my-3"},e._l(e.preview,function(t,r){return n("div",{staticClass:"row mb-3"},[n("div",{staticClass:"col-12"},[n("strong",[e._v(e._s(t.name))])]),e._v(" "),n("div",{staticClass:"col-12"},["url"===t.type?n("a",{attrs:{href:t.value,target:"_blank"}},[e._v(e._s(t.value))]):"password"===t.type?n("div",{staticClass:"input-group input-group-sm"},[n("input",{staticClass:"form-control",attrs:{type:"password"},domProps:{value:t.value}}),e._v(" "),n("div",{staticClass:"input-group-append"},[n("button",{staticClass:"btn btn-outline-secondary",attrs:{type:"button"},on:{click:function(t){return e.toggleShowPassword(t,r)}}},[e._v(e._s(e.__("Show")))]),e._v(" "),n("button",{staticClass:"btn btn-outline-secondary",attrs:{type:"button"},on:{click:function(n){return e.copyToClipboard(n,t.value)}}},[e._v(e._s(e.__("Copy")))])])]):"code"===t.type?n("pre",{staticClass:"border p-2"},[n("code",[e._v(e._s(t.value))])]):n("span",[e._v(e._s(t.value))])])])}),0):n("section",{ref:"form"},[n("draggable",e._b({attrs:{group:"lines",handle:".handle-order"},on:{start:function(t){e.drag=!0},end:function(t){e.drag=!1}},model:{value:e.lines,callback:function(t){e.lines=t},expression:"lines"}},"draggable",e.dragOptions,!1),[n("transition-group",{attrs:{type:"transition",tag:"div",name:e.drag?null:"flip-list"}},e._l(e.lines,function(t,r){return n("div",{key:"item-"+r,staticClass:"form-group"},[n("div",{staticClass:"row row-line"},[n("div",{staticClass:"col-12 col-md-4"},[n("div",{staticClass:"input-group"},[n("div",{staticClass:"input-group-prepend"},[n("button",{staticClass:"btn btn-outline-secondary dropdown-toggle",attrs:{type:"button","data-toggle":"dropdown","aria-haspopup":"true","aria-expanded":"false"}},[e._v(e._s(e.types[t.type]))]),e._v(" "),n("div",{staticClass:"dropdown-menu"},e._l(e.types,function(r,i){return n("a",{staticClass:"dropdown-item",class:{active:i===e.line.type},on:{click:function(e){e.preventDefault(),t.type=i}}},[e._v(e._s(r))])}),0)]),e._v(" "),n("input",{directives:[{name:"model",rawName:"v-model",value:t.name,expression:"item.name"}],staticClass:"form-control",attrs:{type:"text",name:"name",placeholder:e.__("Name")},domProps:{value:t.name},on:{input:function(n){n.target.composing||e.$set(t,"name",n.target.value)}}})])]),e._v(" "),n("div",{staticClass:"col-12 col-md-8"},[n("div",{staticClass:"input-group"},["code"===t.type?n("textarea",{directives:[{name:"model",rawName:"v-model",value:t.value,expression:"item.value"}],staticClass:"form-control",attrs:{rows:"5",name:"value"},domProps:{value:t.value},on:{input:function(n){n.target.composing||e.$set(t,"value",n.target.value)}}}):n("input",{directives:[{name:"model",rawName:"v-model",value:t.value,expression:"item.value"}],staticClass:"form-control",attrs:{type:"text",name:"value"},domProps:{value:t.value},on:{input:function(n){n.target.composing||e.$set(t,"value",n.target.value)}}}),e._v(" "),n("div",{staticClass:"input-group-append"},[n("confirm",{staticClass:"btn btn-outline-secondary",attrs:{tag:"button",text:"×","text-confirm":"✓"},on:{confirmed:function(n){return e.deleteLine(t)}}}),e._v(" "),n("button",{staticClass:"btn btn-outline-secondary handle-order",attrs:{type:"button"},on:{click:function(n){return n.preventDefault(),e.deleteLine(t)}}},[e._v("โ†‘โ†“")])],1)])])])])}),0)],1),e._v(" "),n("div",{staticClass:"form-group text-right"},e._l(e.types,function(t,r){return n("button",{staticClass:"btn btn-outline-secondary mr-1",attrs:{type:"button"},on:{click:function(t){return t.preventDefault(),e.addLine(r)}}},[e._v(e._s(e.__("Add"))+" "+e._s(t))])}),0)],1)])},[],!1,null,null,null);t.default=a.exports},"0xj5":function(e,t,n){var r=n("E0m9"),i=n("aNjz"),o=n("ybOZ"),a=n("6lZC"),s=n("DwkR"),l=n("zJjT"),u=n("s847"),c=o.makeSpan,f=function(e,t,n){for(var r=[],i=0;i0&&(p+=C,d-=C)}y=o.makeVList([{type:"elem",elem:a,shift:d},{type:"elem",elem:r,shift:-p}],"individualShift",null,t),b instanceof s.symbolNode&&(y.children[0].style.marginLeft=-b.italic+"em"),y.children[0].style.marginRight=k,y.children[1].style.marginRight=k}else p=Math.max(p,g,u.depth+.25*l.metrics.xHeight),(y=o.makeVList([{type:"elem",elem:r}],"shift",-p,t)).children[0].style.marginRight=k;else d=Math.max(d,l.metrics.sub1,f.height-.8*l.metrics.xHeight),(y=o.makeVList([{type:"elem",elem:a}],"shift",d,t)).children[0].style.marginRight=k,b instanceof s.symbolNode&&(y.children[0].style.marginLeft=-b.italic+"em");return c([h(e.value.base)],[b,y])},_.genfrac=function(e,t,n){var r=t.style;"display"===e.value.size?r=i.DISPLAY:"text"===e.value.size&&(r=i.TEXT);var s,u,f,p,h,d,m,_,b=r.fracNum(),y=r.fracDen(),w=v(e.value.numer,t.withStyle(b)),k=c([r.reset(),b.cls()],[w]),x=v(e.value.denom,t.withStyle(y)),C=c([r.reset(),y.cls()],[x]);if(s=e.value.hasBarLine?l.metrics.defaultRuleThickness/t.style.sizeMultiplier:0,r.size===i.DISPLAY.size?(u=l.metrics.num1,f=s>0?3*s:7*l.metrics.defaultRuleThickness,p=l.metrics.denom1):(s>0?(u=l.metrics.num2,f=s):(u=l.metrics.num3,f=3*l.metrics.defaultRuleThickness),p=l.metrics.denom2),0===s){var E=u-w.depth-(x.height-p);E0&&(x<(A+=b)&&(x=A),A=0)}C.height=k,C.depth=x,y+=k,C.pos=y,y+=x+A,p[i]=C}var S,T,D=y/2+l.metrics.axisHeight,O=e.value.cols||[],L=[];for(a=0,T=0;a=f)){var N;(a>0||e.value.hskipBeforeAndAfter)&&0!==(N=u.deflt(M.pregap,d))&&((S=c(["arraycolsep"],[])).style.width=N+"em",L.push(S));var P=[];for(i=0;ir.height+r.depth+p&&(p=(p+m-r.height-r.depth)/2);var g,_=-(r.height+p+s)+d.height;if(d.style.top=_+"em",d.height-=_,d.depth+=_,g=0===r.height&&0===r.depth?c():o.makeVList([{type:"elem",elem:r},{type:"kern",size:p},{type:"elem",elem:u},{type:"kern",size:s}],"firstBaseline",null,t),e.value.index){var b=v(e.value.index,t.withStyle(i.SCRIPTSCRIPT)),y=c([t.style.reset(),i.SCRIPTSCRIPT.cls()],[b]),w=.6*(Math.max(d.height,g.height)-Math.max(d.depth,g.depth)),k=o.makeVList([{type:"elem",elem:y}],"shift",-w,t),x=c(["root"],[k]);return c(["sqrt","mord"],[x,d,g])}return c(["sqrt","mord"],[d,g])},_.sizing=function(e,t,n){var r=f(e.value.value,t.withSize(e.value.size),n),i=c(["mord"],[c(["sizing","reset-"+t.size,e.value.size,t.style.cls()],r)]),a=o.sizingMultiplier[e.value.size];return i.maxFontSize=a*t.style.sizeMultiplier,i},_.styling=function(e,t,n){var r={display:i.DISPLAY,text:i.TEXT,script:i.SCRIPT,scriptscript:i.SCRIPTSCRIPT}[e.value.style],o=f(e.value.value,t.withStyle(r),n);return c([t.style.reset(),r.cls()],o)},_.font=function(e,t,n){var r=e.value.font;return v(e.value.body,t.withFont(r),n)},_.delimsizing=function(e,t,n){var r=e.value.value;return"."===r?c([p[e.value.delimType]]):c([p[e.value.delimType]],[a.sizedDelim(r,e.value.size,t,e.mode)])},_.leftright=function(e,t,n){for(var r,i,o=f(e.value.body,t.reset()),s=0,l=0,u=0;u3||e.sCount[A]<0)){for(y=!1,h=0,d=w.length;h",'"',"`"," ","\r","\n","\t"]),l=["'"].concat(s),u=["%","/","?",";","#"].concat(l),c=["/","?","#"],f=/^[+a-z0-9A-Z_-]{0,63}$/,p=/^([+a-z0-9A-Z_-]{0,63})(.*)$/,h={javascript:!0,"javascript:":!0},d={http:!0,https:!0,ftp:!0,gopher:!0,file:!0,"http:":!0,"https:":!0,"ftp:":!0,"gopher:":!0,"file:":!0};r.prototype.parse=function(e,t){var n,r,o,s,l,m=e;if(m=m.trim(),!t&&1===e.split("#").length){var g=a.exec(m);if(g)return this.pathname=g[1],g[2]&&(this.search=g[2]),this}var _=i.exec(m);if(_&&(o=(_=_[0]).toLowerCase(),this.protocol=_,m=m.substr(_.length)),(t||_||m.match(/^\/\/[^@\/]+@[^@\/]+/))&&(!(l="//"===m.substr(0,2))||_&&h[_]||(m=m.substr(2),this.slashes=!0)),!h[_]&&(l||_&&!d[_])){var v,b,y=-1;for(n=0;n127?E+="x":E+=C[A];if(!E.match(f)){var T=x.slice(0,n),D=x.slice(n+1),O=C.match(p);O&&(T.push(O[1]),D.unshift(O[2])),D.length&&(m=D.join(".")+m),this.hostname=T.join(".");break}}}}this.hostname.length>255&&(this.hostname=""),k&&(this.hostname=this.hostname.substr(1,this.hostname.length-2))}var L=m.indexOf("#");-1!==L&&(this.hash=m.substr(L),m=m.slice(0,L));var M=m.indexOf("?");return-1!==M&&(this.search=m.substr(M),m=m.slice(0,M)),m&&(this.pathname=m),d[o]&&this.hostname&&!this.pathname&&(this.pathname=""),this},r.prototype.parseHost=function(e){var t=o.exec(e);t&&(":"!==(t=t[0])&&(this.port=t.substr(1)),e=e.substr(0,e.length-t.length)),e&&(this.hostname=e)},e.exports=function(e,t){if(e&&e instanceof r)return e;var n=new r;return n.parse(e,t),n}},"31bW":function(e,t,n){"use strict";e.exports=function(e,t,n){var r,i,o,a,s=-1,l=e.posMax,u=e.pos;for(e.pos=t+1,r=1;e.pos1)break;if(41===o&&--a<0)break;t++}return s===t?l:(l.str=i(e.slice(s,t)),l.lines=0,l.pos=t,l.ok=!0,l)}},"5MuF":function(e,t,n){var r,i,o,a,s,l;r=n("M5NS").L,i=n("ZtX9").N,o=n("LZNv").Z,a=n("f1Wf").M,s=n("LOV/"),l=function(e){return~r.indexOf(e)?"L":~i.indexOf(e)?"N":~o.indexOf(e)?"Z":~a.indexOf(e)?"M":void 0},e.exports=function(e,t){e=e||"";for(var n=(t=t||{}).allowedChars||"-_~",r="boolean"!=typeof t.lower||t.lower,i="boolean"==typeof t.spaces&&t.spaces,o=[],a=s.nfkc(e),u=0;u-1:e.form.is_private},on:{change:function(t){var n=e.form.is_private,r=t.target,i=!!r.checked;if(Array.isArray(n)){var o=e._i(n,null);r.checked?o<0&&e.$set(e.form,"is_private",n.concat([null])):o>-1&&e.$set(e.form,"is_private",n.slice(0,o).concat(n.slice(o+1)))}else e.$set(e.form,"is_private",i)}}}),e._v(" "),n("label",{staticClass:"custom-control-label",attrs:{for:"is_private"}},[e._v(e._s(e.__("Private story?")))])])]),e._v(" "),n("div",{staticClass:"form-group"},[n("label",[e._v(e._s(e.__("Tags")))]),e._v(" "),n("tags",{model:{value:e.form.tags,callback:function(t){e.$set(e.form,"tags",t)},expression:"form.tags"}})],1)]),e._v(" "),n("div",{staticClass:"card-footer"},[n("button",{staticClass:"btn btn-primary",attrs:{disabled:e.loading},on:{click:function(t){return t.preventDefault(),e.submit(t)}}},[e.loading?n("span",{staticClass:"spinner-grow spinner-grow-sm",attrs:{role:"status","aria-hidden":"true"}}):e._e(),e._v("\n "+e._s(e.__("Save"))+"\n ")])])])},[],!1,null,null,null);t.default=s.exports},"5oMp":function(e,t,n){"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},"5oZ/":function(e,t,n){var r=n("ybOZ"),i=n("zJjT"),o=n("UGEY"),a=n("E0m9"),s=n("FdGB"),l=n("s847"),u=r.makeSpan,c=r.fontMap,f=function(e,t){return s[t][e]&&s[t][e].replace&&(e=s[t][e].replace),new o.TextNode(e)},p=function(e,t){var n=t.font;if(!n)return null;var r=e.mode;if("mathit"===n)return"italic";var o=e.value;if(l.contains(["\\imath","\\jmath"],o))return null;s[r][o]&&s[r][o].replace&&(o=s[r][o].replace);var a=c[n].fontName;return i.getCharacterMetrics(o,a)?c[t.font].variant:null},h={mathord:function(e,t){var n=new o.MathNode("mi",[f(e.value,e.mode)]),r=p(e,t);return r&&n.setAttribute("mathvariant",r),n},textord:function(e,t){var n,r=f(e.value,e.mode),i=p(e,t)||"normal";return/[0-9]/.test(e.value)?(n=new o.MathNode("mn",[r]),t.font&&n.setAttribute("mathvariant",i)):(n=new o.MathNode("mi",[r])).setAttribute("mathvariant",i),n},bin:function(e){return new o.MathNode("mo",[f(e.value,e.mode)])},rel:function(e){return new o.MathNode("mo",[f(e.value,e.mode)])},open:function(e){return new o.MathNode("mo",[f(e.value,e.mode)])},close:function(e){return new o.MathNode("mo",[f(e.value,e.mode)])},inner:function(e){return new o.MathNode("mo",[f(e.value,e.mode)])},punct:function(e){var t=new o.MathNode("mo",[f(e.value,e.mode)]);return t.setAttribute("separator","true"),t},ordgroup:function(e,t){var n=d(e.value,t);return new o.MathNode("mrow",n)},text:function(e,t){var n=d(e.value.body,t);return new o.MathNode("mtext",n)},color:function(e,t){var n=d(e.value.value,t),r=new o.MathNode("mstyle",n);return r.setAttribute("mathcolor",e.value.color),r},supsub:function(e,t){var n,r=[m(e.value.base,t)];return e.value.sub&&r.push(m(e.value.sub,t)),e.value.sup&&r.push(m(e.value.sup,t)),n=e.value.sub?e.value.sup?"msubsup":"msub":"msup",new o.MathNode(n,r)},genfrac:function(e,t){var n=new o.MathNode("mfrac",[m(e.value.numer,t),m(e.value.denom,t)]);if(e.value.hasBarLine||n.setAttribute("linethickness","0px"),null!=e.value.leftDelim||null!=e.value.rightDelim){var r=[];if(null!=e.value.leftDelim){var i=new o.MathNode("mo",[new o.TextNode(e.value.leftDelim)]);i.setAttribute("fence","true"),r.push(i)}if(r.push(n),null!=e.value.rightDelim){var a=new o.MathNode("mo",[new o.TextNode(e.value.rightDelim)]);a.setAttribute("fence","true"),r.push(a)}return new o.MathNode("mrow",r)}return n},array:function(e,t){return new o.MathNode("mtable",e.value.body.map(function(e){return new o.MathNode("mtr",e.map(function(e){return new o.MathNode("mtd",[m(e,t)])}))}))},sqrt:function(e,t){return e.value.index?new o.MathNode("mroot",[m(e.value.body,t),m(e.value.index,t)]):new o.MathNode("msqrt",[m(e.value.body,t)])},leftright:function(e,t){var n=d(e.value.body,t);if("."!==e.value.left){var r=new o.MathNode("mo",[f(e.value.left,e.mode)]);r.setAttribute("fence","true"),n.unshift(r)}if("."!==e.value.right){var i=new o.MathNode("mo",[f(e.value.right,e.mode)]);i.setAttribute("fence","true"),n.push(i)}return new o.MathNode("mrow",n)},accent:function(e,t){var n=new o.MathNode("mo",[f(e.value.accent,e.mode)]),r=new o.MathNode("mover",[m(e.value.base,t),n]);return r.setAttribute("accent","true"),r},spacing:function(e){var t;return"\\ "===e.value||"\\space"===e.value||" "===e.value||"~"===e.value?t=new o.MathNode("mtext",[new o.TextNode("ย ")]):(t=new o.MathNode("mspace")).setAttribute("width",r.spacingFunctions[e.value].size),t},op:function(e){return e.value.symbol?new o.MathNode("mo",[f(e.value.body,e.mode)]):new o.MathNode("mi",[new o.TextNode(e.value.body.slice(1))])},katex:function(e){return new o.MathNode("mtext",[new o.TextNode("KaTeX")])},font:function(e,t){var n=e.value.font;return m(e.value.body,t.withFont(n))},delimsizing:function(e){var t=[];"."!==e.value.value&&t.push(f(e.value.value,e.mode));var n=new o.MathNode("mo",t);return"open"===e.value.delimType||"close"===e.value.delimType?n.setAttribute("fence","true"):n.setAttribute("fence","false"),n},styling:function(e,t){var n=d(e.value.value,t),r=new o.MathNode("mstyle",n),i={display:["0","true"],text:["0","false"],script:["1","false"],scriptscript:["2","false"]}[e.value.style];return r.setAttribute("scriptlevel",i[0]),r.setAttribute("displaystyle",i[1]),r},sizing:function(e,t){var n=d(e.value.value,t),i=new o.MathNode("mstyle",n);return i.setAttribute("mathsize",r.sizingMultiplier[e.value.size]+"em"),i},overline:function(e,t){var n=new o.MathNode("mo",[new o.TextNode("โ€พ")]);n.setAttribute("stretchy","true");var r=new o.MathNode("mover",[m(e.value.body,t),n]);return r.setAttribute("accent","true"),r},underline:function(e,t){var n=new o.MathNode("mo",[new o.TextNode("โ€พ")]);n.setAttribute("stretchy","true");var r=new o.MathNode("munder",[m(e.value.body,t),n]);return r.setAttribute("accentunder","true"),r},rule:function(e){return new o.MathNode("mrow")},llap:function(e,t){var n=new o.MathNode("mpadded",[m(e.value.body,t)]);return n.setAttribute("lspace","-1width"),n.setAttribute("width","0px"),n},rlap:function(e,t){var n=new o.MathNode("mpadded",[m(e.value.body,t)]);return n.setAttribute("width","0px"),n},phantom:function(e,t,n){var r=d(e.value.value,t);return new o.MathNode("mphantom",r)}},d=function(e,t){for(var n=[],r=0;rl;)r(s,n=t[l++])&&(~o(u,n)||u.push(n));return u}},"5vkS":function(e,t,n){"use strict";function r(e,t){var n=Number(e[t].meta.id+1).toString(),r="fnref"+n;return e[t].meta.subId>0&&(r+=":"+e[t].meta.subId),'['+n+"]"}function i(e,t,n){return(n.xhtmlOut?'
\n':'
\n')+'
\n
    \n'}function o(){return"
\n
\n"}function a(e,t){return'
  • '}function s(){return"
  • \n"}function l(e,t){var n="fnref"+Number(e[t].meta.id+1).toString();return e[t].meta.subId>0&&(n+=":"+e[t].meta.subId),' โ†ฉ'}e.exports=function(e){var t=e.helpers.parseLinkLabel,n=e.utils.isSpace;e.renderer.rules.footnote_ref=r,e.renderer.rules.footnote_block_open=i,e.renderer.rules.footnote_block_close=o,e.renderer.rules.footnote_open=a,e.renderer.rules.footnote_close=s,e.renderer.rules.footnote_anchor=l,e.block.ruler.before("reference","footnote_def",function(e,t,r,i){var o,a,s,l,u,c,f,p,h,d,m,g=e.bMarks[t]+e.tShift[t],_=e.eMarks[t];if(g+4>_)return!1;if(91!==e.src.charCodeAt(g))return!1;if(94!==e.src.charCodeAt(g+1))return!1;for(u=g+2;u<_;u++){if(32===e.src.charCodeAt(u))return!1;if(93===e.src.charCodeAt(u))break}if(u===g+2)return!1;if(u+1>=_||58!==e.src.charCodeAt(++u))return!1;if(i)return!0;for(u++,e.env.footnotes||(e.env.footnotes={}),e.env.footnotes.refs||(e.env.footnotes.refs={}),c=e.src.slice(g+2,u-2),e.env.footnotes.refs[":"+c]=-1,(f=new e.Token("footnote_reference_open","",1)).meta={label:c},f.level=e.level++,e.tokens.push(f),o=e.bMarks[t],a=e.tShift[t],s=e.sCount[t],l=e.parentType,m=u,p=h=e.sCount[t]+u-(e.bMarks[t]+e.tShift[t]);u<_&&(d=e.src.charCodeAt(u),n(d));)9===d?h+=4-h%4:h++,u++;return e.tShift[t]=u-m,e.sCount[t]=h-p,e.bMarks[t]=m,e.blkIndent+=4,e.parentType="footnote",e.sCount[t]=s)&&(94===e.src.charCodeAt(l)&&(91===e.src.charCodeAt(l+1)&&(r=l+2,!((i=t(e,l+1))<0)&&(n||(e.env.footnotes||(e.env.footnotes={}),e.env.footnotes.list||(e.env.footnotes.list=[]),o=e.env.footnotes.list.length,e.md.inline.parse(e.src.slice(r,i),e.md,e.env,a=[]),e.push("footnote_ref","",0).meta={id:o},e.env.footnotes.list[o]={tokens:a}),e.pos=i+1,e.posMax=s,!0))))}),e.inline.ruler.after("footnote_inline","footnote_ref",function(e,t){var n,r,i,o,a=e.posMax,s=e.pos;if(s+3>a)return!1;if(!e.env.footnotes||!e.env.footnotes.refs)return!1;if(91!==e.src.charCodeAt(s))return!1;if(94!==e.src.charCodeAt(s+1))return!1;for(r=s+2;r=a)&&(r++,n=e.src.slice(s+2,r-1),void 0!==e.env.footnotes.refs[":"+n]&&(t||(e.env.footnotes.list||(e.env.footnotes.list=[]),e.env.footnotes.refs[":"+n]<0?(i=e.env.footnotes.list.length,e.env.footnotes.list[i]={label:n,count:0},e.env.footnotes.refs[":"+n]=i):i=e.env.footnotes.refs[":"+n],o=e.env.footnotes.list[i].count,e.env.footnotes.list[i].count++,e.push("footnote_ref","",0).meta={id:i,subId:o}),e.pos=r,e.posMax=a,!0)))}),e.core.ruler.after("inline","footnote_tail",function(e){var t,n,r,i,o,a,s,l,u,c,f=!1,p={};if(e.env.footnotes&&(e.tokens=e.tokens.filter(function(e){return"footnote_reference_open"===e.type?(f=!0,u=[],c=e.meta.label,!1):"footnote_reference_close"===e.type?(f=!1,p[":"+c]=u,!1):(f&&u.push(e),!f)}),e.env.footnotes.list)){for(a=e.env.footnotes.list,s=new e.Token("footnote_block_open","",1),e.tokens.push(s),t=0,n=a.length;t0?a[t].count:1,r=0;r=k,l=[e.sCount[t]],e.sCount[t]=d-h,s=[e.tShift[t]],e.tShift[t]=w-e.bMarks[t],g=e.md.block.ruler.getRules("blockquote"),o=t+1;o=(k=e.eMarks[o]));o++)if(62!==e.src.charCodeAt(w++)){if(a)break;for(y=!1,v=0,b=g.length;v=k,l.push(e.sCount[o]),e.sCount[o]=d-h,s.push(e.tShift[o]),e.tShift[o]=w-e.bMarks[o]}for(f=e.parentType,e.parentType="blockquote",(_=e.push("blockquote_open","blockquote",1)).markup=">",_.map=p=[t,0],e.md.block.tokenize(e,t,o),(_=e.push("blockquote_close","blockquote",-1)).markup=">",e.parentType=f,p[1]=e.line,v=0;v","\\langle","\\rangle","/","\\backslash","\\lt","\\gt"],v=[0,1.2,1.8,2.4,3],b=[{type:"small",style:i.SCRIPTSCRIPT},{type:"small",style:i.SCRIPT},{type:"small",style:i.TEXT},{type:"large",size:1},{type:"large",size:2},{type:"large",size:3},{type:"large",size:4}],y=[{type:"small",style:i.SCRIPTSCRIPT},{type:"small",style:i.SCRIPT},{type:"small",style:i.TEXT},{type:"stack"}],w=[{type:"small",style:i.SCRIPTSCRIPT},{type:"small",style:i.SCRIPT},{type:"small",style:i.TEXT},{type:"large",size:1},{type:"large",size:2},{type:"large",size:3},{type:"large",size:4},{type:"stack"}],k=function(e,t,n,r,i){"<"===e||"\\lt"===e?e="\\langle":">"!==e&&"\\gt"!==e||(e="\\rangle");var s=function(e,t,n,r){for(var i,o=Math.min(2,3-r.style.size);ot)return n[o]}return n[n.length-1]}(e,t,l.contains(_,e)?b:l.contains(m,e)?w:y,r);return"small"===s.type?function(e,t,n,r,i){var s=o.makeSymbol(e,"Main-Regular",i),l=f(s,t,r);if(n){var u=(1-r.style.sizeMultiplier/t.sizeMultiplier)*a.metrics.axisHeight;l.style.top=u+"em",l.height-=u,l.depth+=u}return l}(e,s.style,n,r,i):"large"===s.type?p(e,s.size,n,r,i):"stack"===s.type?d(e,t,n,r,i):void 0};e.exports={sizedDelim:function(e,t,n,i){if("<"===e||"\\lt"===e?e="\\langle":">"!==e&&"\\gt"!==e||(e="\\rangle"),l.contains(m,e)||l.contains(_,e))return p(e,t,!1,n,i);if(l.contains(g,e))return d(e,v[t],!1,n,i);throw new r("Illegal delimiter: '"+e+"'")},customSizedDelim:k,leftRightDelim:function(e,t,n,r,i){var o=a.metrics.axisHeight*r.style.sizeMultiplier,s=5/a.metrics.ptPerEm,l=Math.max(t-o,n+o),u=Math.max(l/500*901,2*l-s);return k(e,u,!0,r,i)}}},"6sUn":function(e,t,n){var r=n("bzbY");e.exports=function(e,t){return new r(e,t).parse()}},"8L3F":function(e,t,n){"use strict";n.r(t),function(e){for(var n="undefined"!=typeof window&&"undefined"!=typeof document,r=["Edge","Trident","Firefox"],i=0,o=0;o=0){i=1;break}var a=n&&window.Promise?function(e){var t=!1;return function(){t||(t=!0,window.Promise.resolve().then(function(){t=!1,e()}))}}:function(e){var t=!1;return function(){t||(t=!0,setTimeout(function(){t=!1,e()},i))}};function s(e){return e&&"[object Function]"==={}.toString.call(e)}function l(e,t){if(1!==e.nodeType)return[];var n=e.ownerDocument.defaultView.getComputedStyle(e,null);return t?n[t]:n}function u(e){return"HTML"===e.nodeName?e:e.parentNode||e.host}function c(e){if(!e)return document.body;switch(e.nodeName){case"HTML":case"BODY":return e.ownerDocument.body;case"#document":return e.body}var t=l(e),n=t.overflow,r=t.overflowX,i=t.overflowY;return/(auto|scroll|overlay)/.test(n+i+r)?e:c(u(e))}var f=n&&!(!window.MSInputMethodContext||!document.documentMode),p=n&&/MSIE 10/.test(navigator.userAgent);function h(e){return 11===e?f:10===e?p:f||p}function d(e){if(!e)return document.documentElement;for(var t=h(10)?document.body:null,n=e.offsetParent||null;n===t&&e.nextElementSibling;)n=(e=e.nextElementSibling).offsetParent;var r=n&&n.nodeName;return r&&"BODY"!==r&&"HTML"!==r?-1!==["TH","TD","TABLE"].indexOf(n.nodeName)&&"static"===l(n,"position")?d(n):n:e?e.ownerDocument.documentElement:document.documentElement}function m(e){return null!==e.parentNode?m(e.parentNode):e}function g(e,t){if(!(e&&e.nodeType&&t&&t.nodeType))return document.documentElement;var n=e.compareDocumentPosition(t)&Node.DOCUMENT_POSITION_FOLLOWING,r=n?e:t,i=n?t:e,o=document.createRange();o.setStart(r,0),o.setEnd(i,0);var a,s,l=o.commonAncestorContainer;if(e!==l&&t!==l||r.contains(i))return"BODY"===(s=(a=l).nodeName)||"HTML"!==s&&d(a.firstElementChild)!==a?d(l):l;var u=m(e);return u.host?g(u.host,t):g(e,m(t).host)}function _(e){var t="top"===(arguments.length>1&&void 0!==arguments[1]?arguments[1]:"top")?"scrollTop":"scrollLeft",n=e.nodeName;if("BODY"===n||"HTML"===n){var r=e.ownerDocument.documentElement;return(e.ownerDocument.scrollingElement||r)[t]}return e[t]}function v(e,t){var n="x"===t?"Left":"Top",r="Left"===n?"Right":"Bottom";return parseFloat(e["border"+n+"Width"],10)+parseFloat(e["border"+r+"Width"],10)}function b(e,t,n,r){return Math.max(t["offset"+e],t["scroll"+e],n["client"+e],n["offset"+e],n["scroll"+e],h(10)?parseInt(n["offset"+e])+parseInt(r["margin"+("Height"===e?"Top":"Left")])+parseInt(r["margin"+("Height"===e?"Bottom":"Right")]):0)}function y(e){var t=e.body,n=e.documentElement,r=h(10)&&getComputedStyle(n);return{height:b("Height",t,n,r),width:b("Width",t,n,r)}}var w=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")},k=function(){function e(e,t){for(var n=0;n2&&void 0!==arguments[2]&&arguments[2],r=h(10),i="HTML"===t.nodeName,o=A(e),a=A(t),s=c(e),u=l(t),f=parseFloat(u.borderTopWidth,10),p=parseFloat(u.borderLeftWidth,10);n&&i&&(a.top=Math.max(a.top,0),a.left=Math.max(a.left,0));var d=E({top:o.top-a.top-f,left:o.left-a.left-p,width:o.width,height:o.height});if(d.marginTop=0,d.marginLeft=0,!r&&i){var m=parseFloat(u.marginTop,10),g=parseFloat(u.marginLeft,10);d.top-=f-m,d.bottom-=f-m,d.left-=p-g,d.right-=p-g,d.marginTop=m,d.marginLeft=g}return(r&&!n?t.contains(s):t===s&&"BODY"!==s.nodeName)&&(d=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2],r=_(t,"top"),i=_(t,"left"),o=n?-1:1;return e.top+=r*o,e.bottom+=r*o,e.left+=i*o,e.right+=i*o,e}(d,t)),d}function T(e){if(!e||!e.parentElement||h())return document.documentElement;for(var t=e.parentElement;t&&"none"===l(t,"transform");)t=t.parentElement;return t||document.documentElement}function D(e,t,n,r){var i=arguments.length>4&&void 0!==arguments[4]&&arguments[4],o={top:0,left:0},a=i?T(e):g(e,t);if("viewport"===r)o=function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=e.ownerDocument.documentElement,r=S(e,n),i=Math.max(n.clientWidth,window.innerWidth||0),o=Math.max(n.clientHeight,window.innerHeight||0),a=t?0:_(n),s=t?0:_(n,"left");return E({top:a-r.top+r.marginTop,left:s-r.left+r.marginLeft,width:i,height:o})}(a,i);else{var s=void 0;"scrollParent"===r?"BODY"===(s=c(u(t))).nodeName&&(s=e.ownerDocument.documentElement):s="window"===r?e.ownerDocument.documentElement:r;var f=S(s,a,i);if("HTML"!==s.nodeName||function e(t){var n=t.nodeName;if("BODY"===n||"HTML"===n)return!1;if("fixed"===l(t,"position"))return!0;var r=u(t);return!!r&&e(r)}(a))o=f;else{var p=y(e.ownerDocument),h=p.height,d=p.width;o.top+=f.top-f.marginTop,o.bottom=h+f.top,o.left+=f.left-f.marginLeft,o.right=d+f.left}}var m="number"==typeof(n=n||0);return o.left+=m?n:n.left||0,o.top+=m?n:n.top||0,o.right-=m?n:n.right||0,o.bottom-=m?n:n.bottom||0,o}function O(e,t,n,r,i){var o=arguments.length>5&&void 0!==arguments[5]?arguments[5]:0;if(-1===e.indexOf("auto"))return e;var a=D(n,r,o,i),s={top:{width:a.width,height:t.top-a.top},right:{width:a.right-t.right,height:a.height},bottom:{width:a.width,height:a.bottom-t.bottom},left:{width:t.left-a.left,height:a.height}},l=Object.keys(s).map(function(e){return C({key:e},s[e],{area:(t=s[e],t.width*t.height)});var t}).sort(function(e,t){return t.area-e.area}),u=l.filter(function(e){var t=e.width,r=e.height;return t>=n.clientWidth&&r>=n.clientHeight}),c=u.length>0?u[0].key:l[0].key,f=e.split("-")[1];return c+(f?"-"+f:"")}function L(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;return S(n,r?T(t):g(t,n),r)}function M(e){var t=e.ownerDocument.defaultView.getComputedStyle(e),n=parseFloat(t.marginTop||0)+parseFloat(t.marginBottom||0),r=parseFloat(t.marginLeft||0)+parseFloat(t.marginRight||0);return{width:e.offsetWidth+r,height:e.offsetHeight+n}}function j(e){var t={left:"right",right:"left",bottom:"top",top:"bottom"};return e.replace(/left|right|bottom|top/g,function(e){return t[e]})}function I(e,t,n){n=n.split("-")[0];var r=M(e),i={width:r.width,height:r.height},o=-1!==["right","left"].indexOf(n),a=o?"top":"left",s=o?"left":"top",l=o?"height":"width",u=o?"width":"height";return i[a]=t[a]+t[l]/2-r[l]/2,i[s]=n===s?t[s]-r[u]:t[j(s)],i}function N(e,t){return Array.prototype.find?e.find(t):e.filter(t)[0]}function P(e,t,n){return(void 0===n?e:e.slice(0,function(e,t,n){if(Array.prototype.findIndex)return e.findIndex(function(e){return e[t]===n});var r=N(e,function(e){return e[t]===n});return e.indexOf(r)}(e,"name",n))).forEach(function(e){e.function&&console.warn("`modifier.function` is deprecated, use `modifier.fn`!");var n=e.function||e.fn;e.enabled&&s(n)&&(t.offsets.popper=E(t.offsets.popper),t.offsets.reference=E(t.offsets.reference),t=n(t,e))}),t}function q(){if(!this.state.isDestroyed){var e={instance:this,styles:{},arrowStyles:{},attributes:{},flipped:!1,offsets:{}};e.offsets.reference=L(this.state,this.popper,this.reference,this.options.positionFixed),e.placement=O(this.options.placement,e.offsets.reference,this.popper,this.reference,this.options.modifiers.flip.boundariesElement,this.options.modifiers.flip.padding),e.originalPlacement=e.placement,e.positionFixed=this.options.positionFixed,e.offsets.popper=I(this.popper,e.offsets.reference,e.placement),e.offsets.popper.position=this.options.positionFixed?"fixed":"absolute",e=P(this.modifiers,e),this.state.isCreated?this.options.onUpdate(e):(this.state.isCreated=!0,this.options.onCreate(e))}}function R(e,t){return e.some(function(e){var n=e.name;return e.enabled&&n===t})}function F(e){for(var t=[!1,"ms","Webkit","Moz","O"],n=e.charAt(0).toUpperCase()+e.slice(1),r=0;r1&&void 0!==arguments[1]&&arguments[1],n=X.indexOf(e),r=X.slice(n+1).concat(X.slice(0,n));return t?r.reverse():r}var J={FLIP:"flip",CLOCKWISE:"clockwise",COUNTERCLOCKWISE:"counterclockwise"};function Q(e,t,n,r){var i=[0,0],o=-1!==["right","left"].indexOf(r),a=e.split(/(\+|\-)/).map(function(e){return e.trim()}),s=a.indexOf(N(a,function(e){return-1!==e.search(/,|\s/)}));a[s]&&-1===a[s].indexOf(",")&&console.warn("Offsets separated by white space(s) are deprecated, use a comma (,) instead.");var l=/\s*,\s*|\s+/,u=-1!==s?[a.slice(0,s).concat([a[s].split(l)[0]]),[a[s].split(l)[1]].concat(a.slice(s+1))]:[a];return(u=u.map(function(e,r){var i=(1===r?!o:o)?"height":"width",a=!1;return e.reduce(function(e,t){return""===e[e.length-1]&&-1!==["+","-"].indexOf(t)?(e[e.length-1]=t,a=!0,e):a?(e[e.length-1]+=t,a=!1,e):e.concat(t)},[]).map(function(e){return function(e,t,n,r){var i=e.match(/((?:\-|\+)?\d*\.?\d*)(.*)/),o=+i[1],a=i[2];if(!o)return e;if(0===a.indexOf("%")){var s=void 0;switch(a){case"%p":s=n;break;case"%":case"%r":default:s=r}return E(s)[t]/100*o}if("vh"===a||"vw"===a){return("vh"===a?Math.max(document.documentElement.clientHeight,window.innerHeight||0):Math.max(document.documentElement.clientWidth,window.innerWidth||0))/100*o}return o}(e,i,t,n)})})).forEach(function(e,t){e.forEach(function(n,r){W(n)&&(i[t]+=n*("-"===e[r-1]?-1:1))})}),i}var ee={placement:"bottom",positionFixed:!1,eventsEnabled:!0,removeOnDestroy:!1,onCreate:function(){},onUpdate:function(){},modifiers:{shift:{order:100,enabled:!0,fn:function(e){var t=e.placement,n=t.split("-")[0],r=t.split("-")[1];if(r){var i=e.offsets,o=i.reference,a=i.popper,s=-1!==["bottom","top"].indexOf(n),l=s?"left":"top",u=s?"width":"height",c={start:x({},l,o[l]),end:x({},l,o[l]+o[u]-a[u])};e.offsets.popper=C({},a,c[r])}return e}},offset:{order:200,enabled:!0,fn:function(e,t){var n=t.offset,r=e.placement,i=e.offsets,o=i.popper,a=i.reference,s=r.split("-")[0],l=void 0;return l=W(+n)?[+n,0]:Q(n,o,a,s),"left"===s?(o.top+=l[0],o.left-=l[1]):"right"===s?(o.top+=l[0],o.left+=l[1]):"top"===s?(o.left+=l[0],o.top-=l[1]):"bottom"===s&&(o.left+=l[0],o.top+=l[1]),e.popper=o,e},offset:0},preventOverflow:{order:300,enabled:!0,fn:function(e,t){var n=t.boundariesElement||d(e.instance.popper);e.instance.reference===n&&(n=d(n));var r=F("transform"),i=e.instance.popper.style,o=i.top,a=i.left,s=i[r];i.top="",i.left="",i[r]="";var l=D(e.instance.popper,e.instance.reference,t.padding,n,e.positionFixed);i.top=o,i.left=a,i[r]=s,t.boundaries=l;var u=t.priority,c=e.offsets.popper,f={primary:function(e){var n=c[e];return c[e]l[e]&&!t.escapeWithReference&&(r=Math.min(c[n],l[e]-("right"===e?c.width:c.height))),x({},n,r)}};return u.forEach(function(e){var t=-1!==["left","top"].indexOf(e)?"primary":"secondary";c=C({},c,f[t](e))}),e.offsets.popper=c,e},priority:["left","right","top","bottom"],padding:5,boundariesElement:"scrollParent"},keepTogether:{order:400,enabled:!0,fn:function(e){var t=e.offsets,n=t.popper,r=t.reference,i=e.placement.split("-")[0],o=Math.floor,a=-1!==["top","bottom"].indexOf(i),s=a?"right":"bottom",l=a?"left":"top",u=a?"width":"height";return n[s]o(r[s])&&(e.offsets.popper[l]=o(r[s])),e}},arrow:{order:500,enabled:!0,fn:function(e,t){var n;if(!K(e.instance.modifiers,"arrow","keepTogether"))return e;var r=t.element;if("string"==typeof r){if(!(r=e.instance.popper.querySelector(r)))return e}else if(!e.instance.popper.contains(r))return console.warn("WARNING: `arrow.element` must be child of its popper element!"),e;var i=e.placement.split("-")[0],o=e.offsets,a=o.popper,s=o.reference,u=-1!==["left","right"].indexOf(i),c=u?"height":"width",f=u?"Top":"Left",p=f.toLowerCase(),h=u?"left":"top",d=u?"bottom":"right",m=M(r)[c];s[d]-ma[d]&&(e.offsets.popper[p]+=s[p]+m-a[d]),e.offsets.popper=E(e.offsets.popper);var g=s[p]+s[c]/2-m/2,_=l(e.instance.popper),v=parseFloat(_["margin"+f],10),b=parseFloat(_["border"+f+"Width"],10),y=g-e.offsets.popper[p]-v-b;return y=Math.max(Math.min(a[c]-m,y),0),e.arrowElement=r,e.offsets.arrow=(x(n={},p,Math.round(y)),x(n,h,""),n),e},element:"[x-arrow]"},flip:{order:600,enabled:!0,fn:function(e,t){if(R(e.instance.modifiers,"inner"))return e;if(e.flipped&&e.placement===e.originalPlacement)return e;var n=D(e.instance.popper,e.instance.reference,t.padding,t.boundariesElement,e.positionFixed),r=e.placement.split("-")[0],i=j(r),o=e.placement.split("-")[1]||"",a=[];switch(t.behavior){case J.FLIP:a=[r,i];break;case J.CLOCKWISE:a=Z(r);break;case J.COUNTERCLOCKWISE:a=Z(r,!0);break;default:a=t.behavior}return a.forEach(function(s,l){if(r!==s||a.length===l+1)return e;r=e.placement.split("-")[0],i=j(r);var u=e.offsets.popper,c=e.offsets.reference,f=Math.floor,p="left"===r&&f(u.right)>f(c.left)||"right"===r&&f(u.left)f(c.top)||"bottom"===r&&f(u.top)f(n.right),m=f(u.top)f(n.bottom),_="left"===r&&h||"right"===r&&d||"top"===r&&m||"bottom"===r&&g,v=-1!==["top","bottom"].indexOf(r),b=!!t.flipVariations&&(v&&"start"===o&&h||v&&"end"===o&&d||!v&&"start"===o&&m||!v&&"end"===o&&g),y=!!t.flipVariationsByContent&&(v&&"start"===o&&d||v&&"end"===o&&h||!v&&"start"===o&&g||!v&&"end"===o&&m),w=b||y;(p||_||w)&&(e.flipped=!0,(p||_)&&(r=a[l+1]),w&&(o=function(e){return"end"===e?"start":"start"===e?"end":e}(o)),e.placement=r+(o?"-"+o:""),e.offsets.popper=C({},e.offsets.popper,I(e.instance.popper,e.offsets.reference,e.placement)),e=P(e.instance.modifiers,e,"flip"))}),e},behavior:"flip",padding:5,boundariesElement:"viewport",flipVariations:!1,flipVariationsByContent:!1},inner:{order:700,enabled:!1,fn:function(e){var t=e.placement,n=t.split("-")[0],r=e.offsets,i=r.popper,o=r.reference,a=-1!==["left","right"].indexOf(n),s=-1===["top","left"].indexOf(n);return i[a?"left":"top"]=o[n]-(s?i[a?"width":"height"]:0),e.placement=j(t),e.offsets.popper=E(i),e}},hide:{order:800,enabled:!0,fn:function(e){if(!K(e.instance.modifiers,"hide","preventOverflow"))return e;var t=e.offsets.reference,n=N(e.instance.modifiers,function(e){return"preventOverflow"===e.name}).boundaries;if(t.bottomn.right||t.top>n.bottom||t.right2&&void 0!==arguments[2]?arguments[2]:{};w(this,e),this.scheduleUpdate=function(){return requestAnimationFrame(r.update)},this.update=a(this.update.bind(this)),this.options=C({},e.Defaults,i),this.state={isDestroyed:!1,isCreated:!1,scrollParents:[]},this.reference=t&&t.jquery?t[0]:t,this.popper=n&&n.jquery?n[0]:n,this.options.modifiers={},Object.keys(C({},e.Defaults.modifiers,i.modifiers)).forEach(function(t){r.options.modifiers[t]=C({},e.Defaults.modifiers[t]||{},i.modifiers?i.modifiers[t]:{})}),this.modifiers=Object.keys(this.options.modifiers).map(function(e){return C({name:e},r.options.modifiers[e])}).sort(function(e,t){return e.order-t.order}),this.modifiers.forEach(function(e){e.enabled&&s(e.onLoad)&&e.onLoad(r.reference,r.popper,r.options,e,r.state)}),this.update();var o=this.options.eventsEnabled;o&&this.enableEventListeners(),this.state.eventsEnabled=o}return k(e,[{key:"update",value:function(){return q.call(this)}},{key:"destroy",value:function(){return z.call(this)}},{key:"enableEventListeners",value:function(){return U.call(this)}},{key:"disableEventListeners",value:function(){return H.call(this)}}]),e}();te.Utils=("undefined"!=typeof window?window:e).PopperUtils,te.placements=Y,te.Defaults=ee,t.default=te}.call(this,n("yLpj"))},"8oxB":function(e,t){var n,r,i=e.exports={};function o(){throw new Error("setTimeout has not been defined")}function a(){throw new Error("clearTimeout has not been defined")}function s(e){if(n===setTimeout)return setTimeout(e,0);if((n===o||!n)&&setTimeout)return n=setTimeout,setTimeout(e,0);try{return n(e,0)}catch(t){try{return n.call(null,e,0)}catch(t){return n.call(this,e,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:o}catch(e){n=o}try{r="function"==typeof clearTimeout?clearTimeout:a}catch(e){r=a}}();var l,u=[],c=!1,f=-1;function p(){c&&l&&(c=!1,l.length?u=l.concat(u):f=-1,u.length&&h())}function h(){if(!c){var e=s(p);c=!0;for(var t=u.length;t;){for(l=u,u=[];++f1)for(var n=1;n=55296&&e<=57343)&&(!(e>=64976&&e<=65007)&&(65535!=(65535&e)&&65534!=(65535&e)&&(!(e>=0&&e<=8)&&(11!==e&&(!(e>=14&&e<=31)&&(!(e>=127&&e<=159)&&!(e>1114111)))))))}function a(e){if(e>65535){var t=55296+((e-=65536)>>10),n=56320+(1023&e);return String.fromCharCode(t,n)}return String.fromCharCode(e)}var s=/\\([!"#$%&'()*+,\-.\/:;<=>?@[\\\]^_`{|}~])/g,l=new RegExp(s.source+"|"+/&([a-z#][a-z0-9]{1,31});/gi.source,"gi"),u=/^#((?:x[a-f0-9]{1,8}|[0-9]{1,8}))/i,c=n("vWgF");var f=/[&<>"]/,p=/[&<>"]/g,h={"&":"&","<":"<",">":">",'"':"""};function d(e){return h[e]}var m=/[.?*+^$[\]\\(){}|-]/g;var g=n("fKCf");t.lib={},t.lib.mdurl=n("2KYT"),t.lib.ucmicro=n("1dGX"),t.assign=function(e){return Array.prototype.slice.call(arguments,1).forEach(function(t){if(t){if("object"!=typeof t)throw new TypeError(t+"must be object");Object.keys(t).forEach(function(n){e[n]=t[n]})}}),e},t.isString=function(e){return"[object String]"===function(e){return Object.prototype.toString.call(e)}(e)},t.has=i,t.unescapeMd=function(e){return e.indexOf("\\")<0?e:e.replace(s,"$1")},t.unescapeAll=function(e){return e.indexOf("\\")<0&&e.indexOf("&")<0?e:e.replace(l,function(e,t,n){return t||function(e,t){var n=0;return i(c,t)?c[t]:35===t.charCodeAt(0)&&u.test(t)&&o(n="x"===t[1].toLowerCase()?parseInt(t.slice(2),16):parseInt(t.slice(1),10))?a(n):e}(e,n)})},t.isValidEntityCode=o,t.fromCodePoint=a,t.escapeHtml=function(e){return f.test(e)?e.replace(p,d):e},t.arrayReplaceAt=function(e,t,n){return[].concat(e.slice(0,t),n,e.slice(t+1))},t.isSpace=function(e){switch(e){case 9:case 32:return!0}return!1},t.isWhiteSpace=function(e){if(e>=8192&&e<=8202)return!0;switch(e){case 9:case 10:case 11:case 12:case 13:case 32:case 160:case 5760:case 8239:case 8287:case 12288:return!0}return!1},t.isMdAsciiPunct=function(e){switch(e){case 33:case 34:case 35:case 36:case 37:case 38:case 39:case 40:case 41:case 42:case 43:case 44:case 45:case 46:case 47:case 58:case 59:case 60:case 61:case 62:case 63:case 64:case 91:case 92:case 93:case 94:case 95:case 96:case 123:case 124:case 125:case 126:return!0;default:return!1}},t.isPunctChar=function(e){return g.test(e)},t.escapeRE=function(e){return e.replace(m,"\\$&")},t.normalizeReference=function(e){return e.trim().replace(/\s+/g," ").toUpperCase()}},AL2g:function(e,t,n){"use strict";e.exports=function(e,t){return e[t].content}},"B+OT":function(e,t){var n={}.hasOwnProperty;e.exports=function(e,t){return n.call(e,t)}},B1jb:function(e,t,n){"use strict";var r=n("AGgm").isSpace;e.exports=function(e,t,n,i){var o,a,s,l,u=e.bMarks[t]+e.tShift[t],c=e.eMarks[t];if(35!==(o=e.src.charCodeAt(u))||u>=c)return!1;for(a=1,o=e.src.charCodeAt(++u);35===o&&u6||uu&&r(e.src.charCodeAt(s-1))&&(c=s),e.line=t+1,(l=e.push("heading_open","h"+String(a),1)).markup="########".slice(0,a),l.map=[t,e.line],(l=e.push("inline","",0)).content=e.src.slice(u,c).trim(),l.map=[t,e.line],l.children=[],(l=e.push("heading_close","h"+String(a),-1)).markup="########".slice(0,a),!0))}},BEtg:function(e,t){e.exports=function(e){return null!=e&&null!=e.constructor&&"function"==typeof e.constructor.isBuffer&&e.constructor.isBuffer(e)}},CK61:function(e,t,n){"use strict";var r=n("AGgm"),i=n("Vlv/"),o=n("fMI+"),a=n("qRUV"),s=n("dpam"),l=n("TLR5"),u=n("+80P"),c=n("2KYT"),f=n("GYWy"),p={default:n("ijE+"),zero:n("HKru"),commonmark:n("Qo0+")},h=/^(vbscript|javascript|file|data):/,d=/^data:image\/(gif|png|jpeg|webp);/;function m(e){var t=e.trim().toLowerCase();return!h.test(t)||!!d.test(t)}var g=["http:","https:","mailto:"];function _(e){var t=c.parse(e,!0);if(t.hostname&&(!t.protocol||g.indexOf(t.protocol)>=0))try{t.hostname=f.toASCII(t.hostname)}catch(e){}return c.encode(c.format(t))}function v(e){var t=c.parse(e,!0);if(t.hostname&&(!t.protocol||g.indexOf(t.protocol)>=0))try{t.hostname=f.toUnicode(t.hostname)}catch(e){}return c.decode(c.format(t))}function b(e,t){if(!(this instanceof b))return new b(e,t);t||r.isString(e)||(t=e||{},e="default"),this.inline=new l,this.block=new s,this.core=new a,this.renderer=new o,this.linkify=new u,this.validateLink=m,this.normalizeLink=_,this.normalizeLinkText=v,this.utils=r,this.helpers=i,this.options={},this.configure(e),t&&this.set(t)}b.prototype.set=function(e){return r.assign(this.options,e),this},b.prototype.configure=function(e){var t,n=this;if(r.isString(e)&&!(e=p[t=e]))throw new Error('Wrong `markdown-it` preset "'+t+'", check name');if(!e)throw new Error("Wrong `markdown-it` preset, can't be empty");return e.options&&n.set(e.options),e.components&&Object.keys(e.components).forEach(function(t){e.components[t].rules&&n[t].ruler.enableOnly(e.components[t].rules),e.components[t].rules2&&n[t].ruler2.enableOnly(e.components[t].rules2)}),this},b.prototype.enable=function(e,t){var n=[];Array.isArray(e)||(e=[e]),["core","block","inline"].forEach(function(t){n=n.concat(this[t].ruler.enable(e,!0))},this),n=n.concat(this.inline.ruler2.enable(e,!0));var r=e.filter(function(e){return n.indexOf(e)<0});if(r.length&&!t)throw new Error("MarkdownIt. Failed to enable unknown rule(s): "+r);return this},b.prototype.disable=function(e,t){var n=[];Array.isArray(e)||(e=[e]),["core","block","inline"].forEach(function(t){n=n.concat(this[t].ruler.disable(e,!0))},this),n=n.concat(this.inline.ruler2.disable(e,!0));var r=e.filter(function(e){return n.indexOf(e)<0});if(r.length&&!t)throw new Error("MarkdownIt. Failed to disable unknown rule(s): "+r);return this},b.prototype.use=function(e){var t=[this].concat(Array.prototype.slice.call(arguments,1));return e.apply(e,t),this},b.prototype.parse=function(e,t){var n=new this.core.State(e,this,t);return this.core.process(n),n.tokens},b.prototype.render=function(e,t){return t=t||{},this.renderer.render(this.parse(e,t),this.options,t)},b.prototype.parseInline=function(e,t){var n=new this.core.State(e,this,t);return n.inlineMode=!0,this.core.process(n),n.tokens},b.prototype.renderInline=function(e,t){return t=t||{},this.renderer.render(this.parseInline(e,t),this.options,t)},e.exports=b},CWsV:function(e,t,n){"use strict";function r(e,t,n){this.type=e,this.tag=t,this.attrs=null,this.map=null,this.nesting=n,this.level=0,this.children=null,this.content="",this.markup="",this.info="",this.meta=null,this.block=!1,this.hidden=!1}r.prototype.attrIndex=function(e){var t,n,r;if(!this.attrs)return-1;for(n=0,r=(t=this.attrs).length;n=0&&(n=this.attrs[t][1]),n},r.prototype.attrJoin=function(e,t){var n=this.attrIndex(e);n<0?this.attrPush([e,t]):this.attrs[n][1]=this.attrs[n][1]+" "+t},e.exports=r},CXva:function(e,t,n){"use strict";var r=n("CWsV"),i=n("AGgm").isWhiteSpace,o=n("AGgm").isPunctChar,a=n("AGgm").isMdAsciiPunct;function s(e,t,n,r){this.src=e,this.env=n,this.md=t,this.tokens=r,this.pos=0,this.posMax=this.src.length,this.level=0,this.pending="",this.pendingLevel=0,this.cache={},this.delimiters=[]}s.prototype.pushPending=function(){var e=new r("text","",0);return e.content=this.pending,e.level=this.pendingLevel,this.tokens.push(e),this.pending="",e},s.prototype.push=function(e,t,n){this.pending&&this.pushPending();var i=new r(e,t,n);return n<0&&this.level--,i.level=this.level,n>0&&this.level++,this.pendingLevel=this.level,this.tokens.push(i),i},s.prototype.scanDelims=function(e,t){var n,r,s,l,u,c,f,p,h,d=e,m=!0,g=!0,_=this.posMax,v=this.src.charCodeAt(e);for(n=e>0?this.src.charCodeAt(e-1):32;d<_&&this.src.charCodeAt(d)===v;)d++;return s=d-e,r=d<_?this.src.charCodeAt(d):32,f=a(n)||o(String.fromCharCode(n)),h=a(r)||o(String.fromCharCode(r)),c=i(n),(p=i(r))?m=!1:h&&(c||f||(m=!1)),c?g=!1:f&&(p||h||(g=!1)),t?(l=m,u=g):(l=m&&(!g||f),u=g&&(!m||h)),{can_open:l,can_close:u,length:s}},s.prototype.Token=r,e.exports=s},CgaS:function(e,t,n){"use strict";var r=n("JEQr"),i=n("xTJ+"),o=n("9rSQ"),a=n("UnBK");function s(e){this.defaults=e,this.interceptors={request:new o,response:new o}}s.prototype.request=function(e){"string"==typeof e&&(e=i.merge({url:arguments[0]},arguments[1])),(e=i.merge(r,{method:"get"},this.defaults,e)).method=e.method.toLowerCase();var t=[a,void 0],n=Promise.resolve(e);for(this.interceptors.request.forEach(function(e){t.unshift(e.fulfilled,e.rejected)}),this.interceptors.response.forEach(function(e){t.push(e.fulfilled,e.rejected)});t.length;)n=n.then(t.shift(),t.shift());return n},i.forEach(["delete","get","head","options"],function(e){s.prototype[e]=function(t,n){return this.request(i.merge(n||{},{method:e,url:t}))}}),i.forEach(["post","put","patch"],function(e){s.prototype[e]=function(t,n,r){return this.request(i.merge(r||{},{method:e,url:t,data:n}))}}),e.exports=s},D8kY:function(e,t,n){var r=n("Ojgd"),i=Math.max,o=Math.min;e.exports=function(e,t){return(e=r(e))<0?i(e+t,0):o(e,t)}},DfZB:function(e,t,n){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}},DwkR:function(e,t,n){var r=n("s847"),i=function(e){for(var t=(e=e.slice()).length-1;t>=0;t--)e[t]||e.splice(t,1);return e.join(" ")};function o(e,t,n,r,i,o){this.classes=e||[],this.children=t||[],this.height=n||0,this.depth=r||0,this.maxFontSize=i||0,this.style=o||{},this.attributes={}}function a(e,t,n,r){this.children=e||[],this.height=t||0,this.depth=n||0,this.maxFontSize=r||0}function s(e,t,n,r,i,o,a){this.value=e||"",this.height=t||0,this.depth=n||0,this.italic=r||0,this.skew=i||0,this.classes=o||[],this.style=a||{},this.maxFontSize=0}o.prototype.setAttribute=function(e,t){this.attributes[e]=t},o.prototype.toNode=function(){var e=document.createElement("span");for(var t in e.className=i(this.classes),this.style)Object.prototype.hasOwnProperty.call(this.style,t)&&(e.style[t]=this.style[t]);for(var n in this.attributes)Object.prototype.hasOwnProperty.call(this.attributes,n)&&e.setAttribute(n,this.attributes[n]);for(var r=0;r0&&((t=document.createElement("span")).style.marginRight=this.italic+"em"),this.classes.length>0&&((t=t||document.createElement("span")).className=i(this.classes)),this.style)this.style.hasOwnProperty(n)&&((t=t||document.createElement("span")).style[n]=this.style[n]);return t?(t.appendChild(e),t):e},s.prototype.toMarkup=function(){var e=!1,t="0&&(n+="margin-right:"+this.italic+"em;"),this.style)this.style.hasOwnProperty(o)&&(n+=r.hyphenate(o)+":"+this.style[o]+";");n&&(e=!0,t+=' style="'+r.escape(n)+'"');var a=r.escape(this.value);return e?(t+=">",t+=a,t+=""):a},e.exports={span:o,documentFragment:a,symbolNode:s}},E0m9:function(e,t){function n(e,t,r){var i="KaTeX parse error: "+e;if(void 0!==t&&void 0!==r){i+=" at position "+r+": ";var o=t._input;o=o.slice(0,r)+"ฬฒ"+o.slice(r);var a=Math.max(0,r-15),s=r+15;i+=o.slice(a,s)}var l=new Error(i);return l.name="ParseError",l.__proto__=n.prototype,l.position=r,l}n.prototype.__proto__=Error.prototype,e.exports=n},EVdn:function(e,t,n){var r;!function(t,n){"use strict";"object"==typeof e.exports?e.exports=t.document?n(t,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return n(e)}:n(t)}("undefined"!=typeof window?window:this,function(n,i){"use strict";var o=[],a=n.document,s=Object.getPrototypeOf,l=o.slice,u=o.concat,c=o.push,f=o.indexOf,p={},h=p.toString,d=p.hasOwnProperty,m=d.toString,g=m.call(Object),_={},v=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},b=function(e){return null!=e&&e===e.window},y={type:!0,src:!0,nonce:!0,noModule:!0};function w(e,t,n){var r,i,o=(n=n||a).createElement("script");if(o.text=e,t)for(r in y)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function k(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?p[h.call(e)]||"object":typeof e}var x=function(e,t){return new x.fn.init(e,t)},C=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;function E(e){var t=!!e&&"length"in e&&e.length,n=k(e);return!v(e)&&!b(e)&&("array"===n||0===t||"number"==typeof t&&t>0&&t-1 in e)}x.fn=x.prototype={jquery:"3.4.1",constructor:x,length:0,toArray:function(){return l.call(this)},get:function(e){return null==e?l.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=x.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return x.each(this,e)},map:function(e){return this.pushStack(x.map(this,function(t,n){return e.call(t,n,t)}))},slice:function(){return this.pushStack(l.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(n>=0&&n+~]|"+q+")"+q+"*"),W=new RegExp(q+"|>"),V=new RegExp(z),G=new RegExp("^"+R+"$"),K={ID:new RegExp("^#("+R+")"),CLASS:new RegExp("^\\.("+R+")"),TAG:new RegExp("^("+R+"|[*])"),ATTR:new RegExp("^"+F),PSEUDO:new RegExp("^"+z),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+q+"*(even|odd|(([+-]|)(\\d*)n|)"+q+"*(?:([+-]|)"+q+"*(\\d+)|))"+q+"*\\)|)","i"),bool:new RegExp("^(?:"+P+")$","i"),needsContext:new RegExp("^"+q+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+q+"*((?:-\\d)?\\d*)"+q+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,X=/^(?:input|select|textarea|button)$/i,Z=/^h\d$/i,J=/^[^{]+\{\s*\[native \w/,Q=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\([\\da-f]{1,6}"+q+"?|("+q+")|.)","ig"),ne=function(e,t,n){var r="0x"+t-65536;return r!=r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"๏ฟฝ":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){p()},ae=ye(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{j.apply(O=I.call(w.childNodes),w.childNodes),O[w.childNodes.length].nodeType}catch(e){j={apply:O.length?function(e,t){M.apply(e,I.call(t))}:function(e,t){for(var n=e.length,r=0;e[n++]=t[r++];);e.length=n-1}}}function se(e,t,r,i){var o,s,u,c,f,d,_,v=t&&t.ownerDocument,k=t?t.nodeType:9;if(r=r||[],"string"!=typeof e||!e||1!==k&&9!==k&&11!==k)return r;if(!i&&((t?t.ownerDocument||t:w)!==h&&p(t),t=t||h,m)){if(11!==k&&(f=Q.exec(e)))if(o=f[1]){if(9===k){if(!(u=t.getElementById(o)))return r;if(u.id===o)return r.push(u),r}else if(v&&(u=v.getElementById(o))&&b(t,u)&&u.id===o)return r.push(u),r}else{if(f[2])return j.apply(r,t.getElementsByTagName(e)),r;if((o=f[3])&&n.getElementsByClassName&&t.getElementsByClassName)return j.apply(r,t.getElementsByClassName(o)),r}if(n.qsa&&!S[e+" "]&&(!g||!g.test(e))&&(1!==k||"object"!==t.nodeName.toLowerCase())){if(_=e,v=t,1===k&&W.test(e)){for((c=t.getAttribute("id"))?c=c.replace(re,ie):t.setAttribute("id",c=y),s=(d=a(e)).length;s--;)d[s]="#"+c+" "+be(d[s]);_=d.join(","),v=ee.test(e)&&_e(t.parentNode)||t}try{return j.apply(r,v.querySelectorAll(_)),r}catch(t){S(e,!0)}finally{c===y&&t.removeAttribute("id")}}}return l(e.replace(B,"$1"),t,r,i)}function le(){var e=[];return function t(n,i){return e.push(n+" ")>r.cacheLength&&delete t[e.shift()],t[n+" "]=i}}function ue(e){return e[y]=!0,e}function ce(e){var t=h.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){for(var n=e.split("|"),i=n.length;i--;)r.attrHandle[n[i]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function he(e){return function(t){return"input"===t.nodeName.toLowerCase()&&t.type===e}}function de(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function me(e){return function(t){return"form"in t?t.parentNode&&!1===t.disabled?"label"in t?"label"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&ae(t)===e:t.disabled===e:"label"in t&&t.disabled===e}}function ge(e){return ue(function(t){return t=+t,ue(function(n,r){for(var i,o=e([],n.length,t),a=o.length;a--;)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}function _e(e){return e&&void 0!==e.getElementsByTagName&&e}for(t in n=se.support={},o=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},p=se.setDocument=function(e){var t,i,a=e?e.ownerDocument||e:w;return a!==h&&9===a.nodeType&&a.documentElement?(d=(h=a).documentElement,m=!o(h),w!==h&&(i=h.defaultView)&&i.top!==i&&(i.addEventListener?i.addEventListener("unload",oe,!1):i.attachEvent&&i.attachEvent("onunload",oe)),n.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),n.getElementsByTagName=ce(function(e){return e.appendChild(h.createComment("")),!e.getElementsByTagName("*").length}),n.getElementsByClassName=J.test(h.getElementsByClassName),n.getById=ce(function(e){return d.appendChild(e).id=y,!h.getElementsByName||!h.getElementsByName(y).length}),n.getById?(r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},r.find.ID=function(e,t){if(void 0!==t.getElementById&&m){var n=t.getElementById(e);return n?[n]:[]}}):(r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){var n=void 0!==e.getAttributeNode&&e.getAttributeNode("id");return n&&n.value===t}},r.find.ID=function(e,t){if(void 0!==t.getElementById&&m){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];for(i=t.getElementsByName(e),r=0;o=i[r++];)if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),r.find.TAG=n.getElementsByTagName?function(e,t){return void 0!==t.getElementsByTagName?t.getElementsByTagName(e):n.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){for(;n=o[i++];)1===n.nodeType&&r.push(n);return r}return o},r.find.CLASS=n.getElementsByClassName&&function(e,t){if(void 0!==t.getElementsByClassName&&m)return t.getElementsByClassName(e)},_=[],g=[],(n.qsa=J.test(h.querySelectorAll))&&(ce(function(e){d.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&g.push("[*^$]="+q+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||g.push("\\["+q+"*(?:value|"+P+")"),e.querySelectorAll("[id~="+y+"-]").length||g.push("~="),e.querySelectorAll(":checked").length||g.push(":checked"),e.querySelectorAll("a#"+y+"+*").length||g.push(".#.+[+~]")}),ce(function(e){e.innerHTML="";var t=h.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&g.push("name"+q+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&g.push(":enabled",":disabled"),d.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&g.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),g.push(",.*:")})),(n.matchesSelector=J.test(v=d.matches||d.webkitMatchesSelector||d.mozMatchesSelector||d.oMatchesSelector||d.msMatchesSelector))&&ce(function(e){n.disconnectedMatch=v.call(e,"*"),v.call(e,"[s!='']:x"),_.push("!=",z)}),g=g.length&&new RegExp(g.join("|")),_=_.length&&new RegExp(_.join("|")),t=J.test(d.compareDocumentPosition),b=t||J.test(d.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},T=t?function(e,t){if(e===t)return f=!0,0;var r=!e.compareDocumentPosition-!t.compareDocumentPosition;return r||(1&(r=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!n.sortDetached&&t.compareDocumentPosition(e)===r?e===h||e.ownerDocument===w&&b(w,e)?-1:t===h||t.ownerDocument===w&&b(w,t)?1:c?N(c,e)-N(c,t):0:4&r?-1:1)}:function(e,t){if(e===t)return f=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e===h?-1:t===h?1:i?-1:o?1:c?N(c,e)-N(c,t):0;if(i===o)return pe(e,t);for(n=e;n=n.parentNode;)a.unshift(n);for(n=t;n=n.parentNode;)s.unshift(n);for(;a[r]===s[r];)r++;return r?pe(a[r],s[r]):a[r]===w?-1:s[r]===w?1:0},h):h},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if((e.ownerDocument||e)!==h&&p(e),n.matchesSelector&&m&&!S[t+" "]&&(!_||!_.test(t))&&(!g||!g.test(t)))try{var r=v.call(e,t);if(r||n.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(e){S(t,!0)}return se(t,h,null,[e]).length>0},se.contains=function(e,t){return(e.ownerDocument||e)!==h&&p(e),b(e,t)},se.attr=function(e,t){(e.ownerDocument||e)!==h&&p(e);var i=r.attrHandle[t.toLowerCase()],o=i&&D.call(r.attrHandle,t.toLowerCase())?i(e,t,!m):void 0;return void 0!==o?o:n.attributes||!m?e.getAttribute(t):(o=e.getAttributeNode(t))&&o.specified?o.value:null},se.escape=function(e){return(e+"").replace(re,ie)},se.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},se.uniqueSort=function(e){var t,r=[],i=0,o=0;if(f=!n.detectDuplicates,c=!n.sortStable&&e.slice(0),e.sort(T),f){for(;t=e[o++];)t===e[o]&&(i=r.push(o));for(;i--;)e.splice(r[i],1)}return c=null,e},i=se.getText=function(e){var t,n="",r=0,o=e.nodeType;if(o){if(1===o||9===o||11===o){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=i(e)}else if(3===o||4===o)return e.nodeValue}else for(;t=e[r++];)n+=i(t);return n},(r=se.selectors={cacheLength:50,createPseudo:ue,match:K,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return K.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&V.test(n)&&(t=a(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=C[e+" "];return t||(t=new RegExp("(^|"+q+")"+e+"("+q+"|$)"))&&C(e,function(e){return t.test("string"==typeof e.className&&e.className||void 0!==e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=se.attr(r,e);return null==i?"!="===t:!t||(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i.replace($," ")+" ").indexOf(n)>-1:"|="===t&&(i===n||i.slice(0,n.length+1)===n+"-"))}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,l){var u,c,f,p,h,d,m=o!==a?"nextSibling":"previousSibling",g=t.parentNode,_=s&&t.nodeName.toLowerCase(),v=!l&&!s,b=!1;if(g){if(o){for(;m;){for(p=t;p=p[m];)if(s?p.nodeName.toLowerCase()===_:1===p.nodeType)return!1;d=m="only"===e&&!d&&"nextSibling"}return!0}if(d=[a?g.firstChild:g.lastChild],a&&v){for(b=(h=(u=(c=(f=(p=g)[y]||(p[y]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]||[])[0]===k&&u[1])&&u[2],p=h&&g.childNodes[h];p=++h&&p&&p[m]||(b=h=0)||d.pop();)if(1===p.nodeType&&++b&&p===t){c[e]=[k,h,b];break}}else if(v&&(b=h=(u=(c=(f=(p=t)[y]||(p[y]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]||[])[0]===k&&u[1]),!1===b)for(;(p=++h&&p&&p[m]||(b=h=0)||d.pop())&&((s?p.nodeName.toLowerCase()!==_:1!==p.nodeType)||!++b||(v&&((c=(f=p[y]||(p[y]={}))[p.uniqueID]||(f[p.uniqueID]={}))[e]=[k,b]),p!==t)););return(b-=i)===r||b%r==0&&b/r>=0}}},PSEUDO:function(e,t){var n,i=r.pseudos[e]||r.setFilters[e.toLowerCase()]||se.error("unsupported pseudo: "+e);return i[y]?i(t):i.length>1?(n=[e,e,"",t],r.setFilters.hasOwnProperty(e.toLowerCase())?ue(function(e,n){for(var r,o=i(e,t),a=o.length;a--;)e[r=N(e,o[a])]=!(n[r]=o[a])}):function(e){return i(e,0,n)}):i}},pseudos:{not:ue(function(e){var t=[],n=[],r=s(e.replace(B,"$1"));return r[y]?ue(function(e,t,n,i){for(var o,a=r(e,null,i,[]),s=e.length;s--;)(o=a[s])&&(e[s]=!(t[s]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),t[0]=null,!n.pop()}}),has:ue(function(e){return function(t){return se(e,t).length>0}}),contains:ue(function(e){return e=e.replace(te,ne),function(t){return(t.textContent||i(t)).indexOf(e)>-1}}),lang:ue(function(e){return G.test(e||"")||se.error("unsupported lang: "+e),e=e.replace(te,ne).toLowerCase(),function(t){var n;do{if(n=m?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return(n=n.toLowerCase())===e||0===n.indexOf(e+"-")}while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===d},focus:function(e){return e===h.activeElement&&(!h.hasFocus||h.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:me(!1),disabled:me(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!r.pseudos.empty(e)},header:function(e){return Z.test(e.nodeName)},input:function(e){return X.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:ge(function(){return[0]}),last:ge(function(e,t){return[t-1]}),eq:ge(function(e,t,n){return[n<0?n+t:n]}),even:ge(function(e,t){for(var n=0;nt?t:n;--r>=0;)e.push(r);return e}),gt:ge(function(e,t,n){for(var r=n<0?n+t:n;++r1?function(t,n,r){for(var i=e.length;i--;)if(!e[i](t,n,r))return!1;return!0}:e[0]}function ke(e,t,n,r,i){for(var o,a=[],s=0,l=e.length,u=null!=t;s-1&&(o[u]=!(a[u]=f))}}else _=ke(_===a?_.splice(d,_.length):_),i?i(null,a,_,l):j.apply(a,_)})}function Ce(e){for(var t,n,i,o=e.length,a=r.relative[e[0].type],s=a||r.relative[" "],l=a?1:0,c=ye(function(e){return e===t},s,!0),f=ye(function(e){return N(t,e)>-1},s,!0),p=[function(e,n,r){var i=!a&&(r||n!==u)||((t=n).nodeType?c(e,n,r):f(e,n,r));return t=null,i}];l1&&we(p),l>1&&be(e.slice(0,l-1).concat({value:" "===e[l-2].type?"*":""})).replace(B,"$1"),n,l0,i=e.length>0,o=function(o,a,s,l,c){var f,d,g,_=0,v="0",b=o&&[],y=[],w=u,x=o||i&&r.find.TAG("*",c),C=k+=null==w?1:Math.random()||.1,E=x.length;for(c&&(u=a===h||a||c);v!==E&&null!=(f=x[v]);v++){if(i&&f){for(d=0,a||f.ownerDocument===h||(p(f),s=!m);g=e[d++];)if(g(f,a||h,s)){l.push(f);break}c&&(k=C)}n&&((f=!g&&f)&&_--,o&&b.push(f))}if(_+=v,n&&v!==_){for(d=0;g=t[d++];)g(b,y,a,s);if(o){if(_>0)for(;v--;)b[v]||y[v]||(y[v]=L.call(l));y=ke(y)}j.apply(l,y),c&&!o&&y.length>0&&_+t.length>1&&se.uniqueSort(l)}return c&&(k=C,u=w),b};return n?ue(o):o}(o,i))).selector=e}return s},l=se.select=function(e,t,n,i){var o,l,u,c,f,p="function"==typeof e&&e,h=!i&&a(e=p.selector||e);if(n=n||[],1===h.length){if((l=h[0]=h[0].slice(0)).length>2&&"ID"===(u=l[0]).type&&9===t.nodeType&&m&&r.relative[l[1].type]){if(!(t=(r.find.ID(u.matches[0].replace(te,ne),t)||[])[0]))return n;p&&(t=t.parentNode),e=e.slice(l.shift().value.length)}for(o=K.needsContext.test(e)?0:l.length;o--&&(u=l[o],!r.relative[c=u.type]);)if((f=r.find[c])&&(i=f(u.matches[0].replace(te,ne),ee.test(l[0].type)&&_e(t.parentNode)||t))){if(l.splice(o,1),!(e=i.length&&be(l)))return j.apply(n,i),n;break}}return(p||s(e,h))(i,t,!m,n,!t||ee.test(e)&&_e(t.parentNode)||t),n},n.sortStable=y.split("").sort(T).join("")===y,n.detectDuplicates=!!f,p(),n.sortDetached=ce(function(e){return 1&e.compareDocumentPosition(h.createElement("fieldset"))}),ce(function(e){return e.innerHTML="","#"===e.firstChild.getAttribute("href")})||fe("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),n.attributes&&ce(function(e){return e.innerHTML="",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||fe("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),ce(function(e){return null==e.getAttribute("disabled")})||fe(P,function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),se}(n);x.find=A,x.expr=A.selectors,x.expr[":"]=x.expr.pseudos,x.uniqueSort=x.unique=A.uniqueSort,x.text=A.getText,x.isXMLDoc=A.isXML,x.contains=A.contains,x.escapeSelector=A.escape;var S=function(e,t,n){for(var r=[],i=void 0!==n;(e=e[t])&&9!==e.nodeType;)if(1===e.nodeType){if(i&&x(e).is(n))break;r.push(e)}return r},T=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},D=x.expr.match.needsContext;function O(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var L=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function M(e,t,n){return v(t)?x.grep(e,function(e,r){return!!t.call(e,r,e)!==n}):t.nodeType?x.grep(e,function(e){return e===t!==n}):"string"!=typeof t?x.grep(e,function(e){return f.call(t,e)>-1!==n}):x.filter(t,e,n)}x.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?x.find.matchesSelector(r,e)?[r]:[]:x.find.matches(e,x.grep(t,function(e){return 1===e.nodeType}))},x.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!=typeof e)return this.pushStack(x(e).filter(function(){for(t=0;t1?x.uniqueSort(n):n},filter:function(e){return this.pushStack(M(this,e||[],!1))},not:function(e){return this.pushStack(M(this,e||[],!0))},is:function(e){return!!M(this,"string"==typeof e&&D.test(e)?x(e):e||[],!1).length}});var j,I=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(x.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||j,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&e.length>=3?[null,e,null]:I.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof x?t[0]:t,x.merge(this,x.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:a,!0)),L.test(r[1])&&x.isPlainObject(t))for(r in t)v(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=a.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):v(e)?void 0!==n.ready?n.ready(e):e(x):x.makeArray(e,this)}).prototype=x.fn,j=x(a);var N=/^(?:parents|prev(?:Until|All))/,P={children:!0,contents:!0,next:!0,prev:!0};function q(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}x.fn.extend({has:function(e){var t=x(e,this),n=t.length;return this.filter(function(){for(var e=0;e-1:1===n.nodeType&&x.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(o.length>1?x.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?f.call(x(e),this[0]):f.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(x.uniqueSort(x.merge(this.get(),x(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),x.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return S(e,"parentNode")},parentsUntil:function(e,t,n){return S(e,"parentNode",n)},next:function(e){return q(e,"nextSibling")},prev:function(e){return q(e,"previousSibling")},nextAll:function(e){return S(e,"nextSibling")},prevAll:function(e){return S(e,"previousSibling")},nextUntil:function(e,t,n){return S(e,"nextSibling",n)},prevUntil:function(e,t,n){return S(e,"previousSibling",n)},siblings:function(e){return T((e.parentNode||{}).firstChild,e)},children:function(e){return T(e.firstChild)},contents:function(e){return void 0!==e.contentDocument?e.contentDocument:(O(e,"template")&&(e=e.content||e),x.merge([],e.childNodes))}},function(e,t){x.fn[e]=function(n,r){var i=x.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=x.filter(r,i)),this.length>1&&(P[e]||x.uniqueSort(i),N.test(e)&&i.reverse()),this.pushStack(i)}});var R=/[^\x20\t\r\n\f]+/g;function F(e){return e}function z(e){throw e}function $(e,t,n,r){var i;try{e&&v(i=e.promise)?i.call(e).done(t).fail(n):e&&v(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}x.Callbacks=function(e){e="string"==typeof e?function(e){var t={};return x.each(e.match(R)||[],function(e,n){t[n]=!0}),t}(e):x.extend({},e);var t,n,r,i,o=[],a=[],s=-1,l=function(){for(i=i||e.once,r=t=!0;a.length;s=-1)for(n=a.shift();++s-1;)o.splice(n,1),n<=s&&s--}),this},has:function(e){return e?x.inArray(e,o)>-1:o.length>0},empty:function(){return o&&(o=[]),this},disable:function(){return i=a=[],o=n="",this},disabled:function(){return!o},lock:function(){return i=a=[],n||t||(o=n=""),this},locked:function(){return!!i},fireWith:function(e,n){return i||(n=[e,(n=n||[]).slice?n.slice():n],a.push(n),t||l()),this},fire:function(){return u.fireWith(this,arguments),this},fired:function(){return!!r}};return u},x.extend({Deferred:function(e){var t=[["notify","progress",x.Callbacks("memory"),x.Callbacks("memory"),2],["resolve","done",x.Callbacks("once memory"),x.Callbacks("once memory"),0,"resolved"],["reject","fail",x.Callbacks("once memory"),x.Callbacks("once memory"),1,"rejected"]],r="pending",i={state:function(){return r},always:function(){return o.done(arguments).fail(arguments),this},catch:function(e){return i.then(null,e)},pipe:function(){var e=arguments;return x.Deferred(function(n){x.each(t,function(t,r){var i=v(e[r[4]])&&e[r[4]];o[r[1]](function(){var e=i&&i.apply(this,arguments);e&&v(e.promise)?e.promise().progress(n.notify).done(n.resolve).fail(n.reject):n[r[0]+"With"](this,i?[e]:arguments)})}),e=null}).promise()},then:function(e,r,i){var o=0;function a(e,t,r,i){return function(){var s=this,l=arguments,u=function(){var n,u;if(!(e=o&&(r!==z&&(s=void 0,l=[n]),t.rejectWith(s,l))}};e?c():(x.Deferred.getStackHook&&(c.stackTrace=x.Deferred.getStackHook()),n.setTimeout(c))}}return x.Deferred(function(n){t[0][3].add(a(0,n,v(i)?i:F,n.notifyWith)),t[1][3].add(a(0,n,v(e)?e:F)),t[2][3].add(a(0,n,v(r)?r:z))}).promise()},promise:function(e){return null!=e?x.extend(e,i):i}},o={};return x.each(t,function(e,n){var a=n[2],s=n[5];i[n[1]]=a.add,s&&a.add(function(){r=s},t[3-e][2].disable,t[3-e][3].disable,t[0][2].lock,t[0][3].lock),a.add(n[3].fire),o[n[0]]=function(){return o[n[0]+"With"](this===o?void 0:this,arguments),this},o[n[0]+"With"]=a.fireWith}),i.promise(o),e&&e.call(o,o),o},when:function(e){var t=arguments.length,n=t,r=Array(n),i=l.call(arguments),o=x.Deferred(),a=function(e){return function(n){r[e]=this,i[e]=arguments.length>1?l.call(arguments):n,--t||o.resolveWith(r,i)}};if(t<=1&&($(e,o.done(a(n)).resolve,o.reject,!t),"pending"===o.state()||v(i[n]&&i[n].then)))return o.then();for(;n--;)$(i[n],a(n),o.reject);return o.promise()}});var B=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;x.Deferred.exceptionHook=function(e,t){n.console&&n.console.warn&&e&&B.test(e.name)&&n.console.warn("jQuery.Deferred exception: "+e.message,e.stack,t)},x.readyException=function(e){n.setTimeout(function(){throw e})};var U=x.Deferred();function H(){a.removeEventListener("DOMContentLoaded",H),n.removeEventListener("load",H),x.ready()}x.fn.ready=function(e){return U.then(e).catch(function(e){x.readyException(e)}),this},x.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--x.readyWait:x.isReady)||(x.isReady=!0,!0!==e&&--x.readyWait>0||U.resolveWith(a,[x]))}}),x.ready.then=U.then,"complete"===a.readyState||"loading"!==a.readyState&&!a.documentElement.doScroll?n.setTimeout(x.ready):(a.addEventListener("DOMContentLoaded",H),n.addEventListener("load",H));var W=function(e,t,n,r,i,o,a){var s=0,l=e.length,u=null==n;if("object"===k(n))for(s in i=!0,n)W(e,t,s,n[s],!0,o,a);else if(void 0!==r&&(i=!0,v(r)||(a=!0),u&&(a?(t.call(e,r),t=null):(u=t,t=function(e,t,n){return u.call(x(e),n)})),t))for(;s1,null,!0)},removeData:function(e){return this.each(function(){Q.remove(this,e)})}}),x.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=J.get(e,t),n&&(!r||Array.isArray(n)?r=J.access(e,t,x.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=x.queue(e,t),r=n.length,i=n.shift(),o=x._queueHooks(e,t);"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,function(){x.dequeue(e,t)},o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return J.get(e,n)||J.access(e,n,{empty:x.Callbacks("once memory").add(function(){J.remove(e,[t+"queue",n])})})}}),x.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),arguments.length\x20\t\r\n\f]*)/i,_e=/^$|^module$|\/(?:java|ecma)script/i,ve={option:[1,""],thead:[1,"","
    "],col:[2,"","
    "],tr:[2,"","
    "],td:[3,"","
    "],_default:[0,"",""]};function be(e,t){var n;return n=void 0!==e.getElementsByTagName?e.getElementsByTagName(t||"*"):void 0!==e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&O(e,t)?x.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n-1)i&&i.push(o);else if(u=se(o),a=be(f.appendChild(o),"script"),u&&ye(a),n)for(c=0;o=a[c++];)_e.test(o.type||"")&&n.push(o);return f}we=a.createDocumentFragment().appendChild(a.createElement("div")),(ke=a.createElement("input")).setAttribute("type","radio"),ke.setAttribute("checked","checked"),ke.setAttribute("name","t"),we.appendChild(ke),_.checkClone=we.cloneNode(!0).cloneNode(!0).lastChild.checked,we.innerHTML="",_.noCloneChecked=!!we.cloneNode(!0).lastChild.defaultValue;var Ee=/^key/,Ae=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Se=/^([^.]*)(?:\.(.+)|)/;function Te(){return!0}function De(){return!1}function Oe(e,t){return e===function(){try{return a.activeElement}catch(e){}}()==("focus"===t)}function Le(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)Le(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=De;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return x().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=x.guid++)),e.each(function(){x.event.add(this,t,i,r,n)})}function Me(e,t,n){n?(J.set(e,t,!1),x.event.add(e,t,{namespace:!1,handler:function(e){var r,i,o=J.get(this,t);if(1&e.isTrigger&&this[t]){if(o.length)(x.event.special[t]||{}).delegateType&&e.stopPropagation();else if(o=l.call(arguments),J.set(this,t,o),r=n(this,t),this[t](),o!==(i=J.get(this,t))||r?J.set(this,t,!1):i={},o!==i)return e.stopImmediatePropagation(),e.preventDefault(),i.value}else o.length&&(J.set(this,t,{value:x.event.trigger(x.extend(o[0],x.Event.prototype),o.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===J.get(e,t)&&x.event.add(e,t,Te)}x.event={global:{},add:function(e,t,n,r,i){var o,a,s,l,u,c,f,p,h,d,m,g=J.get(e);if(g)for(n.handler&&(n=(o=n).handler,i=o.selector),i&&x.find.matchesSelector(ae,i),n.guid||(n.guid=x.guid++),(l=g.events)||(l=g.events={}),(a=g.handle)||(a=g.handle=function(t){return void 0!==x&&x.event.triggered!==t.type?x.event.dispatch.apply(e,arguments):void 0}),u=(t=(t||"").match(R)||[""]).length;u--;)h=m=(s=Se.exec(t[u])||[])[1],d=(s[2]||"").split(".").sort(),h&&(f=x.event.special[h]||{},h=(i?f.delegateType:f.bindType)||h,f=x.event.special[h]||{},c=x.extend({type:h,origType:m,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&x.expr.match.needsContext.test(i),namespace:d.join(".")},o),(p=l[h])||((p=l[h]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(e,r,d,a)||e.addEventListener&&e.addEventListener(h,a)),f.add&&(f.add.call(e,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),x.event.global[h]=!0)},remove:function(e,t,n,r,i){var o,a,s,l,u,c,f,p,h,d,m,g=J.hasData(e)&&J.get(e);if(g&&(l=g.events)){for(u=(t=(t||"").match(R)||[""]).length;u--;)if(h=m=(s=Se.exec(t[u])||[])[1],d=(s[2]||"").split(".").sort(),h){for(f=x.event.special[h]||{},p=l[h=(r?f.delegateType:f.bindType)||h]||[],s=s[2]&&new RegExp("(^|\\.)"+d.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;o--;)c=p[o],!i&&m!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,d,g.handle)||x.removeEvent(e,h,g.handle),delete l[h])}else for(h in l)x.event.remove(e,h+t[u],n,r,!0);x.isEmptyObject(l)&&J.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=x.event.fix(e),l=new Array(arguments.length),u=(J.get(this,"events")||{})[s.type]||[],c=x.event.special[s.type]||{};for(l[0]=s,t=1;t=1))for(;u!==this;u=u.parentNode||this)if(1===u.nodeType&&("click"!==e.type||!0!==u.disabled)){for(o=[],a={},n=0;n-1:x.find(i,this,null,[u]).length),a[i]&&o.push(r);o.length&&s.push({elem:u,handlers:o})}return u=this,l\x20\t\r\n\f]*)[^>]*)\/>/gi,Ie=/\s*$/g;function qe(e,t){return O(e,"table")&&O(11!==t.nodeType?t:t.firstChild,"tr")&&x(e).children("tbody")[0]||e}function Re(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Fe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function ze(e,t){var n,r,i,o,a,s,l,u;if(1===t.nodeType){if(J.hasData(e)&&(o=J.access(e),a=J.set(t,o),u=o.events))for(i in delete a.handle,a.events={},u)for(n=0,r=u[i].length;n1&&"string"==typeof d&&!_.checkClone&&Ne.test(d))return e.each(function(i){var o=e.eq(i);m&&(t[0]=d.call(this,i,o.html())),Be(o,t,n,r)});if(p&&(o=(i=Ce(t,e[0].ownerDocument,!1,e,r)).firstChild,1===i.childNodes.length&&(i=o),o||r)){for(s=(a=x.map(be(i,"script"),Re)).length;f")},clone:function(e,t,n){var r,i,o,a,s=e.cloneNode(!0),l=se(e);if(!(_.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||x.isXMLDoc(e)))for(a=be(s),r=0,i=(o=be(e)).length;r0&&ye(a,!l&&be(e,"script")),s},cleanData:function(e){for(var t,n,r,i=x.event.special,o=0;void 0!==(n=e[o]);o++)if(X(n)){if(t=n[J.expando]){if(t.events)for(r in t.events)i[r]?x.event.remove(n,r):x.removeEvent(n,r,t.handle);n[J.expando]=void 0}n[Q.expando]&&(n[Q.expando]=void 0)}}}),x.fn.extend({detach:function(e){return Ue(this,e,!0)},remove:function(e){return Ue(this,e)},text:function(e){return W(this,function(e){return void 0===e?x.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return Be(this,arguments,function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||qe(this,e).appendChild(e)})},prepend:function(){return Be(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=qe(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return Be(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return Be(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(x.cleanData(be(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return x.clone(this,e,t)})},html:function(e){return W(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!Ie.test(e)&&!ve[(ge.exec(e)||["",""])[1].toLowerCase()]){e=x.htmlPrefilter(e);try{for(;n=0&&(l+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-o-l-s-.5))||0),l}function ot(e,t,n){var r=We(e),i=(!_.boxSizingReliable()||n)&&"border-box"===x.css(e,"boxSizing",!1,r),o=i,a=Ge(e,t,r),s="offset"+t[0].toUpperCase()+t.slice(1);if(He.test(a)){if(!n)return a;a="auto"}return(!_.boxSizingReliable()&&i||"auto"===a||!parseFloat(a)&&"inline"===x.css(e,"display",!1,r))&&e.getClientRects().length&&(i="border-box"===x.css(e,"boxSizing",!1,r),(o=s in e)&&(a=e[s])),(a=parseFloat(a)||0)+it(e,t,n||(i?"border":"content"),o,r,a)+"px"}function at(e,t,n,r,i){return new at.prototype.init(e,t,n,r,i)}x.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Ge(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=Y(t),l=et.test(t),u=e.style;if(l||(t=Je(s)),a=x.cssHooks[t]||x.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:u[t];"string"===(o=typeof n)&&(i=ie.exec(n))&&i[1]&&(n=fe(e,t,i),o="number"),null!=n&&n==n&&("number"!==o||l||(n+=i&&i[3]||(x.cssNumber[s]?"":"px")),_.clearCloneStyle||""!==n||0!==t.indexOf("background")||(u[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(l?u.setProperty(t,n):u[t]=n))}},css:function(e,t,n,r){var i,o,a,s=Y(t);return et.test(t)||(t=Je(s)),(a=x.cssHooks[t]||x.cssHooks[s])&&"get"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=Ge(e,t,r)),"normal"===i&&t in nt&&(i=nt[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),x.each(["height","width"],function(e,t){x.cssHooks[t]={get:function(e,n,r){if(n)return!Qe.test(x.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?ot(e,t,r):ce(e,tt,function(){return ot(e,t,r)})},set:function(e,n,r){var i,o=We(e),a=!_.scrollboxSize()&&"absolute"===o.position,s=(a||r)&&"border-box"===x.css(e,"boxSizing",!1,o),l=r?it(e,t,r,s,o):0;return s&&a&&(l-=Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-parseFloat(o[t])-it(e,t,"border",!1,o)-.5)),l&&(i=ie.exec(n))&&"px"!==(i[3]||"px")&&(e.style[t]=n,n=x.css(e,t)),rt(0,n,l)}}}),x.cssHooks.marginLeft=Ke(_.reliableMarginLeft,function(e,t){if(t)return(parseFloat(Ge(e,"marginLeft"))||e.getBoundingClientRect().left-ce(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+"px"}),x.each({margin:"",padding:"",border:"Width"},function(e,t){x.cssHooks[e+t]={expand:function(n){for(var r=0,i={},o="string"==typeof n?n.split(" "):[n];r<4;r++)i[e+oe[r]+t]=o[r]||o[r-2]||o[0];return i}},"margin"!==e&&(x.cssHooks[e+t].set=rt)}),x.fn.extend({css:function(e,t){return W(this,function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=We(e),i=t.length;a1)}}),x.Tween=at,at.prototype={constructor:at,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||x.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(x.cssNumber[n]?"":"px")},cur:function(){var e=at.propHooks[this.prop];return e&&e.get?e.get(this):at.propHooks._default.get(this)},run:function(e){var t,n=at.propHooks[this.prop];return this.options.duration?this.pos=t=x.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):at.propHooks._default.set(this),this}},at.prototype.init.prototype=at.prototype,at.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=x.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){x.fx.step[e.prop]?x.fx.step[e.prop](e):1!==e.elem.nodeType||!x.cssHooks[e.prop]&&null==e.elem.style[Je(e.prop)]?e.elem[e.prop]=e.now:x.style(e.elem,e.prop,e.now+e.unit)}}},at.propHooks.scrollTop=at.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},x.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},x.fx=at.prototype.init,x.fx.step={};var st,lt,ut=/^(?:toggle|show|hide)$/,ct=/queueHooks$/;function ft(){lt&&(!1===a.hidden&&n.requestAnimationFrame?n.requestAnimationFrame(ft):n.setTimeout(ft,x.fx.interval),x.fx.tick())}function pt(){return n.setTimeout(function(){st=void 0}),st=Date.now()}function ht(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i["margin"+(n=oe[r])]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function dt(e,t,n){for(var r,i=(mt.tweeners[t]||[]).concat(mt.tweeners["*"]),o=0,a=i.length;o1)},removeAttr:function(e){return this.each(function(){x.removeAttr(this,e)})}}),x.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return void 0===e.getAttribute?x.prop(e,t,n):(1===o&&x.isXMLDoc(e)||(i=x.attrHooks[t.toLowerCase()]||(x.expr.match.bool.test(t)?gt:void 0)),void 0!==n?null===n?void x.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:null==(r=x.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!_.radioValue&&"radio"===t&&O(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(R);if(i&&1===e.nodeType)for(;n=i[r++];)e.removeAttribute(n)}}),gt={set:function(e,t,n){return!1===t?x.removeAttr(e,n):e.setAttribute(n,n),n}},x.each(x.expr.match.bool.source.match(/\w+/g),function(e,t){var n=_t[t]||x.find.attr;_t[t]=function(e,t,r){var i,o,a=t.toLowerCase();return r||(o=_t[a],_t[a]=i,i=null!=n(e,t,r)?a:null,_t[a]=o),i}});var vt=/^(?:input|select|textarea|button)$/i,bt=/^(?:a|area)$/i;function yt(e){return(e.match(R)||[]).join(" ")}function wt(e){return e.getAttribute&&e.getAttribute("class")||""}function kt(e){return Array.isArray(e)?e:"string"==typeof e&&e.match(R)||[]}x.fn.extend({prop:function(e,t){return W(this,x.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each(function(){delete this[x.propFix[e]||e]})}}),x.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&x.isXMLDoc(e)||(t=x.propFix[t]||t,i=x.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=x.find.attr(e,"tabindex");return t?parseInt(t,10):vt.test(e.nodeName)||bt.test(e.nodeName)&&e.href?0:-1}}},propFix:{for:"htmlFor",class:"className"}}),_.optSelected||(x.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),x.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){x.propFix[this.toLowerCase()]=this}),x.fn.extend({addClass:function(e){var t,n,r,i,o,a,s,l=0;if(v(e))return this.each(function(t){x(this).addClass(e.call(this,t,wt(this)))});if((t=kt(e)).length)for(;n=this[l++];)if(i=wt(n),r=1===n.nodeType&&" "+yt(i)+" "){for(a=0;o=t[a++];)r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(s=yt(r))&&n.setAttribute("class",s)}return this},removeClass:function(e){var t,n,r,i,o,a,s,l=0;if(v(e))return this.each(function(t){x(this).removeClass(e.call(this,t,wt(this)))});if(!arguments.length)return this.attr("class","");if((t=kt(e)).length)for(;n=this[l++];)if(i=wt(n),r=1===n.nodeType&&" "+yt(i)+" "){for(a=0;o=t[a++];)for(;r.indexOf(" "+o+" ")>-1;)r=r.replace(" "+o+" "," ");i!==(s=yt(r))&&n.setAttribute("class",s)}return this},toggleClass:function(e,t){var n=typeof e,r="string"===n||Array.isArray(e);return"boolean"==typeof t&&r?t?this.addClass(e):this.removeClass(e):v(e)?this.each(function(n){x(this).toggleClass(e.call(this,n,wt(this),t),t)}):this.each(function(){var t,i,o,a;if(r)for(i=0,o=x(this),a=kt(e);t=a[i++];)o.hasClass(t)?o.removeClass(t):o.addClass(t);else void 0!==e&&"boolean"!==n||((t=wt(this))&&J.set(this,"__className__",t),this.setAttribute&&this.setAttribute("class",t||!1===e?"":J.get(this,"__className__")||""))})},hasClass:function(e){var t,n,r=0;for(t=" "+e+" ";n=this[r++];)if(1===n.nodeType&&(" "+yt(wt(n))+" ").indexOf(t)>-1)return!0;return!1}});var xt=/\r/g;x.fn.extend({val:function(e){var t,n,r,i=this[0];return arguments.length?(r=v(e),this.each(function(n){var i;1===this.nodeType&&(null==(i=r?e.call(this,n,x(this).val()):e)?i="":"number"==typeof i?i+="":Array.isArray(i)&&(i=x.map(i,function(e){return null==e?"":e+""})),(t=x.valHooks[this.type]||x.valHooks[this.nodeName.toLowerCase()])&&"set"in t&&void 0!==t.set(this,i,"value")||(this.value=i))})):i?(t=x.valHooks[i.type]||x.valHooks[i.nodeName.toLowerCase()])&&"get"in t&&void 0!==(n=t.get(i,"value"))?n:"string"==typeof(n=i.value)?n.replace(xt,""):null==n?"":n:void 0}}),x.extend({valHooks:{option:{get:function(e){var t=x.find.attr(e,"value");return null!=t?t:yt(x.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a="select-one"===e.type,s=a?null:[],l=a?o+1:i.length;for(r=o<0?l:a?o:0;r-1)&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),x.each(["radio","checkbox"],function(){x.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=x.inArray(x(e).val(),t)>-1}},_.checkOn||(x.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})}),_.focusin="onfocusin"in n;var Ct=/^(?:focusinfocus|focusoutblur)$/,Et=function(e){e.stopPropagation()};x.extend(x.event,{trigger:function(e,t,r,i){var o,s,l,u,c,f,p,h,m=[r||a],g=d.call(e,"type")?e.type:e,_=d.call(e,"namespace")?e.namespace.split("."):[];if(s=h=l=r=r||a,3!==r.nodeType&&8!==r.nodeType&&!Ct.test(g+x.event.triggered)&&(g.indexOf(".")>-1&&(_=g.split("."),g=_.shift(),_.sort()),c=g.indexOf(":")<0&&"on"+g,(e=e[x.expando]?e:new x.Event(g,"object"==typeof e&&e)).isTrigger=i?2:3,e.namespace=_.join("."),e.rnamespace=e.namespace?new RegExp("(^|\\.)"+_.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=r),t=null==t?[e]:x.makeArray(t,[e]),p=x.event.special[g]||{},i||!p.trigger||!1!==p.trigger.apply(r,t))){if(!i&&!p.noBubble&&!b(r)){for(u=p.delegateType||g,Ct.test(u+g)||(s=s.parentNode);s;s=s.parentNode)m.push(s),l=s;l===(r.ownerDocument||a)&&m.push(l.defaultView||l.parentWindow||n)}for(o=0;(s=m[o++])&&!e.isPropagationStopped();)h=s,e.type=o>1?u:p.bindType||g,(f=(J.get(s,"events")||{})[e.type]&&J.get(s,"handle"))&&f.apply(s,t),(f=c&&s[c])&&f.apply&&X(s)&&(e.result=f.apply(s,t),!1===e.result&&e.preventDefault());return e.type=g,i||e.isDefaultPrevented()||p._default&&!1!==p._default.apply(m.pop(),t)||!X(r)||c&&v(r[g])&&!b(r)&&((l=r[c])&&(r[c]=null),x.event.triggered=g,e.isPropagationStopped()&&h.addEventListener(g,Et),r[g](),e.isPropagationStopped()&&h.removeEventListener(g,Et),x.event.triggered=void 0,l&&(r[c]=l)),e.result}},simulate:function(e,t,n){var r=x.extend(new x.Event,n,{type:e,isSimulated:!0});x.event.trigger(r,null,t)}}),x.fn.extend({trigger:function(e,t){return this.each(function(){x.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return x.event.trigger(e,t,n,!0)}}),_.focusin||x.each({focus:"focusin",blur:"focusout"},function(e,t){var n=function(e){x.event.simulate(t,e.target,x.event.fix(e))};x.event.special[t]={setup:function(){var r=this.ownerDocument||this,i=J.access(r,t);i||r.addEventListener(e,n,!0),J.access(r,t,(i||0)+1)},teardown:function(){var r=this.ownerDocument||this,i=J.access(r,t)-1;i?J.access(r,t,i):(r.removeEventListener(e,n,!0),J.remove(r,t))}}});var At=n.location,St=Date.now(),Tt=/\?/;x.parseXML=function(e){var t;if(!e||"string"!=typeof e)return null;try{t=(new n.DOMParser).parseFromString(e,"text/xml")}catch(e){t=void 0}return t&&!t.getElementsByTagName("parsererror").length||x.error("Invalid XML: "+e),t};var Dt=/\[\]$/,Ot=/\r?\n/g,Lt=/^(?:submit|button|image|reset|file)$/i,Mt=/^(?:input|select|textarea|keygen)/i;function jt(e,t,n,r){var i;if(Array.isArray(t))x.each(t,function(t,i){n||Dt.test(e)?r(e,i):jt(e+"["+("object"==typeof i&&null!=i?t:"")+"]",i,n,r)});else if(n||"object"!==k(t))r(e,t);else for(i in t)jt(e+"["+i+"]",t[i],n,r)}x.param=function(e,t){var n,r=[],i=function(e,t){var n=v(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(null==e)return"";if(Array.isArray(e)||e.jquery&&!x.isPlainObject(e))x.each(e,function(){i(this.name,this.value)});else for(n in e)jt(n,e[n],t,i);return r.join("&")},x.fn.extend({serialize:function(){return x.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=x.prop(this,"elements");return e?x.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!x(this).is(":disabled")&&Mt.test(this.nodeName)&&!Lt.test(e)&&(this.checked||!me.test(e))}).map(function(e,t){var n=x(this).val();return null==n?null:Array.isArray(n)?x.map(n,function(e){return{name:t.name,value:e.replace(Ot,"\r\n")}}):{name:t.name,value:n.replace(Ot,"\r\n")}}).get()}});var It=/%20/g,Nt=/#.*$/,Pt=/([?&])_=[^&]*/,qt=/^(.*?):[ \t]*([^\r\n]*)$/gm,Rt=/^(?:GET|HEAD)$/,Ft=/^\/\//,zt={},$t={},Bt="*/".concat("*"),Ut=a.createElement("a");function Ht(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(R)||[];if(v(n))for(;r=o[i++];)"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function Wt(e,t,n,r){var i={},o=e===$t;function a(s){var l;return i[s]=!0,x.each(e[s]||[],function(e,s){var u=s(t,n,r);return"string"!=typeof u||o||i[u]?o?!(l=u):void 0:(t.dataTypes.unshift(u),a(u),!1)}),l}return a(t.dataTypes[0])||!i["*"]&&a("*")}function Vt(e,t){var n,r,i=x.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&x.extend(!0,e,r),e}Ut.href=At.href,x.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:At.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(At.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Bt,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":x.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Vt(Vt(e,x.ajaxSettings),t):Vt(x.ajaxSettings,e)},ajaxPrefilter:Ht(zt),ajaxTransport:Ht($t),ajax:function(e,t){"object"==typeof e&&(t=e,e=void 0),t=t||{};var r,i,o,s,l,u,c,f,p,h,d=x.ajaxSetup({},t),m=d.context||d,g=d.context&&(m.nodeType||m.jquery)?x(m):x.event,_=x.Deferred(),v=x.Callbacks("once memory"),b=d.statusCode||{},y={},w={},k="canceled",C={readyState:0,getResponseHeader:function(e){var t;if(c){if(!s)for(s={};t=qt.exec(o);)s[t[1].toLowerCase()+" "]=(s[t[1].toLowerCase()+" "]||[]).concat(t[2]);t=s[e.toLowerCase()+" "]}return null==t?null:t.join(", ")},getAllResponseHeaders:function(){return c?o:null},setRequestHeader:function(e,t){return null==c&&(e=w[e.toLowerCase()]=w[e.toLowerCase()]||e,y[e]=t),this},overrideMimeType:function(e){return null==c&&(d.mimeType=e),this},statusCode:function(e){var t;if(e)if(c)C.always(e[C.status]);else for(t in e)b[t]=[b[t],e[t]];return this},abort:function(e){var t=e||k;return r&&r.abort(t),E(0,t),this}};if(_.promise(C),d.url=((e||d.url||At.href)+"").replace(Ft,At.protocol+"//"),d.type=t.method||t.type||d.method||d.type,d.dataTypes=(d.dataType||"*").toLowerCase().match(R)||[""],null==d.crossDomain){u=a.createElement("a");try{u.href=d.url,u.href=u.href,d.crossDomain=Ut.protocol+"//"+Ut.host!=u.protocol+"//"+u.host}catch(e){d.crossDomain=!0}}if(d.data&&d.processData&&"string"!=typeof d.data&&(d.data=x.param(d.data,d.traditional)),Wt(zt,d,t,C),c)return C;for(p in(f=x.event&&d.global)&&0==x.active++&&x.event.trigger("ajaxStart"),d.type=d.type.toUpperCase(),d.hasContent=!Rt.test(d.type),i=d.url.replace(Nt,""),d.hasContent?d.data&&d.processData&&0===(d.contentType||"").indexOf("application/x-www-form-urlencoded")&&(d.data=d.data.replace(It,"+")):(h=d.url.slice(i.length),d.data&&(d.processData||"string"==typeof d.data)&&(i+=(Tt.test(i)?"&":"?")+d.data,delete d.data),!1===d.cache&&(i=i.replace(Pt,"$1"),h=(Tt.test(i)?"&":"?")+"_="+St+++h),d.url=i+h),d.ifModified&&(x.lastModified[i]&&C.setRequestHeader("If-Modified-Since",x.lastModified[i]),x.etag[i]&&C.setRequestHeader("If-None-Match",x.etag[i])),(d.data&&d.hasContent&&!1!==d.contentType||t.contentType)&&C.setRequestHeader("Content-Type",d.contentType),C.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+("*"!==d.dataTypes[0]?", "+Bt+"; q=0.01":""):d.accepts["*"]),d.headers)C.setRequestHeader(p,d.headers[p]);if(d.beforeSend&&(!1===d.beforeSend.call(m,C,d)||c))return C.abort();if(k="abort",v.add(d.complete),C.done(d.success),C.fail(d.error),r=Wt($t,d,t,C)){if(C.readyState=1,f&&g.trigger("ajaxSend",[C,d]),c)return C;d.async&&d.timeout>0&&(l=n.setTimeout(function(){C.abort("timeout")},d.timeout));try{c=!1,r.send(y,E)}catch(e){if(c)throw e;E(-1,e)}}else E(-1,"No Transport");function E(e,t,a,s){var u,p,h,y,w,k=t;c||(c=!0,l&&n.clearTimeout(l),r=void 0,o=s||"",C.readyState=e>0?4:0,u=e>=200&&e<300||304===e,a&&(y=function(e,t,n){for(var r,i,o,a,s=e.contents,l=e.dataTypes;"*"===l[0];)l.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in s)if(s[i]&&s[i].test(r)){l.unshift(i);break}if(l[0]in n)o=l[0];else{for(i in n){if(!l[0]||e.converters[i+" "+l[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==l[0]&&l.unshift(o),n[o]}(d,C,a)),y=function(e,t,n,r){var i,o,a,s,l,u={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)u[a.toLowerCase()]=e.converters[a];for(o=c.shift();o;)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!l&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),l=o,o=c.shift())if("*"===o)o=l;else if("*"!==l&&l!==o){if(!(a=u[l+" "+o]||u["* "+o]))for(i in u)if((s=i.split(" "))[1]===o&&(a=u[l+" "+s[0]]||u["* "+s[0]])){!0===a?a=u[i]:!0!==u[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e.throws)t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+l+" to "+o}}}return{state:"success",data:t}}(d,y,C,u),u?(d.ifModified&&((w=C.getResponseHeader("Last-Modified"))&&(x.lastModified[i]=w),(w=C.getResponseHeader("etag"))&&(x.etag[i]=w)),204===e||"HEAD"===d.type?k="nocontent":304===e?k="notmodified":(k=y.state,p=y.data,u=!(h=y.error))):(h=k,!e&&k||(k="error",e<0&&(e=0))),C.status=e,C.statusText=(t||k)+"",u?_.resolveWith(m,[p,k,C]):_.rejectWith(m,[C,k,h]),C.statusCode(b),b=void 0,f&&g.trigger(u?"ajaxSuccess":"ajaxError",[C,d,u?p:h]),v.fireWith(m,[C,k]),f&&(g.trigger("ajaxComplete",[C,d]),--x.active||x.event.trigger("ajaxStop")))}return C},getJSON:function(e,t,n){return x.get(e,t,n,"json")},getScript:function(e,t){return x.get(e,void 0,t,"script")}}),x.each(["get","post"],function(e,t){x[t]=function(e,n,r,i){return v(n)&&(i=i||r,r=n,n=void 0),x.ajax(x.extend({url:e,type:t,dataType:i,data:n,success:r},x.isPlainObject(e)&&e))}}),x._evalUrl=function(e,t){return x.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(e){x.globalEval(e,t)}})},x.fn.extend({wrapAll:function(e){var t;return this[0]&&(v(e)&&(e=e.call(this[0])),t=x(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){for(var e=this;e.firstElementChild;)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(e){return v(e)?this.each(function(t){x(this).wrapInner(e.call(this,t))}):this.each(function(){var t=x(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=v(e);return this.each(function(n){x(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(e){return this.parent(e).not("body").each(function(){x(this).replaceWith(this.childNodes)}),this}}),x.expr.pseudos.hidden=function(e){return!x.expr.pseudos.visible(e)},x.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},x.ajaxSettings.xhr=function(){try{return new n.XMLHttpRequest}catch(e){}};var Gt={0:200,1223:204},Kt=x.ajaxSettings.xhr();_.cors=!!Kt&&"withCredentials"in Kt,_.ajax=Kt=!!Kt,x.ajaxTransport(function(e){var t,r;if(_.cors||Kt&&!e.crossDomain)return{send:function(i,o){var a,s=e.xhr();if(s.open(e.type,e.url,e.async,e.username,e.password),e.xhrFields)for(a in e.xhrFields)s[a]=e.xhrFields[a];for(a in e.mimeType&&s.overrideMimeType&&s.overrideMimeType(e.mimeType),e.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest"),i)s.setRequestHeader(a,i[a]);t=function(e){return function(){t&&(t=r=s.onload=s.onerror=s.onabort=s.ontimeout=s.onreadystatechange=null,"abort"===e?s.abort():"error"===e?"number"!=typeof s.status?o(0,"error"):o(s.status,s.statusText):o(Gt[s.status]||s.status,s.statusText,"text"!==(s.responseType||"text")||"string"!=typeof s.responseText?{binary:s.response}:{text:s.responseText},s.getAllResponseHeaders()))}},s.onload=t(),r=s.onerror=s.ontimeout=t("error"),void 0!==s.onabort?s.onabort=r:s.onreadystatechange=function(){4===s.readyState&&n.setTimeout(function(){t&&r()})},t=t("abort");try{s.send(e.hasContent&&e.data||null)}catch(e){if(t)throw e}},abort:function(){t&&t()}}}),x.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),x.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return x.globalEval(e),e}}}),x.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),x.ajaxTransport("script",function(e){var t,n;if(e.crossDomain||e.scriptAttrs)return{send:function(r,i){t=x(" diff --git a/resources/js/components/ManageTags.vue b/resources/js/components/ManageTags.vue new file mode 100644 index 0000000..5784d3a --- /dev/null +++ b/resources/js/components/ManageTags.vue @@ -0,0 +1,107 @@ + + + diff --git a/resources/lang/fr.json b/resources/lang/fr.json index 59a9253..de7306e 100644 --- a/resources/lang/fr.json +++ b/resources/lang/fr.json @@ -65,6 +65,7 @@ "Logins": "Connexions", "Import": "Importer", "Export": "Exporter", + "Actions": "Actions", "More": "Plus", "Update preview": "Actualiser la prรฉvisualisation", "Manage archive": "Gestion de l'archive", @@ -76,12 +77,14 @@ "Save": "Enregistrer", "Save then archive": "Enregistrer puis archiver", "Add": "Ajouter", + "Move": "Dรฉplacer", "Show": "Afficher", "Hide": "Cacher", "Copy": "Copier", "Copied": "Copiรฉ", "Choose": "Choisir", "Reset": "Rรฉinitialiser", + "Loading": "Chargement", "Type / to search": "Tapez / pour chercher", @@ -129,6 +132,8 @@ "Search or type a tag": "Cherchez ou tapez un tag", "Can't fetch tags": "Impossible de rรฉcupรฉrer les tags", "Tag :name has been deleted": "Le tag :name a รฉtรฉ supprimรฉ", + "All elements tagged :from will be moved to :to. Selected tag will be deleted. Are you sure?": "Tous les รฉlรฉments taggรฉs :from seront dรฉplacรฉs vers :to. Le tag sera รฉgalement supprimรฉ. รŠtes-vous sรปr ?", + "Elements tagged :from have been moved to :to.": "Les รฉlรฉments taggรฉs :from ont รฉtรฉ dรฉplacรฉs vers :to.", "Rapid share": "Ajout rapide", "Configure your rapid share button and drag it to your bookmarks menu.": "Configurez votre bouton d'ajout rapide et faite le glisser dans votre barre de favoris.", diff --git a/resources/views/manage/tags.blade.php b/resources/views/manage/tags.blade.php index 470627c..f0f2a70 100644 --- a/resources/views/manage/tags.blade.php +++ b/resources/views/manage/tags.blade.php @@ -3,38 +3,7 @@ @section('content')
    -
    -
    {{ __('Tags') }}
    - -
    - @if($tags->isEmpty()) -
    {{ __('No tag') }}
    - @else - - - - - - - - - - @foreach($tags as $tag) - - - - - - @endforeach - -
    {{ __('Name') }}{{ __('Posts') }}#
    - {{ $tag->name }} - {{ $tag->posts_count }} - -
    - @endif -
    -
    +
    @endsection diff --git a/routes/api.php b/routes/api.php index 6289c36..8dfcd6f 100644 --- a/routes/api.php +++ b/routes/api.php @@ -16,3 +16,14 @@ Route::put('story/{id}', 'StoryController@update')->name('story.update'); Route::post('chest', 'ChestController@store')->name('chest.store'); Route::put('chest/{id}', 'ChestController@update')->name('chest.update'); + +Route::group([ + 'as' => 'manage.', + 'prefix' => 'manage', + 'middleware' => 'auth:api', + 'namespace' => 'Manage', +], function (\Illuminate\Routing\Router $router) { + $router->get('tags', 'TagsController@all')->name('all'); + $router->delete('tags/{tag}', 'TagsController@delete')->name('delete'); + $router->post('tags/{from}/move/{to}', 'TagsController@move')->name('move'); +}); diff --git a/routes/web.php b/routes/web.php index ed785fc..980ec06 100644 --- a/routes/web.php +++ b/routes/web.php @@ -41,7 +41,6 @@ Route::post('manage/import', 'ManageController@importStore'); Route::get('manage/export', 'ManageController@exportForm')->name('manage.export'); Route::post('manage/export', 'ManageController@export'); Route::get('manage/tags', 'ManageController@tags')->name('manage.tags'); -Route::get('manage/tags/delete/{tag}/{hash}', 'ManageController@deleteTag')->name('manage.tags.delete'); Route::get('manage/logins', 'ManageController@logins')->name('manage.logins'); Route::get('manage/settings', 'ManageController@settingsForm')->name('manage.settings'); Route::post('manage/settings', 'ManageController@settingsStore');