[openload] Add support for oload.press (#21135)
[youtube-dl] / youtube_dl / extractor / openload.py
1 # coding: utf-8
2 from __future__ import unicode_literals
3
4 import json
5 import os
6 import random
7 import re
8 import subprocess
9 import tempfile
10
11 from .common import InfoExtractor
12 from ..compat import (
13     compat_urlparse,
14     compat_kwargs,
15 )
16 from ..utils import (
17     check_executable,
18     determine_ext,
19     encodeArgument,
20     ExtractorError,
21     get_element_by_id,
22     get_exe_version,
23     is_outdated_version,
24     std_headers,
25 )
26
27
28 def cookie_to_dict(cookie):
29     cookie_dict = {
30         'name': cookie.name,
31         'value': cookie.value,
32     }
33     if cookie.port_specified:
34         cookie_dict['port'] = cookie.port
35     if cookie.domain_specified:
36         cookie_dict['domain'] = cookie.domain
37     if cookie.path_specified:
38         cookie_dict['path'] = cookie.path
39     if cookie.expires is not None:
40         cookie_dict['expires'] = cookie.expires
41     if cookie.secure is not None:
42         cookie_dict['secure'] = cookie.secure
43     if cookie.discard is not None:
44         cookie_dict['discard'] = cookie.discard
45     try:
46         if (cookie.has_nonstandard_attr('httpOnly')
47                 or cookie.has_nonstandard_attr('httponly')
48                 or cookie.has_nonstandard_attr('HttpOnly')):
49             cookie_dict['httponly'] = True
50     except TypeError:
51         pass
52     return cookie_dict
53
54
55 def cookie_jar_to_list(cookie_jar):
56     return [cookie_to_dict(cookie) for cookie in cookie_jar]
57
58
59 class PhantomJSwrapper(object):
60     """PhantomJS wrapper class
61
62     This class is experimental.
63     """
64
65     _TEMPLATE = r'''
66         phantom.onError = function(msg, trace) {{
67           var msgStack = ['PHANTOM ERROR: ' + msg];
68           if(trace && trace.length) {{
69             msgStack.push('TRACE:');
70             trace.forEach(function(t) {{
71               msgStack.push(' -> ' + (t.file || t.sourceURL) + ': ' + t.line
72                 + (t.function ? ' (in function ' + t.function +')' : ''));
73             }});
74           }}
75           console.error(msgStack.join('\n'));
76           phantom.exit(1);
77         }};
78         var page = require('webpage').create();
79         var fs = require('fs');
80         var read = {{ mode: 'r', charset: 'utf-8' }};
81         var write = {{ mode: 'w', charset: 'utf-8' }};
82         JSON.parse(fs.read("{cookies}", read)).forEach(function(x) {{
83           phantom.addCookie(x);
84         }});
85         page.settings.resourceTimeout = {timeout};
86         page.settings.userAgent = "{ua}";
87         page.onLoadStarted = function() {{
88           page.evaluate(function() {{
89             delete window._phantom;
90             delete window.callPhantom;
91           }});
92         }};
93         var saveAndExit = function() {{
94           fs.write("{html}", page.content, write);
95           fs.write("{cookies}", JSON.stringify(phantom.cookies), write);
96           phantom.exit();
97         }};
98         page.onLoadFinished = function(status) {{
99           if(page.url === "") {{
100             page.setContent(fs.read("{html}", read), "{url}");
101           }}
102           else {{
103             {jscode}
104           }}
105         }};
106         page.open("");
107     '''
108
109     _TMP_FILE_NAMES = ['script', 'html', 'cookies']
110
111     @staticmethod
112     def _version():
113         return get_exe_version('phantomjs', version_re=r'([0-9.]+)')
114
115     def __init__(self, extractor, required_version=None, timeout=10000):
116         self._TMP_FILES = {}
117
118         self.exe = check_executable('phantomjs', ['-v'])
119         if not self.exe:
120             raise ExtractorError('PhantomJS executable not found in PATH, '
121                                  'download it from http://phantomjs.org',
122                                  expected=True)
123
124         self.extractor = extractor
125
126         if required_version:
127             version = self._version()
128             if is_outdated_version(version, required_version):
129                 self.extractor._downloader.report_warning(
130                     'Your copy of PhantomJS is outdated, update it to version '
131                     '%s or newer if you encounter any errors.' % required_version)
132
133         self.options = {
134             'timeout': timeout,
135         }
136         for name in self._TMP_FILE_NAMES:
137             tmp = tempfile.NamedTemporaryFile(delete=False)
138             tmp.close()
139             self._TMP_FILES[name] = tmp
140
141     def __del__(self):
142         for name in self._TMP_FILE_NAMES:
143             try:
144                 os.remove(self._TMP_FILES[name].name)
145             except (IOError, OSError, KeyError):
146                 pass
147
148     def _save_cookies(self, url):
149         cookies = cookie_jar_to_list(self.extractor._downloader.cookiejar)
150         for cookie in cookies:
151             if 'path' not in cookie:
152                 cookie['path'] = '/'
153             if 'domain' not in cookie:
154                 cookie['domain'] = compat_urlparse.urlparse(url).netloc
155         with open(self._TMP_FILES['cookies'].name, 'wb') as f:
156             f.write(json.dumps(cookies).encode('utf-8'))
157
158     def _load_cookies(self):
159         with open(self._TMP_FILES['cookies'].name, 'rb') as f:
160             cookies = json.loads(f.read().decode('utf-8'))
161         for cookie in cookies:
162             if cookie['httponly'] is True:
163                 cookie['rest'] = {'httpOnly': None}
164             if 'expiry' in cookie:
165                 cookie['expire_time'] = cookie['expiry']
166             self.extractor._set_cookie(**compat_kwargs(cookie))
167
168     def get(self, url, html=None, video_id=None, note=None, note2='Executing JS on webpage', headers={}, jscode='saveAndExit();'):
169         """
170         Downloads webpage (if needed) and executes JS
171
172         Params:
173             url: website url
174             html: optional, html code of website
175             video_id: video id
176             note: optional, displayed when downloading webpage
177             note2: optional, displayed when executing JS
178             headers: custom http headers
179             jscode: code to be executed when page is loaded
180
181         Returns tuple with:
182             * downloaded website (after JS execution)
183             * anything you print with `console.log` (but not inside `page.execute`!)
184
185         In most cases you don't need to add any `jscode`.
186         It is executed in `page.onLoadFinished`.
187         `saveAndExit();` is mandatory, use it instead of `phantom.exit()`
188         It is possible to wait for some element on the webpage, for example:
189             var check = function() {
190               var elementFound = page.evaluate(function() {
191                 return document.querySelector('#b.done') !== null;
192               });
193               if(elementFound)
194                 saveAndExit();
195               else
196                 window.setTimeout(check, 500);
197             }
198
199             page.evaluate(function(){
200               document.querySelector('#a').click();
201             });
202             check();
203         """
204         if 'saveAndExit();' not in jscode:
205             raise ExtractorError('`saveAndExit();` not found in `jscode`')
206         if not html:
207             html = self.extractor._download_webpage(url, video_id, note=note, headers=headers)
208         with open(self._TMP_FILES['html'].name, 'wb') as f:
209             f.write(html.encode('utf-8'))
210
211         self._save_cookies(url)
212
213         replaces = self.options
214         replaces['url'] = url
215         user_agent = headers.get('User-Agent') or std_headers['User-Agent']
216         replaces['ua'] = user_agent.replace('"', '\\"')
217         replaces['jscode'] = jscode
218
219         for x in self._TMP_FILE_NAMES:
220             replaces[x] = self._TMP_FILES[x].name.replace('\\', '\\\\').replace('"', '\\"')
221
222         with open(self._TMP_FILES['script'].name, 'wb') as f:
223             f.write(self._TEMPLATE.format(**replaces).encode('utf-8'))
224
225         if video_id is None:
226             self.extractor.to_screen('%s' % (note2,))
227         else:
228             self.extractor.to_screen('%s: %s' % (video_id, note2))
229
230         p = subprocess.Popen([
231             self.exe, '--ssl-protocol=any',
232             self._TMP_FILES['script'].name
233         ], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
234         out, err = p.communicate()
235         if p.returncode != 0:
236             raise ExtractorError(
237                 'Executing JS failed\n:' + encodeArgument(err))
238         with open(self._TMP_FILES['html'].name, 'rb') as f:
239             html = f.read().decode('utf-8')
240
241         self._load_cookies()
242
243         return (html, encodeArgument(out))
244
245
246 class OpenloadIE(InfoExtractor):
247     _DOMAINS = r'(?:openload\.(?:co|io|link|pw)|oload\.(?:tv|stream|site|xyz|win|download|cloud|cc|icu|fun|club|info|press|pw|live|space|services)|oladblock\.(?:services|xyz|me)|openloed\.co)'
248     _VALID_URL = r'''(?x)
249                     https?://
250                         (?P<host>
251                             (?:www\.)?
252                             %s
253                         )/
254                         (?:f|embed)/
255                         (?P<id>[a-zA-Z0-9-_]+)
256                     ''' % _DOMAINS
257     _EMBED_WORD = 'embed'
258     _STREAM_WORD = 'f'
259     _REDIR_WORD = 'stream'
260     _URL_IDS = ('streamurl', 'streamuri', 'streamurj')
261     _TESTS = [{
262         'url': 'https://openload.co/f/kUEfGclsU9o',
263         'md5': 'bf1c059b004ebc7a256f89408e65c36e',
264         'info_dict': {
265             'id': 'kUEfGclsU9o',
266             'ext': 'mp4',
267             'title': 'skyrim_no-audio_1080.mp4',
268             'thumbnail': r're:^https?://.*\.jpg$',
269         },
270     }, {
271         'url': 'https://openload.co/embed/rjC09fkPLYs',
272         'info_dict': {
273             'id': 'rjC09fkPLYs',
274             'ext': 'mp4',
275             'title': 'movie.mp4',
276             'thumbnail': r're:^https?://.*\.jpg$',
277             'subtitles': {
278                 'en': [{
279                     'ext': 'vtt',
280                 }],
281             },
282         },
283         'params': {
284             'skip_download': True,  # test subtitles only
285         },
286     }, {
287         'url': 'https://openload.co/embed/kUEfGclsU9o/skyrim_no-audio_1080.mp4',
288         'only_matching': True,
289     }, {
290         'url': 'https://openload.io/f/ZAn6oz-VZGE/',
291         'only_matching': True,
292     }, {
293         'url': 'https://openload.co/f/_-ztPaZtMhM/',
294         'only_matching': True,
295     }, {
296         # unavailable via https://openload.co/f/Sxz5sADo82g/, different layout
297         # for title and ext
298         'url': 'https://openload.co/embed/Sxz5sADo82g/',
299         'only_matching': True,
300     }, {
301         # unavailable via https://openload.co/embed/e-Ixz9ZR5L0/ but available
302         # via https://openload.co/f/e-Ixz9ZR5L0/
303         'url': 'https://openload.co/f/e-Ixz9ZR5L0/',
304         'only_matching': True,
305     }, {
306         'url': 'https://oload.tv/embed/KnG-kKZdcfY/',
307         'only_matching': True,
308     }, {
309         'url': 'http://www.openload.link/f/KnG-kKZdcfY',
310         'only_matching': True,
311     }, {
312         'url': 'https://oload.stream/f/KnG-kKZdcfY',
313         'only_matching': True,
314     }, {
315         'url': 'https://oload.xyz/f/WwRBpzW8Wtk',
316         'only_matching': True,
317     }, {
318         'url': 'https://oload.win/f/kUEfGclsU9o',
319         'only_matching': True,
320     }, {
321         'url': 'https://oload.download/f/kUEfGclsU9o',
322         'only_matching': True,
323     }, {
324         'url': 'https://oload.cloud/f/4ZDnBXRWiB8',
325         'only_matching': True,
326     }, {
327         # Its title has not got its extension but url has it
328         'url': 'https://oload.download/f/N4Otkw39VCw/Tomb.Raider.2018.HDRip.XviD.AC3-EVO.avi.mp4',
329         'only_matching': True,
330     }, {
331         'url': 'https://oload.cc/embed/5NEAbI2BDSk',
332         'only_matching': True,
333     }, {
334         'url': 'https://oload.icu/f/-_i4y_F_Hs8',
335         'only_matching': True,
336     }, {
337         'url': 'https://oload.fun/f/gb6G1H4sHXY',
338         'only_matching': True,
339     }, {
340         'url': 'https://oload.club/f/Nr1L-aZ2dbQ',
341         'only_matching': True,
342     }, {
343         'url': 'https://oload.info/f/5NEAbI2BDSk',
344         'only_matching': True,
345     }, {
346         'url': 'https://openload.pw/f/WyKgK8s94N0',
347         'only_matching': True,
348     }, {
349         'url': 'https://oload.pw/f/WyKgK8s94N0',
350         'only_matching': True,
351     }, {
352         'url': 'https://oload.live/f/-Z58UZ-GR4M',
353         'only_matching': True,
354     }, {
355         'url': 'https://oload.space/f/IY4eZSst3u8/',
356         'only_matching': True,
357     }, {
358         'url': 'https://oload.services/embed/bs1NWj1dCag/',
359         'only_matching': True,
360     }, {
361         'url': 'https://oload.press/embed/drTBl1aOTvk/',
362         'only_matching': True,
363     }, {
364         'url': 'https://oladblock.services/f/b8NWEgkqNLI/',
365         'only_matching': True,
366     }, {
367         'url': 'https://oladblock.xyz/f/b8NWEgkqNLI/',
368         'only_matching': True,
369     }, {
370         'url': 'https://oladblock.me/f/b8NWEgkqNLI/',
371         'only_matching': True,
372     }, {
373         'url': 'https://openloed.co/f/b8NWEgkqNLI/',
374         'only_matching': True,
375     }]
376
377     _USER_AGENT_TPL = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/%s Safari/537.36'
378     _CHROME_VERSIONS = (
379         '74.0.3729.129',
380         '76.0.3780.3',
381         '76.0.3780.2',
382         '74.0.3729.128',
383         '76.0.3780.1',
384         '76.0.3780.0',
385         '75.0.3770.15',
386         '74.0.3729.127',
387         '74.0.3729.126',
388         '76.0.3779.1',
389         '76.0.3779.0',
390         '75.0.3770.14',
391         '74.0.3729.125',
392         '76.0.3778.1',
393         '76.0.3778.0',
394         '75.0.3770.13',
395         '74.0.3729.124',
396         '74.0.3729.123',
397         '73.0.3683.121',
398         '76.0.3777.1',
399         '76.0.3777.0',
400         '75.0.3770.12',
401         '74.0.3729.122',
402         '76.0.3776.4',
403         '75.0.3770.11',
404         '74.0.3729.121',
405         '76.0.3776.3',
406         '76.0.3776.2',
407         '73.0.3683.120',
408         '74.0.3729.120',
409         '74.0.3729.119',
410         '74.0.3729.118',
411         '76.0.3776.1',
412         '76.0.3776.0',
413         '76.0.3775.5',
414         '75.0.3770.10',
415         '74.0.3729.117',
416         '76.0.3775.4',
417         '76.0.3775.3',
418         '74.0.3729.116',
419         '75.0.3770.9',
420         '76.0.3775.2',
421         '76.0.3775.1',
422         '76.0.3775.0',
423         '75.0.3770.8',
424         '74.0.3729.115',
425         '74.0.3729.114',
426         '76.0.3774.1',
427         '76.0.3774.0',
428         '75.0.3770.7',
429         '74.0.3729.113',
430         '74.0.3729.112',
431         '74.0.3729.111',
432         '76.0.3773.1',
433         '76.0.3773.0',
434         '75.0.3770.6',
435         '74.0.3729.110',
436         '74.0.3729.109',
437         '76.0.3772.1',
438         '76.0.3772.0',
439         '75.0.3770.5',
440         '74.0.3729.108',
441         '74.0.3729.107',
442         '76.0.3771.1',
443         '76.0.3771.0',
444         '75.0.3770.4',
445         '74.0.3729.106',
446         '74.0.3729.105',
447         '75.0.3770.3',
448         '74.0.3729.104',
449         '74.0.3729.103',
450         '74.0.3729.102',
451         '75.0.3770.2',
452         '74.0.3729.101',
453         '75.0.3770.1',
454         '75.0.3770.0',
455         '74.0.3729.100',
456         '75.0.3769.5',
457         '75.0.3769.4',
458         '74.0.3729.99',
459         '75.0.3769.3',
460         '75.0.3769.2',
461         '75.0.3768.6',
462         '74.0.3729.98',
463         '75.0.3769.1',
464         '75.0.3769.0',
465         '74.0.3729.97',
466         '73.0.3683.119',
467         '73.0.3683.118',
468         '74.0.3729.96',
469         '75.0.3768.5',
470         '75.0.3768.4',
471         '75.0.3768.3',
472         '75.0.3768.2',
473         '74.0.3729.95',
474         '74.0.3729.94',
475         '75.0.3768.1',
476         '75.0.3768.0',
477         '74.0.3729.93',
478         '74.0.3729.92',
479         '73.0.3683.117',
480         '74.0.3729.91',
481         '75.0.3766.3',
482         '74.0.3729.90',
483         '75.0.3767.2',
484         '75.0.3767.1',
485         '75.0.3767.0',
486         '74.0.3729.89',
487         '73.0.3683.116',
488         '75.0.3766.2',
489         '74.0.3729.88',
490         '75.0.3766.1',
491         '75.0.3766.0',
492         '74.0.3729.87',
493         '73.0.3683.115',
494         '74.0.3729.86',
495         '75.0.3765.1',
496         '75.0.3765.0',
497         '74.0.3729.85',
498         '73.0.3683.114',
499         '74.0.3729.84',
500         '75.0.3764.1',
501         '75.0.3764.0',
502         '74.0.3729.83',
503         '73.0.3683.113',
504         '75.0.3763.2',
505         '75.0.3761.4',
506         '74.0.3729.82',
507         '75.0.3763.1',
508         '75.0.3763.0',
509         '74.0.3729.81',
510         '73.0.3683.112',
511         '75.0.3762.1',
512         '75.0.3762.0',
513         '74.0.3729.80',
514         '75.0.3761.3',
515         '74.0.3729.79',
516         '73.0.3683.111',
517         '75.0.3761.2',
518         '74.0.3729.78',
519         '74.0.3729.77',
520         '75.0.3761.1',
521         '75.0.3761.0',
522         '73.0.3683.110',
523         '74.0.3729.76',
524         '74.0.3729.75',
525         '75.0.3760.0',
526         '74.0.3729.74',
527         '75.0.3759.8',
528         '75.0.3759.7',
529         '75.0.3759.6',
530         '74.0.3729.73',
531         '75.0.3759.5',
532         '74.0.3729.72',
533         '73.0.3683.109',
534         '75.0.3759.4',
535         '75.0.3759.3',
536         '74.0.3729.71',
537         '75.0.3759.2',
538         '74.0.3729.70',
539         '73.0.3683.108',
540         '74.0.3729.69',
541         '75.0.3759.1',
542         '75.0.3759.0',
543         '74.0.3729.68',
544         '73.0.3683.107',
545         '74.0.3729.67',
546         '75.0.3758.1',
547         '75.0.3758.0',
548         '74.0.3729.66',
549         '73.0.3683.106',
550         '74.0.3729.65',
551         '75.0.3757.1',
552         '75.0.3757.0',
553         '74.0.3729.64',
554         '73.0.3683.105',
555         '74.0.3729.63',
556         '75.0.3756.1',
557         '75.0.3756.0',
558         '74.0.3729.62',
559         '73.0.3683.104',
560         '75.0.3755.3',
561         '75.0.3755.2',
562         '73.0.3683.103',
563         '75.0.3755.1',
564         '75.0.3755.0',
565         '74.0.3729.61',
566         '73.0.3683.102',
567         '74.0.3729.60',
568         '75.0.3754.2',
569         '74.0.3729.59',
570         '75.0.3753.4',
571         '74.0.3729.58',
572         '75.0.3754.1',
573         '75.0.3754.0',
574         '74.0.3729.57',
575         '73.0.3683.101',
576         '75.0.3753.3',
577         '75.0.3752.2',
578         '75.0.3753.2',
579         '74.0.3729.56',
580         '75.0.3753.1',
581         '75.0.3753.0',
582         '74.0.3729.55',
583         '73.0.3683.100',
584         '74.0.3729.54',
585         '75.0.3752.1',
586         '75.0.3752.0',
587         '74.0.3729.53',
588         '73.0.3683.99',
589         '74.0.3729.52',
590         '75.0.3751.1',
591         '75.0.3751.0',
592         '74.0.3729.51',
593         '73.0.3683.98',
594         '74.0.3729.50',
595         '75.0.3750.0',
596         '74.0.3729.49',
597         '74.0.3729.48',
598         '74.0.3729.47',
599         '75.0.3749.3',
600         '74.0.3729.46',
601         '73.0.3683.97',
602         '75.0.3749.2',
603         '74.0.3729.45',
604         '75.0.3749.1',
605         '75.0.3749.0',
606         '74.0.3729.44',
607         '73.0.3683.96',
608         '74.0.3729.43',
609         '74.0.3729.42',
610         '75.0.3748.1',
611         '75.0.3748.0',
612         '74.0.3729.41',
613         '75.0.3747.1',
614         '73.0.3683.95',
615         '75.0.3746.4',
616         '74.0.3729.40',
617         '74.0.3729.39',
618         '75.0.3747.0',
619         '75.0.3746.3',
620         '75.0.3746.2',
621         '74.0.3729.38',
622         '75.0.3746.1',
623         '75.0.3746.0',
624         '74.0.3729.37',
625         '73.0.3683.94',
626         '75.0.3745.5',
627         '75.0.3745.4',
628         '75.0.3745.3',
629         '75.0.3745.2',
630         '74.0.3729.36',
631         '75.0.3745.1',
632         '75.0.3745.0',
633         '75.0.3744.2',
634         '74.0.3729.35',
635         '73.0.3683.93',
636         '74.0.3729.34',
637         '75.0.3744.1',
638         '75.0.3744.0',
639         '74.0.3729.33',
640         '73.0.3683.92',
641         '74.0.3729.32',
642         '74.0.3729.31',
643         '73.0.3683.91',
644         '75.0.3741.2',
645         '75.0.3740.5',
646         '74.0.3729.30',
647         '75.0.3741.1',
648         '75.0.3741.0',
649         '74.0.3729.29',
650         '75.0.3740.4',
651         '73.0.3683.90',
652         '74.0.3729.28',
653         '75.0.3740.3',
654         '73.0.3683.89',
655         '75.0.3740.2',
656         '74.0.3729.27',
657         '75.0.3740.1',
658         '75.0.3740.0',
659         '74.0.3729.26',
660         '73.0.3683.88',
661         '73.0.3683.87',
662         '74.0.3729.25',
663         '75.0.3739.1',
664         '75.0.3739.0',
665         '73.0.3683.86',
666         '74.0.3729.24',
667         '73.0.3683.85',
668         '75.0.3738.4',
669         '75.0.3738.3',
670         '75.0.3738.2',
671         '75.0.3738.1',
672         '75.0.3738.0',
673         '74.0.3729.23',
674         '73.0.3683.84',
675         '74.0.3729.22',
676         '74.0.3729.21',
677         '75.0.3737.1',
678         '75.0.3737.0',
679         '74.0.3729.20',
680         '73.0.3683.83',
681         '74.0.3729.19',
682         '75.0.3736.1',
683         '75.0.3736.0',
684         '74.0.3729.18',
685         '73.0.3683.82',
686         '74.0.3729.17',
687         '75.0.3735.1',
688         '75.0.3735.0',
689         '74.0.3729.16',
690         '73.0.3683.81',
691         '75.0.3734.1',
692         '75.0.3734.0',
693         '74.0.3729.15',
694         '73.0.3683.80',
695         '74.0.3729.14',
696         '75.0.3733.1',
697         '75.0.3733.0',
698         '75.0.3732.1',
699         '74.0.3729.13',
700         '74.0.3729.12',
701         '73.0.3683.79',
702         '74.0.3729.11',
703         '75.0.3732.0',
704         '74.0.3729.10',
705         '73.0.3683.78',
706         '74.0.3729.9',
707         '74.0.3729.8',
708         '74.0.3729.7',
709         '75.0.3731.3',
710         '75.0.3731.2',
711         '75.0.3731.0',
712         '74.0.3729.6',
713         '73.0.3683.77',
714         '73.0.3683.76',
715         '75.0.3730.5',
716         '75.0.3730.4',
717         '73.0.3683.75',
718         '74.0.3729.5',
719         '73.0.3683.74',
720         '75.0.3730.3',
721         '75.0.3730.2',
722         '74.0.3729.4',
723         '73.0.3683.73',
724         '73.0.3683.72',
725         '75.0.3730.1',
726         '75.0.3730.0',
727         '74.0.3729.3',
728         '73.0.3683.71',
729         '74.0.3729.2',
730         '73.0.3683.70',
731         '74.0.3729.1',
732         '74.0.3729.0',
733         '74.0.3726.4',
734         '73.0.3683.69',
735         '74.0.3726.3',
736         '74.0.3728.0',
737         '74.0.3726.2',
738         '73.0.3683.68',
739         '74.0.3726.1',
740         '74.0.3726.0',
741         '74.0.3725.4',
742         '73.0.3683.67',
743         '73.0.3683.66',
744         '74.0.3725.3',
745         '74.0.3725.2',
746         '74.0.3725.1',
747         '74.0.3724.8',
748         '74.0.3725.0',
749         '73.0.3683.65',
750         '74.0.3724.7',
751         '74.0.3724.6',
752         '74.0.3724.5',
753         '74.0.3724.4',
754         '74.0.3724.3',
755         '74.0.3724.2',
756         '74.0.3724.1',
757         '74.0.3724.0',
758         '73.0.3683.64',
759         '74.0.3723.1',
760         '74.0.3723.0',
761         '73.0.3683.63',
762         '74.0.3722.1',
763         '74.0.3722.0',
764         '73.0.3683.62',
765         '74.0.3718.9',
766         '74.0.3702.3',
767         '74.0.3721.3',
768         '74.0.3721.2',
769         '74.0.3721.1',
770         '74.0.3721.0',
771         '74.0.3720.6',
772         '73.0.3683.61',
773         '72.0.3626.122',
774         '73.0.3683.60',
775         '74.0.3720.5',
776         '72.0.3626.121',
777         '74.0.3718.8',
778         '74.0.3720.4',
779         '74.0.3720.3',
780         '74.0.3718.7',
781         '74.0.3720.2',
782         '74.0.3720.1',
783         '74.0.3720.0',
784         '74.0.3718.6',
785         '74.0.3719.5',
786         '73.0.3683.59',
787         '74.0.3718.5',
788         '74.0.3718.4',
789         '74.0.3719.4',
790         '74.0.3719.3',
791         '74.0.3719.2',
792         '74.0.3719.1',
793         '73.0.3683.58',
794         '74.0.3719.0',
795         '73.0.3683.57',
796         '73.0.3683.56',
797         '74.0.3718.3',
798         '73.0.3683.55',
799         '74.0.3718.2',
800         '74.0.3718.1',
801         '74.0.3718.0',
802         '73.0.3683.54',
803         '74.0.3717.2',
804         '73.0.3683.53',
805         '74.0.3717.1',
806         '74.0.3717.0',
807         '73.0.3683.52',
808         '74.0.3716.1',
809         '74.0.3716.0',
810         '73.0.3683.51',
811         '74.0.3715.1',
812         '74.0.3715.0',
813         '73.0.3683.50',
814         '74.0.3711.2',
815         '74.0.3714.2',
816         '74.0.3713.3',
817         '74.0.3714.1',
818         '74.0.3714.0',
819         '73.0.3683.49',
820         '74.0.3713.1',
821         '74.0.3713.0',
822         '72.0.3626.120',
823         '73.0.3683.48',
824         '74.0.3712.2',
825         '74.0.3712.1',
826         '74.0.3712.0',
827         '73.0.3683.47',
828         '72.0.3626.119',
829         '73.0.3683.46',
830         '74.0.3710.2',
831         '72.0.3626.118',
832         '74.0.3711.1',
833         '74.0.3711.0',
834         '73.0.3683.45',
835         '72.0.3626.117',
836         '74.0.3710.1',
837         '74.0.3710.0',
838         '73.0.3683.44',
839         '72.0.3626.116',
840         '74.0.3709.1',
841         '74.0.3709.0',
842         '74.0.3704.9',
843         '73.0.3683.43',
844         '72.0.3626.115',
845         '74.0.3704.8',
846         '74.0.3704.7',
847         '74.0.3708.0',
848         '74.0.3706.7',
849         '74.0.3704.6',
850         '73.0.3683.42',
851         '72.0.3626.114',
852         '74.0.3706.6',
853         '72.0.3626.113',
854         '74.0.3704.5',
855         '74.0.3706.5',
856         '74.0.3706.4',
857         '74.0.3706.3',
858         '74.0.3706.2',
859         '74.0.3706.1',
860         '74.0.3706.0',
861         '73.0.3683.41',
862         '72.0.3626.112',
863         '74.0.3705.1',
864         '74.0.3705.0',
865         '73.0.3683.40',
866         '72.0.3626.111',
867         '73.0.3683.39',
868         '74.0.3704.4',
869         '73.0.3683.38',
870         '74.0.3704.3',
871         '74.0.3704.2',
872         '74.0.3704.1',
873         '74.0.3704.0',
874         '73.0.3683.37',
875         '72.0.3626.110',
876         '72.0.3626.109',
877         '74.0.3703.3',
878         '74.0.3703.2',
879         '73.0.3683.36',
880         '74.0.3703.1',
881         '74.0.3703.0',
882         '73.0.3683.35',
883         '72.0.3626.108',
884         '74.0.3702.2',
885         '74.0.3699.3',
886         '74.0.3702.1',
887         '74.0.3702.0',
888         '73.0.3683.34',
889         '72.0.3626.107',
890         '73.0.3683.33',
891         '74.0.3701.1',
892         '74.0.3701.0',
893         '73.0.3683.32',
894         '73.0.3683.31',
895         '72.0.3626.105',
896         '74.0.3700.1',
897         '74.0.3700.0',
898         '73.0.3683.29',
899         '72.0.3626.103',
900         '74.0.3699.2',
901         '74.0.3699.1',
902         '74.0.3699.0',
903         '73.0.3683.28',
904         '72.0.3626.102',
905         '73.0.3683.27',
906         '73.0.3683.26',
907         '74.0.3698.0',
908         '74.0.3696.2',
909         '72.0.3626.101',
910         '73.0.3683.25',
911         '74.0.3696.1',
912         '74.0.3696.0',
913         '74.0.3694.8',
914         '72.0.3626.100',
915         '74.0.3694.7',
916         '74.0.3694.6',
917         '74.0.3694.5',
918         '74.0.3694.4',
919         '72.0.3626.99',
920         '72.0.3626.98',
921         '74.0.3694.3',
922         '73.0.3683.24',
923         '72.0.3626.97',
924         '72.0.3626.96',
925         '72.0.3626.95',
926         '73.0.3683.23',
927         '72.0.3626.94',
928         '73.0.3683.22',
929         '73.0.3683.21',
930         '72.0.3626.93',
931         '74.0.3694.2',
932         '72.0.3626.92',
933         '74.0.3694.1',
934         '74.0.3694.0',
935         '74.0.3693.6',
936         '73.0.3683.20',
937         '72.0.3626.91',
938         '74.0.3693.5',
939         '74.0.3693.4',
940         '74.0.3693.3',
941         '74.0.3693.2',
942         '73.0.3683.19',
943         '74.0.3693.1',
944         '74.0.3693.0',
945         '73.0.3683.18',
946         '72.0.3626.90',
947         '74.0.3692.1',
948         '74.0.3692.0',
949         '73.0.3683.17',
950         '72.0.3626.89',
951         '74.0.3687.3',
952         '74.0.3691.1',
953         '74.0.3691.0',
954         '73.0.3683.16',
955         '72.0.3626.88',
956         '72.0.3626.87',
957         '73.0.3683.15',
958         '74.0.3690.1',
959         '74.0.3690.0',
960         '73.0.3683.14',
961         '72.0.3626.86',
962         '73.0.3683.13',
963         '73.0.3683.12',
964         '74.0.3689.1',
965         '74.0.3689.0',
966         '73.0.3683.11',
967         '72.0.3626.85',
968         '73.0.3683.10',
969         '72.0.3626.84',
970         '73.0.3683.9',
971         '74.0.3688.1',
972         '74.0.3688.0',
973         '73.0.3683.8',
974         '72.0.3626.83',
975         '74.0.3687.2',
976         '74.0.3687.1',
977         '74.0.3687.0',
978         '73.0.3683.7',
979         '72.0.3626.82',
980         '74.0.3686.4',
981         '72.0.3626.81',
982         '74.0.3686.3',
983         '74.0.3686.2',
984         '74.0.3686.1',
985         '74.0.3686.0',
986         '73.0.3683.6',
987         '72.0.3626.80',
988         '74.0.3685.1',
989         '74.0.3685.0',
990         '73.0.3683.5',
991         '72.0.3626.79',
992         '74.0.3684.1',
993         '74.0.3684.0',
994         '73.0.3683.4',
995         '72.0.3626.78',
996         '72.0.3626.77',
997         '73.0.3683.3',
998         '73.0.3683.2',
999         '72.0.3626.76',
1000         '73.0.3683.1',
1001         '73.0.3683.0',
1002         '72.0.3626.75',
1003         '71.0.3578.141',
1004         '73.0.3682.1',
1005         '73.0.3682.0',
1006         '72.0.3626.74',
1007         '71.0.3578.140',
1008         '73.0.3681.4',
1009         '73.0.3681.3',
1010         '73.0.3681.2',
1011         '73.0.3681.1',
1012         '73.0.3681.0',
1013         '72.0.3626.73',
1014         '71.0.3578.139',
1015         '72.0.3626.72',
1016         '72.0.3626.71',
1017         '73.0.3680.1',
1018         '73.0.3680.0',
1019         '72.0.3626.70',
1020         '71.0.3578.138',
1021         '73.0.3678.2',
1022         '73.0.3679.1',
1023         '73.0.3679.0',
1024         '72.0.3626.69',
1025         '71.0.3578.137',
1026         '73.0.3678.1',
1027         '73.0.3678.0',
1028         '71.0.3578.136',
1029         '73.0.3677.1',
1030         '73.0.3677.0',
1031         '72.0.3626.68',
1032         '72.0.3626.67',
1033         '71.0.3578.135',
1034         '73.0.3676.1',
1035         '73.0.3676.0',
1036         '73.0.3674.2',
1037         '72.0.3626.66',
1038         '71.0.3578.134',
1039         '73.0.3674.1',
1040         '73.0.3674.0',
1041         '72.0.3626.65',
1042         '71.0.3578.133',
1043         '73.0.3673.2',
1044         '73.0.3673.1',
1045         '73.0.3673.0',
1046         '72.0.3626.64',
1047         '71.0.3578.132',
1048         '72.0.3626.63',
1049         '72.0.3626.62',
1050         '72.0.3626.61',
1051         '72.0.3626.60',
1052         '73.0.3672.1',
1053         '73.0.3672.0',
1054         '72.0.3626.59',
1055         '71.0.3578.131',
1056         '73.0.3671.3',
1057         '73.0.3671.2',
1058         '73.0.3671.1',
1059         '73.0.3671.0',
1060         '72.0.3626.58',
1061         '71.0.3578.130',
1062         '73.0.3670.1',
1063         '73.0.3670.0',
1064         '72.0.3626.57',
1065         '71.0.3578.129',
1066         '73.0.3669.1',
1067         '73.0.3669.0',
1068         '72.0.3626.56',
1069         '71.0.3578.128',
1070         '73.0.3668.2',
1071         '73.0.3668.1',
1072         '73.0.3668.0',
1073         '72.0.3626.55',
1074         '71.0.3578.127',
1075         '73.0.3667.2',
1076         '73.0.3667.1',
1077         '73.0.3667.0',
1078         '72.0.3626.54',
1079         '71.0.3578.126',
1080         '73.0.3666.1',
1081         '73.0.3666.0',
1082         '72.0.3626.53',
1083         '71.0.3578.125',
1084         '73.0.3665.4',
1085         '73.0.3665.3',
1086         '72.0.3626.52',
1087         '73.0.3665.2',
1088         '73.0.3664.4',
1089         '73.0.3665.1',
1090         '73.0.3665.0',
1091         '72.0.3626.51',
1092         '71.0.3578.124',
1093         '72.0.3626.50',
1094         '73.0.3664.3',
1095         '73.0.3664.2',
1096         '73.0.3664.1',
1097         '73.0.3664.0',
1098         '73.0.3663.2',
1099         '72.0.3626.49',
1100         '71.0.3578.123',
1101         '73.0.3663.1',
1102         '73.0.3663.0',
1103         '72.0.3626.48',
1104         '71.0.3578.122',
1105         '73.0.3662.1',
1106         '73.0.3662.0',
1107         '72.0.3626.47',
1108         '71.0.3578.121',
1109         '73.0.3661.1',
1110         '72.0.3626.46',
1111         '73.0.3661.0',
1112         '72.0.3626.45',
1113         '71.0.3578.120',
1114         '73.0.3660.2',
1115         '73.0.3660.1',
1116         '73.0.3660.0',
1117         '72.0.3626.44',
1118         '71.0.3578.119',
1119         '73.0.3659.1',
1120         '73.0.3659.0',
1121         '72.0.3626.43',
1122         '71.0.3578.118',
1123         '73.0.3658.1',
1124         '73.0.3658.0',
1125         '72.0.3626.42',
1126         '71.0.3578.117',
1127         '73.0.3657.1',
1128         '73.0.3657.0',
1129         '72.0.3626.41',
1130         '71.0.3578.116',
1131         '73.0.3656.1',
1132         '73.0.3656.0',
1133         '72.0.3626.40',
1134         '71.0.3578.115',
1135         '73.0.3655.1',
1136         '73.0.3655.0',
1137         '72.0.3626.39',
1138         '71.0.3578.114',
1139         '73.0.3654.1',
1140         '73.0.3654.0',
1141         '72.0.3626.38',
1142         '71.0.3578.113',
1143         '73.0.3653.1',
1144         '73.0.3653.0',
1145         '72.0.3626.37',
1146         '71.0.3578.112',
1147         '73.0.3652.1',
1148         '73.0.3652.0',
1149         '72.0.3626.36',
1150         '71.0.3578.111',
1151         '73.0.3651.1',
1152         '73.0.3651.0',
1153         '72.0.3626.35',
1154         '71.0.3578.110',
1155         '73.0.3650.1',
1156         '73.0.3650.0',
1157         '72.0.3626.34',
1158         '71.0.3578.109',
1159         '73.0.3649.1',
1160         '73.0.3649.0',
1161         '72.0.3626.33',
1162         '71.0.3578.108',
1163         '73.0.3648.2',
1164         '73.0.3648.1',
1165         '73.0.3648.0',
1166         '72.0.3626.32',
1167         '71.0.3578.107',
1168         '73.0.3647.2',
1169         '73.0.3647.1',
1170         '73.0.3647.0',
1171         '72.0.3626.31',
1172         '71.0.3578.106',
1173         '73.0.3635.3',
1174         '73.0.3646.2',
1175         '73.0.3646.1',
1176         '73.0.3646.0',
1177         '72.0.3626.30',
1178         '71.0.3578.105',
1179         '72.0.3626.29',
1180         '73.0.3645.2',
1181         '73.0.3645.1',
1182         '73.0.3645.0',
1183         '72.0.3626.28',
1184         '71.0.3578.104',
1185         '72.0.3626.27',
1186         '72.0.3626.26',
1187         '72.0.3626.25',
1188         '72.0.3626.24',
1189         '73.0.3644.0',
1190         '73.0.3643.2',
1191         '72.0.3626.23',
1192         '71.0.3578.103',
1193         '73.0.3643.1',
1194         '73.0.3643.0',
1195         '72.0.3626.22',
1196         '71.0.3578.102',
1197         '73.0.3642.1',
1198         '73.0.3642.0',
1199         '72.0.3626.21',
1200         '71.0.3578.101',
1201         '73.0.3641.1',
1202         '73.0.3641.0',
1203         '72.0.3626.20',
1204         '71.0.3578.100',
1205         '72.0.3626.19',
1206         '73.0.3640.1',
1207         '73.0.3640.0',
1208         '72.0.3626.18',
1209         '73.0.3639.1',
1210         '71.0.3578.99',
1211         '73.0.3639.0',
1212         '72.0.3626.17',
1213         '73.0.3638.2',
1214         '72.0.3626.16',
1215         '73.0.3638.1',
1216         '73.0.3638.0',
1217         '72.0.3626.15',
1218         '71.0.3578.98',
1219         '73.0.3635.2',
1220         '71.0.3578.97',
1221         '73.0.3637.1',
1222         '73.0.3637.0',
1223         '72.0.3626.14',
1224         '71.0.3578.96',
1225         '71.0.3578.95',
1226         '72.0.3626.13',
1227         '71.0.3578.94',
1228         '73.0.3636.2',
1229         '71.0.3578.93',
1230         '73.0.3636.1',
1231         '73.0.3636.0',
1232         '72.0.3626.12',
1233         '71.0.3578.92',
1234         '73.0.3635.1',
1235         '73.0.3635.0',
1236         '72.0.3626.11',
1237         '71.0.3578.91',
1238         '73.0.3634.2',
1239         '73.0.3634.1',
1240         '73.0.3634.0',
1241         '72.0.3626.10',
1242         '71.0.3578.90',
1243         '71.0.3578.89',
1244         '73.0.3633.2',
1245         '73.0.3633.1',
1246         '73.0.3633.0',
1247         '72.0.3610.4',
1248         '72.0.3626.9',
1249         '71.0.3578.88',
1250         '73.0.3632.5',
1251         '73.0.3632.4',
1252         '73.0.3632.3',
1253         '73.0.3632.2',
1254         '73.0.3632.1',
1255         '73.0.3632.0',
1256         '72.0.3626.8',
1257         '71.0.3578.87',
1258         '73.0.3631.2',
1259         '73.0.3631.1',
1260         '73.0.3631.0',
1261         '72.0.3626.7',
1262         '71.0.3578.86',
1263         '72.0.3626.6',
1264         '73.0.3630.1',
1265         '73.0.3630.0',
1266         '72.0.3626.5',
1267         '71.0.3578.85',
1268         '72.0.3626.4',
1269         '73.0.3628.3',
1270         '73.0.3628.2',
1271         '73.0.3629.1',
1272         '73.0.3629.0',
1273         '72.0.3626.3',
1274         '71.0.3578.84',
1275         '73.0.3628.1',
1276         '73.0.3628.0',
1277         '71.0.3578.83',
1278         '73.0.3627.1',
1279         '73.0.3627.0',
1280         '72.0.3626.2',
1281         '71.0.3578.82',
1282         '71.0.3578.81',
1283         '71.0.3578.80',
1284         '72.0.3626.1',
1285         '72.0.3626.0',
1286         '71.0.3578.79',
1287         '70.0.3538.124',
1288         '71.0.3578.78',
1289         '72.0.3623.4',
1290         '72.0.3625.2',
1291         '72.0.3625.1',
1292         '72.0.3625.0',
1293         '71.0.3578.77',
1294         '70.0.3538.123',
1295         '72.0.3624.4',
1296         '72.0.3624.3',
1297         '72.0.3624.2',
1298         '71.0.3578.76',
1299         '72.0.3624.1',
1300         '72.0.3624.0',
1301         '72.0.3623.3',
1302         '71.0.3578.75',
1303         '70.0.3538.122',
1304         '71.0.3578.74',
1305         '72.0.3623.2',
1306         '72.0.3610.3',
1307         '72.0.3623.1',
1308         '72.0.3623.0',
1309         '72.0.3622.3',
1310         '72.0.3622.2',
1311         '71.0.3578.73',
1312         '70.0.3538.121',
1313         '72.0.3622.1',
1314         '72.0.3622.0',
1315         '71.0.3578.72',
1316         '70.0.3538.120',
1317         '72.0.3621.1',
1318         '72.0.3621.0',
1319         '71.0.3578.71',
1320         '70.0.3538.119',
1321         '72.0.3620.1',
1322         '72.0.3620.0',
1323         '71.0.3578.70',
1324         '70.0.3538.118',
1325         '71.0.3578.69',
1326         '72.0.3619.1',
1327         '72.0.3619.0',
1328         '71.0.3578.68',
1329         '70.0.3538.117',
1330         '71.0.3578.67',
1331         '72.0.3618.1',
1332         '72.0.3618.0',
1333         '71.0.3578.66',
1334         '70.0.3538.116',
1335         '72.0.3617.1',
1336         '72.0.3617.0',
1337         '71.0.3578.65',
1338         '70.0.3538.115',
1339         '72.0.3602.3',
1340         '71.0.3578.64',
1341         '72.0.3616.1',
1342         '72.0.3616.0',
1343         '71.0.3578.63',
1344         '70.0.3538.114',
1345         '71.0.3578.62',
1346         '72.0.3615.1',
1347         '72.0.3615.0',
1348         '71.0.3578.61',
1349         '70.0.3538.113',
1350         '72.0.3614.1',
1351         '72.0.3614.0',
1352         '71.0.3578.60',
1353         '70.0.3538.112',
1354         '72.0.3613.1',
1355         '72.0.3613.0',
1356         '71.0.3578.59',
1357         '70.0.3538.111',
1358         '72.0.3612.2',
1359         '72.0.3612.1',
1360         '72.0.3612.0',
1361         '70.0.3538.110',
1362         '71.0.3578.58',
1363         '70.0.3538.109',
1364         '72.0.3611.2',
1365         '72.0.3611.1',
1366         '72.0.3611.0',
1367         '71.0.3578.57',
1368         '70.0.3538.108',
1369         '72.0.3610.2',
1370         '71.0.3578.56',
1371         '71.0.3578.55',
1372         '72.0.3610.1',
1373         '72.0.3610.0',
1374         '71.0.3578.54',
1375         '70.0.3538.107',
1376         '71.0.3578.53',
1377         '72.0.3609.3',
1378         '71.0.3578.52',
1379         '72.0.3609.2',
1380         '71.0.3578.51',
1381         '72.0.3608.5',
1382         '72.0.3609.1',
1383         '72.0.3609.0',
1384         '71.0.3578.50',
1385         '70.0.3538.106',
1386         '72.0.3608.4',
1387         '72.0.3608.3',
1388         '72.0.3608.2',
1389         '71.0.3578.49',
1390         '72.0.3608.1',
1391         '72.0.3608.0',
1392         '70.0.3538.105',
1393         '71.0.3578.48',
1394         '72.0.3607.1',
1395         '72.0.3607.0',
1396         '71.0.3578.47',
1397         '70.0.3538.104',
1398         '72.0.3606.2',
1399         '72.0.3606.1',
1400         '72.0.3606.0',
1401         '71.0.3578.46',
1402         '70.0.3538.103',
1403         '70.0.3538.102',
1404         '72.0.3605.3',
1405         '72.0.3605.2',
1406         '72.0.3605.1',
1407         '72.0.3605.0',
1408         '71.0.3578.45',
1409         '70.0.3538.101',
1410         '71.0.3578.44',
1411         '71.0.3578.43',
1412         '70.0.3538.100',
1413         '70.0.3538.99',
1414         '71.0.3578.42',
1415         '72.0.3604.1',
1416         '72.0.3604.0',
1417         '71.0.3578.41',
1418         '70.0.3538.98',
1419         '71.0.3578.40',
1420         '72.0.3603.2',
1421         '72.0.3603.1',
1422         '72.0.3603.0',
1423         '71.0.3578.39',
1424         '70.0.3538.97',
1425         '72.0.3602.2',
1426         '71.0.3578.38',
1427         '71.0.3578.37',
1428         '72.0.3602.1',
1429         '72.0.3602.0',
1430         '71.0.3578.36',
1431         '70.0.3538.96',
1432         '72.0.3601.1',
1433         '72.0.3601.0',
1434         '71.0.3578.35',
1435         '70.0.3538.95',
1436         '72.0.3600.1',
1437         '72.0.3600.0',
1438         '71.0.3578.34',
1439         '70.0.3538.94',
1440         '72.0.3599.3',
1441         '72.0.3599.2',
1442         '72.0.3599.1',
1443         '72.0.3599.0',
1444         '71.0.3578.33',
1445         '70.0.3538.93',
1446         '72.0.3598.1',
1447         '72.0.3598.0',
1448         '71.0.3578.32',
1449         '70.0.3538.87',
1450         '72.0.3597.1',
1451         '72.0.3597.0',
1452         '72.0.3596.2',
1453         '71.0.3578.31',
1454         '70.0.3538.86',
1455         '71.0.3578.30',
1456         '71.0.3578.29',
1457         '72.0.3596.1',
1458         '72.0.3596.0',
1459         '71.0.3578.28',
1460         '70.0.3538.85',
1461         '72.0.3595.2',
1462         '72.0.3591.3',
1463         '72.0.3595.1',
1464         '72.0.3595.0',
1465         '71.0.3578.27',
1466         '70.0.3538.84',
1467         '72.0.3594.1',
1468         '72.0.3594.0',
1469         '71.0.3578.26',
1470         '70.0.3538.83',
1471         '72.0.3593.2',
1472         '72.0.3593.1',
1473         '72.0.3593.0',
1474         '71.0.3578.25',
1475         '70.0.3538.82',
1476         '72.0.3589.3',
1477         '72.0.3592.2',
1478         '72.0.3592.1',
1479         '72.0.3592.0',
1480         '71.0.3578.24',
1481         '72.0.3589.2',
1482         '70.0.3538.81',
1483         '70.0.3538.80',
1484         '72.0.3591.2',
1485         '72.0.3591.1',
1486         '72.0.3591.0',
1487         '71.0.3578.23',
1488         '70.0.3538.79',
1489         '71.0.3578.22',
1490         '72.0.3590.1',
1491         '72.0.3590.0',
1492         '71.0.3578.21',
1493         '70.0.3538.78',
1494         '70.0.3538.77',
1495         '72.0.3589.1',
1496         '72.0.3589.0',
1497         '71.0.3578.20',
1498         '70.0.3538.76',
1499         '71.0.3578.19',
1500         '70.0.3538.75',
1501         '72.0.3588.1',
1502         '72.0.3588.0',
1503         '71.0.3578.18',
1504         '70.0.3538.74',
1505         '72.0.3586.2',
1506         '72.0.3587.0',
1507         '71.0.3578.17',
1508         '70.0.3538.73',
1509         '72.0.3586.1',
1510         '72.0.3586.0',
1511         '71.0.3578.16',
1512         '70.0.3538.72',
1513         '72.0.3585.1',
1514         '72.0.3585.0',
1515         '71.0.3578.15',
1516         '70.0.3538.71',
1517         '71.0.3578.14',
1518         '72.0.3584.1',
1519         '72.0.3584.0',
1520         '71.0.3578.13',
1521         '70.0.3538.70',
1522         '72.0.3583.2',
1523         '71.0.3578.12',
1524         '72.0.3583.1',
1525         '72.0.3583.0',
1526         '71.0.3578.11',
1527         '70.0.3538.69',
1528         '71.0.3578.10',
1529         '72.0.3582.0',
1530         '72.0.3581.4',
1531         '71.0.3578.9',
1532         '70.0.3538.67',
1533         '72.0.3581.3',
1534         '72.0.3581.2',
1535         '72.0.3581.1',
1536         '72.0.3581.0',
1537         '71.0.3578.8',
1538         '70.0.3538.66',
1539         '72.0.3580.1',
1540         '72.0.3580.0',
1541         '71.0.3578.7',
1542         '70.0.3538.65',
1543         '71.0.3578.6',
1544         '72.0.3579.1',
1545         '72.0.3579.0',
1546         '71.0.3578.5',
1547         '70.0.3538.64',
1548         '71.0.3578.4',
1549         '71.0.3578.3',
1550         '71.0.3578.2',
1551         '71.0.3578.1',
1552         '71.0.3578.0',
1553         '70.0.3538.63',
1554         '69.0.3497.128',
1555         '70.0.3538.62',
1556         '70.0.3538.61',
1557         '70.0.3538.60',
1558         '70.0.3538.59',
1559         '71.0.3577.1',
1560         '71.0.3577.0',
1561         '70.0.3538.58',
1562         '69.0.3497.127',
1563         '71.0.3576.2',
1564         '71.0.3576.1',
1565         '71.0.3576.0',
1566         '70.0.3538.57',
1567         '70.0.3538.56',
1568         '71.0.3575.2',
1569         '70.0.3538.55',
1570         '69.0.3497.126',
1571         '70.0.3538.54',
1572         '71.0.3575.1',
1573         '71.0.3575.0',
1574         '71.0.3574.1',
1575         '71.0.3574.0',
1576         '70.0.3538.53',
1577         '69.0.3497.125',
1578         '70.0.3538.52',
1579         '71.0.3573.1',
1580         '71.0.3573.0',
1581         '70.0.3538.51',
1582         '69.0.3497.124',
1583         '71.0.3572.1',
1584         '71.0.3572.0',
1585         '70.0.3538.50',
1586         '69.0.3497.123',
1587         '71.0.3571.2',
1588         '70.0.3538.49',
1589         '69.0.3497.122',
1590         '71.0.3571.1',
1591         '71.0.3571.0',
1592         '70.0.3538.48',
1593         '69.0.3497.121',
1594         '71.0.3570.1',
1595         '71.0.3570.0',
1596         '70.0.3538.47',
1597         '69.0.3497.120',
1598         '71.0.3568.2',
1599         '71.0.3569.1',
1600         '71.0.3569.0',
1601         '70.0.3538.46',
1602         '69.0.3497.119',
1603         '70.0.3538.45',
1604         '71.0.3568.1',
1605         '71.0.3568.0',
1606         '70.0.3538.44',
1607         '69.0.3497.118',
1608         '70.0.3538.43',
1609         '70.0.3538.42',
1610         '71.0.3567.1',
1611         '71.0.3567.0',
1612         '70.0.3538.41',
1613         '69.0.3497.117',
1614         '71.0.3566.1',
1615         '71.0.3566.0',
1616         '70.0.3538.40',
1617         '69.0.3497.116',
1618         '71.0.3565.1',
1619         '71.0.3565.0',
1620         '70.0.3538.39',
1621         '69.0.3497.115',
1622         '71.0.3564.1',
1623         '71.0.3564.0',
1624         '70.0.3538.38',
1625         '69.0.3497.114',
1626         '71.0.3563.0',
1627         '71.0.3562.2',
1628         '70.0.3538.37',
1629         '69.0.3497.113',
1630         '70.0.3538.36',
1631         '70.0.3538.35',
1632         '71.0.3562.1',
1633         '71.0.3562.0',
1634         '70.0.3538.34',
1635         '69.0.3497.112',
1636         '70.0.3538.33',
1637         '71.0.3561.1',
1638         '71.0.3561.0',
1639         '70.0.3538.32',
1640         '69.0.3497.111',
1641         '71.0.3559.6',
1642         '71.0.3560.1',
1643         '71.0.3560.0',
1644         '71.0.3559.5',
1645         '71.0.3559.4',
1646         '70.0.3538.31',
1647         '69.0.3497.110',
1648         '71.0.3559.3',
1649         '70.0.3538.30',
1650         '69.0.3497.109',
1651         '71.0.3559.2',
1652         '71.0.3559.1',
1653         '71.0.3559.0',
1654         '70.0.3538.29',
1655         '69.0.3497.108',
1656         '71.0.3558.2',
1657         '71.0.3558.1',
1658         '71.0.3558.0',
1659         '70.0.3538.28',
1660         '69.0.3497.107',
1661         '71.0.3557.2',
1662         '71.0.3557.1',
1663         '71.0.3557.0',
1664         '70.0.3538.27',
1665         '69.0.3497.106',
1666         '71.0.3554.4',
1667         '70.0.3538.26',
1668         '71.0.3556.1',
1669         '71.0.3556.0',
1670         '70.0.3538.25',
1671         '71.0.3554.3',
1672         '69.0.3497.105',
1673         '71.0.3554.2',
1674         '70.0.3538.24',
1675         '69.0.3497.104',
1676         '71.0.3555.2',
1677         '70.0.3538.23',
1678         '71.0.3555.1',
1679         '71.0.3555.0',
1680         '70.0.3538.22',
1681         '69.0.3497.103',
1682         '71.0.3554.1',
1683         '71.0.3554.0',
1684         '70.0.3538.21',
1685         '69.0.3497.102',
1686         '71.0.3553.3',
1687         '70.0.3538.20',
1688         '69.0.3497.101',
1689         '71.0.3553.2',
1690         '69.0.3497.100',
1691         '71.0.3553.1',
1692         '71.0.3553.0',
1693         '70.0.3538.19',
1694         '69.0.3497.99',
1695         '69.0.3497.98',
1696         '69.0.3497.97',
1697         '71.0.3552.6',
1698         '71.0.3552.5',
1699         '71.0.3552.4',
1700         '71.0.3552.3',
1701         '71.0.3552.2',
1702         '71.0.3552.1',
1703         '71.0.3552.0',
1704         '70.0.3538.18',
1705         '69.0.3497.96',
1706         '71.0.3551.3',
1707         '71.0.3551.2',
1708         '71.0.3551.1',
1709         '71.0.3551.0',
1710         '70.0.3538.17',
1711         '69.0.3497.95',
1712         '71.0.3550.3',
1713         '71.0.3550.2',
1714         '71.0.3550.1',
1715         '71.0.3550.0',
1716         '70.0.3538.16',
1717         '69.0.3497.94',
1718         '71.0.3549.1',
1719         '71.0.3549.0',
1720         '70.0.3538.15',
1721         '69.0.3497.93',
1722         '69.0.3497.92',
1723         '71.0.3548.1',
1724         '71.0.3548.0',
1725         '70.0.3538.14',
1726         '69.0.3497.91',
1727         '71.0.3547.1',
1728         '71.0.3547.0',
1729         '70.0.3538.13',
1730         '69.0.3497.90',
1731         '71.0.3546.2',
1732         '69.0.3497.89',
1733         '71.0.3546.1',
1734         '71.0.3546.0',
1735         '70.0.3538.12',
1736         '69.0.3497.88',
1737         '71.0.3545.4',
1738         '71.0.3545.3',
1739         '71.0.3545.2',
1740         '71.0.3545.1',
1741         '71.0.3545.0',
1742         '70.0.3538.11',
1743         '69.0.3497.87',
1744         '71.0.3544.5',
1745         '71.0.3544.4',
1746         '71.0.3544.3',
1747         '71.0.3544.2',
1748         '71.0.3544.1',
1749         '71.0.3544.0',
1750         '69.0.3497.86',
1751         '70.0.3538.10',
1752         '69.0.3497.85',
1753         '70.0.3538.9',
1754         '69.0.3497.84',
1755         '71.0.3543.4',
1756         '70.0.3538.8',
1757         '71.0.3543.3',
1758         '71.0.3543.2',
1759         '71.0.3543.1',
1760         '71.0.3543.0',
1761         '70.0.3538.7',
1762         '69.0.3497.83',
1763         '71.0.3542.2',
1764         '71.0.3542.1',
1765         '71.0.3542.0',
1766         '70.0.3538.6',
1767         '69.0.3497.82',
1768         '69.0.3497.81',
1769         '71.0.3541.1',
1770         '71.0.3541.0',
1771         '70.0.3538.5',
1772         '69.0.3497.80',
1773         '71.0.3540.1',
1774         '71.0.3540.0',
1775         '70.0.3538.4',
1776         '69.0.3497.79',
1777         '70.0.3538.3',
1778         '71.0.3539.1',
1779         '71.0.3539.0',
1780         '69.0.3497.78',
1781         '68.0.3440.134',
1782         '69.0.3497.77',
1783         '70.0.3538.2',
1784         '70.0.3538.1',
1785         '70.0.3538.0',
1786         '69.0.3497.76',
1787         '68.0.3440.133',
1788         '69.0.3497.75',
1789         '70.0.3537.2',
1790         '70.0.3537.1',
1791         '70.0.3537.0',
1792         '69.0.3497.74',
1793         '68.0.3440.132',
1794         '70.0.3536.0',
1795         '70.0.3535.5',
1796         '70.0.3535.4',
1797         '70.0.3535.3',
1798         '69.0.3497.73',
1799         '68.0.3440.131',
1800         '70.0.3532.8',
1801         '70.0.3532.7',
1802         '69.0.3497.72',
1803         '69.0.3497.71',
1804         '70.0.3535.2',
1805         '70.0.3535.1',
1806         '70.0.3535.0',
1807         '69.0.3497.70',
1808         '68.0.3440.130',
1809         '69.0.3497.69',
1810         '68.0.3440.129',
1811         '70.0.3534.4',
1812         '70.0.3534.3',
1813         '70.0.3534.2',
1814         '70.0.3534.1',
1815         '70.0.3534.0',
1816         '69.0.3497.68',
1817         '68.0.3440.128',
1818         '70.0.3533.2',
1819         '70.0.3533.1',
1820         '70.0.3533.0',
1821         '69.0.3497.67',
1822         '68.0.3440.127',
1823         '70.0.3532.6',
1824         '70.0.3532.5',
1825         '70.0.3532.4',
1826         '69.0.3497.66',
1827         '68.0.3440.126',
1828         '70.0.3532.3',
1829         '70.0.3532.2',
1830         '70.0.3532.1',
1831         '69.0.3497.60',
1832         '69.0.3497.65',
1833         '69.0.3497.64',
1834         '70.0.3532.0',
1835         '70.0.3531.0',
1836         '70.0.3530.4',
1837         '70.0.3530.3',
1838         '70.0.3530.2',
1839         '69.0.3497.58',
1840         '68.0.3440.125',
1841         '69.0.3497.57',
1842         '69.0.3497.56',
1843         '69.0.3497.55',
1844         '69.0.3497.54',
1845         '70.0.3530.1',
1846         '70.0.3530.0',
1847         '69.0.3497.53',
1848         '68.0.3440.124',
1849         '69.0.3497.52',
1850         '70.0.3529.3',
1851         '70.0.3529.2',
1852         '70.0.3529.1',
1853         '70.0.3529.0',
1854         '69.0.3497.51',
1855         '70.0.3528.4',
1856         '68.0.3440.123',
1857         '70.0.3528.3',
1858         '70.0.3528.2',
1859         '70.0.3528.1',
1860         '70.0.3528.0',
1861         '69.0.3497.50',
1862         '68.0.3440.122',
1863         '70.0.3527.1',
1864         '70.0.3527.0',
1865         '69.0.3497.49',
1866         '68.0.3440.121',
1867         '70.0.3526.1',
1868         '70.0.3526.0',
1869         '68.0.3440.120',
1870         '69.0.3497.48',
1871         '69.0.3497.47',
1872         '68.0.3440.119',
1873         '68.0.3440.118',
1874         '70.0.3525.5',
1875         '70.0.3525.4',
1876         '70.0.3525.3',
1877         '68.0.3440.117',
1878         '69.0.3497.46',
1879         '70.0.3525.2',
1880         '70.0.3525.1',
1881         '70.0.3525.0',
1882         '69.0.3497.45',
1883         '68.0.3440.116',
1884         '70.0.3524.4',
1885         '70.0.3524.3',
1886         '69.0.3497.44',
1887         '70.0.3524.2',
1888         '70.0.3524.1',
1889         '70.0.3524.0',
1890         '70.0.3523.2',
1891         '69.0.3497.43',
1892         '68.0.3440.115',
1893         '70.0.3505.9',
1894         '69.0.3497.42',
1895         '70.0.3505.8',
1896         '70.0.3523.1',
1897         '70.0.3523.0',
1898         '69.0.3497.41',
1899         '68.0.3440.114',
1900         '70.0.3505.7',
1901         '69.0.3497.40',
1902         '70.0.3522.1',
1903         '70.0.3522.0',
1904         '70.0.3521.2',
1905         '69.0.3497.39',
1906         '68.0.3440.113',
1907         '70.0.3505.6',
1908         '70.0.3521.1',
1909         '70.0.3521.0',
1910         '69.0.3497.38',
1911         '68.0.3440.112',
1912         '70.0.3520.1',
1913         '70.0.3520.0',
1914         '69.0.3497.37',
1915         '68.0.3440.111',
1916         '70.0.3519.3',
1917         '70.0.3519.2',
1918         '70.0.3519.1',
1919         '70.0.3519.0',
1920         '69.0.3497.36',
1921         '68.0.3440.110',
1922         '70.0.3518.1',
1923         '70.0.3518.0',
1924         '69.0.3497.35',
1925         '69.0.3497.34',
1926         '68.0.3440.109',
1927         '70.0.3517.1',
1928         '70.0.3517.0',
1929         '69.0.3497.33',
1930         '68.0.3440.108',
1931         '69.0.3497.32',
1932         '70.0.3516.3',
1933         '70.0.3516.2',
1934         '70.0.3516.1',
1935         '70.0.3516.0',
1936         '69.0.3497.31',
1937         '68.0.3440.107',
1938         '70.0.3515.4',
1939         '68.0.3440.106',
1940         '70.0.3515.3',
1941         '70.0.3515.2',
1942         '70.0.3515.1',
1943         '70.0.3515.0',
1944         '69.0.3497.30',
1945         '68.0.3440.105',
1946         '68.0.3440.104',
1947         '70.0.3514.2',
1948         '70.0.3514.1',
1949         '70.0.3514.0',
1950         '69.0.3497.29',
1951         '68.0.3440.103',
1952         '70.0.3513.1',
1953         '70.0.3513.0',
1954         '69.0.3497.28',
1955     )
1956
1957     @classmethod
1958     def _extract_urls(cls, webpage):
1959         return re.findall(
1960             r'<iframe[^>]+src=["\']((?:https?://)?%s/%s/[a-zA-Z0-9-_]+)'
1961             % (cls._DOMAINS, cls._EMBED_WORD), webpage)
1962
1963     def _extract_decrypted_page(self, page_url, webpage, video_id, headers):
1964         phantom = PhantomJSwrapper(self, required_version='2.0')
1965         webpage, _ = phantom.get(page_url, html=webpage, video_id=video_id, headers=headers)
1966         return webpage
1967
1968     def _real_extract(self, url):
1969         mobj = re.match(self._VALID_URL, url)
1970         host = mobj.group('host')
1971         video_id = mobj.group('id')
1972
1973         url_pattern = 'https://%s/%%s/%s/' % (host, video_id)
1974         headers = {
1975             'User-Agent': self._USER_AGENT_TPL % random.choice(self._CHROME_VERSIONS),
1976         }
1977
1978         for path in (self._EMBED_WORD, self._STREAM_WORD):
1979             page_url = url_pattern % path
1980             last = path == self._STREAM_WORD
1981             webpage = self._download_webpage(
1982                 page_url, video_id, 'Downloading %s webpage' % path,
1983                 headers=headers, fatal=last)
1984             if not webpage:
1985                 continue
1986             if 'File not found' in webpage or 'deleted by the owner' in webpage:
1987                 if not last:
1988                     continue
1989                 raise ExtractorError('File not found', expected=True, video_id=video_id)
1990             break
1991
1992         webpage = self._extract_decrypted_page(page_url, webpage, video_id, headers)
1993         for element_id in self._URL_IDS:
1994             decoded_id = get_element_by_id(element_id, webpage)
1995             if decoded_id:
1996                 break
1997         if not decoded_id:
1998             decoded_id = self._search_regex(
1999                 (r'>\s*([\w-]+~\d{10,}~\d+\.\d+\.0\.0~[\w-]+)\s*<',
2000                  r'>\s*([\w~-]+~\d+\.\d+\.\d+\.\d+~[\w~-]+)',
2001                  r'>\s*([\w-]+~\d{10,}~(?:[a-f\d]+:){2}:~[\w-]+)\s*<',
2002                  r'>\s*([\w~-]+~[a-f0-9:]+~[\w~-]+)\s*<',
2003                  r'>\s*([\w~-]+~[a-f0-9:]+~[\w~-]+)'), webpage,
2004                 'stream URL')
2005         video_url = 'https://%s/%s/%s?mime=true' % (host, self._REDIR_WORD, decoded_id)
2006
2007         title = self._og_search_title(webpage, default=None) or self._search_regex(
2008             r'<span[^>]+class=["\']title["\'][^>]*>([^<]+)', webpage,
2009             'title', default=None) or self._html_search_meta(
2010             'description', webpage, 'title', fatal=True)
2011
2012         entries = self._parse_html5_media_entries(page_url, webpage, video_id)
2013         entry = entries[0] if entries else {}
2014         subtitles = entry.get('subtitles')
2015
2016         return {
2017             'id': video_id,
2018             'title': title,
2019             'thumbnail': entry.get('thumbnail') or self._og_search_thumbnail(webpage, default=None),
2020             'url': video_url,
2021             'ext': determine_ext(title, None) or determine_ext(url, 'mp4'),
2022             'subtitles': subtitles,
2023             'http_headers': headers,
2024         }
2025
2026
2027 class VerystreamIE(OpenloadIE):
2028     IE_NAME = 'verystream'
2029
2030     _DOMAINS = r'(?:verystream\.com)'
2031     _VALID_URL = r'''(?x)
2032                     https?://
2033                         (?P<host>
2034                             (?:www\.)?
2035                             %s
2036                         )/
2037                         (?:stream|e)/
2038                         (?P<id>[a-zA-Z0-9-_]+)
2039                     ''' % _DOMAINS
2040     _EMBED_WORD = 'e'
2041     _STREAM_WORD = 'stream'
2042     _REDIR_WORD = 'gettoken'
2043     _URL_IDS = ('videolink', )
2044     _TESTS = [{
2045         'url': 'https://verystream.com/stream/c1GWQ9ngBBx/',
2046         'md5': 'd3e8c5628ccb9970b65fd65269886795',
2047         'info_dict': {
2048             'id': 'c1GWQ9ngBBx',
2049             'ext': 'mp4',
2050             'title': 'Big Buck Bunny.mp4',
2051             'thumbnail': r're:^https?://.*\.jpg$',
2052         },
2053     }, {
2054         'url': 'https://verystream.com/e/c1GWQ9ngBBx/',
2055         'only_matching': True,
2056     }]
2057
2058     def _extract_decrypted_page(self, page_url, webpage, video_id, headers):
2059         return webpage  # for Verystream, the webpage is already decrypted