├── .gitignore ├── README.md ├── alpha_v2 ├── .gitignore ├── anfuns.js ├── anfuns.json ├── base.js ├── base.json ├── base64.js ├── bdys-sign.min.js ├── bdys.js ├── bdys.json ├── crypto-js.min.js ├── grigri.js ├── grigri.json ├── gugufan.js ├── gugufan.json ├── histar.js ├── histar.json ├── jojo.js ├── jojo.json ├── libvio.js ├── libvio.json ├── md5.js ├── nivod.js ├── nivod.json ├── txml.js ├── util.js ├── zxzj.js └── zxzj.json ├── package.json └── sourcesv3.json /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | pnpm-lock.yaml 3 | *_Test.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # syncnextPlugin (自用) 2 | 3 | 一些自用的小插件,不保證可用,隨緣更新。 4 | 5 | | 插件名稱 | 插件地址 | 6 | | --- | --- | 7 | | 泥视频 | `syncnextPlugin://https://raw.githubusercontent.com/icy37785/syncnextPlugin/main/alpha_v2/nivod.json` | 8 | | 星视界 | `syncnextPlugin://https://raw.githubusercontent.com/icy37785/syncnextPlugin/main/alpha_v2/histar.json` | 9 | | 哔嘀影视 |`syncnextPlugin://https://raw.githubusercontent.com/icy37785/syncnextPlugin/main/alpha_v2/bdys.json`| 10 | | 360影視大全 |`syncnextPlugin://https://raw.githubusercontent.com/icy37785/syncnextPlugin/main/alpha_v2/360kan.json`| 11 | 12 | | 完整訂閲 | 訂閲地址 | 13 | | --- | --- | 14 | |原版|`https://raw.githubusercontent.com/qoli/syncnext-api/main/sourcesv3.json`| 15 | |icy37785|`https://raw.githubusercontent.com/icy37785/syncnextPlugin/main/sourcesv3.json`| 16 | |Quinndark|`https://raw.githubusercontent.com/Quinndark/syncnextPlugin/main/sourcesv3.json`| 17 | -------------------------------------------------------------------------------- /alpha_v2/.gitignore: -------------------------------------------------------------------------------- 1 | qq.json 2 | qq.js 3 | video-parser.js 4 | *-dev.json 5 | *-sign.js -------------------------------------------------------------------------------- /alpha_v2/anfuns.js: -------------------------------------------------------------------------------- 1 | `user script`; 2 | 3 | function buildMediaData( 4 | id, 5 | coverURLString, 6 | title, 7 | descriptionText, 8 | detailURLString 9 | ) { 10 | var obj = { 11 | id: id, 12 | coverURLString: coverURLString, 13 | title: title, 14 | descriptionText: descriptionText, 15 | detailURLString: detailURLString, 16 | }; 17 | 18 | return obj; 19 | } 20 | function buildEpisodeData(id, title, episodeDetailURL) { 21 | return { 22 | id: id, 23 | title: title, 24 | episodeDetailURL: episodeDetailURL, 25 | }; 26 | } 27 | // Main 28 | 29 | function buildMedias(inputURL) { 30 | var req = { 31 | url: inputURL, 32 | method: "GET", 33 | }; 34 | 35 | let datas = []; 36 | 37 | $http.fetch(req).then(function (res) { 38 | var content = tXml.getElementsByClassName(res.body, "hl-list-item"); 39 | 40 | for (var index = 0; index < content.length; index++) { 41 | 42 | var dom = content[index]; 43 | //print(content.length) 44 | 45 | var title = findAllByKey(dom, "title")[0]; 46 | var href = findAllByKey(dom, "href")[0]; 47 | var coverURLString = findAllByKey(dom, "data-original")[0]; 48 | var descriptionText = ''; 49 | 50 | href = buildURL(href); 51 | 52 | datas.push( 53 | buildMediaData(href, coverURLString, title, descriptionText, href) 54 | ); 55 | } 56 | 57 | $next.toMedias(JSON.stringify(datas)); 58 | }); 59 | } 60 | function buildURL(href) { 61 | if (!href.startsWith("http")) { 62 | href = "https://www.anfuns.cc" + href; 63 | } 64 | return href; 65 | } 66 | 67 | function Episodes(inputURL) { 68 | var req = { 69 | url: inputURL, 70 | method: "GET", 71 | }; 72 | 73 | let datas = []; 74 | 75 | $http.fetch(req).then(function (res) { 76 | var content = tXml.getElementsByClassName(res.body, "hl-plays-list")[0]; 77 | //print(content.children.length); 78 | 79 | for (var index = 0; index < content.children.length; index++) { 80 | var element = content.children[index].children[0]; 81 | //print(element); 82 | 83 | var href = element.attributes ? element.attributes.href : ''; 84 | var title = element.children.toString(); 85 | 86 | href = buildURL(href); 87 | 88 | datas.push(buildEpisodeData(href, title, href)); 89 | } 90 | 91 | $next.toEpisodes(JSON.stringify(datas)); 92 | }); 93 | } 94 | function Player(inputURL) { 95 | var req = { 96 | url: inputURL, 97 | method: "GET", 98 | }; 99 | 100 | $http.fetch(req).then(function (res) { 101 | var xml = res.body; 102 | html = xml.match(/r player_.*?=(.*?) { 119 | var content = tXml.getElementsByClassName(res.body, "hl-item-div"); 120 | 121 | let datas = []; 122 | for (var index = 0; index < content.length; index++) { 123 | var dom = content[index]; 124 | //print(content.length) 125 | 126 | var title = findAllByKey(dom, "title")[0]; 127 | var href = findAllByKey(dom, "href")[0]; 128 | 129 | href = buildURL(href); 130 | 131 | datas.push(buildEpisodeData(href, title, href)); 132 | } 133 | 134 | $next.toMedias(JSON.stringify(datas)); 135 | }); 136 | } 137 | 138 | 139 | function findAllByKey(obj, keyToFind) { 140 | return ( 141 | Object.entries(obj).reduce( 142 | (acc, [key, value]) => 143 | key === keyToFind 144 | ? acc.concat(value) 145 | : typeof value === "object" && value 146 | ? acc.concat(findAllByKey(value, keyToFind)) 147 | : acc, 148 | [] 149 | ) || [] 150 | ); 151 | } 152 | function print(params) { 153 | console.log(JSON.stringify(params)); 154 | } 155 | -------------------------------------------------------------------------------- /alpha_v2/anfuns.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "anfuns", 3 | "description": "在线动漫资源门户", 4 | "host": "https://anfuns.cc", 5 | "files": [ 6 | "anfuns.js", 7 | "txml.js", 8 | "base64.js" 9 | ], 10 | "pages": [ 11 | { 12 | "key": "index", 13 | "title": "最近更新", 14 | "url": "https://www.anfuns.cc/map.html", 15 | "javascript": "buildMedias" 16 | }, 17 | { 18 | "key": "new", 19 | "title": "新旧番剧", 20 | "url": "https://www.anfuns.cc/type/1-${pageNumber}.html", 21 | "javascript": "buildMedias" 22 | }, 23 | { 24 | "key": "bd", 25 | "title": "蓝光无修", 26 | "url": "https://www.anfuns.cc/type/2-${pageNumber}.html", 27 | "javascript": "buildMedias" 28 | }, 29 | { 30 | "key": "movie", 31 | "title": "剧场版", 32 | "url": "https://www.anfuns.cc/type/3-${pageNumber}.html", 33 | "javascript": "buildMedias" 34 | }, 35 | { 36 | "key": "euAndUs", 37 | "title": "欧美动漫", 38 | "url": "https://www.anfuns.cc/type/3-${pageNumber}.html", 39 | "javascript": "buildMedias" 40 | } 41 | ], 42 | "episodes": { 43 | "javascript": "Episodes" 44 | }, 45 | "player": { 46 | "javascript": "Player" 47 | }, 48 | "search": { 49 | "url": "https://www.anfuns.cc/search.html?wd=${keyword}&submit=", 50 | "javascript": "Search" 51 | } 52 | } -------------------------------------------------------------------------------- /alpha_v2/base.js: -------------------------------------------------------------------------------- 1 | `user script`; 2 | 3 | // Main 4 | function buildMedias(inputURL) { 5 | } 6 | 7 | function Episodes(inputURL) { 8 | } 9 | 10 | function Player(inputURL) { 11 | } 12 | 13 | function Search(inputURL) { 14 | } -------------------------------------------------------------------------------- /alpha_v2/base.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "模板", 3 | "description": "模板詳情", 4 | "host": "https://base.abc", 5 | "files": ["base.js"], 6 | "pages": [ 7 | { 8 | "key": "index", 9 | "title": "最近更新", 10 | "url": "${pageNumber}", 11 | "javascript": "buildMedias" 12 | } 13 | ], 14 | "episodes": { 15 | "javascript": "Episodes" 16 | }, 17 | "player": { 18 | "javascript": "Player" 19 | }, 20 | "search": { 21 | "url": "${keyword}", 22 | "javascript": "Search" 23 | } 24 | } -------------------------------------------------------------------------------- /alpha_v2/base64.js: -------------------------------------------------------------------------------- 1 | function base64Decode(encodeString) { 2 | 3 | // private property 4 | var _keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="; 5 | 6 | 7 | var output = ""; 8 | var chr1, chr2, chr3; 9 | var enc1, enc2, enc3, enc4; 10 | var i = 0; 11 | input = encodeString.replace(/[^A-Za-z0-9\+\/\=]/g, ""); 12 | while (i < input.length) { 13 | enc1 = _keyStr.indexOf(input.charAt(i++)); 14 | enc2 = _keyStr.indexOf(input.charAt(i++)); 15 | enc3 = _keyStr.indexOf(input.charAt(i++)); 16 | enc4 = _keyStr.indexOf(input.charAt(i++)); 17 | chr1 = (enc1 << 2) | (enc2 >> 4); 18 | chr2 = ((enc2 & 15) << 4) | (enc3 >> 2); 19 | chr3 = ((enc3 & 3) << 6) | enc4; 20 | output = output + String.fromCharCode(chr1); 21 | if (enc3 != 64) { 22 | output = output + String.fromCharCode(chr2); 23 | } 24 | if (enc4 != 64) { 25 | output = output + String.fromCharCode(chr3); 26 | } 27 | } 28 | return output; 29 | 30 | } 31 | function utf8_decode(utftext) { 32 | var string = ""; 33 | var i = 0; 34 | var c = c1 = c2 = 0; 35 | while (i < utftext.length) { 36 | c = utftext.charCodeAt(i); 37 | if (c < 128) { 38 | string += String.fromCharCode(c); 39 | i++; 40 | } else if ((c > 191) && (c < 224)) { 41 | c2 = utftext.charCodeAt(i + 1); 42 | string += String.fromCharCode(((c & 31) << 6) | (c2 & 63)); 43 | i += 2; 44 | } else { 45 | c2 = utftext.charCodeAt(i + 1); 46 | c3 = utftext.charCodeAt(i + 2); 47 | string += String.fromCharCode(((c & 15) << 12) | ((c2 & 63) << 6) | (c3 & 63)); 48 | i += 3; 49 | } 50 | } 51 | return string; 52 | } -------------------------------------------------------------------------------- /alpha_v2/bdys-sign.min.js: -------------------------------------------------------------------------------- 1 | var version_='jsjiami.com.v7';(function(_0x45d7e7,_0xd44943,_0x52a013,_0xb0dbef,_0x1439b8,_0x49f583,_0x17e635){return _0x45d7e7=_0x45d7e7>>0x1,_0x49f583='hs',_0x17e635='hs',function(_0x1b711d,_0x205f74,_0x56ef1c,_0x589409,_0x3b463b){const _0x29d90d=_0x1834;_0x589409='tfi',_0x49f583=_0x589409+_0x49f583,_0x3b463b='up',_0x17e635+=_0x3b463b,_0x49f583=_0x56ef1c(_0x49f583),_0x17e635=_0x56ef1c(_0x17e635),_0x56ef1c=0x0;const _0x4153a3=_0x1b711d();while(!![]&&--_0xb0dbef+_0x205f74){try{_0x589409=parseInt(_0x29d90d(0x1ac,'\x6d\x50\x68\x58'))/0x1+-parseInt(_0x29d90d(0x162,'\x6c\x71\x34\x43'))/0x2+-parseInt(_0x29d90d(0x1fe,'\x73\x25\x5a\x56'))/0x3*(-parseInt(_0x29d90d(0x250,'\x40\x32\x53\x63'))/0x4)+-parseInt(_0x29d90d(0x1d0,'\x57\x73\x64\x30'))/0x5*(parseInt(_0x29d90d(0x16f,'\x26\x24\x21\x37'))/0x6)+parseInt(_0x29d90d(0x248,'\x6c\x71\x34\x43'))/0x7+parseInt(_0x29d90d(0x204,'\x79\x4e\x74\x79'))/0x8+parseInt(_0x29d90d(0x247,'\x49\x46\x5d\x4b'))/0x9;}catch(_0x14f608){_0x589409=_0x56ef1c;}finally{_0x3b463b=_0x4153a3[_0x49f583]();if(_0x45d7e7<=_0xb0dbef)_0x56ef1c?_0x1439b8?_0x589409=_0x3b463b:_0x1439b8=_0x3b463b:_0x56ef1c=_0x3b463b;else{if(_0x56ef1c==_0x1439b8['replace'](/[xpJQbuwOInVWltDRYXCAS=]/g,'')){if(_0x589409===_0x205f74){_0x4153a3['un'+_0x49f583](_0x3b463b);break;}_0x4153a3[_0x17e635](_0x3b463b);}}}}}(_0x52a013,_0xd44943,function(_0x2ea8d7,_0x33a4ee,_0x1bced0,_0x1efa3f,_0x45b449,_0x5c5c09,_0x233967){return _0x33a4ee='\x73\x70\x6c\x69\x74',_0x2ea8d7=arguments[0x0],_0x2ea8d7=_0x2ea8d7[_0x33a4ee](''),_0x1bced0='\x72\x65\x76\x65\x72\x73\x65',_0x2ea8d7=_0x2ea8d7[_0x1bced0]('\x76'),_0x1efa3f='\x6a\x6f\x69\x6e',(0x13f240,_0x2ea8d7[_0x1efa3f](''));});}(0x184,0x4ca4e,_0x5c76,0xc4),_0x5c76)&&(version_=_0x5c76);const _0x1c08c8=(function(){const _0x23ba90=_0x1834,_0x3a66d2={'\x42\x63\x6e\x44\x4e':function(_0x1238d9,_0xed44b6){return _0x1238d9!==_0xed44b6;},'\x62\x6b\x72\x55\x59':_0x23ba90(0x1b2,'\x39\x6b\x4c\x64')};let _0x51398b=!![];return function(_0x8fa120,_0x175a44){const _0x12a593=_0x51398b?function(){const _0x5a143c=_0x1834;if(_0x175a44){if(_0x3a66d2[_0x5a143c(0x18a,'\x40\x32\x53\x63')](_0x3a66d2[_0x5a143c(0x1a5,'\x7a\x43\x4c\x72')],_0x3a66d2[_0x5a143c(0x1ef,'\x47\x4b\x46\x62')])){if(_0x58a806){const _0xd43354=_0x1d8b0c[_0x5a143c(0x1d2,'\x67\x42\x73\x54')](_0xf9a445,arguments);return _0x283573=null,_0xd43354;}}else{const _0x3555be=_0x175a44[_0x5a143c(0x10d,'\x57\x73\x64\x30')](_0x8fa120,arguments);return _0x175a44=null,_0x3555be;}}}:function(){};return _0x51398b=![],_0x12a593;};}());(function(){const _0x2f5133=_0x1834,_0x46740d={'\x54\x4a\x4b\x73\x4d':function(_0x4d05f4,_0x310f70){return _0x4d05f4===_0x310f70;},'\x53\x65\x49\x65\x55':_0x2f5133(0x22c,'\x4a\x31\x6e\x5b'),'\x61\x72\x49\x42\x42':_0x2f5133(0x11b,'\x26\x55\x4f\x68'),'\x54\x65\x47\x75\x5a':_0x2f5133(0x218,'\x77\x5d\x21\x29'),'\x6e\x4f\x44\x4b\x44':function(_0x50c3c8,_0x47ceae){return _0x50c3c8(_0x47ceae);},'\x57\x56\x78\x6c\x64':_0x2f5133(0x1e2,'\x5d\x21\x58\x36'),'\x53\x4e\x7a\x44\x73':function(_0x52fb80,_0x25299d){return _0x52fb80+_0x25299d;},'\x4f\x4e\x50\x7a\x62':_0x2f5133(0x206,'\x24\x6f\x71\x24'),'\x4c\x50\x72\x77\x50':_0x2f5133(0x237,'\x54\x51\x57\x73'),'\x7a\x6a\x63\x48\x73':function(_0x17bd42,_0x5c76d3){return _0x17bd42(_0x5c76d3);},'\x70\x6f\x41\x6b\x76':function(_0x93299c){return _0x93299c();},'\x59\x6d\x69\x68\x5a':function(_0x15a4a9,_0x1217e0,_0xa4761d){return _0x15a4a9(_0x1217e0,_0xa4761d);}};_0x46740d[_0x2f5133(0x192,'\x4a\x36\x4c\x7a')](_0x1c08c8,this,function(){const _0x4d5ffc=_0x2f5133;if(_0x46740d[_0x4d5ffc(0x12f,'\x56\x34\x37\x26')](_0x46740d[_0x4d5ffc(0x1a4,'\x5d\x21\x58\x36')],_0x46740d[_0x4d5ffc(0x1ea,'\x5a\x4d\x30\x65')])){const _0x36176e=new RegExp(_0x46740d[_0x4d5ffc(0x231,'\x26\x24\x21\x37')]),_0x5f388f=new RegExp(_0x46740d[_0x4d5ffc(0x244,'\x67\x42\x73\x54')],'\x69'),_0xdb0e26=_0x46740d[_0x4d5ffc(0x233,'\x7a\x43\x4c\x72')](_0x2a60a4,_0x46740d[_0x4d5ffc(0x238,'\x6d\x50\x68\x58')]);!_0x36176e[_0x4d5ffc(0x107,'\x7a\x43\x4c\x72')](_0x46740d[_0x4d5ffc(0x105,'\x79\x4e\x74\x79')](_0xdb0e26,_0x46740d[_0x4d5ffc(0x254,'\x57\x73\x64\x30')]))||!_0x5f388f[_0x4d5ffc(0x219,'\x56\x34\x37\x26')](_0x46740d[_0x4d5ffc(0x1e7,'\x64\x26\x51\x45')](_0xdb0e26,_0x46740d[_0x4d5ffc(0x176,'\x5b\x4b\x75\x53')]))?_0x46740d[_0x4d5ffc(0x239,'\x6c\x47\x42\x41')](_0xdb0e26,'\x30'):_0x46740d[_0x4d5ffc(0x1aa,'\x47\x4b\x46\x62')](_0x2a60a4);}else{const _0x3e0b11=_0x2867c1?function(){const _0x58528a=_0x4d5ffc;if(_0x4e110c){const _0x5a2527=_0x1184c9[_0x58528a(0x11e,'\x35\x21\x4a\x44')](_0x57a5de,arguments);return _0x4e5c4f=null,_0x5a2527;}}:function(){};return _0x4dc7e2=![],_0x3e0b11;}})();}());function _0x1834(_0x2d2a08,_0x432fd9){const _0x249f11=_0x5c76();return _0x1834=function(_0x34de79,_0x27e086){_0x34de79=_0x34de79-0x102;let _0x16dfba=_0x249f11[_0x34de79];if(_0x1834['\x6c\x43\x4a\x5a\x6b\x55']===undefined){var _0x55a7bc=function(_0x4e985e){const _0x55905b='\x61\x62\x63\x64\x65\x66\x67\x68\x69\x6a\x6b\x6c\x6d\x6e\x6f\x70\x71\x72\x73\x74\x75\x76\x77\x78\x79\x7a\x41\x42\x43\x44\x45\x46\x47\x48\x49\x4a\x4b\x4c\x4d\x4e\x4f\x50\x51\x52\x53\x54\x55\x56\x57\x58\x59\x5a\x30\x31\x32\x33\x34\x35\x36\x37\x38\x39\x2b\x2f\x3d';let _0x4ffb38='',_0x3c556c='';for(let _0x46fb47=0x0,_0xd5c7f0,_0x48226a,_0x544815=0x0;_0x48226a=_0x4e985e['\x63\x68\x61\x72\x41\x74'](_0x544815++);~_0x48226a&&(_0xd5c7f0=_0x46fb47%0x4?_0xd5c7f0*0x40+_0x48226a:_0x48226a,_0x46fb47++%0x4)?_0x4ffb38+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](0xff&_0xd5c7f0>>(-0x2*_0x46fb47&0x6)):0x0){_0x48226a=_0x55905b['\x69\x6e\x64\x65\x78\x4f\x66'](_0x48226a);}for(let _0x220ee4=0x0,_0x4b023c=_0x4ffb38['\x6c\x65\x6e\x67\x74\x68'];_0x220ee4<_0x4b023c;_0x220ee4++){_0x3c556c+='\x25'+('\x30\x30'+_0x4ffb38['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x220ee4)['\x74\x6f\x53\x74\x72\x69\x6e\x67'](0x10))['\x73\x6c\x69\x63\x65'](-0x2);}return decodeURIComponent(_0x3c556c);};const _0x18346f=function(_0x52e3f8,_0x300569){let _0x464737=[],_0x3ffaa3=0x0,_0x3ec1fe,_0x120c4a='';_0x52e3f8=_0x55a7bc(_0x52e3f8);let _0x41a979;for(_0x41a979=0x0;_0x41a979<0x100;_0x41a979++){_0x464737[_0x41a979]=_0x41a979;}for(_0x41a979=0x0;_0x41a979<0x100;_0x41a979++){_0x3ffaa3=(_0x3ffaa3+_0x464737[_0x41a979]+_0x300569['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x41a979%_0x300569['\x6c\x65\x6e\x67\x74\x68']))%0x100,_0x3ec1fe=_0x464737[_0x41a979],_0x464737[_0x41a979]=_0x464737[_0x3ffaa3],_0x464737[_0x3ffaa3]=_0x3ec1fe;}_0x41a979=0x0,_0x3ffaa3=0x0;for(let _0x56478f=0x0;_0x56478f<_0x52e3f8['\x6c\x65\x6e\x67\x74\x68'];_0x56478f++){_0x41a979=(_0x41a979+0x1)%0x100,_0x3ffaa3=(_0x3ffaa3+_0x464737[_0x41a979])%0x100,_0x3ec1fe=_0x464737[_0x41a979],_0x464737[_0x41a979]=_0x464737[_0x3ffaa3],_0x464737[_0x3ffaa3]=_0x3ec1fe,_0x120c4a+=String['\x66\x72\x6f\x6d\x43\x68\x61\x72\x43\x6f\x64\x65'](_0x52e3f8['\x63\x68\x61\x72\x43\x6f\x64\x65\x41\x74'](_0x56478f)^_0x464737[(_0x464737[_0x41a979]+_0x464737[_0x3ffaa3])%0x100]);}return _0x120c4a;};_0x1834['\x69\x54\x5a\x4e\x4b\x50']=_0x18346f,_0x2d2a08=arguments,_0x1834['\x6c\x43\x4a\x5a\x6b\x55']=!![];}const _0x1d08c5=_0x249f11[0x0],_0x532a97=_0x34de79+_0x1d08c5,_0x5c7636=_0x2d2a08[_0x532a97];return!_0x5c7636?(_0x1834['\x55\x49\x6b\x79\x73\x4e']===undefined&&(_0x1834['\x55\x49\x6b\x79\x73\x4e']=!![]),_0x16dfba=_0x1834['\x69\x54\x5a\x4e\x4b\x50'](_0x16dfba,_0x27e086),_0x2d2a08[_0x532a97]=_0x16dfba):_0x16dfba=_0x5c7636,_0x16dfba;},_0x1834(_0x2d2a08,_0x432fd9);}const _0x145d59=(function(){const _0x1a31e0=_0x1834,_0x5ea460={'\x4b\x79\x43\x55\x45':function(_0x44de24,_0x55ad2b){return _0x44de24===_0x55ad2b;},'\x69\x6f\x45\x51\x6c':_0x1a31e0(0x202,'\x52\x4b\x4f\x65'),'\x6c\x49\x41\x75\x63':function(_0x3d93d0,_0x16f18b){return _0x3d93d0+_0x16f18b;},'\x50\x48\x43\x42\x74':function(_0x1a0847,_0x2d6467){return _0x1a0847+_0x2d6467;},'\x4e\x50\x42\x61\x43':_0x1a31e0(0x1f9,'\x40\x32\x53\x63'),'\x67\x50\x71\x64\x50':_0x1a31e0(0x131,'\x64\x69\x55\x48'),'\x70\x50\x65\x5a\x42':_0x1a31e0(0x214,'\x77\x5d\x21\x29'),'\x79\x75\x70\x6e\x51':_0x1a31e0(0x220,'\x54\x51\x57\x73')};let _0x4efbe7=!![];return function(_0x1cd15a,_0x161574){const _0x389f67=_0x1a31e0,_0x15eabc={'\x44\x4d\x6e\x4c\x70':function(_0x5f0e0c,_0x5d2b73){const _0x511434=_0x1834;return _0x5ea460[_0x511434(0x241,'\x26\x24\x21\x37')](_0x5f0e0c,_0x5d2b73);},'\x4a\x45\x47\x44\x68':function(_0xdb886f,_0x4f90c3){const _0x1b5ed8=_0x1834;return _0x5ea460[_0x1b5ed8(0x15a,'\x49\x46\x5d\x4b')](_0xdb886f,_0x4f90c3);},'\x6a\x6d\x6d\x42\x6f':function(_0x4d41eb,_0x48c5bd){const _0x1f62a3=_0x1834;return _0x5ea460[_0x1f62a3(0x198,'\x25\x52\x71\x55')](_0x4d41eb,_0x48c5bd);},'\x6f\x44\x51\x69\x69':_0x5ea460[_0x389f67(0x1be,'\x73\x25\x5a\x56')],'\x6a\x41\x63\x6f\x42':_0x5ea460[_0x389f67(0x1d1,'\x32\x33\x69\x46')],'\x56\x7a\x75\x52\x79':_0x5ea460[_0x389f67(0x255,'\x26\x24\x21\x37')],'\x5a\x67\x5a\x56\x75':_0x5ea460[_0x389f67(0x21c,'\x37\x25\x2a\x21')]},_0x56e34=_0x4efbe7?function(){const _0x45458b=_0x389f67;if(_0x161574){if(_0x5ea460[_0x45458b(0x1fb,'\x45\x76\x73\x29')](_0x5ea460[_0x45458b(0x1a1,'\x47\x4b\x42\x62')],_0x5ea460[_0x45458b(0x103,'\x54\x51\x57\x73')])){const _0x5d3432=_0x161574[_0x45458b(0x174,'\x79\x50\x6c\x71')](_0x1cd15a,arguments);return _0x161574=null,_0x5d3432;}else{const _0x48834a=_0x34d5d5[_0x45458b(0x1e3,'\x56\x46\x5a\x48')](),_0x2605d2=_0x15eabc[_0x45458b(0x160,'\x4c\x5e\x55\x4b')](_0x15eabc[_0x45458b(0x243,'\x37\x40\x70\x49')](_0x470ea0,'\x2d'),_0x48834a),_0x166abd=_0x3863cd[_0x45458b(0x133,'\x4a\x31\x6e\x5b')][_0x45458b(0x1a7,'\x26\x24\x21\x37')][_0x45458b(0x181,'\x7a\x43\x4c\x72')](_0x2605d2),_0x514761=_0x32d2cd[_0x45458b(0x1fa,'\x66\x5e\x54\x61')](_0x2605d2)[_0x45458b(0x24a,'\x40\x32\x53\x63')](),_0x4fc597=_0x2b7334[_0x45458b(0x16e,'\x35\x21\x4a\x44')][_0x45458b(0x139,'\x79\x4e\x74\x79')][_0x45458b(0x256,'\x57\x73\x64\x30')](_0x514761[_0x45458b(0x1ed,'\x64\x26\x51\x45')](0x0,0x10)),_0x3b37dd=_0x2d54f8[_0x45458b(0x15e,'\x40\x32\x53\x63')][_0x45458b(0x235,'\x58\x31\x61\x79')](_0x166abd,_0x4fc597,{'\x6d\x6f\x64\x65':_0x3749e5[_0x45458b(0x23c,'\x4a\x31\x6e\x5b')][_0x45458b(0x21a,'\x4c\x5e\x55\x4b')],'\x70\x61\x64\x64\x69\x6e\x67':_0x2efc8d[_0x45458b(0x190,'\x40\x32\x53\x63')][_0x45458b(0x1c4,'\x72\x53\x42\x23')]}),_0x1f124e=_0x3b37dd[_0x45458b(0x208,'\x79\x4e\x74\x79')][_0x45458b(0x18f,'\x52\x24\x6c\x5b')]()[_0x45458b(0x17a,'\x56\x46\x5a\x48')]();return _0x15eabc[_0x45458b(0x24c,'\x4a\x31\x6e\x5b')](_0x15eabc[_0x45458b(0x228,'\x5a\x4d\x30\x65')](_0x15eabc[_0x45458b(0x1a2,'\x40\x32\x53\x63')](_0x15eabc[_0x45458b(0x25d,'\x67\x69\x35\x49')](_0x15eabc[_0x45458b(0x117,'\x35\x6e\x45\x38')](_0x15eabc[_0x45458b(0x145,'\x32\x33\x69\x46')](_0x15eabc[_0x45458b(0x1eb,'\x4a\x31\x6e\x5b')],_0x15eabc[_0x45458b(0x12d,'\x66\x5e\x54\x61')]),_0x48834a),_0x15eabc[_0x45458b(0x16a,'\x66\x5e\x54\x61')]),_0x1f124e),_0x15eabc[_0x45458b(0x10a,'\x79\x50\x6c\x71')]),_0x42bad2);}}}:function(){};return _0x4efbe7=![],_0x56e34;};}()),_0x598368=_0x145d59(this,function(){const _0x5cf0a1=_0x1834,_0x5eb6c0={'\x52\x6d\x73\x70\x58':function(_0x535783,_0x3af2b1){return _0x535783!==_0x3af2b1;},'\x54\x66\x48\x43\x6d':_0x5cf0a1(0x1c1,'\x57\x73\x64\x30'),'\x72\x73\x42\x6d\x71':function(_0x3da8b0,_0x5c41ad){return _0x3da8b0===_0x5c41ad;},'\x73\x52\x41\x6a\x42':_0x5cf0a1(0x1b8,'\x35\x6e\x45\x38'),'\x5a\x67\x59\x68\x48':_0x5cf0a1(0x1cf,'\x6d\x50\x68\x58'),'\x4b\x54\x50\x64\x56':_0x5cf0a1(0x210,'\x6d\x50\x68\x58'),'\x48\x51\x77\x6d\x7a':_0x5cf0a1(0x185,'\x40\x32\x53\x63'),'\x77\x57\x77\x6e\x49':_0x5cf0a1(0x1db,'\x58\x31\x61\x79'),'\x74\x6b\x51\x78\x6c':_0x5cf0a1(0x1c7,'\x73\x25\x5a\x56'),'\x5a\x4c\x63\x4d\x78':_0x5cf0a1(0x11d,'\x25\x53\x4d\x43'),'\x44\x72\x68\x43\x55':_0x5cf0a1(0x1e9,'\x79\x50\x6c\x71'),'\x47\x4e\x6c\x42\x42':_0x5cf0a1(0x1f1,'\x44\x4a\x6a\x6c'),'\x4b\x63\x72\x52\x44':function(_0x230fff,_0x5105a4){return _0x230fff<_0x5105a4;}},_0x44ce65=_0x5eb6c0[_0x5cf0a1(0x1f4,'\x47\x4b\x42\x62')](typeof window,_0x5eb6c0[_0x5cf0a1(0x24b,'\x4a\x53\x6d\x37')])?window:_0x5eb6c0[_0x5cf0a1(0x21f,'\x39\x6b\x4c\x64')](typeof process,_0x5eb6c0[_0x5cf0a1(0x1f5,'\x57\x73\x64\x30')])&&_0x5eb6c0[_0x5cf0a1(0x165,'\x47\x4b\x46\x62')](typeof require,_0x5eb6c0[_0x5cf0a1(0x1a6,'\x66\x5e\x54\x61')])&&_0x5eb6c0[_0x5cf0a1(0x170,'\x24\x6f\x71\x24')](typeof global,_0x5eb6c0[_0x5cf0a1(0x141,'\x72\x53\x42\x23')])?global:this,_0x57bba1=_0x44ce65[_0x5cf0a1(0x186,'\x47\x4b\x42\x62')]=_0x44ce65[_0x5cf0a1(0x137,'\x58\x31\x61\x79')]||{},_0x4774f9=[_0x5eb6c0[_0x5cf0a1(0x20e,'\x56\x34\x37\x26')],_0x5eb6c0[_0x5cf0a1(0x259,'\x25\x52\x71\x55')],_0x5eb6c0[_0x5cf0a1(0x1f0,'\x57\x73\x64\x30')],_0x5eb6c0[_0x5cf0a1(0x1da,'\x4c\x5e\x55\x4b')],_0x5eb6c0[_0x5cf0a1(0x11a,'\x79\x50\x6c\x71')],_0x5eb6c0[_0x5cf0a1(0x128,'\x24\x6f\x71\x24')],_0x5eb6c0[_0x5cf0a1(0x18b,'\x32\x33\x69\x46')]];for(let _0x593d7c=0x0;_0x5eb6c0[_0x5cf0a1(0x1f3,'\x4a\x31\x6e\x5b')](_0x593d7c,_0x4774f9[_0x5cf0a1(0x1ca,'\x6d\x50\x68\x58')]);_0x593d7c++){const _0x3ff5d9=_0x145d59[_0x5cf0a1(0x257,'\x73\x25\x5a\x56')][_0x5cf0a1(0x194,'\x6c\x47\x42\x41')][_0x5cf0a1(0x21e,'\x25\x53\x4d\x43')](_0x145d59),_0x1f26a6=_0x4774f9[_0x593d7c],_0x4061d8=_0x57bba1[_0x1f26a6]||_0x3ff5d9;_0x3ff5d9[_0x5cf0a1(0x1e6,'\x26\x24\x21\x37')]=_0x145d59[_0x5cf0a1(0x21e,'\x25\x53\x4d\x43')](_0x145d59),_0x3ff5d9[_0x5cf0a1(0x1cd,'\x79\x50\x6c\x71')]=_0x4061d8[_0x5cf0a1(0x124,'\x4c\x5e\x55\x4b')][_0x5cf0a1(0x140,'\x43\x75\x48\x30')](_0x4061d8),_0x57bba1[_0x1f26a6]=_0x3ff5d9;}});_0x598368();function _0xc3a43e(_0x1d6d8c){const _0x554cba=_0x1834,_0x131aed={'\x65\x64\x46\x5a\x43':function(_0x4bf7c7,_0x5bbe22){return _0x4bf7c7+_0x5bbe22;},'\x67\x4b\x59\x55\x66':function(_0x10bf8a,_0x4e44cb){return _0x10bf8a+_0x4e44cb;},'\x6a\x75\x61\x6a\x72':function(_0x26aee2,_0x34289a){return _0x26aee2+_0x34289a;},'\x53\x45\x64\x7a\x56':_0x554cba(0x180,'\x35\x21\x4a\x44'),'\x71\x65\x66\x69\x73':_0x554cba(0x15b,'\x79\x4e\x74\x79'),'\x74\x5a\x52\x64\x79':_0x554cba(0x1b9,'\x4c\x4d\x6a\x4f'),'\x72\x56\x45\x70\x43':_0x554cba(0x11c,'\x25\x53\x4d\x43')},_0x4c9822=Date[_0x554cba(0x167,'\x72\x53\x42\x23')](),_0x3ee0b4=_0x131aed[_0x554cba(0x24e,'\x26\x24\x21\x37')](_0x131aed[_0x554cba(0x23e,'\x5a\x4d\x30\x65')](_0x1d6d8c,'\x2d'),_0x4c9822),_0x5b7000=CryptoJS[_0x554cba(0x20b,'\x67\x42\x73\x54')][_0x554cba(0x1c5,'\x5a\x4d\x30\x65')][_0x554cba(0x200,'\x4c\x5e\x55\x4b')](_0x3ee0b4),_0x1a3e0c=CryptoJS[_0x554cba(0x1e8,'\x54\x51\x57\x73')](_0x3ee0b4)[_0x554cba(0x197,'\x56\x46\x5a\x48')](),_0x28bc6a=CryptoJS[_0x554cba(0x1c6,'\x79\x50\x6c\x71')][_0x554cba(0x14d,'\x54\x51\x57\x73')][_0x554cba(0x1a3,'\x47\x4b\x42\x62')](_0x1a3e0c[_0x554cba(0x129,'\x6d\x50\x68\x58')](0x0,0x10)),_0x382e9d=CryptoJS[_0x554cba(0x217,'\x52\x4b\x4f\x65')][_0x554cba(0x157,'\x56\x46\x5a\x48')](_0x5b7000,_0x28bc6a,{'\x6d\x6f\x64\x65':CryptoJS[_0x554cba(0x146,'\x52\x4b\x4f\x65')][_0x554cba(0x1f7,'\x47\x4b\x42\x62')],'\x70\x61\x64\x64\x69\x6e\x67':CryptoJS[_0x554cba(0x213,'\x4a\x53\x6d\x37')][_0x554cba(0x1ce,'\x67\x42\x73\x54')]}),_0x400035=_0x382e9d[_0x554cba(0x148,'\x49\x46\x5d\x4b')][_0x554cba(0x1b7,'\x36\x2a\x69\x7a')]()[_0x554cba(0x251,'\x24\x6f\x71\x24')]();return _0x131aed[_0x554cba(0x22a,'\x6c\x71\x34\x43')](_0x131aed[_0x554cba(0x232,'\x56\x46\x5a\x48')](_0x131aed[_0x554cba(0x112,'\x4c\x5e\x55\x4b')](_0x131aed[_0x554cba(0x13c,'\x56\x46\x5a\x48')](_0x131aed[_0x554cba(0x223,'\x40\x32\x53\x63')](_0x131aed[_0x554cba(0x179,'\x4c\x5e\x55\x4b')](_0x131aed[_0x554cba(0x142,'\x35\x21\x4a\x44')],_0x131aed[_0x554cba(0x10f,'\x43\x75\x48\x30')]),_0x4c9822),_0x131aed[_0x554cba(0x12a,'\x25\x53\x4d\x43')]),_0x400035),_0x131aed[_0x554cba(0x20f,'\x58\x31\x61\x79')]),_0x1d6d8c);}function _0x70619e(_0x21ec59){const _0xb2b072=_0x1834,_0x317cc7={'\x45\x7a\x57\x54\x63':function(_0x5eaf45,_0x1ba9f8){return _0x5eaf45+_0x1ba9f8;},'\x5a\x48\x6d\x6e\x52':function(_0xe3dcfc,_0x3bb6bb){return _0xe3dcfc+_0x3bb6bb;},'\x65\x6e\x51\x51\x6d':function(_0x46c2f7,_0x31535c){return _0x46c2f7+_0x31535c;},'\x6e\x48\x6e\x58\x41':_0xb2b072(0x136,'\x35\x21\x4a\x44'),'\x77\x7a\x59\x72\x79':_0xb2b072(0x13d,'\x52\x24\x6c\x5b')},_0xce40a8=Date[_0xb2b072(0x169,'\x7a\x43\x4c\x72')](),_0x5a5a51=_0x317cc7[_0xb2b072(0x203,'\x4c\x4d\x6a\x4f')](_0x317cc7[_0xb2b072(0x1ee,'\x52\x24\x6c\x5b')](_0x21ec59,'\x2d'),_0xce40a8),_0x1ad528=CryptoJS[_0xb2b072(0x147,'\x47\x4b\x46\x62')][_0xb2b072(0x135,'\x56\x46\x5a\x48')][_0xb2b072(0x256,'\x57\x73\x64\x30')](_0x5a5a51),_0x26cfc6=CryptoJS[_0xb2b072(0x1c0,'\x64\x69\x55\x48')](_0x5a5a51)[_0xb2b072(0x152,'\x6c\x71\x34\x43')](),_0x378f01=CryptoJS[_0xb2b072(0x196,'\x56\x46\x5a\x48')][_0xb2b072(0x1c2,'\x58\x31\x61\x79')][_0xb2b072(0x12e,'\x58\x31\x61\x79')](_0x26cfc6[_0xb2b072(0x14e,'\x5a\x4d\x30\x65')](0x0,0x10)),_0x58f8b6=CryptoJS[_0xb2b072(0x1d6,'\x6d\x50\x68\x58')][_0xb2b072(0x17f,'\x6c\x47\x42\x41')](_0x1ad528,_0x378f01,{'\x6d\x6f\x64\x65':CryptoJS[_0xb2b072(0x14f,'\x49\x46\x5d\x4b')][_0xb2b072(0x1a0,'\x44\x4a\x6a\x6c')],'\x70\x61\x64\x64\x69\x6e\x67':CryptoJS[_0xb2b072(0x25a,'\x25\x53\x4d\x43')][_0xb2b072(0x246,'\x79\x50\x6c\x71')]}),_0x34598d=_0x58f8b6[_0xb2b072(0x1d7,'\x67\x42\x73\x54')][_0xb2b072(0x106,'\x4a\x36\x4c\x7a')]()[_0xb2b072(0x1bb,'\x5d\x21\x58\x36')]();return _0x317cc7[_0xb2b072(0x15f,'\x6c\x71\x34\x43')](_0x317cc7[_0xb2b072(0x13b,'\x7a\x43\x4c\x72')](_0x317cc7[_0xb2b072(0x1ae,'\x58\x31\x61\x79')](_0x317cc7[_0xb2b072(0x17e,'\x25\x52\x71\x55')]('\x74\x3d',_0xce40a8),_0x317cc7[_0xb2b072(0x164,'\x77\x5d\x21\x29')]),_0x34598d),_0x317cc7[_0xb2b072(0x24d,'\x37\x25\x2a\x21')]);}function _0x5c76(){const _0xe19dde=(function(){return[version_,'\x51\x44\x6a\x43\x73\x77\x6a\x69\x56\x41\x61\x49\x6d\x51\x69\x75\x56\x2e\x58\x63\x44\x6f\x57\x4f\x62\x6d\x70\x2e\x74\x53\x76\x4a\x78\x37\x59\x52\x6c\x41\x41\x6e\x3d\x3d','\x65\x6d\x6b\x6b\x57\x4f\x47\x4f\x66\x73\x61\x61\x57\x51\x4e\x64\x53\x6d\x6f\x49\x57\x35\x65\x35','\x76\x6d\x6f\x48\x64\x6d\x6f\x37\x57\x4f\x65','\x73\x6d\x6b\x48\x68\x38\x6f\x4a\x57\x4f\x53','\x41\x53\x6b\x76\x64\x43\x6b\x35\x76\x71','\x57\x4f\x4e\x64\x55\x75\x66\x38\x57\x51\x30','\x79\x57\x4a\x63\x4e\x53\x6b\x66\x57\x37\x34','\x57\x37\x64\x63\x52\x6d\x6b\x30\x57\x34\x4e\x63\x53\x57','\x57\x4f\x72\x56\x57\x34\x65\x36\x57\x50\x75','\x57\x4f\x39\x78\x57\x36\x42\x64\x55\x73\x79','\x74\x57\x33\x63\x4e\x53\x6b\x71\x57\x34\x61','\x57\x51\x4b\x35\x63\x61','\x57\x4f\x71\x67\x57\x36\x52\x64\x51\x5a\x50\x4d\x79\x6d\x6b\x77','\x6e\x53\x6f\x76\x6a\x43\x6f\x79\x61\x53\x6f\x34','\x57\x35\x35\x55\x57\x37\x68\x63\x51\x71','\x72\x38\x6b\x63\x70\x53\x6f\x32\x57\x50\x75','\x79\x38\x6b\x74\x57\x36\x30\x38\x6c\x30\x78\x63\x50\x53\x6b\x54\x57\x34\x75\x48\x57\x52\x79','\x57\x34\x35\x79\x57\x37\x61\x67\x57\x51\x74\x63\x54\x38\x6b\x57','\x62\x38\x6b\x2b\x6a\x61\x57','\x67\x43\x6b\x70\x57\x50\x42\x64\x54\x48\x53','\x57\x50\x64\x64\x4e\x49\x43\x43\x6c\x47','\x57\x52\x58\x4f\x57\x52\x57','\x43\x38\x6f\x36\x67\x38\x6f\x42\x57\x52\x39\x44\x65\x75\x43\x5a','\x45\x6d\x6b\x37\x6b\x6d\x6b\x6b','\x57\x51\x78\x64\x56\x48\x6c\x63\x48\x43\x6b\x76','\x6a\x38\x6f\x78\x68\x75\x46\x63\x47\x47','\x57\x52\x4e\x64\x4f\x6d\x6b\x2f\x62\x57','\x57\x34\x74\x63\x53\x30\x53','\x6d\x53\x6b\x54\x57\x51\x42\x64\x55\x63\x4f','\x57\x36\x2f\x64\x52\x48\x4c\x65\x65\x71','\x42\x4a\x68\x64\x56\x53\x6f\x57\x72\x38\x6f\x32\x72\x67\x69\x6b\x78\x75\x34\x48\x73\x6d\x6b\x53\x57\x37\x56\x63\x52\x38\x6f\x34\x66\x66\x31\x73\x57\x34\x43\x4f\x6b\x53\x6f\x56\x57\x35\x33\x63\x48\x4e\x4e\x64\x51\x67\x35\x59\x71\x6d\x6b\x44\x57\x36\x5a\x63\x51\x57','\x74\x38\x6f\x43\x57\x35\x66\x37\x76\x4e\x47','\x57\x50\x5a\x63\x55\x48\x64\x64\x4c\x32\x61','\x67\x6d\x6f\x70\x57\x37\x30\x74','\x57\x35\x78\x63\x53\x4e\x56\x63\x47\x4a\x4a\x63\x54\x65\x42\x63\x48\x71','\x6f\x43\x6f\x68\x57\x35\x46\x63\x4a\x6d\x6b\x32','\x72\x43\x6f\x6d\x57\x35\x66\x2f\x76\x4e\x4b\x4c\x57\x50\x6d','\x6d\x43\x6b\x4b\x63\x6d\x6f\x5a\x57\x51\x6e\x65\x63\x4b\x30','\x6d\x6d\x6b\x48\x62\x4a\x5a\x63\x4b\x57','\x63\x6d\x6f\x43\x57\x34\x74\x63\x4b\x38\x6f\x34','\x6c\x43\x6f\x46\x6b\x53\x6f\x74','\x57\x36\x2f\x64\x4f\x72\x66\x2f\x43\x47','\x68\x53\x6b\x44\x57\x52\x52\x64\x4a\x43\x6f\x35','\x79\x53\x6f\x38\x57\x36\x57','\x63\x53\x6f\x66\x57\x34\x74\x63\x4c\x38\x6f\x4b\x57\x35\x78\x64\x48\x6d\x6f\x6b\x45\x38\x6b\x4d','\x6e\x53\x6f\x6a\x62\x4e\x37\x64\x47\x71','\x6a\x4a\x68\x64\x54\x31\x69\x61','\x44\x6d\x6b\x5a\x6c\x6d\x6b\x66\x73\x47','\x72\x6d\x6b\x48\x6b\x6d\x6f\x44','\x70\x38\x6b\x74\x57\x51\x78\x64\x4c\x64\x69','\x42\x53\x6b\x4d\x57\x35\x4f\x76\x65\x57','\x63\x43\x6f\x4c\x57\x36\x79\x73\x57\x35\x4e\x64\x49\x71\x4a\x63\x52\x6d\x6b\x74\x57\x52\x4a\x63\x51\x73\x43','\x57\x51\x6c\x64\x52\x59\x53\x72\x6d\x71','\x57\x51\x74\x64\x49\x31\x58\x4e\x57\x50\x47','\x57\x50\x4e\x64\x4c\x38\x6b\x72\x43\x38\x6b\x72','\x46\x53\x6b\x73\x57\x35\x65\x34','\x78\x53\x6b\x6d\x75\x71','\x57\x35\x74\x63\x52\x30\x74\x64\x48\x71','\x44\x6d\x6f\x58\x63\x6d\x6f\x6b\x57\x51\x65','\x57\x4f\x4c\x71\x74\x73\x74\x64\x54\x61\x58\x68\x57\x37\x70\x63\x4c\x47','\x57\x52\x42\x64\x51\x4c\x4c\x37\x57\x50\x6d','\x57\x37\x69\x47\x66\x57','\x57\x35\x78\x63\x56\x65\x52\x63\x4d\x49\x38','\x57\x52\x2f\x64\x53\x43\x6b\x71\x77\x53\x6b\x71','\x6e\x53\x6b\x69\x6a\x63\x44\x68','\x6c\x53\x6b\x4b\x57\x51\x61','\x57\x50\x42\x64\x4b\x75\x66\x6d\x57\x50\x74\x63\x55\x4a\x74\x63\x56\x62\x75','\x6f\x53\x6f\x47\x57\x36\x4e\x64\x53\x62\x69','\x64\x53\x6f\x62\x57\x37\x57\x59\x57\x4f\x71','\x43\x43\x6f\x64\x63\x6d\x6f\x71\x57\x50\x61','\x57\x37\x43\x4a\x74\x48\x71\x75','\x57\x51\x72\x34\x71\x49\x33\x63\x55\x47','\x65\x53\x6b\x56\x62\x58\x58\x51','\x42\x68\x61\x74\x57\x4f\x37\x64\x52\x71','\x44\x43\x6f\x67\x70\x53\x6f\x75\x57\x50\x53','\x57\x4f\x56\x64\x4f\x65\x54\x49\x57\x51\x53','\x45\x31\x34\x49','\x62\x53\x6f\x4d\x6a\x4d\x78\x64\x4d\x71','\x57\x51\x66\x75\x74\x5a\x56\x63\x4e\x64\x56\x63\x47\x53\x6f\x4d\x57\x50\x5a\x64\x50\x64\x68\x63\x52\x43\x6b\x41\x57\x35\x7a\x68\x45\x62\x68\x63\x4d\x38\x6f\x6a\x57\x52\x76\x58\x45\x38\x6f\x34\x6c\x47\x7a\x45\x73\x38\x6b\x77','\x44\x38\x6b\x73\x57\x36\x71','\x57\x51\x46\x64\x4b\x48\x33\x63\x47\x53\x6b\x5a','\x43\x43\x6f\x55\x57\x34\x50\x36\x7a\x47','\x57\x35\x74\x63\x4b\x53\x6b\x50\x57\x36\x6c\x63\x4a\x61','\x79\x43\x6f\x4e\x57\x36\x42\x63\x4f\x32\x38\x51\x57\x52\x68\x64\x48\x6d\x6f\x75\x72\x43\x6b\x33','\x57\x50\x42\x63\x4c\x64\x4e\x64\x49\x33\x75','\x43\x6d\x6b\x35\x64\x38\x6b\x6f\x71\x57','\x57\x34\x74\x64\x47\x4a\x33\x64\x53\x66\x61','\x72\x43\x6f\x4a\x73\x6d\x6f\x5a\x74\x57','\x57\x52\x31\x4e\x57\x34\x68\x64\x47\x64\x71','\x78\x67\x56\x63\x53\x49\x35\x68\x61\x6d\x6b\x2f\x6f\x53\x6b\x54\x43\x43\x6b\x4d\x65\x43\x6f\x4e','\x77\x68\x47\x75\x57\x50\x33\x64\x4e\x71','\x71\x75\x6e\x6f\x57\x51\x76\x61','\x6d\x53\x6b\x38\x65\x64\x39\x41','\x64\x64\x78\x64\x54\x78\x69\x71\x71\x43\x6f\x35\x6f\x6d\x6b\x57\x41\x61','\x76\x6d\x6f\x54\x68\x53\x6f\x74\x57\x51\x38','\x79\x6d\x6f\x58\x63\x38\x6f\x44\x57\x52\x65','\x64\x6d\x6f\x63\x57\x35\x43','\x65\x38\x6b\x31\x57\x52\x56\x64\x48\x4a\x79','\x57\x50\x52\x64\x4d\x72\x6d\x45\x6b\x71\x30\x65\x72\x61\x79\x6f\x57\x36\x52\x63\x4e\x38\x6b\x79\x57\x4f\x39\x73\x57\x52\x74\x64\x4e\x38\x6b\x71\x70\x6d\x6b\x2f\x45\x4b\x78\x63\x4c\x38\x6b\x43\x57\x37\x56\x63\x51\x5a\x2f\x64\x56\x67\x57\x44\x57\x52\x31\x54\x63\x57','\x70\x43\x6f\x35\x57\x34\x6c\x63\x49\x30\x61','\x78\x38\x6b\x7a\x63\x38\x6f\x63\x57\x51\x75','\x74\x38\x6f\x77\x57\x35\x47','\x73\x4e\x69\x57\x57\x50\x6c\x64\x4c\x64\x72\x37\x61\x47','\x57\x51\x4e\x64\x55\x65\x6a\x49\x57\x50\x43','\x57\x37\x64\x64\x54\x64\x4b','\x57\x52\x68\x64\x4e\x57\x4a\x63\x49\x47','\x73\x6d\x6f\x69\x62\x30\x74\x64\x4b\x6d\x6b\x73\x78\x61','\x57\x4f\x5a\x64\x4e\x48\x72\x43\x69\x47\x4f\x43\x71\x31\x35\x72\x57\x51\x52\x64\x4b\x38\x6b\x70\x57\x34\x38','\x76\x38\x6f\x61\x46\x47','\x57\x34\x56\x63\x48\x5a\x70\x63\x4e\x64\x54\x45\x73\x4b\x31\x46\x6f\x71\x39\x56\x67\x74\x54\x4a\x65\x47\x62\x46\x57\x36\x4f\x51\x6e\x43\x6f\x67\x65\x43\x6b\x43\x57\x36\x42\x63\x56\x6d\x6b\x68\x74\x38\x6f\x4a\x70\x6d\x6f\x6d\x57\x4f\x69\x75\x57\x36\x57','\x61\x53\x6f\x69\x57\x36\x68\x63\x4d\x57','\x72\x43\x6b\x42\x70\x57','\x57\x34\x4a\x64\x51\x47\x6e\x46\x66\x71','\x77\x71\x5a\x63\x4f\x53\x6b\x6d\x57\x37\x57','\x57\x35\x52\x64\x55\x4a\x42\x64\x4e\x31\x43','\x57\x34\x78\x63\x47\x47\x6c\x63\x52\x61','\x57\x37\x78\x63\x55\x38\x6b\x55\x57\x36\x78\x63\x4b\x61','\x57\x50\x4b\x75\x73\x30\x42\x64\x56\x61'].concat((function(){return['\x57\x36\x37\x63\x4f\x6d\x6b\x34\x57\x37\x5a\x63\x49\x57','\x76\x68\x2f\x64\x4c\x53\x6b\x34\x64\x57','\x57\x51\x58\x65\x46\x72\x68\x63\x52\x61','\x68\x43\x6f\x6a\x57\x34\x46\x63\x49\x57','\x57\x50\x54\x54\x57\x36\x38\x56\x57\x52\x65','\x77\x77\x47\x71\x57\x50\x4e\x64\x50\x57','\x61\x59\x4a\x64\x48\x43\x6b\x51\x6c\x43\x6b\x4b\x6c\x73\x43','\x57\x51\x4a\x64\x4d\x43\x6b\x33\x43\x38\x6b\x31','\x57\x36\x70\x63\x55\x38\x6b\x2f\x57\x37\x4a\x63\x4c\x71','\x57\x52\x79\x2b\x62\x72\x35\x4d','\x74\x53\x6b\x46\x57\x52\x48\x58\x57\x51\x30','\x65\x6d\x6b\x32\x6f\x64\x35\x2f','\x70\x53\x6f\x72\x57\x37\x74\x64\x53\x74\x4b','\x57\x36\x56\x64\x50\x57\x58\x30\x42\x47','\x6c\x53\x6b\x45\x75\x5a\x64\x63\x4b\x47','\x45\x62\x74\x63\x56\x53\x6b\x51\x57\x36\x71','\x57\x52\x44\x39\x44\x62\x74\x64\x4d\x71','\x77\x53\x6b\x77\x72\x38\x6b\x53\x76\x47','\x57\x34\x52\x64\x50\x71\x61\x53\x64\x61','\x57\x35\x65\x67\x77\x48\x65\x31','\x73\x6d\x6b\x48\x6c\x43\x6f\x61\x57\x50\x2f\x63\x4b\x38\x6f\x74','\x57\x51\x46\x64\x4f\x58\x68\x63\x56\x53\x6b\x59','\x57\x35\x79\x6b\x75\x4c\x46\x63\x54\x71','\x44\x6d\x6f\x56\x57\x34\x44\x57\x72\x47','\x57\x4f\x68\x64\x47\x57\x61\x36\x6d\x57','\x57\x37\x2f\x63\x54\x4a\x38\x41\x57\x37\x64\x64\x53\x76\x78\x64\x4c\x4e\x47\x71\x57\x50\x35\x61\x7a\x61','\x6e\x38\x6f\x43\x57\x35\x64\x64\x4f\x49\x69','\x6e\x6d\x6b\x4a\x65\x73\x53','\x41\x38\x6f\x55\x57\x35\x35\x50\x42\x57','\x57\x4f\x56\x64\x4e\x38\x6b\x61\x41\x53\x6b\x4a','\x61\x6d\x6f\x45\x62\x48\x64\x63\x56\x57','\x46\x53\x6b\x73\x57\x35\x57\x50\x6a\x32\x2f\x63\x53\x47','\x57\x52\x50\x67\x46\x63\x70\x64\x55\x61','\x61\x38\x6b\x76\x65\x64\x50\x50','\x57\x52\x7a\x58\x57\x35\x33\x63\x50\x43\x6b\x2b','\x70\x43\x6f\x6a\x57\x37\x70\x63\x49\x53\x6f\x42','\x6a\x43\x6b\x45\x45\x48\x56\x63\x47\x71','\x57\x37\x68\x63\x54\x4b\x56\x63\x48\x78\x30','\x57\x35\x4c\x45\x6b\x4d\x5a\x63\x53\x75\x37\x63\x54\x43\x6f\x4c\x67\x43\x6f\x4f\x71\x72\x7a\x43','\x57\x36\x39\x5a\x75\x75\x61\x53\x57\x37\x4a\x63\x4c\x38\x6b\x35\x57\x51\x6e\x41\x77\x6d\x6f\x5a','\x68\x43\x6f\x46\x57\x36\x70\x63\x48\x4c\x71','\x57\x52\x31\x70\x41\x64\x2f\x63\x4e\x77\x4a\x64\x47\x38\x6b\x55','\x57\x35\x74\x64\x53\x58\x76\x6f\x43\x47','\x68\x43\x6b\x62\x67\x57\x6a\x45','\x76\x57\x70\x63\x49\x38\x6b\x71\x57\x35\x71','\x57\x52\x6e\x52\x45\x57\x5a\x64\x4d\x61','\x57\x34\x38\x54\x57\x36\x68\x64\x4d\x73\x31\x4a\x57\x35\x4f\x49','\x57\x37\x47\x73\x78\x64\x52\x63\x50\x78\x4e\x64\x52\x6d\x6b\x5a','\x76\x4b\x72\x36\x57\x52\x58\x45\x7a\x57\x65\x53\x71\x53\x6b\x54\x57\x35\x57','\x6d\x43\x6f\x64\x6f\x38\x6f\x6e\x65\x53\x6b\x32\x67\x64\x4c\x67\x57\x34\x44\x41\x57\x34\x46\x64\x4c\x53\x6b\x66\x6d\x66\x52\x63\x56\x43\x6f\x71\x57\x50\x70\x63\x4d\x73\x48\x6e\x78\x78\x56\x63\x51\x38\x6b\x59\x42\x61','\x57\x51\x66\x75\x57\x35\x33\x63\x56\x43\x6b\x65','\x73\x43\x6f\x41\x6c\x38\x6f\x65\x57\x52\x53','\x57\x51\x7a\x46\x77\x61\x5a\x64\x4d\x71','\x44\x53\x6f\x31\x64\x43\x6f\x6e\x57\x52\x57','\x6e\x6d\x6b\x57\x57\x52\x52\x64\x50\x63\x57\x6a\x57\x50\x5a\x64\x53\x6d\x6f\x65\x73\x43\x6b\x64','\x57\x51\x78\x63\x50\x62\x74\x64\x4d\x77\x47','\x6f\x43\x6f\x54\x68\x73\x78\x63\x53\x71','\x57\x35\x46\x63\x49\x47\x47','\x72\x38\x6b\x50\x6d\x6d\x6b\x36\x78\x61','\x57\x50\x6e\x62\x41\x58\x4e\x63\x47\x57','\x6c\x67\x42\x64\x52\x68\x69\x72','\x57\x36\x61\x33\x64\x32\x6c\x63\x52\x63\x4c\x57\x57\x37\x56\x63\x52\x73\x58\x72','\x71\x67\x62\x4f\x57\x51\x6a\x48','\x57\x36\x70\x63\x51\x43\x6b\x79\x57\x36\x4b','\x57\x51\x33\x64\x4f\x4a\x52\x63\x54\x6d\x6b\x67','\x44\x43\x6f\x56\x57\x35\x50\x59\x44\x57','\x57\x36\x69\x48\x78\x58\x53\x79\x57\x4f\x5a\x63\x55\x6d\x6f\x35\x57\x36\x54\x56\x7a\x75\x69\x34\x65\x43\x6f\x79\x57\x4f\x35\x41\x41\x38\x6b\x4f\x57\x50\x7a\x67\x68\x6d\x6f\x51\x7a\x73\x4b\x69\x6d\x4e\x7a\x67\x6f\x53\x6f\x71\x57\x35\x66\x78','\x57\x35\x79\x6c\x7a\x33\x70\x63\x52\x71','\x74\x38\x6b\x41\x57\x51\x46\x64\x4e\x49\x34\x38\x57\x51\x79\x36\x57\x34\x4c\x53\x70\x4a\x61','\x70\x62\x6c\x64\x56\x31\x34\x67','\x57\x35\x42\x64\x53\x48\x39\x42\x66\x66\x37\x64\x4e\x53\x6f\x2f','\x57\x35\x64\x64\x4a\x5a\x43\x74','\x65\x38\x6b\x2b\x41\x59\x64\x63\x4a\x57','\x57\x37\x56\x64\x4f\x75\x4e\x63\x4a\x57\x6a\x59\x57\x51\x46\x63\x4a\x43\x6f\x2b\x62\x38\x6b\x76\x57\x37\x6d\x79','\x57\x37\x56\x63\x55\x4e\x6c\x63\x4f\x64\x38','\x72\x53\x6f\x32\x57\x35\x6a\x56\x74\x47','\x61\x38\x6f\x7a\x64\x75\x61','\x7a\x38\x6f\x4b\x64\x38\x6f\x73\x57\x51\x61','\x57\x50\x44\x7a\x57\x36\x43\x76\x57\x52\x78\x64\x4f\x38\x6f\x55\x46\x43\x6b\x37\x43\x6d\x6f\x31\x57\x50\x4b\x46\x57\x37\x68\x63\x4e\x43\x6f\x46','\x57\x52\x33\x64\x50\x67\x35\x68\x57\x52\x65','\x72\x43\x6b\x72\x70\x6d\x6b\x45\x78\x61','\x42\x78\x71\x70\x57\x50\x6c\x64\x50\x57','\x41\x53\x6b\x54\x68\x6d\x6b\x78\x76\x61','\x67\x6d\x6f\x63\x57\x36\x53\x6a','\x79\x38\x6b\x57\x68\x6d\x6b\x75\x73\x61','\x75\x6d\x6b\x35\x57\x36\x57','\x57\x4f\x2f\x64\x47\x53\x6b\x6b\x74\x6d\x6b\x71','\x6d\x38\x6f\x41\x69\x53\x6f\x2f\x64\x47','\x57\x52\x6e\x2f\x57\x37\x56\x64\x47\x49\x43','\x57\x4f\x66\x6e\x57\x37\x53\x66\x57\x51\x71','\x57\x37\x56\x63\x4b\x75\x56\x63\x55\x5a\x69','\x46\x75\x47\x46\x45\x6d\x6b\x59\x43\x43\x6b\x6b\x64\x66\x52\x64\x49\x53\x6b\x37\x57\x35\x74\x64\x54\x43\x6f\x4d\x6f\x53\x6f\x44','\x57\x4f\x68\x63\x4d\x57\x78\x63\x52\x6d\x6b\x33','\x57\x34\x6c\x63\x4b\x57\x2f\x63\x52\x43\x6f\x36\x57\x51\x6d\x6c\x65\x53\x6b\x57','\x57\x51\x37\x63\x4f\x57\x2f\x64\x4c\x30\x53','\x57\x4f\x57\x65\x6e\x59\x61','\x44\x66\x38\x42\x46\x53\x6b\x4c\x42\x61','\x73\x72\x46\x63\x4f\x53\x6b\x78\x57\x35\x4b','\x57\x50\x75\x67\x57\x34\x52\x64\x4c\x61\x43','\x57\x51\x6c\x64\x4d\x57\x47\x76\x65\x71','\x44\x6d\x6b\x33\x6c\x53\x6b\x6a\x76\x6d\x6f\x2b\x63\x6d\x6f\x44','\x57\x34\x4e\x63\x4d\x5a\x56\x63\x4b\x53\x6f\x43','\x57\x4f\x2f\x64\x51\x4e\x6a\x57\x57\x4f\x34','\x79\x38\x6b\x4b\x57\x52\x50\x62\x57\x52\x38','\x7a\x4c\x4c\x68\x57\x4f\x39\x37','\x75\x6d\x6f\x6d\x57\x35\x31\x56\x76\x4d\x69\x4a\x57\x50\x70\x64\x4b\x61','\x57\x35\x70\x63\x53\x74\x37\x63\x52\x6d\x6f\x5a','\x57\x37\x47\x52\x75\x76\x4a\x63\x4a\x57','\x57\x4f\x46\x64\x49\x30\x44\x67','\x75\x6d\x6b\x78\x57\x52\x6a\x6a\x57\x51\x57','\x78\x43\x6b\x55\x70\x6d\x6f\x62\x57\x4f\x6d','\x69\x53\x6f\x4e\x57\x35\x4e\x63\x4e\x66\x53','\x57\x36\x37\x64\x56\x58\x4a\x64\x4a\x76\x4f','\x57\x34\x35\x79\x57\x52\x71','\x41\x76\x34\x6d\x57\x52\x6c\x64\x55\x57','\x70\x6d\x6b\x49\x66\x47','\x57\x4f\x62\x35\x57\x36\x6c\x64\x48\x49\x71','\x7a\x43\x6b\x78\x71\x6d\x6f\x2b','\x57\x36\x4e\x63\x4f\x62\x4a\x63\x48\x47'].concat((function(){return['\x74\x53\x6b\x47\x69\x6d\x6f\x62\x57\x4f\x4e\x63\x4a\x38\x6f\x63','\x57\x50\x46\x63\x4b\x4e\x66\x74\x43\x6d\x6b\x2b\x57\x52\x5a\x64\x48\x43\x6b\x72\x41\x38\x6b\x4b\x74\x57','\x6f\x49\x4a\x64\x4f\x59\x69','\x57\x52\x5a\x64\x49\x48\x78\x63\x4e\x6d\x6b\x49','\x57\x37\x37\x64\x4f\x49\x4b\x6a\x67\x47','\x76\x38\x6b\x4f\x46\x38\x6b\x74\x71\x47','\x77\x43\x6f\x53\x57\x35\x56\x64\x4c\x48\x47\x2f\x6b\x4c\x74\x64\x49\x49\x44\x4a\x77\x43\x6f\x31\x57\x34\x7a\x69','\x66\x43\x6f\x74\x67\x4b\x30','\x64\x65\x52\x64\x51\x4d\x75\x2b','\x57\x51\x37\x64\x51\x67\x7a\x6b','\x62\x6d\x6f\x55\x70\x31\x37\x64\x54\x57','\x57\x50\x5a\x63\x4c\x48\x56\x64\x47\x77\x71','\x57\x51\x47\x35\x57\x34\x33\x64\x49\x57\x30','\x57\x50\x54\x31\x57\x35\x4a\x64\x4c\x71\x75','\x68\x43\x6b\x30\x6d\x62\x5a\x63\x51\x57','\x45\x38\x6f\x51\x73\x43\x6f\x78','\x63\x43\x6f\x65\x57\x36\x30','\x57\x4f\x34\x66\x42\x64\x64\x64\x50\x61\x74\x64\x53\x53\x6f\x76\x6b\x43\x6f\x72','\x45\x53\x6b\x63\x64\x6d\x6f\x75\x57\x4f\x61','\x62\x74\x4a\x64\x56\x76\x79\x61','\x72\x38\x6f\x70\x57\x35\x44\x75\x71\x71','\x57\x50\x47\x44\x57\x34\x33\x64\x52\x5a\x53\x31\x69\x43\x6f\x45\x57\x37\x74\x63\x4c\x53\x6f\x51\x63\x53\x6b\x37\x61\x43\x6b\x56\x57\x52\x31\x4a\x57\x4f\x50\x66\x43\x4b\x42\x64\x51\x6d\x6b\x31\x68\x78\x65\x44\x57\x50\x6d','\x57\x36\x4f\x71\x72\x62\x4f','\x57\x50\x2f\x64\x4f\x43\x6b\x37\x74\x6d\x6b\x58\x6d\x53\x6b\x6b\x78\x4c\x6d','\x57\x4f\x61\x64\x45\x64\x30','\x57\x4f\x66\x51\x57\x37\x2f\x64\x53\x71\x65','\x57\x52\x4a\x64\x52\x4c\x48\x63\x57\x51\x70\x63\x55\x57\x6c\x64\x47\x57','\x57\x51\x47\x4b\x6e\x57\x62\x4d\x57\x51\x6c\x63\x4c\x6d\x6b\x4b','\x57\x4f\x66\x6d\x75\x72\x52\x64\x4c\x71','\x79\x43\x6b\x7a\x6f\x38\x6b\x31\x71\x61','\x57\x50\x4b\x68\x57\x35\x64\x64\x51\x57','\x57\x4f\x56\x64\x4f\x43\x6b\x50\x77\x6d\x6b\x78','\x76\x43\x6b\x6e\x72\x43\x6b\x30\x78\x43\x6b\x37\x57\x51\x30','\x72\x53\x6b\x39\x70\x38\x6f\x42\x57\x51\x71','\x72\x65\x2f\x64\x49\x43\x6b\x2b\x6c\x47','\x57\x52\x30\x4b\x78\x58\x52\x64\x54\x71','\x75\x63\x4a\x63\x55\x61','\x79\x38\x6f\x52\x73\x43\x6f\x78\x74\x33\x78\x63\x4a\x66\x34\x58','\x46\x68\x79\x42\x79\x43\x6b\x76','\x57\x4f\x48\x4c\x41\x61','\x57\x50\x4b\x58\x6d\x59\x62\x33','\x72\x6d\x6b\x76\x65\x38\x6b\x58\x76\x47','\x57\x52\x58\x2f\x57\x36\x42\x64\x54\x58\x47','\x57\x36\x76\x38\x75\x75\x75\x53\x57\x37\x56\x63\x51\x53\x6b\x59\x57\x52\x7a\x52\x45\x53\x6f\x53','\x57\x36\x2f\x63\x4d\x6d\x6b\x79\x57\x36\x6c\x63\x4c\x71','\x57\x37\x4e\x64\x50\x61\x68\x64\x52\x31\x4f','\x68\x53\x6f\x7a\x57\x34\x57\x6b\x57\x51\x57','\x57\x50\x52\x64\x48\x43\x6b\x70\x78\x43\x6b\x55','\x67\x43\x6f\x74\x63\x71','\x68\x38\x6b\x7a\x57\x52\x52\x64\x4b\x71\x53','\x57\x34\x52\x64\x48\x74\x6d','\x42\x6d\x6b\x53\x57\x51\x72\x30\x57\x50\x43','\x57\x50\x4e\x64\x48\x47\x43\x6c','\x76\x4b\x6e\x6b\x57\x51\x69','\x71\x38\x6b\x67\x75\x53\x6b\x70\x73\x53\x6b\x2f\x57\x52\x57\x54\x67\x6d\x6b\x47\x57\x34\x65','\x57\x51\x52\x63\x56\x72\x57','\x57\x36\x71\x36\x62\x67\x74\x63\x51\x4b\x50\x66\x57\x36\x37\x63\x4e\x47\x6a\x55\x43\x61','\x75\x66\x48\x54\x57\x51\x66\x46','\x72\x38\x6b\x74\x64\x43\x6b\x54\x79\x71','\x57\x51\x76\x66\x76\x73\x5a\x63\x4d\x32\x4b','\x57\x34\x52\x63\x49\x48\x4a\x63\x51\x38\x6f\x49','\x57\x34\x64\x63\x52\x76\x4a\x63\x4d\x4a\x6d','\x70\x6d\x6f\x32\x68\x43\x6f\x77\x63\x71','\x66\x38\x6b\x67\x57\x52\x37\x64\x52\x6d\x6f\x7a','\x57\x36\x75\x30\x77\x58\x71\x7a','\x78\x38\x6f\x71\x79\x43\x6f\x47\x73\x47','\x7a\x43\x6b\x38\x6f\x38\x6b\x4e\x7a\x71','\x72\x6d\x6b\x6d\x43\x38\x6b\x32\x76\x6d\x6b\x55\x57\x51\x53\x43\x64\x38\x6b\x59\x57\x34\x47','\x57\x51\x47\x4a\x61\x72\x4f','\x7a\x38\x6f\x4e\x71\x43\x6f\x51\x78\x71','\x79\x6d\x6f\x48\x65\x43\x6f\x44\x57\x51\x31\x44\x65\x65\x57','\x6b\x38\x6f\x30\x62\x59\x42\x63\x4d\x71','\x57\x50\x37\x64\x48\x57\x61\x61\x6f\x72\x34\x72','\x57\x51\x46\x63\x50\x57\x56\x64\x49\x30\x66\x57\x57\x52\x56\x64\x54\x38\x6f\x62\x70\x43\x6b\x66\x57\x4f\x47\x73\x6e\x43\x6f\x7a\x57\x51\x50\x76\x57\x50\x57\x49\x67\x75\x64\x63\x54\x6d\x6f\x6e\x57\x52\x42\x64\x48\x6d\x6f\x41\x57\x51\x76\x34','\x57\x35\x74\x64\x49\x5a\x79\x75\x6c\x71','\x57\x36\x78\x64\x52\x61\x66\x4f\x68\x61','\x6a\x38\x6f\x33\x57\x35\x6c\x64\x52\x64\x47','\x57\x4f\x66\x63\x46\x5a\x64\x64\x56\x71','\x57\x52\x35\x62\x73\x73\x75','\x78\x78\x69\x6f\x57\x4f\x33\x64\x4d\x49\x66\x37','\x6c\x43\x6b\x4a\x6a\x73\x6a\x70\x57\x35\x6a\x4c\x57\x36\x79','\x46\x43\x6f\x31\x73\x6d\x6f\x64\x78\x71','\x57\x52\x31\x68\x75\x47\x68\x64\x4b\x61','\x57\x4f\x54\x64\x76\x71\x2f\x63\x4f\x71','\x65\x6d\x6b\x2f\x67\x58\x52\x63\x47\x71','\x57\x52\x38\x6f\x6d\x48\x48\x48','\x62\x43\x6f\x7a\x67\x74\x57','\x71\x43\x6f\x77\x57\x35\x54\x4c','\x63\x38\x6f\x31\x57\x36\x33\x64\x4b\x61\x6d\x57\x70\x78\x61','\x57\x52\x4c\x62\x78\x57','\x75\x73\x5a\x63\x55\x53\x6b\x33\x57\x37\x43','\x57\x37\x56\x64\x53\x63\x76\x68\x70\x61','\x45\x38\x6f\x75\x57\x35\x6e\x75\x41\x57','\x57\x4f\x56\x64\x4d\x57\x57\x67\x6c\x58\x4f\x43\x71\x61\x4f','\x69\x38\x6b\x61\x43\x59\x42\x63\x50\x71','\x76\x43\x6b\x6e\x72\x71','\x72\x6d\x6b\x6d\x44\x43\x6b\x59\x76\x53\x6b\x49\x57\x52\x43\x34','\x68\x43\x6f\x31\x6b\x5a\x33\x63\x51\x61','\x57\x52\x37\x64\x4f\x63\x69\x72\x6f\x47','\x63\x43\x6f\x59\x57\x37\x52\x64\x52\x57\x61','\x68\x38\x6f\x45\x57\x37\x57\x6f\x57\x52\x6e\x4b','\x43\x67\x64\x64\x51\x43\x6b\x63\x6a\x61','\x57\x52\x6d\x68\x57\x37\x42\x64\x49\x47\x4f','\x57\x50\x79\x64\x65\x61\x31\x33','\x57\x34\x61\x6a\x57\x4f\x52\x64\x4d\x38\x6f\x2f\x57\x37\x42\x64\x56\x43\x6b\x43\x6d\x73\x78\x64\x49\x47\x57','\x57\x34\x79\x73\x42\x71','\x76\x33\x69\x4c\x57\x51\x2f\x64\x4d\x71','\x57\x4f\x31\x54\x76\x71\x46\x63\x4e\x57','\x74\x4e\x57\x73\x57\x4f\x33\x64\x4b\x61','\x72\x6d\x6b\x7a\x57\x37\x65\x50\x63\x47','\x57\x34\x42\x64\x47\x74\x79\x59\x65\x71','\x79\x6d\x6b\x58\x57\x4f\x48\x6f\x57\x51\x79','\x57\x4f\x6e\x37\x77\x32\x34','\x6d\x43\x6b\x59\x57\x52\x74\x64\x4c\x38\x6f\x38','\x75\x43\x6f\x53\x6c\x53\x6f\x44\x57\x4f\x57','\x68\x6d\x6f\x66\x57\x34\x38\x6d\x57\x51\x53','\x57\x35\x68\x63\x56\x66\x52\x63\x48\x73\x38'];}()));}()));}());_0x5c76=function(){return _0xe19dde;};return _0x5c76();};function Player(_0x50d67e){const _0x531ccd=_0x1834,_0x42692b={'\x47\x4b\x70\x50\x47':function(_0x2852f5,_0x400b87){return _0x2852f5!==_0x400b87;},'\x78\x64\x74\x52\x73':_0x531ccd(0x1b0,'\x43\x75\x48\x30'),'\x4d\x73\x55\x6b\x77':_0x531ccd(0x1fd,'\x39\x6b\x4c\x64'),'\x78\x69\x79\x73\x67':function(_0x543844){return _0x543844();},'\x68\x4a\x54\x49\x5a':function(_0x346c83,_0x11acf6){return _0x346c83!=_0x11acf6;},'\x63\x56\x53\x73\x55':_0x531ccd(0x216,'\x6c\x47\x42\x41'),'\x6b\x77\x44\x6e\x6e':function(_0xbcaca0,_0x43ca3d){return _0xbcaca0+_0x43ca3d;},'\x6a\x4e\x51\x4f\x6e':_0x531ccd(0x14c,'\x36\x2a\x69\x7a'),'\x64\x73\x53\x70\x74':_0x531ccd(0x1bc,'\x64\x69\x55\x48'),'\x62\x4b\x47\x6e\x4f':_0x531ccd(0x11f,'\x6c\x71\x34\x43'),'\x6a\x64\x78\x4c\x75':function(_0x35a35b,_0x2036c0){return _0x35a35b(_0x2036c0);},'\x52\x75\x73\x45\x58':_0x531ccd(0x20d,'\x6c\x47\x42\x41'),'\x6f\x74\x4c\x72\x6d':_0x531ccd(0x115,'\x5d\x21\x58\x36')};let _0xdb643a={'\x75\x72\x6c':_0x50d67e,'\x6d\x65\x74\x68\x6f\x64':_0x42692b[_0x531ccd(0x1b5,'\x37\x25\x2a\x21')]};$http[_0x531ccd(0x20a,'\x57\x73\x64\x30')](_0xdb643a)[_0x531ccd(0x1d3,'\x35\x6e\x45\x38')](_0x36bab8=>{const _0x512d22=_0x531ccd,_0x3d6ed9={'\x6a\x77\x4f\x70\x73':function(_0x12ddc3,_0x2c4076){const _0x3de201=_0x1834;return _0x42692b[_0x3de201(0x171,'\x4c\x5e\x55\x4b')](_0x12ddc3,_0x2c4076);},'\x50\x61\x4b\x4b\x54':_0x42692b[_0x512d22(0x134,'\x4c\x4d\x6a\x4f')],'\x53\x68\x6e\x54\x4a':_0x42692b[_0x512d22(0x1c8,'\x4a\x36\x4c\x7a')],'\x41\x75\x78\x4a\x74':function(_0x2ad7ad){const _0x1eaa73=_0x512d22;return _0x42692b[_0x1eaa73(0x108,'\x57\x4a\x67\x78')](_0x2ad7ad);},'\x43\x71\x4c\x67\x53':function(_0x5960a9,_0x515024){const _0x5d55f5=_0x512d22;return _0x42692b[_0x5d55f5(0x1e0,'\x43\x75\x48\x30')](_0x5960a9,_0x515024);},'\x4b\x62\x6d\x56\x70':_0x42692b[_0x512d22(0x116,'\x5a\x4d\x30\x65')],'\x6b\x70\x65\x71\x74':function(_0x32d701,_0x38b6c1){const _0x41e430=_0x512d22;return _0x42692b[_0x41e430(0x1bf,'\x6c\x47\x42\x41')](_0x32d701,_0x38b6c1);},'\x57\x78\x51\x63\x55':_0x42692b[_0x512d22(0x126,'\x64\x26\x51\x45')],'\x52\x79\x61\x6d\x76':_0x42692b[_0x512d22(0x229,'\x39\x6b\x4c\x64')],'\x44\x6a\x6f\x51\x6e':_0x42692b[_0x512d22(0x25f,'\x24\x6f\x71\x24')],'\x4d\x56\x59\x68\x4c':function(_0x3cb636,_0x3ae714){const _0x582ff4=_0x512d22;return _0x42692b[_0x582ff4(0x1a8,'\x5b\x4b\x75\x53')](_0x3cb636,_0x3ae714);},'\x6a\x77\x6b\x62\x5a':_0x42692b[_0x512d22(0x1ad,'\x57\x73\x64\x30')]},_0x320c4d=_0x36bab8[_0x512d22(0x12c,'\x64\x26\x51\x45')][_0x512d22(0x173,'\x25\x53\x4d\x43')](/pid = (\d+);/)[0x1];_0xdb643a={'\x75\x72\x6c':_0x42692b[_0x512d22(0x14a,'\x79\x4e\x74\x79')](_0xc3a43e,_0x320c4d),'\x6d\x65\x74\x68\x6f\x64':_0x42692b[_0x512d22(0x1d4,'\x4a\x53\x6d\x37')]},$http[_0x512d22(0x222,'\x76\x4b\x70\x52')](_0xdb643a)[_0x512d22(0x113,'\x47\x4b\x46\x62')](_0x937dbe=>{const _0x2c8a07=_0x512d22,_0x269c2f={'\x65\x6f\x73\x4b\x4f':function(_0x207854){const _0x2f6bf9=_0x1834;return _0x3d6ed9[_0x2f6bf9(0x1d8,'\x72\x53\x42\x23')](_0x207854);}};let _0x4eed33=JSON[_0x2c8a07(0x1ab,'\x79\x50\x6c\x71')](_0x937dbe[_0x2c8a07(0x16b,'\x6c\x47\x42\x41')])[_0x2c8a07(0x260,'\x39\x6b\x4c\x64')][_0x2c8a07(0x1e4,'\x79\x50\x6c\x71')];_0x3d6ed9[_0x2c8a07(0x1b1,'\x37\x25\x2a\x21')](_0x4eed33[_0x2c8a07(0x240,'\x5d\x21\x58\x36')](_0x3d6ed9[_0x2c8a07(0x118,'\x4c\x4d\x6a\x4f')]),-0x1)?(_0xdb643a={'\x75\x72\x6c':_0x3d6ed9[_0x2c8a07(0x207,'\x4a\x31\x6e\x5b')](_0x3d6ed9[_0x2c8a07(0x188,'\x52\x4b\x4f\x65')](_0x3d6ed9[_0x2c8a07(0x1a9,'\x57\x73\x64\x30')],_0x320c4d),_0x3d6ed9[_0x2c8a07(0x209,'\x57\x73\x64\x30')]),'\x6d\x65\x74\x68\x6f\x64':_0x3d6ed9[_0x2c8a07(0x20c,'\x73\x25\x5a\x56')],'\x62\x6f\x64\x79':_0x3d6ed9[_0x2c8a07(0x21d,'\x77\x5d\x21\x29')](_0x70619e,_0x320c4d),'\x68\x65\x61\x64\x65\x72\x73':{'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':_0x3d6ed9[_0x2c8a07(0x258,'\x35\x21\x4a\x44')]}},$http[_0x2c8a07(0x177,'\x44\x4a\x6a\x6c')](_0xdb643a)[_0x2c8a07(0x17b,'\x6c\x71\x34\x43')](_0x3cb5b2=>{const _0x742dbe=_0x2c8a07;if(_0x3d6ed9[_0x742dbe(0x21b,'\x4a\x36\x4c\x7a')](_0x3d6ed9[_0x742dbe(0x13a,'\x45\x76\x73\x29')],_0x3d6ed9[_0x742dbe(0x253,'\x37\x40\x70\x49')])){const _0x27e011=JSON[_0x742dbe(0x119,'\x64\x69\x55\x48')](_0x3cb5b2[_0x742dbe(0x13e,'\x72\x53\x42\x23')])[_0x742dbe(0x1b6,'\x6c\x71\x34\x43')];$next[_0x742dbe(0x211,'\x47\x4b\x42\x62')](_0x27e011);}else MXWvbc[_0x742dbe(0x122,'\x36\x2a\x69\x7a')](_0x3bfe29);})):$next[_0x2c8a07(0x187,'\x4a\x31\x6e\x5b')](_0x4eed33);});});}(function(){const _0x2ee34e=_0x1834,_0xeadde2={'\x74\x49\x69\x57\x43':function(_0x140c3b,_0x5d4362){return _0x140c3b!==_0x5d4362;},'\x5a\x59\x65\x74\x47':_0x2ee34e(0x15c,'\x52\x4b\x4f\x65'),'\x47\x4f\x73\x7a\x4e':function(_0x221371,_0x16a452){return _0x221371===_0x16a452;},'\x57\x43\x6c\x4c\x4e':_0x2ee34e(0x120,'\x26\x55\x4f\x68'),'\x6b\x72\x71\x69\x42':function(_0x31e264,_0x4664bc){return _0x31e264===_0x4664bc;},'\x56\x56\x65\x6e\x55':_0x2ee34e(0x17d,'\x57\x73\x64\x30')},_0x4458f6=_0xeadde2[_0x2ee34e(0x22b,'\x66\x5e\x54\x61')](typeof window,_0xeadde2[_0x2ee34e(0x242,'\x4a\x31\x6e\x5b')])?window:_0xeadde2[_0x2ee34e(0x12b,'\x54\x51\x57\x73')](typeof process,_0xeadde2[_0x2ee34e(0x132,'\x47\x4b\x42\x62')])&&_0xeadde2[_0x2ee34e(0x249,'\x56\x34\x37\x26')](typeof require,_0xeadde2[_0x2ee34e(0x262,'\x6d\x50\x68\x58')])&&_0xeadde2[_0x2ee34e(0x158,'\x58\x31\x61\x79')](typeof global,_0xeadde2[_0x2ee34e(0x153,'\x26\x24\x21\x37')])?global:this;_0x4458f6[_0x2ee34e(0x16d,'\x56\x46\x5a\x48')](_0x2a60a4,0x7d0);}());function _0x2a60a4(_0x3818b8){const _0x55e768=_0x1834,_0x4573c9={'\x57\x4d\x42\x66\x66':function(_0x6e4007,_0x94d380){return _0x6e4007(_0x94d380);},'\x45\x49\x41\x63\x7a':function(_0xa4a976,_0x5dfe04){return _0xa4a976===_0x5dfe04;},'\x67\x75\x70\x67\x52':_0x55e768(0x19d,'\x36\x2a\x69\x7a'),'\x42\x7a\x4b\x59\x43':function(_0x54899e,_0x1ff19e){return _0x54899e+_0x1ff19e;},'\x53\x69\x6f\x6c\x52':function(_0x33c484,_0x8ef73c){return _0x33c484+_0x8ef73c;},'\x71\x5a\x58\x51\x6c':_0x55e768(0x252,'\x35\x6e\x45\x38'),'\x61\x41\x46\x48\x66':_0x55e768(0x215,'\x72\x53\x42\x23'),'\x69\x68\x54\x74\x6a':_0x55e768(0x1bd,'\x32\x33\x69\x46'),'\x58\x6d\x6c\x48\x49':function(_0x30d69e,_0x1ae4ee){return _0x30d69e(_0x1ae4ee);},'\x6d\x58\x79\x66\x55':_0x55e768(0x102,'\x44\x4a\x6a\x6c'),'\x68\x4c\x71\x43\x6a':_0x55e768(0x1b4,'\x4c\x4d\x6a\x4f'),'\x6e\x70\x57\x5a\x56':_0x55e768(0x1f6,'\x43\x75\x48\x30'),'\x76\x68\x44\x4b\x71':_0x55e768(0x19b,'\x47\x4b\x46\x62'),'\x75\x43\x48\x4c\x54':function(_0x14d441){return _0x14d441();},'\x4a\x48\x74\x79\x63':function(_0x4d089e,_0x9ddaa4){return _0x4d089e!==_0x9ddaa4;},'\x65\x4f\x6d\x73\x6c':function(_0x201b64,_0x58d6cc){return _0x201b64+_0x58d6cc;},'\x63\x45\x56\x6c\x75':function(_0x2ad224,_0x1141ef){return _0x2ad224/_0x1141ef;},'\x71\x55\x68\x55\x5a':_0x55e768(0x172,'\x40\x32\x53\x63'),'\x72\x65\x77\x74\x78':function(_0x123a15,_0x318388){return _0x123a15%_0x318388;},'\x68\x50\x74\x6a\x74':function(_0x36f773,_0x4f0f58){return _0x36f773!==_0x4f0f58;},'\x44\x62\x70\x63\x4f':_0x55e768(0x25c,'\x40\x32\x53\x63'),'\x79\x5a\x62\x59\x4c':_0x55e768(0x1d5,'\x5b\x4b\x75\x53'),'\x49\x55\x4c\x52\x63':_0x55e768(0x10e,'\x64\x69\x55\x48'),'\x48\x57\x61\x75\x4d':_0x55e768(0x1c9,'\x76\x4b\x70\x52'),'\x71\x62\x6c\x58\x74':_0x55e768(0x155,'\x36\x2a\x69\x7a'),'\x47\x71\x4d\x47\x7a':_0x55e768(0x114,'\x4c\x5e\x55\x4b'),'\x4e\x49\x68\x48\x69':function(_0x32f35c,_0x29558c){return _0x32f35c+_0x29558c;},'\x6a\x4d\x70\x44\x73':_0x55e768(0x121,'\x37\x25\x2a\x21'),'\x6a\x41\x66\x59\x70':function(_0x454f83,_0x53c7d4,_0x22ddde){return _0x454f83(_0x53c7d4,_0x22ddde);},'\x48\x46\x6e\x46\x53':function(_0x252022,_0x1b7645){return _0x252022(_0x1b7645);},'\x41\x49\x64\x63\x70':function(_0x436fd1,_0x45993c){return _0x436fd1+_0x45993c;},'\x4b\x48\x4f\x69\x44':function(_0x5ad992,_0x2713c7){return _0x5ad992+_0x2713c7;},'\x6b\x72\x51\x79\x71':function(_0x1de994){return _0x1de994();},'\x6a\x69\x41\x53\x47':function(_0x2fe230,_0xec83ca){return _0x2fe230!==_0xec83ca;},'\x64\x76\x68\x48\x63':_0x55e768(0x212,'\x43\x75\x48\x30'),'\x41\x4b\x4a\x55\x48':_0x55e768(0x150,'\x4c\x4d\x6a\x4f'),'\x53\x6e\x52\x47\x4b':function(_0x5efcbe,_0x250f6a){return _0x5efcbe!==_0x250f6a;},'\x59\x72\x6b\x67\x51':_0x55e768(0x189,'\x26\x24\x21\x37'),'\x59\x47\x46\x70\x47':function(_0x2a7885,_0x1fa0f0){return _0x2a7885(_0x1fa0f0);}};function _0x3c7fcc(_0x35bde5){const _0x6a1d50=_0x55e768,_0x24b408={'\x59\x46\x48\x63\x71':function(_0x409a4f,_0x19e317){const _0x276bf4=_0x1834;return _0x4573c9[_0x276bf4(0x184,'\x26\x24\x21\x37')](_0x409a4f,_0x19e317);}};if(_0x4573c9[_0x6a1d50(0x110,'\x4c\x5e\x55\x4b')](_0x4573c9[_0x6a1d50(0x1dc,'\x73\x25\x5a\x56')],_0x4573c9[_0x6a1d50(0x125,'\x25\x53\x4d\x43')])){if(_0x51af29)return _0x2d5cb7;else _0x4573c9[_0x6a1d50(0x149,'\x58\x31\x61\x79')](_0x14feb4,0x0);}else{if(_0x4573c9[_0x6a1d50(0x199,'\x6c\x47\x42\x41')](typeof _0x35bde5,_0x4573c9[_0x6a1d50(0x19a,'\x52\x24\x6c\x5b')])){const _0x17180c=function(){const _0x4868b0=_0x6a1d50;if(_0x4573c9[_0x4868b0(0x110,'\x4c\x5e\x55\x4b')](_0x4573c9[_0x4868b0(0x156,'\x5a\x4d\x30\x65')],_0x4573c9[_0x4868b0(0x226,'\x47\x4b\x42\x62')]))while(!![]){}else _0x24b408[_0x4868b0(0x1df,'\x6c\x47\x42\x41')](_0x29358f,'\x30');};return _0x4573c9[_0x6a1d50(0x1e1,'\x5a\x4d\x30\x65')](_0x17180c);}else{if(_0x4573c9[_0x6a1d50(0x19e,'\x6c\x71\x34\x43')](_0x4573c9[_0x6a1d50(0x10b,'\x6d\x50\x68\x58')]('',_0x4573c9[_0x6a1d50(0x18c,'\x6c\x71\x34\x43')](_0x35bde5,_0x35bde5))[_0x4573c9[_0x6a1d50(0x191,'\x37\x25\x2a\x21')]],0x1)||_0x4573c9[_0x6a1d50(0x22f,'\x57\x4a\x67\x78')](_0x4573c9[_0x6a1d50(0x1e5,'\x57\x73\x64\x30')](_0x35bde5,0x14),0x0)){if(_0x4573c9[_0x6a1d50(0x163,'\x39\x6b\x4c\x64')](_0x4573c9[_0x6a1d50(0x161,'\x4c\x4d\x6a\x4f')],_0x4573c9[_0x6a1d50(0x1dd,'\x5d\x21\x58\x36')]))debugger;else _0x509ec8={'\x75\x72\x6c':_0x4573c9[_0x6a1d50(0x19c,'\x76\x4b\x70\x52')](_0x4573c9[_0x6a1d50(0x111,'\x47\x4b\x42\x62')](_0x4573c9[_0x6a1d50(0x1f8,'\x72\x53\x42\x23')],_0x33c7fe),_0x4573c9[_0x6a1d50(0x154,'\x4c\x5e\x55\x4b')]),'\x6d\x65\x74\x68\x6f\x64':_0x4573c9[_0x6a1d50(0x221,'\x39\x6b\x4c\x64')],'\x62\x6f\x64\x79':_0x4573c9[_0x6a1d50(0x230,'\x37\x25\x2a\x21')](_0x5955eb,_0x2df3d8),'\x68\x65\x61\x64\x65\x72\x73':{'\x43\x6f\x6e\x74\x65\x6e\x74\x2d\x54\x79\x70\x65':_0x4573c9[_0x6a1d50(0x1f2,'\x40\x32\x53\x63')]}},_0x439725[_0x6a1d50(0x205,'\x47\x4b\x42\x62')](_0x124227)[_0x6a1d50(0x16c,'\x24\x6f\x71\x24')](_0x14bc66=>{const _0x4fc04f=_0x6a1d50,_0x5e977d=_0x1ab507[_0x4fc04f(0x1a3,'\x47\x4b\x42\x62')](_0x14bc66[_0x4fc04f(0x18e,'\x6d\x50\x68\x58')])[_0x4fc04f(0x1ec,'\x5b\x4b\x75\x53')];_0x113636[_0x4fc04f(0x151,'\x43\x75\x48\x30')](_0x5e977d);});}else debugger;}_0x4573c9[_0x6a1d50(0x193,'\x6d\x50\x68\x58')](_0x3c7fcc,++_0x35bde5);}}try{if(_0x4573c9[_0x55e768(0x13f,'\x67\x69\x35\x49')](_0x4573c9[_0x55e768(0x14b,'\x6d\x50\x68\x58')],_0x4573c9[_0x55e768(0x22d,'\x52\x24\x6c\x5b')])){if(_0x3818b8)return _0x3c7fcc;else{if(_0x4573c9[_0x55e768(0x201,'\x77\x5d\x21\x29')](_0x4573c9[_0x55e768(0x127,'\x66\x5e\x54\x61')],_0x4573c9[_0x55e768(0x123,'\x6c\x47\x42\x41')])){const _0x474255={'\x76\x51\x56\x62\x6b':_0x4573c9[_0x55e768(0x1c3,'\x45\x76\x73\x29')],'\x58\x50\x74\x54\x45':_0x4573c9[_0x55e768(0x23d,'\x6d\x50\x68\x58')],'\x52\x57\x75\x66\x44':function(_0x4077f5,_0x5d6824){const _0x2ad1c8=_0x55e768;return _0x4573c9[_0x2ad1c8(0x183,'\x52\x24\x6c\x5b')](_0x4077f5,_0x5d6824);},'\x79\x53\x77\x7a\x41':_0x4573c9[_0x55e768(0x23f,'\x25\x52\x71\x55')],'\x63\x68\x4e\x41\x52':function(_0x575eaa,_0xa39a23){const _0x3c6e4d=_0x55e768;return _0x4573c9[_0x3c6e4d(0x1cb,'\x35\x21\x4a\x44')](_0x575eaa,_0xa39a23);},'\x76\x55\x6b\x65\x49':_0x4573c9[_0x55e768(0x25b,'\x4c\x5e\x55\x4b')],'\x65\x41\x52\x6b\x68':function(_0x38f2fd,_0xd12ae3){const _0x517c54=_0x55e768;return _0x4573c9[_0x517c54(0x245,'\x57\x4a\x67\x78')](_0x38f2fd,_0xd12ae3);},'\x49\x6d\x72\x48\x75':_0x4573c9[_0x55e768(0x1ba,'\x58\x31\x61\x79')],'\x67\x4b\x6a\x7a\x53':function(_0x507676){const _0x1600e2=_0x55e768;return _0x4573c9[_0x1600e2(0x1b3,'\x64\x69\x55\x48')](_0x507676);}};_0x4573c9[_0x55e768(0x225,'\x64\x69\x55\x48')](_0x52f285,this,function(){const _0x337b17=_0x55e768,_0x511c9f=new _0x312930(_0x474255[_0x337b17(0x166,'\x5a\x4d\x30\x65')]),_0xb5cbfd=new _0x2c1a84(_0x474255[_0x337b17(0x143,'\x36\x2a\x69\x7a')],'\x69'),_0xb90ead=_0x474255[_0x337b17(0x234,'\x44\x4a\x6a\x6c')](_0x36d4fd,_0x474255[_0x337b17(0x130,'\x77\x5d\x21\x29')]);!_0x511c9f[_0x337b17(0x10c,'\x72\x53\x42\x23')](_0x474255[_0x337b17(0x144,'\x4c\x4d\x6a\x4f')](_0xb90ead,_0x474255[_0x337b17(0x159,'\x76\x4b\x70\x52')]))||!_0xb5cbfd[_0x337b17(0x1cc,'\x47\x4b\x46\x62')](_0x474255[_0x337b17(0x175,'\x35\x6e\x45\x38')](_0xb90ead,_0x474255[_0x337b17(0x1d9,'\x79\x4e\x74\x79')]))?_0x474255[_0x337b17(0x1fc,'\x6d\x50\x68\x58')](_0xb90ead,'\x30'):_0x474255[_0x337b17(0x15d,'\x26\x55\x4f\x68')](_0x16c28d);})();}else _0x4573c9[_0x55e768(0x1ff,'\x35\x21\x4a\x44')](_0x3c7fcc,0x0);}}else{const _0x358955=new _0x5d5e49(_0x4573c9[_0x55e768(0x178,'\x52\x4b\x4f\x65')]),_0x254907=new _0x6f2755(_0x4573c9[_0x55e768(0x195,'\x57\x4a\x67\x78')],'\x69'),_0x5f03b4=_0x4573c9[_0x55e768(0x23b,'\x52\x24\x6c\x5b')](_0x5c3355,_0x4573c9[_0x55e768(0x17c,'\x52\x4b\x4f\x65')]);!_0x358955[_0x55e768(0x18d,'\x25\x52\x71\x55')](_0x4573c9[_0x55e768(0x261,'\x45\x76\x73\x29')](_0x5f03b4,_0x4573c9[_0x55e768(0x182,'\x4a\x36\x4c\x7a')]))||!_0x254907[_0x55e768(0x224,'\x67\x42\x73\x54')](_0x4573c9[_0x55e768(0x236,'\x45\x76\x73\x29')](_0x5f03b4,_0x4573c9[_0x55e768(0x1af,'\x4c\x5e\x55\x4b')]))?_0x4573c9[_0x55e768(0x168,'\x73\x25\x5a\x56')](_0x5f03b4,'\x30'):_0x4573c9[_0x55e768(0x22e,'\x4a\x53\x6d\x37')](_0x448228);}}catch(_0x30fe97){}}var version_ = 'jsjiami.com.v7'; -------------------------------------------------------------------------------- /alpha_v2/bdys.js: -------------------------------------------------------------------------------- 1 | `user script`; 2 | 3 | function buildURL(href) { 4 | if (!href.startsWith("http")) { 5 | href = "https://www.bdys10.com" + href; 6 | } 7 | return href; 8 | } 9 | 10 | // Main 11 | function buildMedias(inputURL) { 12 | const req = { 13 | url: inputURL, 14 | method: "GET", 15 | }; 16 | 17 | let datas = []; 18 | 19 | $http.fetch(req).then(res => { 20 | const content = tXml.getElementsByClassName(res.body, "card card-sm card-link"); 21 | content.forEach(dom => { 22 | _len = dom.children.length; 23 | 24 | let href = findAllByKey(dom, "href")[0]; 25 | // print(href); 26 | const title = dom.children[_len-1].children[0].children[0]; 27 | // print(title); 28 | const coverURLString = findAllByKey(dom, "src")[0]; 29 | // print(coverURLString); 30 | let descriptionText = dom.children[_len-1].children[1].children[0]; 31 | /* 不知道為什麽本地node環境可以正常輸出,但是在插件里會報錯,後續找到原因再調試。 32 | const _array = dom.children[_len-2].children[1] || dom.children[_len-1].children[1]; 33 | const descriptionText = _array.children[0]; 34 | */ 35 | // print(descriptionText); 36 | href = buildURL(href); 37 | 38 | datas.push( 39 | buildMediaData(href, coverURLString, title, descriptionText, href) 40 | ); 41 | }); 42 | 43 | $next.toMedias(JSON.stringify(datas)); 44 | }); 45 | } 46 | 47 | function Episodes(inputURL) { 48 | const req = { 49 | url: inputURL, 50 | method: "GET", 51 | }; 52 | 53 | let datas = []; 54 | 55 | $http.fetch(req).then(res => { 56 | const content = tXml.getElementsByClassName(res.body, "btn btn-square me-2"); 57 | 58 | content.forEach(element => { 59 | let href = element.attributes.href; 60 | const title = element.children[0]; 61 | 62 | href = buildURL(href); 63 | 64 | datas.push(buildEpisodeData(href, title, href)); 65 | }); 66 | 67 | $next.toEpisodes(JSON.stringify(datas)); 68 | }); 69 | } 70 | 71 | function Search(inputURL) { 72 | } -------------------------------------------------------------------------------- /alpha_v2/bdys.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "哔嘀影视", 3 | "description": "1080P 3M", 4 | "host": "https://www.bdys10.com/", 5 | "files": ["util.js","txml.js","crypto-js.min.js","bdys-sign.min.js","bdys.js"], 6 | "pages": [ 7 | { 8 | "key": "index", 9 | "title": "最近更新", 10 | "url": "https://www.bdys10.com/s/all/${pageNumber}", 11 | "javascript": "buildMedias" 12 | }, 13 | { 14 | "key": "movie", 15 | "title": "电影", 16 | "url": "https://www.bdys10.com/s/all/${pageNumber}?type=0", 17 | "javascript": "buildMedias" 18 | }, 19 | { 20 | "key": "tv", 21 | "title": "电视剧", 22 | "url": "https://www.bdys10.com/s/all/${pageNumber}?type=1", 23 | "javascript": "buildMedias" 24 | }, 25 | { 26 | "key": "cartoon", 27 | "title": "动漫", 28 | "url": "https://www.bdys10.com/s/donghua/${pageNumber}?type=1", 29 | "javascript": "buildMedias" 30 | }, 31 | { 32 | "key": "variety", 33 | "title": "综艺", 34 | "url": "https://www.bdys10.com/s/zongyi/${pageNumber}", 35 | "javascript": "buildMedias" 36 | }, 37 | { 38 | "key": "movie-xiju", 39 | "title": "喜剧电影", 40 | "url": "https://www.bdys10.com/s/xiju/${pageNumber}?type=0", 41 | "javascript": "buildMedias" 42 | }, 43 | { 44 | "key": "movie-dongzuo", 45 | "title": "动作电影", 46 | "url": "https://www.bdys10.com/s/dongzuo/${pageNumber}?type=0", 47 | "javascript": "buildMedias" 48 | }, 49 | { 50 | "key": "movie-kehuan", 51 | "title": "科幻电影", 52 | "url": "https://www.bdys10.com/s/kehuan/${pageNumber}?type=0", 53 | "javascript": "buildMedias" 54 | }, 55 | { 56 | "key": "movie-aiqing", 57 | "title": "爱情电影", 58 | "url": "https://www.bdys10.com/s/aiqing/${pageNumber}?type=0", 59 | "javascript": "buildMedias" 60 | }, 61 | { 62 | "key": "movie-kongbu", 63 | "title": "恐怖电影", 64 | "url": "https://www.bdys10.com/s/kongbu/${pageNumber}?type=0", 65 | "javascript": "buildMedias" 66 | }, 67 | { 68 | "key": "movie-donghua", 69 | "title": "动画电影", 70 | "url": "https://www.bdys10.com/s/donghua/${pageNumber}?type=0", 71 | "javascript": "buildMedias" 72 | }, 73 | { 74 | "key": "tv-cn", 75 | "title": "大陆电视剧", 76 | "url": "https://www.bdys10.com/s/all/${pageNumber}?type=1&area=%E4%B8%AD%E5%9B%BD%E5%A4%A7%E9%99%86", 77 | "javascript": "buildMedias" 78 | }, 79 | { 80 | "key": "tv-hk", 81 | "title": "香港电视剧", 82 | "url": "https://www.bdys10.com/s/all/${pageNumber}?type=1&area=%E4%B8%AD%E5%9B%BD%E9%A6%99%E6%B8%AF", 83 | "javascript": "buildMedias" 84 | }, 85 | { 86 | "key": "tv-tw", 87 | "title": "台湾电视剧", 88 | "url": "https://www.bdys10.com/s/all/${pageNumber}?type=1&area=%E4%B8%AD%E5%9B%BD%E5%8F%B0%E6%B9%BE", 89 | "javascript": "buildMedias" 90 | }, 91 | { 92 | "key": "tv-us", 93 | "title": "欧美电视剧", 94 | "url": "https://www.bdys10.com/s/meiju/${pageNumber}", 95 | "javascript": "buildMedias" 96 | }, 97 | { 98 | "key": "tv-kr", 99 | "title": "韩国电视剧", 100 | "url": "https://www.bdys10.com/s/hanju/${pageNumber}", 101 | "javascript": "buildMedias" 102 | }, 103 | { 104 | "key": "tv-jp", 105 | "title": "日本电视剧", 106 | "url": "https://www.bdys10.com/s/riju/${pageNumber}", 107 | "javascript": "buildMedias" 108 | }, 109 | { 110 | "key": "tv-uk", 111 | "title": "英国电视剧", 112 | "url": "https://www.bdys10.com/s/yingju/${pageNumber}", 113 | "javascript": "buildMedias" 114 | }, 115 | { 116 | "key": "tv-th", 117 | "title": "泰国电视剧", 118 | "url": "https://www.bdys10.com/s/taiju/${pageNumber}", 119 | "javascript": "buildMedias" 120 | }, 121 | { 122 | "key": "variety-cn", 123 | "title": "国产综艺", 124 | "url": "https://www.bdys10.com/s/zongyi/${pageNumber}?area=%E4%B8%AD%E5%9B%BD%E5%A4%A7%E9%99%86", 125 | "javascript": "buildMedias" 126 | }, 127 | { 128 | "key": "variety-kr", 129 | "title": "韩国综艺", 130 | "url": "https://www.bdys10.com/s/zongyi/${pageNumber}?area=%E9%9F%A9%E5%9B%BD", 131 | "javascript": "buildMedias" 132 | }, 133 | { 134 | "key": "cartoon-cn", 135 | "title": "国产动漫", 136 | "url": "https://www.bdys10.com/s/donghua/${pageNumber}?type=1&area=%E4%B8%AD%E5%9B%BD%E5%A4%A7%E9%99%86", 137 | "javascript": "buildMedias" 138 | }, 139 | { 140 | "key": "cartoon-jp", 141 | "title": "日本动漫", 142 | "url": "https://www.bdys10.com/s/donghua/${pageNumber}?type=1&area=%E6%97%A5%E6%9C%AC", 143 | "javascript": "buildMedias" 144 | }, 145 | { 146 | "key": "cartoon-us", 147 | "title": "欧美动漫", 148 | "url": "https://www.bdys10.com/s/donghua/${pageNumber}?type=1&area=%E7%BE%8E%E5%9B%BD", 149 | "javascript": "buildMedias" 150 | }, 151 | { 152 | "key": "cartoon-kr", 153 | "title": "韩国动漫", 154 | "url": "https://www.bdys10.com/s/donghua/${pageNumber}?type=1&area=%E9%9F%A9%E5%9B%BD", 155 | "javascript": "buildMedias" 156 | } 157 | ], 158 | "episodes": { 159 | "javascript": "Episodes" 160 | }, 161 | "player": { 162 | "javascript": "Player" 163 | }, 164 | "search": { 165 | "url": "${keyword}", 166 | "javascript": "Search" 167 | } 168 | } -------------------------------------------------------------------------------- /alpha_v2/crypto-js.min.js: -------------------------------------------------------------------------------- 1 | !function(t,r){"object"==typeof exports?module.exports=exports=r():"function"==typeof define&&define.amd?define([],r):t.CryptoJS=r()}(this,function(){var t=t||function(t,r){var e=Object.create||function(){function t(){}return function(r){var e;return t.prototype=r,e=new t,t.prototype=null,e}}(),i={},n=i.lib={},o=n.Base=function(){return{extend:function(t){var r=e(this);return t&&r.mixIn(t),r.hasOwnProperty("init")&&this.init!==r.init||(r.init=function(){r.$super.init.apply(this,arguments)}),r.init.prototype=r,r.$super=this,r},create:function(){var t=this.extend();return t.init.apply(t,arguments),t},init:function(){},mixIn:function(t){for(var r in t)t.hasOwnProperty(r)&&(this[r]=t[r]);t.hasOwnProperty("toString")&&(this.toString=t.toString)},clone:function(){return this.init.prototype.extend(this)}}}(),s=n.WordArray=o.extend({init:function(t,e){t=this.words=t||[],e!=r?this.sigBytes=e:this.sigBytes=4*t.length},toString:function(t){return(t||c).stringify(this)},concat:function(t){var r=this.words,e=t.words,i=this.sigBytes,n=t.sigBytes;if(this.clamp(),i%4)for(var o=0;o>>2]>>>24-o%4*8&255;r[i+o>>>2]|=s<<24-(i+o)%4*8}else for(var o=0;o>>2]=e[o>>>2];return this.sigBytes+=n,this},clamp:function(){var r=this.words,e=this.sigBytes;r[e>>>2]&=4294967295<<32-e%4*8,r.length=t.ceil(e/4)},clone:function(){var t=o.clone.call(this);return t.words=this.words.slice(0),t},random:function(r){for(var e,i=[],n=function(r){var r=r,e=987654321,i=4294967295;return function(){e=36969*(65535&e)+(e>>16)&i,r=18e3*(65535&r)+(r>>16)&i;var n=(e<<16)+r&i;return n/=4294967296,n+=.5,n*(t.random()>.5?1:-1)}},o=0;o>>2]>>>24-n%4*8&255;i.push((o>>>4).toString(16)),i.push((15&o).toString(16))}return i.join("")},parse:function(t){for(var r=t.length,e=[],i=0;i>>3]|=parseInt(t.substr(i,2),16)<<24-i%8*4;return new s.init(e,r/2)}},h=a.Latin1={stringify:function(t){for(var r=t.words,e=t.sigBytes,i=[],n=0;n>>2]>>>24-n%4*8&255;i.push(String.fromCharCode(o))}return i.join("")},parse:function(t){for(var r=t.length,e=[],i=0;i>>2]|=(255&t.charCodeAt(i))<<24-i%4*8;return new s.init(e,r)}},l=a.Utf8={stringify:function(t){try{return decodeURIComponent(escape(h.stringify(t)))}catch(t){throw new Error("Malformed UTF-8 data")}},parse:function(t){return h.parse(unescape(encodeURIComponent(t)))}},f=n.BufferedBlockAlgorithm=o.extend({reset:function(){this._data=new s.init,this._nDataBytes=0},_append:function(t){"string"==typeof t&&(t=l.parse(t)),this._data.concat(t),this._nDataBytes+=t.sigBytes},_process:function(r){var e=this._data,i=e.words,n=e.sigBytes,o=this.blockSize,a=4*o,c=n/a;c=r?t.ceil(c):t.max((0|c)-this._minBufferSize,0);var h=c*o,l=t.min(4*h,n);if(h){for(var f=0;f>>6-s%4*2;i[o>>>2]|=(a|c)<<24-o%4*8,o++}return n.create(i,o)}var e=t,i=e.lib,n=i.WordArray,o=e.enc;o.Base64={stringify:function(t){var r=t.words,e=t.sigBytes,i=this._map;t.clamp();for(var n=[],o=0;o>>2]>>>24-o%4*8&255,a=r[o+1>>>2]>>>24-(o+1)%4*8&255,c=r[o+2>>>2]>>>24-(o+2)%4*8&255,h=s<<16|a<<8|c,l=0;l<4&&o+.75*l>>6*(3-l)&63));var f=i.charAt(64);if(f)for(;n.length%4;)n.push(f);return n.join("")},parse:function(t){var e=t.length,i=this._map,n=this._reverseMap;if(!n){n=this._reverseMap=[];for(var o=0;o>>32-o)+r}function i(t,r,e,i,n,o,s){var a=t+(r&i|e&~i)+n+s;return(a<>>32-o)+r}function n(t,r,e,i,n,o,s){var a=t+(r^e^i)+n+s;return(a<>>32-o)+r}function o(t,r,e,i,n,o,s){var a=t+(e^(r|~i))+n+s;return(a<>>32-o)+r}var s=t,a=s.lib,c=a.WordArray,h=a.Hasher,l=s.algo,f=[];!function(){for(var t=0;t<64;t++)f[t]=4294967296*r.abs(r.sin(t+1))|0}();var u=l.MD5=h.extend({_doReset:function(){this._hash=new c.init([1732584193,4023233417,2562383102,271733878])},_doProcessBlock:function(t,r){for(var s=0;s<16;s++){var a=r+s,c=t[a];t[a]=16711935&(c<<8|c>>>24)|4278255360&(c<<24|c>>>8)}var h=this._hash.words,l=t[r+0],u=t[r+1],d=t[r+2],v=t[r+3],p=t[r+4],_=t[r+5],y=t[r+6],g=t[r+7],B=t[r+8],w=t[r+9],k=t[r+10],S=t[r+11],m=t[r+12],x=t[r+13],b=t[r+14],H=t[r+15],z=h[0],A=h[1],C=h[2],D=h[3];z=e(z,A,C,D,l,7,f[0]),D=e(D,z,A,C,u,12,f[1]),C=e(C,D,z,A,d,17,f[2]),A=e(A,C,D,z,v,22,f[3]),z=e(z,A,C,D,p,7,f[4]),D=e(D,z,A,C,_,12,f[5]),C=e(C,D,z,A,y,17,f[6]),A=e(A,C,D,z,g,22,f[7]),z=e(z,A,C,D,B,7,f[8]),D=e(D,z,A,C,w,12,f[9]),C=e(C,D,z,A,k,17,f[10]),A=e(A,C,D,z,S,22,f[11]),z=e(z,A,C,D,m,7,f[12]),D=e(D,z,A,C,x,12,f[13]),C=e(C,D,z,A,b,17,f[14]),A=e(A,C,D,z,H,22,f[15]),z=i(z,A,C,D,u,5,f[16]),D=i(D,z,A,C,y,9,f[17]),C=i(C,D,z,A,S,14,f[18]),A=i(A,C,D,z,l,20,f[19]),z=i(z,A,C,D,_,5,f[20]),D=i(D,z,A,C,k,9,f[21]),C=i(C,D,z,A,H,14,f[22]),A=i(A,C,D,z,p,20,f[23]),z=i(z,A,C,D,w,5,f[24]),D=i(D,z,A,C,b,9,f[25]),C=i(C,D,z,A,v,14,f[26]),A=i(A,C,D,z,B,20,f[27]),z=i(z,A,C,D,x,5,f[28]),D=i(D,z,A,C,d,9,f[29]),C=i(C,D,z,A,g,14,f[30]),A=i(A,C,D,z,m,20,f[31]),z=n(z,A,C,D,_,4,f[32]),D=n(D,z,A,C,B,11,f[33]),C=n(C,D,z,A,S,16,f[34]),A=n(A,C,D,z,b,23,f[35]),z=n(z,A,C,D,u,4,f[36]),D=n(D,z,A,C,p,11,f[37]),C=n(C,D,z,A,g,16,f[38]),A=n(A,C,D,z,k,23,f[39]),z=n(z,A,C,D,x,4,f[40]),D=n(D,z,A,C,l,11,f[41]),C=n(C,D,z,A,v,16,f[42]),A=n(A,C,D,z,y,23,f[43]),z=n(z,A,C,D,w,4,f[44]),D=n(D,z,A,C,m,11,f[45]),C=n(C,D,z,A,H,16,f[46]),A=n(A,C,D,z,d,23,f[47]),z=o(z,A,C,D,l,6,f[48]),D=o(D,z,A,C,g,10,f[49]),C=o(C,D,z,A,b,15,f[50]),A=o(A,C,D,z,_,21,f[51]),z=o(z,A,C,D,m,6,f[52]),D=o(D,z,A,C,v,10,f[53]),C=o(C,D,z,A,k,15,f[54]),A=o(A,C,D,z,u,21,f[55]),z=o(z,A,C,D,B,6,f[56]),D=o(D,z,A,C,H,10,f[57]),C=o(C,D,z,A,y,15,f[58]),A=o(A,C,D,z,x,21,f[59]),z=o(z,A,C,D,p,6,f[60]),D=o(D,z,A,C,S,10,f[61]),C=o(C,D,z,A,d,15,f[62]),A=o(A,C,D,z,w,21,f[63]),h[0]=h[0]+z|0,h[1]=h[1]+A|0,h[2]=h[2]+C|0,h[3]=h[3]+D|0},_doFinalize:function(){var t=this._data,e=t.words,i=8*this._nDataBytes,n=8*t.sigBytes;e[n>>>5]|=128<<24-n%32;var o=r.floor(i/4294967296),s=i;e[(n+64>>>9<<4)+15]=16711935&(o<<8|o>>>24)|4278255360&(o<<24|o>>>8),e[(n+64>>>9<<4)+14]=16711935&(s<<8|s>>>24)|4278255360&(s<<24|s>>>8),t.sigBytes=4*(e.length+1),this._process();for(var a=this._hash,c=a.words,h=0;h<4;h++){var l=c[h];c[h]=16711935&(l<<8|l>>>24)|4278255360&(l<<24|l>>>8)}return a},clone:function(){var t=h.clone.call(this);return t._hash=this._hash.clone(),t}});s.MD5=h._createHelper(u),s.HmacMD5=h._createHmacHelper(u)}(Math),function(){var r=t,e=r.lib,i=e.WordArray,n=e.Hasher,o=r.algo,s=[],a=o.SHA1=n.extend({_doReset:function(){this._hash=new i.init([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(t,r){for(var e=this._hash.words,i=e[0],n=e[1],o=e[2],a=e[3],c=e[4],h=0;h<80;h++){if(h<16)s[h]=0|t[r+h];else{var l=s[h-3]^s[h-8]^s[h-14]^s[h-16];s[h]=l<<1|l>>>31}var f=(i<<5|i>>>27)+c+s[h];f+=h<20?(n&o|~n&a)+1518500249:h<40?(n^o^a)+1859775393:h<60?(n&o|n&a|o&a)-1894007588:(n^o^a)-899497514,c=a,a=o,o=n<<30|n>>>2,n=i,i=f}e[0]=e[0]+i|0,e[1]=e[1]+n|0,e[2]=e[2]+o|0,e[3]=e[3]+a|0,e[4]=e[4]+c|0},_doFinalize:function(){var t=this._data,r=t.words,e=8*this._nDataBytes,i=8*t.sigBytes;return r[i>>>5]|=128<<24-i%32,r[(i+64>>>9<<4)+14]=Math.floor(e/4294967296),r[(i+64>>>9<<4)+15]=e,t.sigBytes=4*r.length,this._process(),this._hash},clone:function(){var t=n.clone.call(this);return t._hash=this._hash.clone(),t}});r.SHA1=n._createHelper(a),r.HmacSHA1=n._createHmacHelper(a)}(),function(r){var e=t,i=e.lib,n=i.WordArray,o=i.Hasher,s=e.algo,a=[],c=[];!function(){function t(t){for(var e=r.sqrt(t),i=2;i<=e;i++)if(!(t%i))return!1;return!0}function e(t){return 4294967296*(t-(0|t))|0}for(var i=2,n=0;n<64;)t(i)&&(n<8&&(a[n]=e(r.pow(i,.5))),c[n]=e(r.pow(i,1/3)),n++),i++}();var h=[],l=s.SHA256=o.extend({_doReset:function(){this._hash=new n.init(a.slice(0))},_doProcessBlock:function(t,r){for(var e=this._hash.words,i=e[0],n=e[1],o=e[2],s=e[3],a=e[4],l=e[5],f=e[6],u=e[7],d=0;d<64;d++){if(d<16)h[d]=0|t[r+d];else{var v=h[d-15],p=(v<<25|v>>>7)^(v<<14|v>>>18)^v>>>3,_=h[d-2],y=(_<<15|_>>>17)^(_<<13|_>>>19)^_>>>10;h[d]=p+h[d-7]+y+h[d-16]}var g=a&l^~a&f,B=i&n^i&o^n&o,w=(i<<30|i>>>2)^(i<<19|i>>>13)^(i<<10|i>>>22),k=(a<<26|a>>>6)^(a<<21|a>>>11)^(a<<7|a>>>25),S=u+k+g+c[d]+h[d],m=w+B;u=f,f=l,l=a,a=s+S|0,s=o,o=n,n=i,i=S+m|0}e[0]=e[0]+i|0,e[1]=e[1]+n|0,e[2]=e[2]+o|0,e[3]=e[3]+s|0,e[4]=e[4]+a|0,e[5]=e[5]+l|0,e[6]=e[6]+f|0,e[7]=e[7]+u|0},_doFinalize:function(){var t=this._data,e=t.words,i=8*this._nDataBytes,n=8*t.sigBytes;return e[n>>>5]|=128<<24-n%32,e[(n+64>>>9<<4)+14]=r.floor(i/4294967296),e[(n+64>>>9<<4)+15]=i,t.sigBytes=4*e.length,this._process(),this._hash},clone:function(){var t=o.clone.call(this);return t._hash=this._hash.clone(),t}});e.SHA256=o._createHelper(l),e.HmacSHA256=o._createHmacHelper(l)}(Math),function(){function r(t){return t<<8&4278255360|t>>>8&16711935}var e=t,i=e.lib,n=i.WordArray,o=e.enc;o.Utf16=o.Utf16BE={stringify:function(t){for(var r=t.words,e=t.sigBytes,i=[],n=0;n>>2]>>>16-n%4*8&65535;i.push(String.fromCharCode(o))}return i.join("")},parse:function(t){for(var r=t.length,e=[],i=0;i>>1]|=t.charCodeAt(i)<<16-i%2*16;return n.create(e,2*r)}};o.Utf16LE={stringify:function(t){for(var e=t.words,i=t.sigBytes,n=[],o=0;o>>2]>>>16-o%4*8&65535);n.push(String.fromCharCode(s))}return n.join("")},parse:function(t){for(var e=t.length,i=[],o=0;o>>1]|=r(t.charCodeAt(o)<<16-o%2*16);return n.create(i,2*e)}}}(),function(){if("function"==typeof ArrayBuffer){var r=t,e=r.lib,i=e.WordArray,n=i.init,o=i.init=function(t){if(t instanceof ArrayBuffer&&(t=new Uint8Array(t)),(t instanceof Int8Array||"undefined"!=typeof Uint8ClampedArray&&t instanceof Uint8ClampedArray||t instanceof Int16Array||t instanceof Uint16Array||t instanceof Int32Array||t instanceof Uint32Array||t instanceof Float32Array||t instanceof Float64Array)&&(t=new Uint8Array(t.buffer,t.byteOffset,t.byteLength)),t instanceof Uint8Array){for(var r=t.byteLength,e=[],i=0;i>>2]|=t[i]<<24-i%4*8;n.call(this,e,r)}else n.apply(this,arguments)};o.prototype=i}}(),function(r){function e(t,r,e){return t^r^e}function i(t,r,e){return t&r|~t&e}function n(t,r,e){return(t|~r)^e}function o(t,r,e){return t&e|r&~e}function s(t,r,e){return t^(r|~e)}function a(t,r){return t<>>32-r}var c=t,h=c.lib,l=h.WordArray,f=h.Hasher,u=c.algo,d=l.create([0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,7,4,13,1,10,6,15,3,12,0,9,5,2,14,11,8,3,10,14,4,9,15,8,1,2,7,0,6,13,11,5,12,1,9,11,10,0,8,12,4,13,3,7,15,14,5,6,2,4,0,5,9,7,12,2,10,14,1,3,8,11,6,15,13]),v=l.create([5,14,7,0,9,2,11,4,13,6,15,8,1,10,3,12,6,11,3,7,0,13,5,10,14,15,8,12,4,9,1,2,15,5,1,3,7,14,6,9,11,8,12,2,10,0,4,13,8,6,4,1,3,11,15,0,5,12,2,13,9,7,10,14,12,15,10,4,1,5,8,7,6,2,13,14,0,3,9,11]),p=l.create([11,14,15,12,5,8,7,9,11,13,14,15,6,7,9,8,7,6,8,13,11,9,7,15,7,12,15,9,11,7,13,12,11,13,6,7,14,9,13,15,14,8,13,6,5,12,7,5,11,12,14,15,14,15,9,8,9,14,5,6,8,6,5,12,9,15,5,11,6,8,13,12,5,12,13,14,11,8,5,6]),_=l.create([8,9,9,11,13,15,15,5,7,7,8,11,14,14,12,6,9,13,15,7,12,8,9,11,7,7,12,7,6,15,13,11,9,7,15,11,8,6,6,14,12,13,5,14,13,13,7,5,15,5,8,11,14,14,6,14,6,9,12,9,12,5,15,8,8,5,12,9,12,5,14,6,8,13,6,5,15,13,11,11]),y=l.create([0,1518500249,1859775393,2400959708,2840853838]),g=l.create([1352829926,1548603684,1836072691,2053994217,0]),B=u.RIPEMD160=f.extend({_doReset:function(){this._hash=l.create([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(t,r){for(var c=0;c<16;c++){var h=r+c,l=t[h];t[h]=16711935&(l<<8|l>>>24)|4278255360&(l<<24|l>>>8)}var f,u,B,w,k,S,m,x,b,H,z=this._hash.words,A=y.words,C=g.words,D=d.words,R=v.words,E=p.words,M=_.words;S=f=z[0],m=u=z[1],x=B=z[2],b=w=z[3],H=k=z[4];for(var F,c=0;c<80;c+=1)F=f+t[r+D[c]]|0,F+=c<16?e(u,B,w)+A[0]:c<32?i(u,B,w)+A[1]:c<48?n(u,B,w)+A[2]:c<64?o(u,B,w)+A[3]:s(u,B,w)+A[4],F|=0,F=a(F,E[c]),F=F+k|0,f=k,k=w,w=a(B,10),B=u,u=F,F=S+t[r+R[c]]|0,F+=c<16?s(m,x,b)+C[0]:c<32?o(m,x,b)+C[1]:c<48?n(m,x,b)+C[2]:c<64?i(m,x,b)+C[3]:e(m,x,b)+C[4],F|=0,F=a(F,M[c]),F=F+H|0,S=H,H=b,b=a(x,10),x=m,m=F;F=z[1]+B+b|0,z[1]=z[2]+w+H|0,z[2]=z[3]+k+S|0,z[3]=z[4]+f+m|0,z[4]=z[0]+u+x|0,z[0]=F},_doFinalize:function(){var t=this._data,r=t.words,e=8*this._nDataBytes,i=8*t.sigBytes;r[i>>>5]|=128<<24-i%32,r[(i+64>>>9<<4)+14]=16711935&(e<<8|e>>>24)|4278255360&(e<<24|e>>>8),t.sigBytes=4*(r.length+1),this._process();for(var n=this._hash,o=n.words,s=0;s<5;s++){var a=o[s];o[s]=16711935&(a<<8|a>>>24)|4278255360&(a<<24|a>>>8)}return n},clone:function(){var t=f.clone.call(this);return t._hash=this._hash.clone(),t}});c.RIPEMD160=f._createHelper(B),c.HmacRIPEMD160=f._createHmacHelper(B)}(Math),function(){var r=t,e=r.lib,i=e.Base,n=r.enc,o=n.Utf8,s=r.algo;s.HMAC=i.extend({init:function(t,r){t=this._hasher=new t.init,"string"==typeof r&&(r=o.parse(r));var e=t.blockSize,i=4*e;r.sigBytes>i&&(r=t.finalize(r)),r.clamp();for(var n=this._oKey=r.clone(),s=this._iKey=r.clone(),a=n.words,c=s.words,h=0;h>>24)|4278255360&(o<<24|o>>>8),s=16711935&(s<<8|s>>>24)|4278255360&(s<<24|s>>>8);var a=e[n];a.high^=s,a.low^=o}for(var c=0;c<24;c++){for(var d=0;d<5;d++){for(var v=0,p=0,_=0;_<5;_++){var a=e[d+5*_];v^=a.high,p^=a.low}var y=u[d];y.high=v,y.low=p}for(var d=0;d<5;d++)for(var g=u[(d+4)%5],B=u[(d+1)%5],w=B.high,k=B.low,v=g.high^(w<<1|k>>>31),p=g.low^(k<<1|w>>>31),_=0;_<5;_++){var a=e[d+5*_];a.high^=v,a.low^=p}for(var S=1;S<25;S++){var a=e[S],m=a.high,x=a.low,b=h[S];if(b<32)var v=m<>>32-b,p=x<>>32-b;else var v=x<>>64-b,p=m<>>64-b;var H=u[l[S]];H.high=v,H.low=p}var z=u[0],A=e[0];z.high=A.high,z.low=A.low;for(var d=0;d<5;d++)for(var _=0;_<5;_++){var S=d+5*_,a=e[S],C=u[S],D=u[(d+1)%5+5*_],R=u[(d+2)%5+5*_];a.high=C.high^~D.high&R.high,a.low=C.low^~D.low&R.low}var a=e[0],E=f[c];a.high^=E.high,a.low^=E.low}},_doFinalize:function(){var t=this._data,e=t.words,i=(8*this._nDataBytes,8*t.sigBytes),o=32*this.blockSize;e[i>>>5]|=1<<24-i%32,e[(r.ceil((i+1)/o)*o>>>5)-1]|=128,t.sigBytes=4*e.length,this._process();for(var s=this._state,a=this.cfg.outputLength/8,c=a/8,h=[],l=0;l>>24)|4278255360&(u<<24|u>>>8),d=16711935&(d<<8|d>>>24)|4278255360&(d<<24|d>>>8),h.push(d),h.push(u)}return new n.init(h,a)},clone:function(){for(var t=o.clone.call(this),r=t._state=this._state.slice(0),e=0;e<25;e++)r[e]=r[e].clone();return t}});e.SHA3=o._createHelper(d),e.HmacSHA3=o._createHmacHelper(d)}(Math),function(){function r(){return s.create.apply(s,arguments)}var e=t,i=e.lib,n=i.Hasher,o=e.x64,s=o.Word,a=o.WordArray,c=e.algo,h=[r(1116352408,3609767458),r(1899447441,602891725),r(3049323471,3964484399),r(3921009573,2173295548),r(961987163,4081628472),r(1508970993,3053834265),r(2453635748,2937671579),r(2870763221,3664609560),r(3624381080,2734883394),r(310598401,1164996542),r(607225278,1323610764),r(1426881987,3590304994),r(1925078388,4068182383),r(2162078206,991336113),r(2614888103,633803317),r(3248222580,3479774868),r(3835390401,2666613458),r(4022224774,944711139),r(264347078,2341262773),r(604807628,2007800933),r(770255983,1495990901),r(1249150122,1856431235),r(1555081692,3175218132),r(1996064986,2198950837),r(2554220882,3999719339),r(2821834349,766784016),r(2952996808,2566594879),r(3210313671,3203337956),r(3336571891,1034457026),r(3584528711,2466948901),r(113926993,3758326383),r(338241895,168717936),r(666307205,1188179964),r(773529912,1546045734),r(1294757372,1522805485),r(1396182291,2643833823),r(1695183700,2343527390),r(1986661051,1014477480),r(2177026350,1206759142),r(2456956037,344077627),r(2730485921,1290863460),r(2820302411,3158454273),r(3259730800,3505952657),r(3345764771,106217008),r(3516065817,3606008344),r(3600352804,1432725776),r(4094571909,1467031594),r(275423344,851169720),r(430227734,3100823752),r(506948616,1363258195),r(659060556,3750685593),r(883997877,3785050280),r(958139571,3318307427),r(1322822218,3812723403),r(1537002063,2003034995),r(1747873779,3602036899),r(1955562222,1575990012),r(2024104815,1125592928),r(2227730452,2716904306),r(2361852424,442776044),r(2428436474,593698344),r(2756734187,3733110249),r(3204031479,2999351573),r(3329325298,3815920427),r(3391569614,3928383900),r(3515267271,566280711),r(3940187606,3454069534),r(4118630271,4000239992),r(116418474,1914138554),r(174292421,2731055270),r(289380356,3203993006),r(460393269,320620315),r(685471733,587496836),r(852142971,1086792851),r(1017036298,365543100),r(1126000580,2618297676),r(1288033470,3409855158),r(1501505948,4234509866),r(1607167915,987167468),r(1816402316,1246189591)],l=[];!function(){for(var t=0;t<80;t++)l[t]=r()}();var f=c.SHA512=n.extend({_doReset:function(){this._hash=new a.init([new s.init(1779033703,4089235720),new s.init(3144134277,2227873595),new s.init(1013904242,4271175723),new s.init(2773480762,1595750129),new s.init(1359893119,2917565137),new s.init(2600822924,725511199),new s.init(528734635,4215389547),new s.init(1541459225,327033209)])},_doProcessBlock:function(t,r){for(var e=this._hash.words,i=e[0],n=e[1],o=e[2],s=e[3],a=e[4],c=e[5],f=e[6],u=e[7],d=i.high,v=i.low,p=n.high,_=n.low,y=o.high,g=o.low,B=s.high,w=s.low,k=a.high,S=a.low,m=c.high,x=c.low,b=f.high,H=f.low,z=u.high,A=u.low,C=d,D=v,R=p,E=_,M=y,F=g,P=B,W=w,O=k,U=S,I=m,K=x,X=b,L=H,j=z,N=A,T=0;T<80;T++){var Z=l[T];if(T<16)var q=Z.high=0|t[r+2*T],G=Z.low=0|t[r+2*T+1];else{var J=l[T-15],$=J.high,Q=J.low,V=($>>>1|Q<<31)^($>>>8|Q<<24)^$>>>7,Y=(Q>>>1|$<<31)^(Q>>>8|$<<24)^(Q>>>7|$<<25),tt=l[T-2],rt=tt.high,et=tt.low,it=(rt>>>19|et<<13)^(rt<<3|et>>>29)^rt>>>6,nt=(et>>>19|rt<<13)^(et<<3|rt>>>29)^(et>>>6|rt<<26),ot=l[T-7],st=ot.high,at=ot.low,ct=l[T-16],ht=ct.high,lt=ct.low,G=Y+at,q=V+st+(G>>>0>>0?1:0),G=G+nt,q=q+it+(G>>>0>>0?1:0),G=G+lt,q=q+ht+(G>>>0>>0?1:0);Z.high=q,Z.low=G}var ft=O&I^~O&X,ut=U&K^~U&L,dt=C&R^C&M^R&M,vt=D&E^D&F^E&F,pt=(C>>>28|D<<4)^(C<<30|D>>>2)^(C<<25|D>>>7),_t=(D>>>28|C<<4)^(D<<30|C>>>2)^(D<<25|C>>>7),yt=(O>>>14|U<<18)^(O>>>18|U<<14)^(O<<23|U>>>9),gt=(U>>>14|O<<18)^(U>>>18|O<<14)^(U<<23|O>>>9),Bt=h[T],wt=Bt.high,kt=Bt.low,St=N+gt,mt=j+yt+(St>>>0>>0?1:0),St=St+ut,mt=mt+ft+(St>>>0>>0?1:0),St=St+kt,mt=mt+wt+(St>>>0>>0?1:0),St=St+G,mt=mt+q+(St>>>0>>0?1:0),xt=_t+vt,bt=pt+dt+(xt>>>0<_t>>>0?1:0);j=X,N=L,X=I,L=K,I=O,K=U,U=W+St|0,O=P+mt+(U>>>0>>0?1:0)|0,P=M,W=F,M=R,F=E,R=C,E=D,D=St+xt|0,C=mt+bt+(D>>>0>>0?1:0)|0}v=i.low=v+D,i.high=d+C+(v>>>0>>0?1:0),_=n.low=_+E,n.high=p+R+(_>>>0>>0?1:0),g=o.low=g+F,o.high=y+M+(g>>>0>>0?1:0),w=s.low=w+W,s.high=B+P+(w>>>0>>0?1:0),S=a.low=S+U,a.high=k+O+(S>>>0>>0?1:0),x=c.low=x+K,c.high=m+I+(x>>>0>>0?1:0),H=f.low=H+L,f.high=b+X+(H>>>0>>0?1:0),A=u.low=A+N,u.high=z+j+(A>>>0>>0?1:0)},_doFinalize:function(){var t=this._data,r=t.words,e=8*this._nDataBytes,i=8*t.sigBytes;r[i>>>5]|=128<<24-i%32,r[(i+128>>>10<<5)+30]=Math.floor(e/4294967296),r[(i+128>>>10<<5)+31]=e,t.sigBytes=4*r.length,this._process();var n=this._hash.toX32();return n},clone:function(){var t=n.clone.call(this);return t._hash=this._hash.clone(),t},blockSize:32});e.SHA512=n._createHelper(f),e.HmacSHA512=n._createHmacHelper(f)}(),function(){var r=t,e=r.x64,i=e.Word,n=e.WordArray,o=r.algo,s=o.SHA512,a=o.SHA384=s.extend({_doReset:function(){this._hash=new n.init([new i.init(3418070365,3238371032),new i.init(1654270250,914150663),new i.init(2438529370,812702999),new i.init(355462360,4144912697),new i.init(1731405415,4290775857),new i.init(2394180231,1750603025),new i.init(3675008525,1694076839),new i.init(1203062813,3204075428)])},_doFinalize:function(){var t=s._doFinalize.call(this);return t.sigBytes-=16,t}});r.SHA384=s._createHelper(a),r.HmacSHA384=s._createHmacHelper(a)}(),t.lib.Cipher||function(r){var e=t,i=e.lib,n=i.Base,o=i.WordArray,s=i.BufferedBlockAlgorithm,a=e.enc,c=(a.Utf8,a.Base64),h=e.algo,l=h.EvpKDF,f=i.Cipher=s.extend({cfg:n.extend(),createEncryptor:function(t,r){return this.create(this._ENC_XFORM_MODE,t,r)},createDecryptor:function(t,r){return this.create(this._DEC_XFORM_MODE,t,r)},init:function(t,r,e){this.cfg=this.cfg.extend(e),this._xformMode=t,this._key=r,this.reset()},reset:function(){s.reset.call(this),this._doReset()},process:function(t){return this._append(t),this._process()},finalize:function(t){t&&this._append(t);var r=this._doFinalize();return r},keySize:4,ivSize:4,_ENC_XFORM_MODE:1,_DEC_XFORM_MODE:2,_createHelper:function(){function t(t){return"string"==typeof t?m:w}return function(r){return{encrypt:function(e,i,n){return t(i).encrypt(r,e,i,n)},decrypt:function(e,i,n){return t(i).decrypt(r,e,i,n)}}}}()}),u=(i.StreamCipher=f.extend({_doFinalize:function(){var t=this._process(!0);return t},blockSize:1}),e.mode={}),d=i.BlockCipherMode=n.extend({createEncryptor:function(t,r){return this.Encryptor.create(t,r)},createDecryptor:function(t,r){return this.Decryptor.create(t,r)},init:function(t,r){this._cipher=t,this._iv=r}}),v=u.CBC=function(){function t(t,e,i){var n=this._iv;if(n){var o=n;this._iv=r}else var o=this._prevBlock;for(var s=0;s>>2];t.sigBytes-=r}},y=(i.BlockCipher=f.extend({cfg:f.cfg.extend({mode:v,padding:_}),reset:function(){f.reset.call(this);var t=this.cfg,r=t.iv,e=t.mode;if(this._xformMode==this._ENC_XFORM_MODE)var i=e.createEncryptor;else{var i=e.createDecryptor;this._minBufferSize=1}this._mode&&this._mode.__creator==i?this._mode.init(this,r&&r.words):(this._mode=i.call(e,this,r&&r.words),this._mode.__creator=i)},_doProcessBlock:function(t,r){this._mode.processBlock(t,r)},_doFinalize:function(){var t=this.cfg.padding;if(this._xformMode==this._ENC_XFORM_MODE){t.pad(this._data,this.blockSize);var r=this._process(!0)}else{var r=this._process(!0);t.unpad(r)}return r},blockSize:4}),i.CipherParams=n.extend({init:function(t){this.mixIn(t)},toString:function(t){return(t||this.formatter).stringify(this)}})),g=e.format={},B=g.OpenSSL={stringify:function(t){var r=t.ciphertext,e=t.salt;if(e)var i=o.create([1398893684,1701076831]).concat(e).concat(r);else var i=r;return i.toString(c)},parse:function(t){var r=c.parse(t),e=r.words;if(1398893684==e[0]&&1701076831==e[1]){var i=o.create(e.slice(2,4));e.splice(0,4),r.sigBytes-=16}return y.create({ciphertext:r,salt:i})}},w=i.SerializableCipher=n.extend({cfg:n.extend({format:B}),encrypt:function(t,r,e,i){i=this.cfg.extend(i);var n=t.createEncryptor(e,i),o=n.finalize(r),s=n.cfg;return y.create({ciphertext:o,key:e,iv:s.iv,algorithm:t,mode:s.mode,padding:s.padding,blockSize:t.blockSize,formatter:i.format})},decrypt:function(t,r,e,i){i=this.cfg.extend(i),r=this._parse(r,i.format);var n=t.createDecryptor(e,i).finalize(r.ciphertext);return n},_parse:function(t,r){return"string"==typeof t?r.parse(t,this):t}}),k=e.kdf={},S=k.OpenSSL={execute:function(t,r,e,i){i||(i=o.random(8));var n=l.create({keySize:r+e}).compute(t,i),s=o.create(n.words.slice(r),4*e);return n.sigBytes=4*r,y.create({key:n,iv:s,salt:i})}},m=i.PasswordBasedCipher=w.extend({cfg:w.cfg.extend({kdf:S}),encrypt:function(t,r,e,i){i=this.cfg.extend(i);var n=i.kdf.execute(e,t.keySize,t.ivSize);i.iv=n.iv;var o=w.encrypt.call(this,t,r,n.key,i);return o.mixIn(n),o},decrypt:function(t,r,e,i){i=this.cfg.extend(i),r=this._parse(r,i.format);var n=i.kdf.execute(e,t.keySize,t.ivSize,r.salt);i.iv=n.iv;var o=w.decrypt.call(this,t,r,n.key,i);return o}})}(),t.mode.CFB=function(){function r(t,r,e,i){var n=this._iv;if(n){var o=n.slice(0);this._iv=void 0}else var o=this._prevBlock;i.encryptBlock(o,0);for(var s=0;s>>2]|=n<<24-o%4*8,t.sigBytes+=n},unpad:function(t){var r=255&t.words[t.sigBytes-1>>>2];t.sigBytes-=r}},t.pad.Iso10126={pad:function(r,e){var i=4*e,n=i-r.sigBytes%i;r.concat(t.lib.WordArray.random(n-1)).concat(t.lib.WordArray.create([n<<24],1))},unpad:function(t){var r=255&t.words[t.sigBytes-1>>>2];t.sigBytes-=r}},t.pad.Iso97971={pad:function(r,e){r.concat(t.lib.WordArray.create([2147483648],1)),t.pad.ZeroPadding.pad(r,e)},unpad:function(r){t.pad.ZeroPadding.unpad(r),r.sigBytes--}},t.mode.OFB=function(){var r=t.lib.BlockCipherMode.extend(),e=r.Encryptor=r.extend({processBlock:function(t,r){var e=this._cipher,i=e.blockSize,n=this._iv,o=this._keystream;n&&(o=this._keystream=n.slice(0),this._iv=void 0),e.encryptBlock(o,0);for(var s=0;s>>8^255&n^99,o[e]=n,s[n]=e;var p=t[e],_=t[p],y=t[_],g=257*t[n]^16843008*n;a[e]=g<<24|g>>>8,c[e]=g<<16|g>>>16,h[e]=g<<8|g>>>24,l[e]=g;var g=16843009*y^65537*_^257*p^16843008*e;f[n]=g<<24|g>>>8,u[n]=g<<16|g>>>16,d[n]=g<<8|g>>>24,v[n]=g,e?(e=p^t[t[t[y^p]]],i^=t[t[i]]):e=i=1}}();var p=[0,1,2,4,8,16,32,64,128,27,54],_=n.AES=i.extend({_doReset:function(){if(!this._nRounds||this._keyPriorReset!==this._key){for(var t=this._keyPriorReset=this._key,r=t.words,e=t.sigBytes/4,i=this._nRounds=e+6,n=4*(i+1),s=this._keySchedule=[],a=0;a6&&a%e==4&&(c=o[c>>>24]<<24|o[c>>>16&255]<<16|o[c>>>8&255]<<8|o[255&c]):(c=c<<8|c>>>24,c=o[c>>>24]<<24|o[c>>>16&255]<<16|o[c>>>8&255]<<8|o[255&c],c^=p[a/e|0]<<24),s[a]=s[a-e]^c}for(var h=this._invKeySchedule=[],l=0;l>>24]]^u[o[c>>>16&255]]^d[o[c>>>8&255]]^v[o[255&c]]}}},encryptBlock:function(t,r){this._doCryptBlock(t,r,this._keySchedule,a,c,h,l,o)},decryptBlock:function(t,r){var e=t[r+1];t[r+1]=t[r+3],t[r+3]=e,this._doCryptBlock(t,r,this._invKeySchedule,f,u,d,v,s);var e=t[r+1];t[r+1]=t[r+3],t[r+3]=e},_doCryptBlock:function(t,r,e,i,n,o,s,a){for(var c=this._nRounds,h=t[r]^e[0],l=t[r+1]^e[1],f=t[r+2]^e[2],u=t[r+3]^e[3],d=4,v=1;v>>24]^n[l>>>16&255]^o[f>>>8&255]^s[255&u]^e[d++],_=i[l>>>24]^n[f>>>16&255]^o[u>>>8&255]^s[255&h]^e[d++],y=i[f>>>24]^n[u>>>16&255]^o[h>>>8&255]^s[255&l]^e[d++],g=i[u>>>24]^n[h>>>16&255]^o[l>>>8&255]^s[255&f]^e[d++];h=p,l=_,f=y,u=g}var p=(a[h>>>24]<<24|a[l>>>16&255]<<16|a[f>>>8&255]<<8|a[255&u])^e[d++],_=(a[l>>>24]<<24|a[f>>>16&255]<<16|a[u>>>8&255]<<8|a[255&h])^e[d++],y=(a[f>>>24]<<24|a[u>>>16&255]<<16|a[h>>>8&255]<<8|a[255&l])^e[d++],g=(a[u>>>24]<<24|a[h>>>16&255]<<16|a[l>>>8&255]<<8|a[255&f])^e[d++];t[r]=p,t[r+1]=_,t[r+2]=y,t[r+3]=g},keySize:8});r.AES=i._createHelper(_)}(),function(){function r(t,r){var e=(this._lBlock>>>t^this._rBlock)&r;this._rBlock^=e,this._lBlock^=e<>>t^this._lBlock)&r;this._lBlock^=e,this._rBlock^=e<>>5]>>>31-n%32&1}for(var o=this._subKeys=[],s=0;s<16;s++){for(var a=o[s]=[],f=l[s],i=0;i<24;i++)a[i/6|0]|=e[(h[i]-1+f)%28]<<31-i%6,a[4+(i/6|0)]|=e[28+(h[i+24]-1+f)%28]<<31-i%6;a[0]=a[0]<<1|a[0]>>>31;for(var i=1;i<7;i++)a[i]=a[i]>>>4*(i-1)+3;a[7]=a[7]<<5|a[7]>>>27}for(var u=this._invSubKeys=[],i=0;i<16;i++)u[i]=o[15-i]},encryptBlock:function(t,r){this._doCryptBlock(t,r,this._subKeys)},decryptBlock:function(t,r){this._doCryptBlock(t,r,this._invSubKeys)},_doCryptBlock:function(t,i,n){this._lBlock=t[i],this._rBlock=t[i+1],r.call(this,4,252645135),r.call(this,16,65535),e.call(this,2,858993459),e.call(this,8,16711935),r.call(this,1,1431655765);for(var o=0;o<16;o++){for(var s=n[o],a=this._lBlock,c=this._rBlock,h=0,l=0;l<8;l++)h|=f[l][((c^s[l])&u[l])>>>0];this._lBlock=c,this._rBlock=a^h}var d=this._lBlock;this._lBlock=this._rBlock,this._rBlock=d,r.call(this,1,1431655765),e.call(this,8,16711935),e.call(this,2,858993459),r.call(this,16,65535),r.call(this,4,252645135),t[i]=this._lBlock,t[i+1]=this._rBlock},keySize:2,ivSize:2,blockSize:2});i.DES=s._createHelper(d);var v=a.TripleDES=s.extend({_doReset:function(){var t=this._key,r=t.words;this._des1=d.createEncryptor(o.create(r.slice(0,2))),this._des2=d.createEncryptor(o.create(r.slice(2,4))),this._des3=d.createEncryptor(o.create(r.slice(4,6)))},encryptBlock:function(t,r){this._des1.encryptBlock(t,r),this._des2.decryptBlock(t,r),this._des3.encryptBlock(t,r)},decryptBlock:function(t,r){this._des3.decryptBlock(t,r),this._des2.encryptBlock(t,r),this._des1.decryptBlock(t,r)},keySize:6,ivSize:2,blockSize:2});i.TripleDES=s._createHelper(v)}(),function(){function r(){for(var t=this._S,r=this._i,e=this._j,i=0,n=0;n<4;n++){r=(r+1)%256,e=(e+t[r])%256;var o=t[r];t[r]=t[e],t[e]=o,i|=t[(t[r]+t[e])%256]<<24-8*n}return this._i=r,this._j=e,i}var e=t,i=e.lib,n=i.StreamCipher,o=e.algo,s=o.RC4=n.extend({_doReset:function(){for(var t=this._key,r=t.words,e=t.sigBytes,i=this._S=[],n=0;n<256;n++)i[n]=n;for(var n=0,o=0;n<256;n++){var s=n%e,a=r[s>>>2]>>>24-s%4*8&255;o=(o+i[n]+a)%256;var c=i[n];i[n]=i[o],i[o]=c}this._i=this._j=0},_doProcessBlock:function(t,e){t[e]^=r.call(this)},keySize:8,ivSize:0});e.RC4=n._createHelper(s);var a=o.RC4Drop=s.extend({cfg:s.cfg.extend({drop:192}),_doReset:function(){s._doReset.call(this);for(var t=this.cfg.drop;t>0;t--)r.call(this)}});e.RC4Drop=n._createHelper(a)}(),t.mode.CTRGladman=function(){function r(t){if(255===(t>>24&255)){var r=t>>16&255,e=t>>8&255,i=255&t;255===r?(r=0,255===e?(e=0,255===i?i=0:++i):++e):++r,t=0,t+=r<<16,t+=e<<8,t+=i}else t+=1<<24;return t}function e(t){return 0===(t[0]=r(t[0]))&&(t[1]=r(t[1])),t}var i=t.lib.BlockCipherMode.extend(),n=i.Encryptor=i.extend({processBlock:function(t,r){var i=this._cipher,n=i.blockSize,o=this._iv,s=this._counter;o&&(s=this._counter=o.slice(0),this._iv=void 0),e(s);var a=s.slice(0);i.encryptBlock(a,0);for(var c=0;c>>0>>0?1:0)|0,r[2]=r[2]+886263092+(r[1]>>>0>>0?1:0)|0,r[3]=r[3]+1295307597+(r[2]>>>0>>0?1:0)|0,r[4]=r[4]+3545052371+(r[3]>>>0>>0?1:0)|0,r[5]=r[5]+886263092+(r[4]>>>0>>0?1:0)|0,r[6]=r[6]+1295307597+(r[5]>>>0>>0?1:0)|0,r[7]=r[7]+3545052371+(r[6]>>>0>>0?1:0)|0,this._b=r[7]>>>0>>0?1:0;for(var e=0;e<8;e++){var i=t[e]+r[e],n=65535&i,o=i>>>16,s=((n*n>>>17)+n*o>>>15)+o*o,h=((4294901760&i)*i|0)+((65535&i)*i|0);c[e]=s^h}t[0]=c[0]+(c[7]<<16|c[7]>>>16)+(c[6]<<16|c[6]>>>16)|0,t[1]=c[1]+(c[0]<<8|c[0]>>>24)+c[7]|0,t[2]=c[2]+(c[1]<<16|c[1]>>>16)+(c[0]<<16|c[0]>>>16)|0,t[3]=c[3]+(c[2]<<8|c[2]>>>24)+c[1]|0,t[4]=c[4]+(c[3]<<16|c[3]>>>16)+(c[2]<<16|c[2]>>>16)|0,t[5]=c[5]+(c[4]<<8|c[4]>>>24)+c[3]|0,t[6]=c[6]+(c[5]<<16|c[5]>>>16)+(c[4]<<16|c[4]>>>16)|0,t[7]=c[7]+(c[6]<<8|c[6]>>>24)+c[5]|0}var e=t,i=e.lib,n=i.StreamCipher,o=e.algo,s=[],a=[],c=[],h=o.Rabbit=n.extend({_doReset:function(){for(var t=this._key.words,e=this.cfg.iv,i=0;i<4;i++)t[i]=16711935&(t[i]<<8|t[i]>>>24)|4278255360&(t[i]<<24|t[i]>>>8);var n=this._X=[t[0],t[3]<<16|t[2]>>>16,t[1],t[0]<<16|t[3]>>>16,t[2],t[1]<<16|t[0]>>>16,t[3],t[2]<<16|t[1]>>>16],o=this._C=[t[2]<<16|t[2]>>>16,4294901760&t[0]|65535&t[1],t[3]<<16|t[3]>>>16,4294901760&t[1]|65535&t[2],t[0]<<16|t[0]>>>16,4294901760&t[2]|65535&t[3],t[1]<<16|t[1]>>>16,4294901760&t[3]|65535&t[0]];this._b=0;for(var i=0;i<4;i++)r.call(this);for(var i=0;i<8;i++)o[i]^=n[i+4&7];if(e){var s=e.words,a=s[0],c=s[1],h=16711935&(a<<8|a>>>24)|4278255360&(a<<24|a>>>8),l=16711935&(c<<8|c>>>24)|4278255360&(c<<24|c>>>8),f=h>>>16|4294901760&l,u=l<<16|65535&h;o[0]^=h,o[1]^=f,o[2]^=l,o[3]^=u,o[4]^=h,o[5]^=f,o[6]^=l,o[7]^=u;for(var i=0;i<4;i++)r.call(this)}},_doProcessBlock:function(t,e){var i=this._X;r.call(this),s[0]=i[0]^i[5]>>>16^i[3]<<16,s[1]=i[2]^i[7]>>>16^i[5]<<16,s[2]=i[4]^i[1]>>>16^i[7]<<16,s[3]=i[6]^i[3]>>>16^i[1]<<16;for(var n=0;n<4;n++)s[n]=16711935&(s[n]<<8|s[n]>>>24)|4278255360&(s[n]<<24|s[n]>>>8),t[e+n]^=s[n]},blockSize:4,ivSize:2});e.Rabbit=n._createHelper(h)}(),t.mode.CTR=function(){var r=t.lib.BlockCipherMode.extend(),e=r.Encryptor=r.extend({processBlock:function(t,r){var e=this._cipher,i=e.blockSize,n=this._iv,o=this._counter;n&&(o=this._counter=n.slice(0),this._iv=void 0);var s=o.slice(0);e.encryptBlock(s,0),o[i-1]=o[i-1]+1|0;for(var a=0;a>>0>>0?1:0)|0,r[2]=r[2]+886263092+(r[1]>>>0>>0?1:0)|0,r[3]=r[3]+1295307597+(r[2]>>>0>>0?1:0)|0,r[4]=r[4]+3545052371+(r[3]>>>0>>0?1:0)|0,r[5]=r[5]+886263092+(r[4]>>>0>>0?1:0)|0,r[6]=r[6]+1295307597+(r[5]>>>0>>0?1:0)|0,r[7]=r[7]+3545052371+(r[6]>>>0>>0?1:0)|0,this._b=r[7]>>>0>>0?1:0;for(var e=0;e<8;e++){var i=t[e]+r[e],n=65535&i,o=i>>>16,s=((n*n>>>17)+n*o>>>15)+o*o,h=((4294901760&i)*i|0)+((65535&i)*i|0);c[e]=s^h}t[0]=c[0]+(c[7]<<16|c[7]>>>16)+(c[6]<<16|c[6]>>>16)|0,t[1]=c[1]+(c[0]<<8|c[0]>>>24)+c[7]|0,t[2]=c[2]+(c[1]<<16|c[1]>>>16)+(c[0]<<16|c[0]>>>16)|0,t[3]=c[3]+(c[2]<<8|c[2]>>>24)+c[1]|0,t[4]=c[4]+(c[3]<<16|c[3]>>>16)+(c[2]<<16|c[2]>>>16)|0,t[5]=c[5]+(c[4]<<8|c[4]>>>24)+c[3]|0,t[6]=c[6]+(c[5]<<16|c[5]>>>16)+(c[4]<<16|c[4]>>>16)|0,t[7]=c[7]+(c[6]<<8|c[6]>>>24)+c[5]|0}var e=t,i=e.lib,n=i.StreamCipher,o=e.algo,s=[],a=[],c=[],h=o.RabbitLegacy=n.extend({_doReset:function(){var t=this._key.words,e=this.cfg.iv,i=this._X=[t[0],t[3]<<16|t[2]>>>16,t[1],t[0]<<16|t[3]>>>16,t[2],t[1]<<16|t[0]>>>16,t[3],t[2]<<16|t[1]>>>16],n=this._C=[t[2]<<16|t[2]>>>16,4294901760&t[0]|65535&t[1],t[3]<<16|t[3]>>>16,4294901760&t[1]|65535&t[2],t[0]<<16|t[0]>>>16,4294901760&t[2]|65535&t[3],t[1]<<16|t[1]>>>16,4294901760&t[3]|65535&t[0]];this._b=0;for(var o=0;o<4;o++)r.call(this);for(var o=0;o<8;o++)n[o]^=i[o+4&7];if(e){var s=e.words,a=s[0],c=s[1],h=16711935&(a<<8|a>>>24)|4278255360&(a<<24|a>>>8),l=16711935&(c<<8|c>>>24)|4278255360&(c<<24|c>>>8),f=h>>>16|4294901760&l,u=l<<16|65535&h;n[0]^=h,n[1]^=f,n[2]^=l,n[3]^=u,n[4]^=h,n[5]^=f,n[6]^=l,n[7]^=u;for(var o=0;o<4;o++)r.call(this)}},_doProcessBlock:function(t,e){var i=this._X;r.call(this),s[0]=i[0]^i[5]>>>16^i[3]<<16,s[1]=i[2]^i[7]>>>16^i[5]<<16,s[2]=i[4]^i[1]>>>16^i[7]<<16,s[3]=i[6]^i[3]>>>16^i[1]<<16;for(var n=0;n<4;n++)s[n]=16711935&(s[n]<<8|s[n]>>>24)|4278255360&(s[n]<<24|s[n]>>>8),t[e+n]^=s[n]},blockSize:4,ivSize:2});e.RabbitLegacy=n._createHelper(h)}(),t.pad.ZeroPadding={pad:function(t,r){var e=4*r;t.clamp(),t.sigBytes+=e-(t.sigBytes%e||e)},unpad:function(t){for(var r=t.words,e=t.sigBytes-1;!(r[e>>>2]>>>24-e%4*8&255);)e--;t.sigBytes=e+1}},t}); 3 | //# sourceMappingURL=crypto-js.min.js.map -------------------------------------------------------------------------------- /alpha_v2/grigri.js: -------------------------------------------------------------------------------- 1 | `user script`; 2 | 3 | function buildMediaData( 4 | id, 5 | coverURLString, 6 | title, 7 | descriptionText, 8 | detailURLString 9 | ) { 10 | var obj = { 11 | id: id, 12 | coverURLString: coverURLString, 13 | title: title, 14 | descriptionText: descriptionText, 15 | detailURLString: detailURLString, 16 | }; 17 | 18 | return obj; 19 | } 20 | function buildEpisodeData(id, title, episodeDetailURL) { 21 | return { 22 | id: id, 23 | title: title, 24 | episodeDetailURL: episodeDetailURL, 25 | }; 26 | } 27 | // Main 28 | 29 | function buildMedias(inputURL) { 30 | var req = { 31 | url: inputURL, 32 | method: "GET", 33 | }; 34 | 35 | let datas = []; 36 | 37 | $http.fetch(req).then(function (res) { 38 | //print(res.body) 39 | var content = tXml.getElementsByClassName(res.body, "public-list-div"); 40 | //print(content) 41 | for (var index = 0; index < content.length; index++) { 42 | 43 | var dom = content[index]; 44 | //print(content.length) 45 | 46 | var title = findAllByKey(dom, "title")[0]; 47 | var href = findAllByKey(dom, "href")[0]; 48 | var coverURLString = findAllByKey(dom, "data-src")[0]; 49 | var descriptionText = findAllByKey(dom, "public-list-prb")[0]; 50 | 51 | href = buildURL(href); 52 | coverURLString = buildURL(coverURLString); 53 | 54 | 55 | datas.push( 56 | buildMediaData(href, coverURLString, title, descriptionText, href) 57 | ); 58 | } 59 | 60 | $next.toMedias(JSON.stringify(datas)); 61 | }); 62 | } 63 | function buildURL(href) { 64 | if (!href.startsWith("http")) { 65 | href = "https://anime.girigirilove.com" + href; 66 | } 67 | return href; 68 | } 69 | 70 | function Episodes(inputURL) { 71 | var req = { 72 | url: inputURL, 73 | method: "GET", 74 | }; 75 | 76 | let datas = []; 77 | 78 | $http.fetch(req).then(function (res) { 79 | var content = tXml.getElementsByClassName(res.body, "anthology-list-play")[0]; 80 | //print(content.children.length); 81 | 82 | for (var index = 0; index < content.children.length; index++) { 83 | var element = content.children[index].children[0]; 84 | //print(element); 85 | 86 | var href = element.attributes ? element.attributes.href : ''; 87 | var title = element.children.toString(); 88 | 89 | href = buildURL(href); 90 | 91 | datas.push(buildEpisodeData(href, title, href)); 92 | } 93 | 94 | $next.toEpisodes(JSON.stringify(datas)); 95 | }); 96 | } 97 | function Player(inputURL) { 98 | var req = { 99 | url: inputURL, 100 | method: "GET", 101 | }; 102 | 103 | $http.fetch(req).then(function (res) { 104 | var xml = res.body; 105 | html = xml.match(/r player_.*?=(.*?) { 122 | var content = tXml.getElementsByClassName(res.body, "hl-item-div"); 123 | 124 | let datas = []; 125 | for (var index = 0; index < content.length; index++) { 126 | var dom = content[index]; 127 | //print(content.length) 128 | 129 | var title = findAllByKey(dom, "title")[0]; 130 | var href = findAllByKey(dom, "href")[0]; 131 | 132 | href = buildURL(href); 133 | 134 | datas.push(buildEpisodeData(href, title, href)); 135 | } 136 | 137 | $next.toSearchMedias(JSON.stringify(returnDatas), key); 138 | }); 139 | } 140 | 141 | 142 | function findAllByKey(obj, keyToFind) { 143 | return ( 144 | Object.entries(obj).reduce( 145 | (acc, [key, value]) => 146 | key === keyToFind 147 | ? acc.concat(value) 148 | : typeof value === "object" && value 149 | ? acc.concat(findAllByKey(value, keyToFind)) 150 | : acc, 151 | [] 152 | ) || [] 153 | ); 154 | } 155 | function print(params) { 156 | console.log(JSON.stringify(params)); 157 | } 158 | -------------------------------------------------------------------------------- /alpha_v2/grigri.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "grigrilove", 3 | "description": "grigri爱动漫", 4 | "host": "https://anime.girigirilove.com", 5 | "files": [ 6 | "grigri.js", 7 | "txml.js", 8 | "base64.js" 9 | ], 10 | "pages": [ 11 | { 12 | "key": "index", 13 | "title": "最近更新", 14 | "url": "https://anime.girigirilove.com/show/2--------${pageNumber}---/", 15 | "javascript": "buildMedias" 16 | }, 17 | { 18 | "key": "bd", 19 | "title": "剧场版", 20 | "url": "https://anime.girigirilove.com/show/21--------${pageNumber}---/", 21 | "javascript": "buildMedias" 22 | } 23 | ], 24 | "episodes": { 25 | "javascript": "Episodes" 26 | }, 27 | "player": { 28 | "javascript": "Player" 29 | }, 30 | "search": { 31 | "url": "https://anime.girigirilove.com/search/-------------/?wd=${keyword}", 32 | "javascript": "Search" 33 | } 34 | } -------------------------------------------------------------------------------- /alpha_v2/gugufan.js: -------------------------------------------------------------------------------- 1 | `user script`; 2 | 3 | function buildMediaData( 4 | id, 5 | coverURLString, 6 | title, 7 | descriptionText, 8 | detailURLString 9 | ) { 10 | var obj = { 11 | id: id, 12 | coverURLString: coverURLString, 13 | title: title, 14 | descriptionText: descriptionText, 15 | detailURLString: detailURLString, 16 | }; 17 | 18 | return obj; 19 | } 20 | function buildEpisodeData(id, title, episodeDetailURL) { 21 | return { 22 | id: id, 23 | title: title, 24 | episodeDetailURL: episodeDetailURL, 25 | }; 26 | } 27 | // Main 28 | 29 | function buildMedias(inputURL) { 30 | var req = { 31 | url: inputURL, 32 | method: "GET", 33 | }; 34 | 35 | let datas = []; 36 | 37 | $http.fetch(req).then(function (res) { 38 | //print(res.body) 39 | var content = tXml.getElementsByClassName(res.body, "public-list-div"); 40 | //print(content) 41 | for (var index = 0; index < content.length; index++) { 42 | 43 | var dom = content[index]; 44 | //print(content.length) 45 | 46 | var title = findAllByKey(dom, "title")[0]; 47 | var href = findAllByKey(dom, "href")[0]; 48 | var coverURLString = findAllByKey(dom, "data-src")[0]; 49 | var descriptionText = findAllByKey(dom, "public-list-prb")[0]; 50 | 51 | href = buildURL(href); 52 | coverURLString = buildURL(coverURLString); 53 | 54 | 55 | datas.push( 56 | buildMediaData(href, coverURLString, title, descriptionText, href) 57 | ); 58 | } 59 | 60 | $next.toMedias(JSON.stringify(datas)); 61 | }); 62 | } 63 | function buildURL(href) { 64 | if (!href.startsWith("http")) { 65 | href = "https://www.gugufan.com" + href; 66 | } 67 | return href; 68 | } 69 | 70 | function Episodes(inputURL) { 71 | var req = { 72 | url: inputURL, 73 | method: "GET", 74 | }; 75 | 76 | let datas = []; 77 | 78 | $http.fetch(req).then(function (res) { 79 | var content = tXml.getElementsByClassName(res.body, "anthology-list-play")[0]; 80 | //print(content.children.length); 81 | 82 | for (var index = 0; index < content.children.length; index++) { 83 | var element = content.children[index].children[0]; 84 | //print(element); 85 | 86 | var href = element.attributes ? element.attributes.href : ''; 87 | var title = element.children.toString(); 88 | 89 | href = buildURL(href); 90 | 91 | datas.push(buildEpisodeData(href, title, href)); 92 | } 93 | 94 | $next.toEpisodes(JSON.stringify(datas)); 95 | }); 96 | } 97 | function Player(inputURL) { 98 | var req = { 99 | url: inputURL, 100 | method: "GET", 101 | }; 102 | 103 | $http.fetch(req).then(function (res) { 104 | var xml = res.body; 105 | html = xml.match(/r player_.*?=(.*?) { 148 | var content = tXml.getElementsByClassName(res.body, "hl-item-div"); 149 | 150 | let datas = []; 151 | for (var index = 0; index < content.length; index++) { 152 | var dom = content[index]; 153 | //print(content.length) 154 | 155 | var title = findAllByKey(dom, "title")[0]; 156 | var href = findAllByKey(dom, "href")[0]; 157 | 158 | href = buildURL(href); 159 | 160 | datas.push(buildEpisodeData(href, title, href)); 161 | } 162 | 163 | $next.toSearchMedias(JSON.stringify(returnDatas), key); 164 | }); 165 | } 166 | 167 | 168 | function findAllByKey(obj, keyToFind) { 169 | return ( 170 | Object.entries(obj).reduce( 171 | (acc, [key, value]) => 172 | key === keyToFind 173 | ? acc.concat(value) 174 | : typeof value === "object" && value 175 | ? acc.concat(findAllByKey(value, keyToFind)) 176 | : acc, 177 | [] 178 | ) || [] 179 | ); 180 | } 181 | function print(params) { 182 | console.log(JSON.stringify(params)); 183 | } 184 | 185 | 186 | -------------------------------------------------------------------------------- /alpha_v2/gugufan.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "咕咕番", 3 | "description": "咕咕番", 4 | "host": "https://www.gugufan.com", 5 | "files": [ 6 | "gugufan.js", 7 | "txml.js", 8 | "base64.js" 9 | ], 10 | "pages": [ 11 | { 12 | "key": "index", 13 | "title": "首页", 14 | "url": "https://www.gugufan.com", 15 | "javascript": "buildMedias" 16 | }, 17 | { 18 | "key": "lianzai", 19 | "title": "连载", 20 | "url": "https://www.gugufan.com/index.php/vod/show/id/6.html", 21 | "javascript": "buildMedias" 22 | }, 23 | { 24 | "key": "wanjie", 25 | "title": "完结", 26 | "url": "https://www.gugufan.com/index.php/vod/show/id/7.html", 27 | "javascript": "buildMedias" 28 | }, 29 | { 30 | "key": "bd", 31 | "title": "剧场", 32 | "url": "https://www.gugufan.com/index.php/vod/show/id/21.html", 33 | "javascript": "buildMedias" 34 | }, 35 | { 36 | "key": "teshe", 37 | "title": "特摄", 38 | "url": "https://www.gugufan.com/index.php/vod/show/id/23.html", 39 | "javascript": "buildMedias" 40 | } 41 | ], 42 | "episodes": { 43 | "javascript": "Episodes" 44 | }, 45 | "player": { 46 | "javascript": "Player" 47 | }, 48 | "search": { 49 | "url": "https://www.gugufan.com/index.php/vod/search.html?wd=${keyword}", 50 | "javascript": "Search" 51 | } 52 | } -------------------------------------------------------------------------------- /alpha_v2/histar.js: -------------------------------------------------------------------------------- 1 | `user script`; 2 | 3 | const buildId = "q8W6nBlNzAV8WMV3Oaf5w"; 4 | 5 | // Main 6 | function buildMedias(inputURL) { 7 | const postBodyList = inputURL.split("-"); 8 | //print(postBodyList); 9 | 10 | const postBody = { 11 | 'page' : parseInt(postBodyList[0]), 12 | 'pageSize' : 20 13 | }; 14 | 15 | if (postBodyList.length > 1) { 16 | postBody.chName = postBodyList[1]; 17 | 18 | if (postBodyList.length > 2) { 19 | postBody.country = postBodyList[2]; 20 | } 21 | } 22 | //print(postBody); 23 | 24 | const req = { 25 | url: 'https://aws.ulivetv.net/v3/web/api/filter', 26 | method: 'POST', 27 | body:JSON.stringify(postBody), 28 | headers: { 29 | 'Content-Type': 'application/json', 30 | 'Referer':'https://www.histar.tv/' 31 | } 32 | }; 33 | 34 | $http.fetch(req).then(res => { 35 | const items = JSON.parse(res.body).data.list; 36 | let datas = []; 37 | items.forEach(item => { 38 | const title = item.name; 39 | //const href = "https://www.histar.tv/_next/data/" + buildId + "/vod/detail/" + item.id + ".json?id=" + item.id;//由於編譯id總是變化,暫時改回直接從網頁獲取分集數據 40 | const href = "https://www.histar.tv/vod/detail/" + item.id; //直接從網頁獲取分集數據 41 | const coverURLString = item.img; 42 | let descriptionText = item.countStr; 43 | if (descriptionText == null||descriptionText ==""||descriptionText ==undefined) { 44 | descriptionText = item.name; 45 | } 46 | datas.push( 47 | buildMediaData(href, coverURLString, title, descriptionText, href) 48 | ); 49 | }); 50 | $next.toMedias(JSON.stringify(datas)); 51 | }); 52 | } 53 | 54 | function Episodes(inputURL) { 55 | const req = { 56 | url: inputURL, 57 | method: "GET", 58 | }; 59 | 60 | $http.fetch(req).then(res => { 61 | let jsonData = res.body; 62 | if (jsonData.indexOf('{"props":') != -1) { 63 | jsonData = jsonData.match(/{"props":(.+),"page"/)[1]; 64 | } 65 | 66 | const items = JSON.parse(jsonData).pageProps.pageData.videos; 67 | let datas = []; 68 | items.forEach(item => { 69 | const href = item.purl; 70 | const title = item.epInfo; 71 | datas.push(buildEpisodeData(href, title, href)); 72 | }); 73 | $next.toEpisodes(JSON.stringify(datas)); 74 | }); 75 | } 76 | 77 | function Player(inputURL) { 78 | $next.toPlayer(inputURL); 79 | } 80 | 81 | function Search(inputURL) { 82 | const req = { 83 | //url: "https://www.histar.tv/_next/data/" + buildId + "/search.json?word=" + inputURL, 84 | url: "https://www.histar.tv/search?word=" + inputURL,//直接從網頁獲取搜索結果 85 | method: "GET", 86 | }; 87 | $http.fetch(req).then(res => { 88 | let jsonData = res.body; 89 | if (jsonData.indexOf('{"props":') != -1) { 90 | jsonData = jsonData.match(/{"props":(.+),"page"/)[1]; 91 | } 92 | const items = JSON.parse(jsonData).pageProps.initList; 93 | let datas = []; 94 | items.forEach(item => { 95 | const title = item.name; 96 | //const href = "https://www.histar.tv/_next/data/" + buildId + "/vod/detail/" + item.id + ".json?id=" + item.id; 97 | const href = "https://www.histar.tv/vod/detail/" + item.id; //直接從網頁獲取分集數據 98 | const coverURLString = item.picurl; 99 | const descriptionText = item.desc; 100 | 101 | datas.push( 102 | buildMediaData(href, coverURLString, title, descriptionText, href) 103 | ); 104 | }); 105 | $next.toMedias(JSON.stringify(datas)); 106 | }); 107 | } -------------------------------------------------------------------------------- /alpha_v2/histar.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "星视界", 3 | "description": "海外華人免費影視大全", 4 | "host": "https://www.histar.tv", 5 | "files": ["util.js","histar.js"], 6 | "pages": [ 7 | { 8 | "key": "index", 9 | "title": "最近更新", 10 | "url": "${pageNumber}", 11 | "javascript": "buildMedias" 12 | }, 13 | { 14 | "key": "movie", 15 | "title": "电影", 16 | "url": "${pageNumber}-电影", 17 | "javascript": "buildMedias" 18 | }, 19 | { 20 | "key": "tv", 21 | "title": "电视剧", 22 | "url": "${pageNumber}-电视剧", 23 | "javascript": "buildMedias" 24 | }, 25 | { 26 | "key": "cartoon", 27 | "title": "动漫", 28 | "url": "${pageNumber}-动漫", 29 | "javascript": "buildMedias" 30 | }, 31 | { 32 | "key": "variety", 33 | "title": "综艺", 34 | "url": "${pageNumber}-综艺", 35 | "javascript": "buildMedias" 36 | }, 37 | { 38 | "key": "documentary", 39 | "title": "纪录片", 40 | "url": "${pageNumber}-纪录片", 41 | "javascript": "buildMedias" 42 | }, 43 | { 44 | "key": "movie-xiju", 45 | "title": "喜剧电影", 46 | "url": "${pageNumber}-电影-喜剧", 47 | "javascript": "buildMedias" 48 | }, 49 | { 50 | "key": "movie-dongzuo", 51 | "title": "动作电影", 52 | "url": "${pageNumber}-电影-动作", 53 | "javascript": "buildMedias" 54 | }, 55 | { 56 | "key": "movie-kehuan", 57 | "title": "科幻电影", 58 | "url": "${pageNumber}-电影-科幻", 59 | "javascript": "buildMedias" 60 | }, 61 | { 62 | "key": "movie-aiqing", 63 | "title": "爱情电影", 64 | "url": "${pageNumber}-电影-爱情", 65 | "javascript": "buildMedias" 66 | }, 67 | { 68 | "key": "movie-kongbu", 69 | "title": "恐怖电影", 70 | "url": "${pageNumber}-电影-恐怖", 71 | "javascript": "buildMedias" 72 | }, 73 | { 74 | "key": "movie-donghua", 75 | "title": "动画电影", 76 | "url": "${pageNumber}-电影-动画", 77 | "javascript": "buildMedias" 78 | }, 79 | { 80 | "key": "movie-tongxing", 81 | "title": "同性电影", 82 | "url": "${pageNumber}-电影-同性", 83 | "javascript": "buildMedias" 84 | }, 85 | { 86 | "key": "tv-cn", 87 | "title": "大陆电视剧", 88 | "url": "${pageNumber}-电视剧-大陆", 89 | "javascript": "buildMedias" 90 | }, 91 | { 92 | "key": "tv-hk", 93 | "title": "香港电视剧", 94 | "url": "${pageNumber}-电视剧-香港", 95 | "javascript": "buildMedias" 96 | }, 97 | { 98 | "key": "tv-tw", 99 | "title": "台湾电视剧", 100 | "url": "${pageNumber}-电视剧-台湾", 101 | "javascript": "buildMedias" 102 | }, 103 | { 104 | "key": "tv-us", 105 | "title": "欧美电视剧", 106 | "url": "${pageNumber}-电视剧-欧美", 107 | "javascript": "buildMedias" 108 | }, 109 | { 110 | "key": "tv-kr", 111 | "title": "韩国电视剧", 112 | "url": "${pageNumber}-电视剧-韩国", 113 | "javascript": "buildMedias" 114 | }, 115 | { 116 | "key": "tv-jp", 117 | "title": "日本电视剧", 118 | "url": "${pageNumber}-电视剧-日本", 119 | "javascript": "buildMedias" 120 | }, 121 | { 122 | "key": "tv-uk", 123 | "title": "英国电视剧", 124 | "url": "${pageNumber}-电视剧-英国", 125 | "javascript": "buildMedias" 126 | }, 127 | { 128 | "key": "tv-th", 129 | "title": "泰国电视剧", 130 | "url": "${pageNumber}-电视剧-泰国", 131 | "javascript": "buildMedias" 132 | }, 133 | { 134 | "key": "variety-cn", 135 | "title": "国产综艺", 136 | "url": "${pageNumber}-综艺-大陆", 137 | "javascript": "buildMedias" 138 | }, 139 | { 140 | "key": "variety-hk", 141 | "title": "香港综艺", 142 | "url": "${pageNumber}-综艺-香港", 143 | "javascript": "buildMedias" 144 | }, 145 | { 146 | "key": "variety-tw", 147 | "title": "台湾综艺", 148 | "url": "${pageNumber}-综艺-台湾", 149 | "javascript": "buildMedias" 150 | }, 151 | { 152 | "key": "variety-us", 153 | "title": "欧美综艺", 154 | "url": "${pageNumber}-综艺-欧美", 155 | "javascript": "buildMedias" 156 | }, 157 | { 158 | "key": "variety-kr", 159 | "title": "韩国综艺", 160 | "url": "${pageNumber}-综艺-韩国", 161 | "javascript": "buildMedias" 162 | }, 163 | { 164 | "key": "variety-jp", 165 | "title": "日本综艺", 166 | "url": "${pageNumber}-综艺-日本", 167 | "javascript": "buildMedias" 168 | }, 169 | { 170 | "key": "variety-uk", 171 | "title": "英国综艺", 172 | "url": "${pageNumber}-综艺-英国", 173 | "javascript": "buildMedias" 174 | }, 175 | { 176 | "key": "variety-th", 177 | "title": "泰国综艺", 178 | "url": "${pageNumber}-综艺-泰国", 179 | "javascript": "buildMedias" 180 | }, 181 | { 182 | "key": "cartoon-cn", 183 | "title": "国产动漫", 184 | "url": "${pageNumber}-动漫-大陆", 185 | "javascript": "buildMedias" 186 | }, 187 | { 188 | "key": "cartoon-jp", 189 | "title": "日本动漫", 190 | "url": "${pageNumber}-动漫-日本", 191 | "javascript": "buildMedias" 192 | }, 193 | { 194 | "key": "cartoon-hk", 195 | "title": "香港动漫", 196 | "url": "${pageNumber}-动漫-香港", 197 | "javascript": "buildMedias" 198 | }, 199 | { 200 | "key": "cartoon-tw", 201 | "title": "台湾动漫", 202 | "url": "${pageNumber}-动漫-台湾", 203 | "javascript": "buildMedias" 204 | }, 205 | { 206 | "key": "cartoon-us", 207 | "title": "欧美动漫", 208 | "url": "${pageNumber}-动漫-欧美", 209 | "javascript": "buildMedias" 210 | }, 211 | { 212 | "key": "cartoon-kr", 213 | "title": "韩国动漫", 214 | "url": "${pageNumber}-动漫-韩国", 215 | "javascript": "buildMedias" 216 | } 217 | ], 218 | "episodes": { 219 | "javascript": "Episodes" 220 | }, 221 | "player": { 222 | "javascript": "Player" 223 | }, 224 | "search": { 225 | "url": "${keyword}", 226 | "javascript": "Search" 227 | } 228 | } -------------------------------------------------------------------------------- /alpha_v2/jojo.js: -------------------------------------------------------------------------------- 1 | `user script`; 2 | 3 | function buildMediaData( 4 | id, 5 | coverURLString, 6 | title, 7 | descriptionText, 8 | detailURLString 9 | ) { 10 | var obj = { 11 | id: id, 12 | coverURLString: coverURLString, 13 | title: title, 14 | descriptionText: descriptionText, 15 | detailURLString: detailURLString, 16 | }; 17 | 18 | return obj; 19 | } 20 | function buildEpisodeData(id, title, episodeDetailURL) { 21 | return { 22 | id: id, 23 | title: title, 24 | episodeDetailURL: episodeDetailURL, 25 | }; 26 | } 27 | // Main 28 | 29 | function buildMedias(inputURL) { 30 | var req = { 31 | url: inputURL, 32 | method: "GET", 33 | }; 34 | 35 | let datas = []; 36 | 37 | $http.fetch(req).then(function (res) { 38 | var content = tXml.getElementsByClassName(res.body, "content-item"); 39 | 40 | for (var index = 0; index < content.length; index++) { 41 | 42 | var dom = content[index]; 43 | //print(content.length) 44 | 45 | var title = findAllByKey(dom, "card-title")[0]; 46 | var href = findAllByKey(dom, "href")[0]; 47 | var coverURLString = findAllByKey(dom, "src")[0]; 48 | var descriptionText = findAllByKey(dom, "score")[0]; 49 | 50 | href = buildURL(href); 51 | 52 | datas.push( 53 | buildMediaData(href, coverURLString, title, descriptionText, href) 54 | ); 55 | } 56 | 57 | $next.toMedias(JSON.stringify(datas)); 58 | }); 59 | } 60 | function buildURL(href) { 61 | if (!href.startsWith("http")) { 62 | href = "https://jiohub.top" + href; 63 | } 64 | return href; 65 | } 66 | 67 | function Episodes(inputURL) { 68 | var req = { 69 | url: inputURL, 70 | method: "GET", 71 | }; 72 | 73 | let datas = []; 74 | 75 | $http.fetch(req).then(function (res) { 76 | var content = tXml.getElementsByClassName(res.body, "jojo-plyr-list")[0]; 77 | //print(content.children.length); 78 | 79 | for (var index = 0; index < content.children.length; index++) { 80 | var element = content.children[index].children[0]; 81 | //print(element); 82 | 83 | var href = element.attributes ? element.attributes.href : ''; 84 | var title = element.children.toString(); 85 | 86 | href = buildURL(href); 87 | 88 | datas.push(buildEpisodeData(href, title, href)); 89 | } 90 | 91 | $next.toEpisodes(JSON.stringify(datas)); 92 | }); 93 | } 94 | function Player(inputURL) { 95 | var req = { 96 | url: inputURL, 97 | method: "GET", 98 | }; 99 | 100 | $http.fetch(req).then(function (res) { 101 | var xml = res.body; 102 | html = xml.match(/r player_.*?=(.*?)= 0 || url.indexOf('mp4') >= 0) { 147 | // console.debug('在线之家url =====>' + url); // js_debug.log 148 | $next.toPlayer(url); 149 | } else if (from.indexOf('line3') >= 0 || from.indexOf('line5') >= 0) { 150 | 151 | var req = { 152 | url: url, 153 | method: "GET", 154 | headers: { 155 | 'Referer': 'https://www.zxzj.pro', 156 | 'Sec-Fetch-Dest': 'iframe', 157 | 'Sec-Fetch-Site': 'cross-site', 158 | 'Sec-Fetch-Mode': 'navigate', 159 | } 160 | }; 161 | $http.fetch(req).then(function (res) { 162 | const ifrwy = res.body 163 | const code = ifrwy.match(/var url = '(.*?)'/)[1].split('').reverse().join(''); 164 | let temp = ''; 165 | for (let i = 0x0; i < code.length; i = i + 0x2) { 166 | temp += String.fromCharCode(parseInt(code[i] + code[i + 0x1], 0x10)) 167 | } 168 | const url = temp.substring(0x0, (temp.length - 0x7) / 0x2) + temp.substring((temp.length - 0x7) / 0x2 + 0x7); 169 | $next.toPlayer(url); 170 | }) 171 | 172 | } 173 | 174 | 175 | 176 | }) 177 | } 178 | function Search(inputURL) { 179 | const req = { 180 | //url: "https://www.histar.tv/_next/data/" + buildId + "/search.json?word=" + inputURL, 181 | url: inputURL,//直接從網頁獲取搜索結果 182 | method: "GET", 183 | }; 184 | $http.fetch(req).then(res => { 185 | var content = tXml.getElementsByClassName(res.body, "hl-item-div"); 186 | 187 | let datas = []; 188 | for (var index = 0; index < content.length; index++) { 189 | var dom = content[index]; 190 | //print(content.length) 191 | 192 | var title = findAllByKey(dom, "title")[0]; 193 | var href = findAllByKey(dom, "href")[0]; 194 | 195 | href = buildURL(href); 196 | 197 | datas.push(buildEpisodeData(href, title, href)); 198 | } 199 | 200 | $next.toMedias(JSON.stringify(datas)); 201 | }); 202 | } 203 | 204 | 205 | function findAllByKey(obj, keyToFind) { 206 | return ( 207 | Object.entries(obj).reduce( 208 | (acc, [key, value]) => 209 | key === keyToFind 210 | ? acc.concat(value) 211 | : typeof value === "object" && value 212 | ? acc.concat(findAllByKey(value, keyToFind)) 213 | : acc, 214 | [] 215 | ) || [] 216 | ); 217 | } 218 | function print(params) { 219 | console.log(JSON.stringify(params)); 220 | } 221 | function jie(_0x3a1d23) { 222 | _0x3a1d23 = this.strRevers(_0x3a1d23); 223 | _0x3a1d23 = this.htoStr(_0x3a1d23); 224 | return decodeStr(_0x3a1d23); 225 | } 226 | function htoStr(_0x335e0c) { 227 | var _0x19492b = ''; 228 | for (var _0x53a455 = 0; _0x53a455 < _0x335e0c.length; _0x53a455 = _0x53a455 + 2) { 229 | var _0x4091f2 = _0x335e0c[_0x53a455] + _0x335e0c[_0x53a455 + 1]; 230 | _0x4091f2 = parseInt(_0x4091f2, 16); 231 | _0x19492b += String.fromCharCode(_0x4091f2); 232 | } 233 | return _0x19492b; 234 | } 235 | function strRevers(_0x5d6b71) { 236 | return _0x5d6b71.split('').reverse(); 237 | } 238 | function decodeStr(_0x267828) { 239 | var _0x5cd2b5 = (_0x267828.length - 7) / 2, _0x2191ed = _0x267828.substring(0, _0x5cd2b5), _0x35a256 = _0x267828.substring(_0x5cd2b5 + 7); 240 | return _0x2191ed + _0x35a256; 241 | } -------------------------------------------------------------------------------- /alpha_v2/jojo.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "在线之家", 3 | "description": "在线观看美剧", 4 | "host": "https://jiohub.top", 5 | "files": [ 6 | "jojo.js", 7 | "txml.js", 8 | "base64.js" 9 | ], 10 | "pages": [ 11 | { 12 | "key": "index", 13 | "title": "首页", 14 | "url": "https://jiohub.top", 15 | "javascript": "buildMedias" 16 | }, 17 | { 18 | "key": "movie", 19 | "title": "电影", 20 | "url": "https://jiohub.top/video/%E7%94%B5%E5%BD%B1?page=${pageNumber}&size=18", 21 | "javascript": "buildMedias" 22 | }, 23 | { 24 | "key": "us", 25 | "title": "美剧", 26 | "url": "https://jiohub.top/video/%E7%BE%8E%E5%89%A7?page=${pageNumber}&size=18", 27 | "javascript": "buildMedias" 28 | }, 29 | { 30 | "key": "kr", 31 | "title": "韩剧", 32 | "url": "https://jiohub.top/video/%E9%9F%A9%E5%89%A7?page=${pageNumber}&size=18", 33 | "javascript": "buildMedias" 34 | }, 35 | { 36 | "key": "jp", 37 | "title": "日剧", 38 | "url": "https://jiohub.top/video/%E6%97%A5%E5%89%A7?page=${pageNumber}&size=18", 39 | "javascript": "buildMedias" 40 | }, 41 | { 42 | "key": "anime", 43 | "title": "动漫", 44 | "url": "https://jiohub.top/video/%E5%8A%A8%E6%BC%AB?page=${pageNumber}&size=18", 45 | "javascript": "buildMedias" 46 | }, 47 | { 48 | "key": "guochan", 49 | "title": "国产", 50 | "url": "https://jiohub.top/video/%E5%9B%BD%E4%BA%A7?page=${pageNumber}&size=18", 51 | "javascript": "buildMedias" 52 | } 53 | ], 54 | "episodes": { 55 | "javascript": "Episodes" 56 | }, 57 | "player": { 58 | "javascript": "Player" 59 | }, 60 | "search": { 61 | "url": "https://jiohub.top/video/search?q=${keyword}&pid=Z9nOaT5uc1hWYF2ASy4fK9Yqn-Y7KE/nEn3oK5-Joro=", 62 | "javascript": "Search" 63 | } 64 | } -------------------------------------------------------------------------------- /alpha_v2/libvio.js: -------------------------------------------------------------------------------- 1 | `user script`; 2 | 3 | function print(params) { 4 | console.log(JSON.stringify(params)); 5 | } 6 | 7 | function buildMediaData( 8 | id, 9 | coverURLString, 10 | title, 11 | descriptionText, 12 | detailURLString 13 | ) { 14 | var obj = { 15 | id: id, 16 | coverURLString: coverURLString, 17 | title: title, 18 | descriptionText: descriptionText, 19 | detailURLString: detailURLString, 20 | }; 21 | 22 | return obj; 23 | } 24 | 25 | function buildEpisodeData(id, title, episodeDetailURL) { 26 | return { 27 | id: id, 28 | title: title, 29 | episodeDetailURL: episodeDetailURL, 30 | }; 31 | } 32 | 33 | function buildURL(href) { 34 | if (!href.startsWith("http")) { 35 | href = "https://www.libvio.vip" + href; 36 | } 37 | return href; 38 | } 39 | 40 | function findAllByKey(obj, keyToFind) { 41 | return ( 42 | Object.entries(obj).reduce( 43 | (acc, [key, value]) => 44 | key === keyToFind 45 | ? acc.concat(value) 46 | : typeof value === "object" && value 47 | ? acc.concat(findAllByKey(value, keyToFind)) 48 | : acc, 49 | [] 50 | ) || [] 51 | ); 52 | } 53 | 54 | // Main 55 | 56 | function buildMedias(inputURL) { 57 | var req = { 58 | url: inputURL, 59 | method: "GET", 60 | }; 61 | 62 | let datas = []; 63 | 64 | $http.fetch(req).then(function (res) { 65 | var content = tXml.getElementsByClassName(res.body, "stui-vodlist__box"); 66 | 67 | for (var index = 0; index < content.length; index++) { 68 | var dom = content[index]; 69 | 70 | var title = findAllByKey(dom, "title")[0]; 71 | var href = findAllByKey(dom, "href")[0]; 72 | var coverURLString = findAllByKey(dom, "data-original")[0]; 73 | var descriptionText = ""; 74 | 75 | href = buildURL(href); 76 | 77 | datas.push( 78 | buildMediaData(href, coverURLString, title, descriptionText, href) 79 | ); 80 | } 81 | 82 | $next.toMedias(JSON.stringify(datas)); 83 | }); 84 | } 85 | 86 | function Episodes(inputURL) { 87 | var req = { 88 | url: inputURL, 89 | method: "GET", 90 | }; 91 | 92 | let datas = []; 93 | 94 | $http.fetch(req).then(function (res) { 95 | var content = tXml.getElementsByClassName( 96 | res.body, 97 | "stui-content__playlist" 98 | )[0]; 99 | //print(content.children.length); 100 | 101 | for (var index = 0; index < content.children.length; index++) { 102 | var element = content.children[index].children[0]; 103 | //print(element); 104 | 105 | var href = element.attributes ? element.attributes.href : ""; 106 | var title = element.children.toString(); 107 | 108 | href = buildURL(href); 109 | 110 | datas.push(buildEpisodeData(href, title, href)); 111 | } 112 | 113 | $next.toEpisodes(JSON.stringify(datas)); 114 | }); 115 | } 116 | 117 | function Player(inputURL) { 118 | var req = { 119 | url: inputURL, 120 | method: "GET", 121 | }; 122 | 123 | $http.fetch(req).then(function (res) { 124 | var xml = res.body; 125 | html = xml.match(/r player_.*?=(.*?) { 235 | var content = tXml.getElementsByClassName(res.body, "stui-vodlist__box"); 236 | 237 | let datas = []; 238 | for (var index = 0; index < content.length; index++) { 239 | var dom = content[index]; 240 | //print(content.length) 241 | 242 | var title = findAllByKey(dom, "title")[0]; 243 | var href = findAllByKey(dom, "href")[0]; 244 | 245 | href = buildURL(href); 246 | 247 | datas.push(buildEpisodeData(href, title, href)); 248 | } 249 | 250 | $next.toSearchMedias(JSON.stringify(returnDatas), key); 251 | }); 252 | } 253 | function htoStr(_0x335e0c) { 254 | var _0x19492b = ""; 255 | for ( 256 | var _0x53a455 = 0; 257 | _0x53a455 < _0x335e0c.length; 258 | _0x53a455 = _0x53a455 + 2 259 | ) { 260 | var _0x4091f2 = _0x335e0c[_0x53a455] + _0x335e0c[_0x53a455 + 1]; 261 | _0x4091f2 = parseInt(_0x4091f2, 16); 262 | _0x19492b += String.fromCharCode(_0x4091f2); 263 | } 264 | return _0x19492b; 265 | } 266 | function strRevers(_0x5d6b71) { 267 | return _0x5d6b71.split("").reverse(); 268 | } 269 | function decodeStr(_0x267828) { 270 | var _0x5cd2b5 = (_0x267828.length - 7) / 2, 271 | _0x2191ed = _0x267828.substring(0, _0x5cd2b5), 272 | _0x35a256 = _0x267828.substring(_0x5cd2b5 + 7); 273 | return _0x2191ed + _0x35a256; 274 | } 275 | -------------------------------------------------------------------------------- /alpha_v2/libvio.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "libvio", 3 | "description": "海量粵語節目", 4 | "host": "https://www.libvio.vip/", 5 | "files": [ 6 | "txml.js", 7 | "libvio.js" 8 | ], 9 | "pages": [ 10 | { 11 | "key": "index", 12 | "title": "最近更新", 13 | "url": "https://www.libvio.vip/", 14 | "timeout": 50, 15 | "javascript": "buildMedias" 16 | }, 17 | { 18 | "key": "movie", 19 | "title": "电影", 20 | "url": "https://www.libvio.vip/type/1-${pageNumber}.html", 21 | "javascript": "buildMedias" 22 | }, 23 | { 24 | "key": "series", 25 | "title": "电视剧", 26 | "url": "https://www.libvio.vip/type/2-${pageNumber}.html", 27 | "javascript": "buildMedias" 28 | }, 29 | { 30 | "key": "anime", 31 | "title": "动漫", 32 | "url": "https://www.libvio.vip/type/4-${pageNumber}.html", 33 | "javascript": "buildMedias" 34 | }, 35 | { 36 | "key": "jpandkr", 37 | "title": "日韩剧", 38 | "url": "https://www.libvio.vip/type/15-${pageNumber}.html", 39 | "javascript": "buildMedias" 40 | }, 41 | { 42 | "key": "euandus", 43 | "title": "欧美剧", 44 | "url": "https://www.libvio.vip/type/16-${pageNumber}.html", 45 | "javascript": "buildMedias" 46 | } 47 | ], 48 | "episodes": { 49 | "javascript": "Episodes" 50 | }, 51 | "player": { 52 | "timeout": 20, 53 | "javascript": "Player" 54 | }, 55 | "search": { 56 | "url": "https://www.libvio.vip/search/-------------.html?wd=${keyword}submit=", 57 | "javascript": "buildMedias" 58 | } 59 | } -------------------------------------------------------------------------------- /alpha_v2/md5.js: -------------------------------------------------------------------------------- 1 | /* 2 | * A JavaScript implementation of the RSA Data Security, Inc. MD5 Message 3 | * Digest Algorithm, as defined in RFC 1321. 4 | * Version 2.1 Copyright (C) Paul Johnston 1999 - 2002. 5 | * Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet 6 | * Distributed under the BSD License 7 | * See http://pajhome.org.uk/crypt/md5 for more info. 8 | */ 9 | /* 10 | * Configurable variables. You may need to tweak these to be compatible with 11 | * the server-side, but the defaults work in most cases. 12 | */ 13 | var hexcase = 0; /* hex output format. 0 - lowercase; 1 - uppercase */ 14 | var b64pad = ""; /* base-64 pad character. "=" for strict RFC compliance */ 15 | var chrsz = 8; /* bits per input character. 8 - ASCII; 16 - Unicode */ 16 | /* 17 | * These are the functions you'll usually want to call 18 | * They take string arguments and return either hex or base-64 encoded strings 19 | */ 20 | function hex_md5(s) { return binl2hex(core_md5(str2binl(s), s.length * chrsz)); } 21 | function b64_md5(s) { return binl2b64(core_md5(str2binl(s), s.length * chrsz)); } 22 | function str_md5(s) { return binl2str(core_md5(str2binl(s), s.length * chrsz)); } 23 | function hex_hmac_md5(key, data) { return binl2hex(core_hmac_md5(key, data)); } 24 | function b64_hmac_md5(key, data) { return binl2b64(core_hmac_md5(key, data)); } 25 | function str_hmac_md5(key, data) { return binl2str(core_hmac_md5(key, data)); } 26 | /* 27 | * Perform a simple self-test to see if the VM is working 28 | */ 29 | function md5_vm_test() { 30 | return hex_md5("abc") == "900150983cd24fb0d6963f7d28e17f72"; 31 | } 32 | /* 33 | * Calculate the MD5 of an array of little-endian words, and a bit length 34 | */ 35 | function core_md5(x, len) { 36 | /* append padding */ 37 | x[len >> 5] |= 0x80 << ((len) % 32); 38 | x[(((len + 64) >>> 9) << 4) + 14] = len; 39 | var a = 1732584193; 40 | var b = -271733879; 41 | var c = -1732584194; 42 | var d = 271733878; 43 | for (var i = 0; i < x.length; i += 16) { 44 | var olda = a; 45 | var oldb = b; 46 | var oldc = c; 47 | var oldd = d; 48 | a = md5_ff(a, b, c, d, x[i + 0], 7, -680876936); 49 | d = md5_ff(d, a, b, c, x[i + 1], 12, -389564586); 50 | c = md5_ff(c, d, a, b, x[i + 2], 17, 606105819); 51 | b = md5_ff(b, c, d, a, x[i + 3], 22, -1044525330); 52 | a = md5_ff(a, b, c, d, x[i + 4], 7, -176418897); 53 | d = md5_ff(d, a, b, c, x[i + 5], 12, 1200080426); 54 | c = md5_ff(c, d, a, b, x[i + 6], 17, -1473231341); 55 | b = md5_ff(b, c, d, a, x[i + 7], 22, -45705983); 56 | a = md5_ff(a, b, c, d, x[i + 8], 7, 1770035416); 57 | d = md5_ff(d, a, b, c, x[i + 9], 12, -1958414417); 58 | c = md5_ff(c, d, a, b, x[i + 10], 17, -42063); 59 | b = md5_ff(b, c, d, a, x[i + 11], 22, -1990404162); 60 | a = md5_ff(a, b, c, d, x[i + 12], 7, 1804603682); 61 | d = md5_ff(d, a, b, c, x[i + 13], 12, -40341101); 62 | c = md5_ff(c, d, a, b, x[i + 14], 17, -1502002290); 63 | b = md5_ff(b, c, d, a, x[i + 15], 22, 1236535329); 64 | a = md5_gg(a, b, c, d, x[i + 1], 5, -165796510); 65 | d = md5_gg(d, a, b, c, x[i + 6], 9, -1069501632); 66 | c = md5_gg(c, d, a, b, x[i + 11], 14, 643717713); 67 | b = md5_gg(b, c, d, a, x[i + 0], 20, -373897302); 68 | a = md5_gg(a, b, c, d, x[i + 5], 5, -701558691); 69 | d = md5_gg(d, a, b, c, x[i + 10], 9, 38016083); 70 | c = md5_gg(c, d, a, b, x[i + 15], 14, -660478335); 71 | b = md5_gg(b, c, d, a, x[i + 4], 20, -405537848); 72 | a = md5_gg(a, b, c, d, x[i + 9], 5, 568446438); 73 | d = md5_gg(d, a, b, c, x[i + 14], 9, -1019803690); 74 | c = md5_gg(c, d, a, b, x[i + 3], 14, -187363961); 75 | b = md5_gg(b, c, d, a, x[i + 8], 20, 1163531501); 76 | a = md5_gg(a, b, c, d, x[i + 13], 5, -1444681467); 77 | d = md5_gg(d, a, b, c, x[i + 2], 9, -51403784); 78 | c = md5_gg(c, d, a, b, x[i + 7], 14, 1735328473); 79 | b = md5_gg(b, c, d, a, x[i + 12], 20, -1926607734); 80 | a = md5_hh(a, b, c, d, x[i + 5], 4, -378558); 81 | d = md5_hh(d, a, b, c, x[i + 8], 11, -2022574463); 82 | c = md5_hh(c, d, a, b, x[i + 11], 16, 1839030562); 83 | b = md5_hh(b, c, d, a, x[i + 14], 23, -35309556); 84 | a = md5_hh(a, b, c, d, x[i + 1], 4, -1530992060); 85 | d = md5_hh(d, a, b, c, x[i + 4], 11, 1272893353); 86 | c = md5_hh(c, d, a, b, x[i + 7], 16, -155497632); 87 | b = md5_hh(b, c, d, a, x[i + 10], 23, -1094730640); 88 | a = md5_hh(a, b, c, d, x[i + 13], 4, 681279174); 89 | d = md5_hh(d, a, b, c, x[i + 0], 11, -358537222); 90 | c = md5_hh(c, d, a, b, x[i + 3], 16, -722521979); 91 | b = md5_hh(b, c, d, a, x[i + 6], 23, 76029189); 92 | a = md5_hh(a, b, c, d, x[i + 9], 4, -640364487); 93 | d = md5_hh(d, a, b, c, x[i + 12], 11, -421815835); 94 | c = md5_hh(c, d, a, b, x[i + 15], 16, 530742520); 95 | b = md5_hh(b, c, d, a, x[i + 2], 23, -995338651); 96 | a = md5_ii(a, b, c, d, x[i + 0], 6, -198630844); 97 | d = md5_ii(d, a, b, c, x[i + 7], 10, 1126891415); 98 | c = md5_ii(c, d, a, b, x[i + 14], 15, -1416354905); 99 | b = md5_ii(b, c, d, a, x[i + 5], 21, -57434055); 100 | a = md5_ii(a, b, c, d, x[i + 12], 6, 1700485571); 101 | d = md5_ii(d, a, b, c, x[i + 3], 10, -1894986606); 102 | c = md5_ii(c, d, a, b, x[i + 10], 15, -1051523); 103 | b = md5_ii(b, c, d, a, x[i + 1], 21, -2054922799); 104 | a = md5_ii(a, b, c, d, x[i + 8], 6, 1873313359); 105 | d = md5_ii(d, a, b, c, x[i + 15], 10, -30611744); 106 | c = md5_ii(c, d, a, b, x[i + 6], 15, -1560198380); 107 | b = md5_ii(b, c, d, a, x[i + 13], 21, 1309151649); 108 | a = md5_ii(a, b, c, d, x[i + 4], 6, -145523070); 109 | d = md5_ii(d, a, b, c, x[i + 11], 10, -1120210379); 110 | c = md5_ii(c, d, a, b, x[i + 2], 15, 718787259); 111 | b = md5_ii(b, c, d, a, x[i + 9], 21, -343485551); 112 | a = safe_add(a, olda); 113 | b = safe_add(b, oldb); 114 | c = safe_add(c, oldc); 115 | d = safe_add(d, oldd); 116 | } 117 | return Array(a, b, c, d); 118 | } 119 | /* 120 | * These functions implement the four basic operations the algorithm uses. 121 | */ 122 | function md5_cmn(q, a, b, x, s, t) { 123 | return safe_add(bit_rol(safe_add(safe_add(a, q), safe_add(x, t)), s), b); 124 | } 125 | function md5_ff(a, b, c, d, x, s, t) { 126 | return md5_cmn((b & c) | ((~b) & d), a, b, x, s, t); 127 | } 128 | function md5_gg(a, b, c, d, x, s, t) { 129 | return md5_cmn((b & d) | (c & (~d)), a, b, x, s, t); 130 | } 131 | function md5_hh(a, b, c, d, x, s, t) { 132 | return md5_cmn(b ^ c ^ d, a, b, x, s, t); 133 | } 134 | function md5_ii(a, b, c, d, x, s, t) { 135 | return md5_cmn(c ^ (b | (~d)), a, b, x, s, t); 136 | } 137 | /* 138 | * Calculate the HMAC-MD5, of a key and some data 139 | */ 140 | function core_hmac_md5(key, data) { 141 | var bkey = str2binl(key); 142 | if (bkey.length > 16) bkey = core_md5(bkey, key.length * chrsz); 143 | var ipad = Array(16), opad = Array(16); 144 | for (var i = 0; i < 16; i++) { 145 | ipad[i] = bkey[i] ^ 0x36363636; 146 | opad[i] = bkey[i] ^ 0x5C5C5C5C; 147 | } 148 | var hash = core_md5(ipad.concat(str2binl(data)), 512 + data.length * chrsz); 149 | return core_md5(opad.concat(hash), 512 + 128); 150 | } 151 | /* 152 | * Add integers, wrapping at 2^32. This uses 16-bit operations internally 153 | * to work around bugs in some JS interpreters. 154 | */ 155 | function safe_add(x, y) { 156 | var lsw = (x & 0xFFFF) + (y & 0xFFFF); 157 | var msw = (x >> 16) + (y >> 16) + (lsw >> 16); 158 | return (msw << 16) | (lsw & 0xFFFF); 159 | } 160 | /* 161 | * Bitwise rotate a 32-bit number to the left. 162 | */ 163 | function bit_rol(num, cnt) { 164 | return (num << cnt) | (num >>> (32 - cnt)); 165 | } 166 | /* 167 | * Convert a string to an array of little-endian words 168 | * If chrsz is ASCII, characters >255 have their hi-byte silently ignored. 169 | */ 170 | function str2binl(str) { 171 | var bin = Array(); 172 | var mask = (1 << chrsz) - 1; 173 | for (var i = 0; i < str.length * chrsz; i += chrsz) 174 | bin[i >> 5] |= (str.charCodeAt(i / chrsz) & mask) << (i % 32); 175 | return bin; 176 | } 177 | /* 178 | * Convert an array of little-endian words to a string 179 | */ 180 | function binl2str(bin) { 181 | var str = ""; 182 | var mask = (1 << chrsz) - 1; 183 | for (var i = 0; i < bin.length * 32; i += chrsz) 184 | str += String.fromCharCode((bin[i >> 5] >>> (i % 32)) & mask); 185 | return str; 186 | } 187 | /* 188 | * Convert an array of little-endian words to a hex string. 189 | */ 190 | function binl2hex(binarray) { 191 | var hex_tab = hexcase ? "0123456789ABCDEF" : "0123456789abcdef"; 192 | var str = ""; 193 | for (var i = 0; i < binarray.length * 4; i++) { 194 | str += hex_tab.charAt((binarray[i >> 2] >> ((i % 4) * 8 + 4)) & 0xF) + 195 | hex_tab.charAt((binarray[i >> 2] >> ((i % 4) * 8)) & 0xF); 196 | } 197 | return str; 198 | } 199 | /* 200 | * Convert an array of little-endian words to a base-64 string 201 | */ 202 | function binl2b64(binarray) { 203 | var tab = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; 204 | var str = ""; 205 | for (var i = 0; i < binarray.length * 4; i += 3) { 206 | var triplet = (((binarray[i >> 2] >> 8 * (i % 4)) & 0xFF) << 16) 207 | | (((binarray[i + 1 >> 2] >> 8 * ((i + 1) % 4)) & 0xFF) << 8) 208 | | ((binarray[i + 2 >> 2] >> 8 * ((i + 2) % 4)) & 0xFF); 209 | for (var j = 0; j < 4; j++) { 210 | if (i * 8 + j * 6 > binarray.length * 32) str += b64pad; 211 | else str += tab.charAt((triplet >> 6 * (3 - j)) & 0x3F); 212 | } 213 | } 214 | return str; 215 | } -------------------------------------------------------------------------------- /alpha_v2/nivod.js: -------------------------------------------------------------------------------- 1 | `user script`; 2 | 3 | // Utils 4 | const headers = { 5 | 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8', 6 | 'Referer':'https://www.nivod4.tv/', 7 | 'Origin': 'https://www.nivod4.tv' 8 | } 9 | 10 | const queryParams = { 11 | 'app_version': "1.0", 12 | 'platform': "3", 13 | 'market_id': "web_nivod", 14 | 'device_code': "web", 15 | 'versioncode': "1", 16 | 'oid': "fd4db9f6473fd325202279a949a7680b83e910e9063c821d" 17 | }; 18 | 19 | // Main 20 | function buildMedias(inputURL) { 21 | const bodyList = inputURL.split("-"); 22 | 23 | let postBody = { 24 | 'sort_by': "4", 25 | 'channel_id': bodyList[0], 26 | 'show_type_id': "0", 27 | 'region_id': "0", 28 | 'lang_id': "0", 29 | 'year_range': "0", 30 | 'start': String((parseInt(bodyList[1]) - 1) * 20) 31 | }; 32 | if (bodyList.length > 2) { 33 | if (bodyList[0] = 1) { 34 | postBody.show_type_id = parseInt(bodyList[2]); 35 | }else{ 36 | postBody.region_id = parseInt(bodyList[2]); 37 | } 38 | } 39 | const body = Object.keys(postBody).map(key => `${encodeURIComponent(key)}=${encodeURIComponent(postBody[key])}`).join('&'); 40 | 41 | const t = new Date().getTime(); 42 | let query = queryParams; 43 | query._ts = t; 44 | query.sign = createSign(query, postBody); 45 | 46 | let url = "https://api.nivodz.com/show/filter/WEB/3.2?"; 47 | url += Object.keys(query) 48 | .map(key => `${encodeURIComponent(key)}=${encodeURIComponent(query[key])}`) 49 | .join('&'); 50 | const req = { 51 | url: url, 52 | method: 'POST', 53 | body:body, 54 | headers: headers 55 | }; 56 | 57 | $http.fetch(req).then(res => { 58 | const items = JSON.parse(decryptBody(res.body)).list; 59 | let datas = []; 60 | items.forEach(item => { 61 | const title = item.showTitle; 62 | const href = item.showIdCode; 63 | const coverURLString = item.showImg; 64 | var descriptionText = item.episodesTxt; 65 | if (descriptionText == null||descriptionText ==""||descriptionText ==undefined) { 66 | descriptionText = item.showTitle; 67 | } 68 | datas.push( 69 | buildMediaData(href, coverURLString, title, descriptionText, href) 70 | ); 71 | }); 72 | $next.toMedias(JSON.stringify(datas)); 73 | }); 74 | } 75 | 76 | function Episodes(inputURL) { 77 | const postBody = { 78 | 'show_id_code' : inputURL, 79 | } 80 | const body = Object.keys(postBody).map(key => `${encodeURIComponent(key)}=${encodeURIComponent(postBody[key])}`).join('&'); 81 | 82 | const t = new Date().getTime(); 83 | let query = queryParams; 84 | query._ts = t; 85 | query.sign = createSign(query, postBody); 86 | 87 | const url = "https://api.nivodz.com/show/detail/WEB/3.2?" + Object.keys(query) 88 | .map(key => `${encodeURIComponent(key)}=${encodeURIComponent(query[key])}`) 89 | .join('&'); 90 | 91 | const req = { 92 | url: url, 93 | method: 'POST', 94 | body:body, 95 | headers: headers 96 | }; 97 | 98 | $http.fetch(req).then(res => { 99 | const items = JSON.parse(decryptBody(res.body)).entity.plays; 100 | let datas = []; 101 | items.forEach(item => { 102 | const href = inputURL + '-' +item.playIdCode; 103 | const title = item.episodeName; 104 | datas.push(buildEpisodeData(href, title, href)); 105 | }); 106 | $next.toEpisodes(JSON.stringify(datas)); 107 | }); 108 | } 109 | 110 | function Player(inputURL) { 111 | const bodyList = inputURL.split("-"); 112 | const postBody = { 113 | 'show_id_code' : bodyList[0], 114 | 'play_id_code' : bodyList[1], 115 | 'oid' : "1", 116 | 'episode_id' : "0" 117 | } 118 | 119 | const body = Object.keys(postBody) 120 | .map(key => `${encodeURIComponent(key)}=${encodeURIComponent(postBody[key])}`) 121 | .join('&'); 122 | 123 | const t = new Date().getTime(); 124 | let query = queryParams; 125 | query._ts = t; 126 | query.sign = createSign(query, postBody); 127 | 128 | const url = "https://api.nivodz.com/show/play/info/WEB/3.3?" + Object.keys(query) 129 | .map(key => `${encodeURIComponent(key)}=${encodeURIComponent(query[key])}`) 130 | .join('&'); 131 | 132 | const req = { 133 | url: url, 134 | method: 'POST', 135 | body:body, 136 | headers: headers 137 | }; 138 | 139 | $http.fetch(req).then(res => { 140 | const playURL = JSON.parse(decryptBody(res.body)).entity.plays[0].playUrl; 141 | $next.toPlayer(playURL); 142 | }); 143 | } 144 | 145 | function Search(inputURL) { 146 | inputURL = decodeURI(inputURL); 147 | const postBody = { 148 | 'keyword' : inputURL, 149 | 'start' : "0", 150 | 'cat_id' : "1", 151 | 'keyword_type' : "0" 152 | } 153 | //const body = Object.keys(postBody).map(key => `${encodeURIComponent(key)}=${encodeURIComponent(postBody[key])}`).join('&'); 154 | const body = "start=0&cat_id=1&keyword_type=0&keyword="+inputURL; 155 | 156 | const t = new Date().getTime(); 157 | let query = queryParams; 158 | query._ts = t; 159 | query.sign = createSign(query, postBody); 160 | 161 | const url ='https://api.nivodz.com/show/search/WEB/3.2?'+ Object.keys(query) 162 | .map(key => `${encodeURIComponent(key)}=${encodeURIComponent(query[key])}`) 163 | .join('&'); 164 | 165 | const req = { 166 | url: url, 167 | method: 'POST', 168 | body:body, 169 | headers: headers 170 | }; 171 | 172 | $http.fetch(req).then(res => { 173 | const items = JSON.parse(decryptBody(res.body)).list; 174 | let datas = []; 175 | items.forEach(item => { 176 | const title = item.showTitle; 177 | const href = item.showIdCode; 178 | const coverURLString = item.showImg; 179 | let descriptionText = item.episodesTxt; 180 | if (descriptionText == null||descriptionText ==""||descriptionText ==undefined) { 181 | descriptionText = item.showTitle; 182 | } 183 | datas.push( 184 | buildMediaData(href, coverURLString, title, descriptionText, href) 185 | ); 186 | }); 187 | $next.toMedias(JSON.stringify(datas)); 188 | }); 189 | } -------------------------------------------------------------------------------- /alpha_v2/nivod.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "泥视频", 3 | "description": "海外華人在綫影院", 4 | "host": "https://www.nivod4.tv", 5 | "files": ["util.js","crypto-js.min.js","nivod-sign.min.js","nivod.js"], 6 | "pages": [ 7 | { 8 | "key": "index", 9 | "title": "电视剧", 10 | "url": "2-${pageNumber}", 11 | "javascript": "buildMedias" 12 | }, 13 | { 14 | "key": "movie", 15 | "title": "电影", 16 | "url": "1-${pageNumber}", 17 | "javascript": "buildMedias" 18 | }, 19 | { 20 | "key": "variety", 21 | "title": "综艺", 22 | "url": "3-${pageNumber}", 23 | "javascript": "buildMedias" 24 | }, 25 | { 26 | "key": "cartoon", 27 | "title": "动漫", 28 | "url": "4-${pageNumber}", 29 | "javascript": "buildMedias" 30 | }, 31 | { 32 | "key": "short", 33 | "title": "短视频", 34 | "url": "15-${pageNumber}", 35 | "javascript": "buildMedias" 36 | }, 37 | { 38 | "key": "18x", 39 | "title": "午夜場", 40 | "url": "7-${pageNumber}", 41 | "javascript": "buildMedias" 42 | }, 43 | { 44 | "key": "movie-xiju", 45 | "title": "喜剧电影", 46 | "url": "1-${pageNumber}-1", 47 | "javascript": "buildMedias" 48 | }, 49 | { 50 | "key": "movie-dongzuo", 51 | "title": "动作电影", 52 | "url": "1-${pageNumber}-3", 53 | "javascript": "buildMedias" 54 | }, 55 | { 56 | "key": "movie-kehuan", 57 | "title": "科幻电影", 58 | "url": "1-${pageNumber}-5", 59 | "javascript": "buildMedias" 60 | }, 61 | { 62 | "key": "movie-aiqing", 63 | "title": "爱情电影", 64 | "url": "1-${pageNumber}-2", 65 | "javascript": "buildMedias" 66 | }, 67 | { 68 | "key": "movie-kongbu", 69 | "title": "恐怖电影", 70 | "url": "1-${pageNumber}-9", 71 | "javascript": "buildMedias" 72 | }, 73 | { 74 | "key": "movie-donghua", 75 | "title": "动画电影", 76 | "url": "1-${pageNumber}-16", 77 | "javascript": "buildMedias" 78 | }, 79 | { 80 | "key": "movie-tongxing", 81 | "title": "同性电影", 82 | "url": "1-${pageNumber}-17", 83 | "javascript": "buildMedias" 84 | }, 85 | { 86 | "key": "tv-cn", 87 | "title": "大陆电视剧", 88 | "url": "2-${pageNumber}-1", 89 | "javascript": "buildMedias" 90 | }, 91 | { 92 | "key": "tv-hk", 93 | "title": "香港电视剧", 94 | "url": "2-${pageNumber}-11", 95 | "javascript": "buildMedias" 96 | }, 97 | { 98 | "key": "tv-tw", 99 | "title": "台湾电视剧", 100 | "url": "2-${pageNumber}-12", 101 | "javascript": "buildMedias" 102 | }, 103 | { 104 | "key": "tv-us", 105 | "title": "欧美电视剧", 106 | "url": "2-${pageNumber}-4", 107 | "javascript": "buildMedias" 108 | }, 109 | { 110 | "key": "tv-kr", 111 | "title": "韩国电视剧", 112 | "url": "2-${pageNumber}-14", 113 | "javascript": "buildMedias" 114 | }, 115 | { 116 | "key": "tv-jp", 117 | "title": "日本电视剧", 118 | "url": "2-${pageNumber}-13", 119 | "javascript": "buildMedias" 120 | }, 121 | { 122 | "key": "tv-th", 123 | "title": "泰国电视剧", 124 | "url": "2-${pageNumber}-15", 125 | "javascript": "buildMedias" 126 | }, 127 | { 128 | "key": "variety-cn", 129 | "title": "国产综艺", 130 | "url": "3-${pageNumber}-1", 131 | "javascript": "buildMedias" 132 | }, 133 | { 134 | "key": "variety-hk", 135 | "title": "香港综艺", 136 | "url": "3-${pageNumber}-11", 137 | "javascript": "buildMedias" 138 | }, 139 | { 140 | "key": "variety-tw", 141 | "title": "台湾综艺", 142 | "url": "3-${pageNumber}-12", 143 | "javascript": "buildMedias" 144 | }, 145 | { 146 | "key": "variety-us", 147 | "title": "欧美综艺", 148 | "url": "3-${pageNumber}-4", 149 | "javascript": "buildMedias" 150 | }, 151 | { 152 | "key": "variety-kr", 153 | "title": "韩国综艺", 154 | "url": "3-${pageNumber}-14", 155 | "javascript": "buildMedias" 156 | }, 157 | { 158 | "key": "variety-jp", 159 | "title": "日本综艺", 160 | "url": "3-${pageNumber}-13", 161 | "javascript": "buildMedias" 162 | }, 163 | { 164 | "key": "cartoon-cn", 165 | "title": "国产动漫", 166 | "url": "4-${pageNumber}-1", 167 | "javascript": "buildMedias" 168 | }, 169 | { 170 | "key": "cartoon-jp", 171 | "title": "日本动漫", 172 | "url": "4-${pageNumber}-13", 173 | "javascript": "buildMedias" 174 | }, 175 | { 176 | "key": "cartoon-hk", 177 | "title": "香港动漫", 178 | "url": "4-${pageNumber}-11", 179 | "javascript": "buildMedias" 180 | }, 181 | { 182 | "key": "cartoon-tw", 183 | "title": "台湾动漫", 184 | "url": "4-${pageNumber}-12", 185 | "javascript": "buildMedias" 186 | }, 187 | { 188 | "key": "cartoon-us", 189 | "title": "欧美动漫", 190 | "url": "4-${pageNumber}-4", 191 | "javascript": "buildMedias" 192 | }, 193 | { 194 | "key": "cartoon-kr", 195 | "title": "韩国动漫", 196 | "url": "4-${pageNumber}-14", 197 | "javascript": "buildMedias" 198 | } 199 | ], 200 | "episodes": { 201 | "javascript": "Episodes" 202 | }, 203 | "player": { 204 | "javascript": "Player" 205 | }, 206 | "search": { 207 | "url": "${keyword}", 208 | "javascript": "Search" 209 | } 210 | } -------------------------------------------------------------------------------- /alpha_v2/txml.js: -------------------------------------------------------------------------------- 1 | function tXml(a, c) { 2 | function d() { 3 | for (var c = []; a[b];) 4 | if (60 == a.charCodeAt(b)) { 5 | if (47 === a.charCodeAt(b + 1)) { 6 | b = a.indexOf(">", b); 7 | b + 1 && (b += 1); 8 | break; 9 | } else if (33 === a.charCodeAt(b + 1)) { 10 | if (45 == a.charCodeAt(b + 2)) { 11 | for ( 12 | ; 13 | -1 !== b && 14 | (62 !== a.charCodeAt(b) || 15 | 45 != a.charCodeAt(b - 1) || 16 | 45 != a.charCodeAt(b - 2) || 17 | -1 == b); 18 | 19 | ) 20 | b = a.indexOf(">", b + 1); 21 | -1 === b && (b = a.length); 22 | } else for (b += 2; 62 !== a.charCodeAt(b) && a[b];) b++; 23 | b++; 24 | continue; 25 | } 26 | var d = g(); 27 | c.push(d); 28 | } else 29 | (d = b), 30 | (b = a.indexOf("<", b) - 1), 31 | -2 === b && (b = a.length), 32 | (d = a.slice(d, b + 1)), 33 | 0 < d.trim().length && c.push(d), 34 | b++; 35 | return c; 36 | } 37 | function k() { 38 | for (var c = b; -1 === m.indexOf(a[b]) && a[b];) b++; 39 | return a.slice(c, b); 40 | } 41 | function g() { 42 | b++; 43 | for (var c = k(), g = {}, f = []; 62 !== a.charCodeAt(b) && a[b];) { 44 | var e = a.charCodeAt(b); 45 | if ((64 < e && 91 > e) || (96 < e && 123 > e)) { 46 | var h = k(); 47 | for ( 48 | e = a.charCodeAt(b); 49 | e && 50 | 39 !== e && 51 | 34 !== e && 52 | !((64 < e && 91 > e) || (96 < e && 123 > e)) && 53 | 62 !== e; 54 | 55 | ) 56 | b++, (e = a.charCodeAt(b)); 57 | if (39 === e || 34 === e) { 58 | e = a[b]; 59 | var l = ++b; 60 | b = a.indexOf(e, l); 61 | e = a.slice(l, b); 62 | if (-1 === b) return { tagName: c, attributes: g, children: f }; 63 | } else (e = null), b--; 64 | g[h] = e; 65 | } 66 | b++; 67 | } 68 | 47 !== a.charCodeAt(b - 1) 69 | ? "script" == c 70 | ? ((f = b + 1), 71 | (b = a.indexOf("\x3c/script>", b)), 72 | (f = [a.slice(f, b - 1)]), 73 | (b += 9)) 74 | : "style" == c 75 | ? ((f = b + 1), 76 | (b = a.indexOf("", b)), 77 | (f = [a.slice(f, b - 1)]), 78 | (b += 8)) 79 | : -1 == n.indexOf(c) && (b++, (f = d(h))) 80 | : b++; 81 | return { tagName: c, attributes: g, children: f }; 82 | } 83 | function f() { 84 | var b = new RegExp( 85 | "\\s" + c.attrName + "\\s*=['\"]" + c.attrValue + "['\"]" 86 | ).exec(a); 87 | return b ? b.index : -1; 88 | } 89 | c = c || {}; 90 | var b = c.pos || 0, 91 | m = "\n\t>/= ", 92 | n = c.noChildNodes || ["img", "br", "input", "meta", "link"], 93 | h = null; 94 | if (void 0 !== c.attrValue) 95 | for (c.attrName = c.attrName || "id", h = []; -1 !== (b = f());) 96 | (b = a.lastIndexOf("<", b)), 97 | -1 !== b && h.push(g()), 98 | (a = a.substr(b)), 99 | (b = 0); 100 | else h = c.parseNode ? g() : d(); 101 | c.filter && (h = tXml.filter(h, c.filter)); 102 | c.setPos && (h.pos = b); 103 | return h; 104 | } 105 | tXml.simplify = function (a) { 106 | var c = {}; 107 | if (!a.length) return ""; 108 | if (1 === a.length && "string" == typeof a[0]) return a[0]; 109 | a.forEach(function (a) { 110 | if ("object" === typeof a) { 111 | c[a.tagName] || (c[a.tagName] = []); 112 | var d = tXml.simplify(a.children || []); 113 | c[a.tagName].push(d); 114 | a.attributes && (d._attributes = a.attributes); 115 | } 116 | }); 117 | for (var d in c) 1 == c[d].length && (c[d] = c[d][0]); 118 | return c; 119 | }; 120 | tXml.filter = function (a, c) { 121 | var d = []; 122 | a.forEach(function (a) { 123 | "object" === typeof a && c(a) && d.push(a); 124 | a.children && ((a = tXml.filter(a.children, c)), (d = d.concat(a))); 125 | }); 126 | return d; 127 | }; 128 | tXml.stringify = function (a) { 129 | function c(a) { 130 | if (a) 131 | for (var g = 0; g < a.length; g++) 132 | if ("string" == typeof a[g]) d += a[g].trim(); 133 | else { 134 | var f = void 0, 135 | b = a[g]; 136 | d += "<" + b.tagName; 137 | for (f in b.attributes) 138 | d = 139 | null === b.attributes[f] 140 | ? d + (" " + f) 141 | : -1 === b.attributes[f].indexOf('"') 142 | ? d + (" " + f + '="' + b.attributes[f].trim() + '"') 143 | : d + (" " + f + "='" + b.attributes[f].trim() + "'"); 144 | d += ">"; 145 | c(b.children); 146 | d += ""; 147 | } 148 | } 149 | var d = ""; 150 | c(a); 151 | return d; 152 | }; 153 | tXml.toContentString = function (a) { 154 | if (Array.isArray(a)) { 155 | var c = ""; 156 | a.forEach(function (a) { 157 | c += " " + tXml.toContentString(a); 158 | c = c.trim(); 159 | }); 160 | return c; 161 | } 162 | return "object" === typeof a ? tXml.toContentString(a.children) : " " + a; 163 | }; 164 | tXml.getElementById = function (a, c, d) { 165 | a = tXml(a, { attrValue: c }); 166 | return d ? tXml.simplify(a) : a[0]; 167 | }; 168 | tXml.getElementsByClassName = function (a, c, d) { 169 | a = tXml(a, { 170 | attrName: "class", 171 | attrValue: "[a-zA-Z0-9- ]*" + c + "[a-zA-Z0-9- ]*", 172 | }); 173 | return d ? tXml.simplify(a) : a; 174 | }; 175 | tXml.getElementByTagName = function (a, c, d) { 176 | a = tXml(a, { tagName: c }); 177 | return d ? tXml.simplify(a) : a[0]; 178 | }; -------------------------------------------------------------------------------- /alpha_v2/util.js: -------------------------------------------------------------------------------- 1 | function print(params) { 2 | params = params||''; 3 | 4 | if(typeof(params)=='object'&&Object.keys(params).length>0){ 5 | try { 6 | console.log(JSON.stringify(params)); 7 | }catch (e) { 8 | console.log(typeof(params)+':'+params.length); 9 | } 10 | }else if(typeof(params)=='object'&&Object.keys(params).length<1){ 11 | console.log('null object'); 12 | }else{ 13 | console.log(JSON.stringify(params)); 14 | } 15 | } 16 | 17 | function buildMediaData( 18 | id, 19 | coverURLString, 20 | title, 21 | descriptionText, 22 | detailURLString 23 | ) { 24 | var obj = { 25 | id: id, 26 | coverURLString: coverURLString, 27 | title: title, 28 | descriptionText: descriptionText, 29 | detailURLString: detailURLString, 30 | }; 31 | 32 | return obj; 33 | } 34 | 35 | function buildEpisodeData(id, title, episodeDetailURL) { 36 | return { 37 | id: id, 38 | title: title, 39 | episodeDetailURL: episodeDetailURL, 40 | }; 41 | } 42 | 43 | function findAllByKey(obj, keyToFind) { 44 | return ( 45 | Object.entries(obj).reduce( 46 | (acc, [key, value]) => 47 | key === keyToFind 48 | ? acc.concat(value) 49 | : typeof value === "object" && value 50 | ? acc.concat(findAllByKey(value, keyToFind)) 51 | : acc, 52 | [] 53 | ) || [] 54 | ); 55 | } 56 | 57 | function objKeySort(obj) { 58 | let newkey = Object.keys(obj).sort(); 59 | let newObj = {}; 60 | for (let i = 0; i < newkey.length; i++) { 61 | if(newkey[i] == ''||obj[newkey[i]] == ''||newkey[i] == 'sign'){ 62 | continue; 63 | } 64 | newObj[newkey[i]] = obj[newkey[i]]; 65 | } 66 | return newObj; 67 | } -------------------------------------------------------------------------------- /alpha_v2/zxzj.js: -------------------------------------------------------------------------------- 1 | `user script`; 2 | 3 | function buildMediaData( 4 | id, 5 | coverURLString, 6 | title, 7 | descriptionText, 8 | detailURLString 9 | ) { 10 | var obj = { 11 | id: id, 12 | coverURLString: coverURLString, 13 | title: title, 14 | descriptionText: descriptionText, 15 | detailURLString: detailURLString, 16 | }; 17 | 18 | return obj; 19 | } 20 | function buildEpisodeData(id, title, episodeDetailURL) { 21 | return { 22 | id: id, 23 | title: title, 24 | episodeDetailURL: episodeDetailURL, 25 | }; 26 | } 27 | // Main 28 | 29 | function buildMedias(inputURL) { 30 | var req = { 31 | url: inputURL, 32 | method: "GET", 33 | }; 34 | 35 | let datas = []; 36 | 37 | $http.fetch(req).then(function (res) { 38 | var content = tXml.getElementsByClassName(res.body, "stui-vodlist__box"); 39 | 40 | for (var index = 0; index < content.length; index++) { 41 | 42 | var dom = content[index]; 43 | //print(content.length) 44 | 45 | var title = findAllByKey(dom, "title")[0]; 46 | var href = findAllByKey(dom, "href")[0]; 47 | var coverURLString = findAllByKey(dom, "data-original")[0]; 48 | var descriptionText = ''; 49 | 50 | href = buildURL(href); 51 | 52 | datas.push( 53 | buildMediaData(href, coverURLString, title, descriptionText, href) 54 | ); 55 | } 56 | 57 | $next.toMedias(JSON.stringify(datas)); 58 | }); 59 | } 60 | function buildURL(href) { 61 | if (!href.startsWith("http")) { 62 | href = "https://www.zxzja.com" + href; 63 | } 64 | return href; 65 | } 66 | 67 | function Episodes(inputURL) { 68 | var req = { 69 | url: inputURL, 70 | method: "GET", 71 | }; 72 | 73 | let datas = []; 74 | 75 | $http.fetch(req).then(function (res) { 76 | var content = tXml.getElementsByClassName(res.body, "stui-content__playlist")[0]; 77 | //print(content.children.length); 78 | 79 | for (var index = 0; index < content.children.length; index++) { 80 | var element = content.children[index].children[0]; 81 | //print(element); 82 | 83 | var href = element.attributes ? element.attributes.href : ''; 84 | var title = element.children.toString(); 85 | 86 | href = buildURL(href); 87 | 88 | datas.push(buildEpisodeData(href, title, href)); 89 | } 90 | 91 | $next.toEpisodes(JSON.stringify(datas)); 92 | }); 93 | } 94 | function Player(inputURL) { 95 | var req = { 96 | url: inputURL, 97 | method: "GET", 98 | }; 99 | 100 | $http.fetch(req).then(function (res) { 101 | var xml = res.body; 102 | html = xml.match(/r player_.*?=(.*?)= 0 || url.indexOf('mp4') >= 0) { 147 | // console.debug('在线之家url =====>' + url); // js_debug.log 148 | $next.toPlayer(url); 149 | } else if (from.indexOf('line3') >= 0 || from.indexOf('line5') >= 0) { 150 | 151 | var req = { 152 | url: url, 153 | method: "GET", 154 | headers: { 155 | 'Referer': 'https://www.zxzja.com', 156 | 'Sec-Fetch-Dest': 'iframe', 157 | 'Sec-Fetch-Site': 'cross-site', 158 | 'Sec-Fetch-Mode': 'navigate', 159 | } 160 | }; 161 | $http.fetch(req).then(function (res) { 162 | const ifrwy = res.body 163 | const code = ifrwy.match(/var url = '(.*?)'/)[1].split('').reverse().join(''); 164 | let temp = ''; 165 | for (let i = 0x0; i < code.length; i = i + 0x2) { 166 | temp += String.fromCharCode(parseInt(code[i] + code[i + 0x1], 0x10)) 167 | } 168 | const url = temp.substring(0x0, (temp.length - 0x7) / 0x2) + temp.substring((temp.length - 0x7) / 0x2 + 0x7); 169 | $next.toPlayer(url); 170 | }) 171 | 172 | } 173 | 174 | 175 | 176 | }) 177 | } 178 | function Search(inputURL, key) { 179 | const req = { 180 | //url: "https://www.histar.tv/_next/data/" + buildId + "/search.json?word=" + inputURL, 181 | url: inputURL,//直接從網頁獲取搜索結果 182 | method: "GET", 183 | }; 184 | $http.fetch(req).then(res => { 185 | var content = tXml.getElementsByClassName(res.body, "hl-item-div"); 186 | 187 | let datas = []; 188 | for (var index = 0; index < content.length; index++) { 189 | var dom = content[index]; 190 | //print(content.length) 191 | 192 | var title = findAllByKey(dom, "title")[0]; 193 | var href = findAllByKey(dom, "href")[0]; 194 | 195 | href = buildURL(href); 196 | 197 | datas.push(buildEpisodeData(href, title, href)); 198 | } 199 | 200 | $next.toSearchMedias(JSON.stringify(returnDatas), key); 201 | }); 202 | } 203 | 204 | 205 | function findAllByKey(obj, keyToFind) { 206 | return ( 207 | Object.entries(obj).reduce( 208 | (acc, [key, value]) => 209 | key === keyToFind 210 | ? acc.concat(value) 211 | : typeof value === "object" && value 212 | ? acc.concat(findAllByKey(value, keyToFind)) 213 | : acc, 214 | [] 215 | ) || [] 216 | ); 217 | } 218 | function print(params) { 219 | console.log(JSON.stringify(params)); 220 | } 221 | function jie(_0x3a1d23) { 222 | _0x3a1d23 = this.strRevers(_0x3a1d23); 223 | _0x3a1d23 = this.htoStr(_0x3a1d23); 224 | return decodeStr(_0x3a1d23); 225 | } 226 | function htoStr(_0x335e0c) { 227 | var _0x19492b = ''; 228 | for (var _0x53a455 = 0; _0x53a455 < _0x335e0c.length; _0x53a455 = _0x53a455 + 2) { 229 | var _0x4091f2 = _0x335e0c[_0x53a455] + _0x335e0c[_0x53a455 + 1]; 230 | _0x4091f2 = parseInt(_0x4091f2, 16); 231 | _0x19492b += String.fromCharCode(_0x4091f2); 232 | } 233 | return _0x19492b; 234 | } 235 | function strRevers(_0x5d6b71) { 236 | return _0x5d6b71.split('').reverse(); 237 | } 238 | function decodeStr(_0x267828) { 239 | var _0x5cd2b5 = (_0x267828.length - 7) / 2, _0x2191ed = _0x267828.substring(0, _0x5cd2b5), _0x35a256 = _0x267828.substring(_0x5cd2b5 + 7); 240 | return _0x2191ed + _0x35a256; 241 | } -------------------------------------------------------------------------------- /alpha_v2/zxzj.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "在线之家", 3 | "description": "在线观看美剧", 4 | "host": "https://www.zxzja.com", 5 | "files": [ 6 | "zxzj.js", 7 | "txml.js", 8 | "base64.js" 9 | ], 10 | "pages": [ 11 | { 12 | "key": "index", 13 | "title": "首页", 14 | "url": "https://www.zxzja.com", 15 | "javascript": "buildMedias" 16 | }, 17 | { 18 | "key": "movie", 19 | "title": "电影", 20 | "url": "https://www.zxzja.com/list/1-${pageNumber}.html", 21 | "javascript": "buildMedias" 22 | }, 23 | { 24 | "key": "us", 25 | "title": "美剧", 26 | "url": "https://www.zxzja.com/list/2-${pageNumber}.html", 27 | "javascript": "buildMedias" 28 | }, 29 | { 30 | "key": "kr", 31 | "title": "韩剧", 32 | "url": "https://www.zxzja.com/list/3-${pageNumber}.html", 33 | "javascript": "buildMedias" 34 | }, 35 | { 36 | "key": "jp", 37 | "title": "日剧", 38 | "url": "https://www.zxzja.com/list/4-${pageNumber}.html", 39 | "javascript": "buildMedias" 40 | }, 41 | { 42 | "key": "anime", 43 | "title": "动漫", 44 | "url": "https://www.zxzja.com/list/6-${pageNumber}.html", 45 | "javascript": "buildMedias" 46 | } 47 | ], 48 | "episodes": { 49 | "javascript": "Episodes" 50 | }, 51 | "player": { 52 | "javascript": "Player" 53 | }, 54 | "search": { 55 | "url": "https://www.zxzja.com/vodsearch/-------------.html?wd=${keyword}&submit=", 56 | "javascript": "Search" 57 | } 58 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "syncnextplugin", 3 | "version": "1.0.0", 4 | "description": "Syncnext 插件化", 5 | "main": "app.js", 6 | "scripts": { 7 | "test": "node node_Test.js" 8 | }, 9 | "author": "icy37785", 10 | "license": "ISC", 11 | "dependencies": { 12 | "crypto-js": "^4.1.1", 13 | "node-fetch": "^2.7.0", 14 | "txml": "^5.1.1" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /sourcesv3.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "7144ceed-563d-4bef-9cd3-6f3d789c1a70", 4 | "Top": true, 5 | "note": "无广告", 6 | "Search": true, 7 | "title": "libvio", 8 | "name": "libvio", 9 | "Cover": "https://s2.loli.net/2023/12/28/KoJRfMV4DsgNTl9.png", 10 | "api": "syncnextPlugin://https://raw.githubusercontent.com/Quinndark/syncnextPlugin/main/alpha_v2/libvio.json" 11 | }, 12 | { 13 | "id": "6052f8ef-c731-4ba7-a551-9b6950157fb0", 14 | "Top": true, 15 | "note": "在线动漫资源门户漫", 16 | "Search": true, 17 | "title": "anfuns", 18 | "name": "anfuns", 19 | "Cover": "https://bj.bcebos.com/baidu-rmb-video-cover-1/5735e9da868abdd0c0865eb3948d25e8.png", 20 | "api": "syncnextPlugin://https://raw.githubusercontent.com/Quinndark/syncnextPlugin/main/alpha_v2/anfuns.json" 21 | }, 22 | { 23 | "id": "AEE28239-B325-A9A3-CBA6-733530EB4C89", 24 | "Top": true, 25 | "note": "grigri动漫", 26 | "Search": true, 27 | "name": "grigri动漫", 28 | "Cover": "https://s2.loli.net/2023/12/28/HIJvdf8AlzDw1B4.png", 29 | "api": "syncnextPlugin://https://raw.githubusercontent.com/Quinndark/syncnextPlugin/main/alpha_v2/grigri.json" 30 | }, 31 | { 32 | "id": "9ac32fd6-0734-468b-8afc-257b02f30bd8", 33 | "Top": true, 34 | "note": "1080P 3M", 35 | "name": "哔嘀影视", 36 | "api": "syncnextPlugin://https://raw.githubusercontent.com/icy37785/syncnextPlugin/main/alpha_v2/bdys.json" 37 | }, 38 | { 39 | "id": "18ffea3a-dfcd-4e95-bf18-f65166ffa0c6", 40 | "Top": true, 41 | "note": "在线观看最新美剧", 42 | "name": "在线之家", 43 | "Cover": "https://s2.loli.net/2023/12/28/qP7yAGswkvB2nDU.png", 44 | "api": "syncnextPlugin://https://raw.githubusercontent.com/Quinndark/syncnextPlugin/main/alpha_v2/zxzj.json" 45 | } 46 | ] --------------------------------------------------------------------------------