From 64846c0f1df4a25a93a4c67a95e5bc3292c1c672 Mon Sep 17 00:00:00 2001 From: morpheus65535 <5130500+morpheus65535@users.noreply.github.com> Date: Wed, 17 Jan 2018 07:23:21 -0500 Subject: [PATCH] Integrated enzyme module with included PR to fix #40 --- bazarr.py | 5 +- libs/enzyme/__init__.py | 13 + libs/enzyme/compat.py | 13 + libs/enzyme/exceptions.py | 27 + libs/enzyme/mkv.py | 351 +++ libs/enzyme/parsers/__init__.py | 1 + libs/enzyme/parsers/ebml/__init__.py | 3 + libs/enzyme/parsers/ebml/core.py | 239 ++ libs/enzyme/parsers/ebml/readers.py | 235 ++ libs/enzyme/parsers/ebml/specs/matroska.xml | 224 ++ libs/enzyme/tests/__init__.py | 10 + libs/enzyme/tests/parsers/ebml/test1.mkv.yml | 2974 ++++++++++++++++++ libs/enzyme/tests/test_mkv.py | 607 ++++ libs/enzyme/tests/test_parsers.py | 122 + 14 files changed, 4823 insertions(+), 1 deletion(-) create mode 100644 libs/enzyme/__init__.py create mode 100644 libs/enzyme/compat.py create mode 100644 libs/enzyme/exceptions.py create mode 100644 libs/enzyme/mkv.py create mode 100644 libs/enzyme/parsers/__init__.py create mode 100644 libs/enzyme/parsers/ebml/__init__.py create mode 100644 libs/enzyme/parsers/ebml/core.py create mode 100644 libs/enzyme/parsers/ebml/readers.py create mode 100644 libs/enzyme/parsers/ebml/specs/matroska.xml create mode 100644 libs/enzyme/tests/__init__.py create mode 100644 libs/enzyme/tests/parsers/ebml/test1.mkv.yml create mode 100644 libs/enzyme/tests/test_mkv.py create mode 100644 libs/enzyme/tests/test_parsers.py diff --git a/bazarr.py b/bazarr.py index 2537faba9..818752575 100644 --- a/bazarr.py +++ b/bazarr.py @@ -1,11 +1,14 @@ bazarr_version = '0.3.2' +import os +import sys +sys.path.append(os.path.join(os.path.dirname(__file__), 'libs/')) + from bottle import route, run, template, static_file, request, redirect, response import bottle bottle.debug(True) bottle.TEMPLATES.clear() -import os bottle.TEMPLATE_PATH.insert(0,os.path.join(os.path.dirname(__file__), 'views/')) import sqlite3 diff --git a/libs/enzyme/__init__.py b/libs/enzyme/__init__.py new file mode 100644 index 000000000..3bd89f336 --- /dev/null +++ b/libs/enzyme/__init__.py @@ -0,0 +1,13 @@ +# -*- coding: utf-8 -*- +__title__ = 'enzyme' +__version__ = '0.4.1' +__author__ = 'Antoine Bertin' +__license__ = 'Apache 2.0' +__copyright__ = 'Copyright 2013 Antoine Bertin' + +import logging +from .exceptions import * +from .mkv import * + + +logging.getLogger(__name__).addHandler(logging.NullHandler()) diff --git a/libs/enzyme/compat.py b/libs/enzyme/compat.py new file mode 100644 index 000000000..81e3a4c9d --- /dev/null +++ b/libs/enzyme/compat.py @@ -0,0 +1,13 @@ +# -*- coding: utf-8 -*- +import sys + + +_ver = sys.version_info +is_py3 = _ver[0] == 3 +is_py2 = _ver[0] == 2 + + +if is_py2: + bytes = lambda x: chr(x[0]) # @ReservedAssignment +elif is_py3: + bytes = bytes # @ReservedAssignment diff --git a/libs/enzyme/exceptions.py b/libs/enzyme/exceptions.py new file mode 100644 index 000000000..b2252aa47 --- /dev/null +++ b/libs/enzyme/exceptions.py @@ -0,0 +1,27 @@ +# -*- coding: utf-8 -*- +__all__ = ['Error', 'MalformedMKVError', 'ParserError', 'ReadError', 'SizeError'] + + +class Error(Exception): + """Base class for enzyme exceptions""" + pass + + +class MalformedMKVError(Error): + """Wrong or malformed element found""" + pass + + +class ParserError(Error): + """Base class for exceptions in parsers""" + pass + + +class ReadError(ParserError): + """Unable to correctly read""" + pass + + +class SizeError(ParserError): + """Mismatch between the type of the element and the size of its data""" + pass diff --git a/libs/enzyme/mkv.py b/libs/enzyme/mkv.py new file mode 100644 index 000000000..f90c043f4 --- /dev/null +++ b/libs/enzyme/mkv.py @@ -0,0 +1,351 @@ +# -*- coding: utf-8 -*- +from .exceptions import ParserError, MalformedMKVError +from .parsers import ebml +from datetime import timedelta +import logging + + +__all__ = ['VIDEO_TRACK', 'AUDIO_TRACK', 'SUBTITLE_TRACK', 'MKV', 'Info', 'Track', 'VideoTrack', + 'AudioTrack', 'SubtitleTrack', 'Tag', 'SimpleTag', 'Chapter'] +logger = logging.getLogger(__name__) + + +# Track types +VIDEO_TRACK, AUDIO_TRACK, SUBTITLE_TRACK = 0x01, 0x02, 0x11 + + +class MKV(object): + """Matroska Video file + + :param stream: seekable file-like object + + """ + def __init__(self, stream, recurse_seek_head=False): + # default attributes + self.info = None + self.video_tracks = [] + self.audio_tracks = [] + self.subtitle_tracks = [] + self.chapters = [] + self.tags = [] + + # keep track of the elements parsed + self.recurse_seek_head = recurse_seek_head + self._parsed_positions = set() + + try: + # get the Segment element + logger.info('Reading Segment element') + specs = ebml.get_matroska_specs() + segments = ebml.parse(stream, specs, ignore_element_names=['EBML'], max_level=0) + if not segments: + raise MalformedMKVError('No Segment found') + if len(segments) > 1: + logger.warning('%d segments found, using the first one', len(segments)) + segment = segments[0] + + # get and recursively parse the SeekHead element + logger.info('Reading SeekHead element') + stream.seek(segment.position) + seek_head = ebml.parse_element(stream, specs) + if seek_head.name != 'SeekHead': + raise MalformedMKVError('No SeekHead found') + seek_head.load(stream, specs, ignore_element_names=['Void', 'CRC-32']) + self._parse_seekhead(seek_head, segment, stream, specs) + except ParserError as e: + raise MalformedMKVError('Parsing error: %s' % e) + + def _parse_seekhead(self, seek_head, segment, stream, specs): + for seek in seek_head: + element_id = ebml.read_element_id(seek['SeekID'].data) + element_name = specs[element_id][1] + element_position = seek['SeekPosition'].data + segment.position + if element_position in self._parsed_positions: + logger.warning('Skipping already parsed %s element at position %d', element_name, element_position) + continue + if element_name == 'Info': + logger.info('Processing element %s from SeekHead at position %d', element_name, element_position) + stream.seek(element_position) + self.info = Info.fromelement(ebml.parse_element(stream, specs, True, ignore_element_names=['Void', 'CRC-32'])) + elif element_name == 'Tracks': + logger.info('Processing element %s from SeekHead at position %d', element_name, element_position) + stream.seek(element_position) + tracks = ebml.parse_element(stream, specs, True, ignore_element_names=['Void', 'CRC-32']) + self.video_tracks.extend([VideoTrack.fromelement(t) for t in tracks if t['TrackType'].data == VIDEO_TRACK]) + self.audio_tracks.extend([AudioTrack.fromelement(t) for t in tracks if t['TrackType'].data == AUDIO_TRACK]) + self.subtitle_tracks.extend([SubtitleTrack.fromelement(t) for t in tracks if t['TrackType'].data == SUBTITLE_TRACK]) + elif element_name == 'Chapters': + logger.info('Processing element %s from SeekHead at position %d', element_name, element_position) + stream.seek(element_position) + self.chapters.extend([Chapter.fromelement(c) for c in ebml.parse_element(stream, specs, True, ignore_element_names=['Void', 'CRC-32'])[0] if c.name == 'ChapterAtom']) + elif element_name == 'Tags': + logger.info('Processing element %s from SeekHead at position %d', element_name, element_position) + stream.seek(element_position) + self.tags.extend([Tag.fromelement(t) for t in ebml.parse_element(stream, specs, True, ignore_element_names=['Void', 'CRC-32'])]) + elif element_name == 'SeekHead' and self.recurse_seek_head: + logger.info('Processing element %s from SeekHead at position %d', element_name, element_position) + stream.seek(element_position) + self._parse_seekhead(ebml.parse_element(stream, specs, True, ignore_element_names=['Void', 'CRC-32']), segment, stream, specs) + else: + logger.debug('Element %s ignored', element_name) + self._parsed_positions.add(element_position) + + def to_dict(self): + return {'info': self.info.__dict__, 'video_tracks': [t.__dict__ for t in self.video_tracks], + 'audio_tracks': [t.__dict__ for t in self.audio_tracks], 'subtitle_tracks': [t.__dict__ for t in self.subtitle_tracks], + 'chapters': [c.__dict__ for c in self.chapters], 'tags': [t.__dict__ for t in self.tags]} + + def __repr__(self): + return '<%s [%r, %r, %r, %r]>' % (self.__class__.__name__, self.info, self.video_tracks, self.audio_tracks, self.subtitle_tracks) + + +class Info(object): + """Object for the Info EBML element""" + def __init__(self, title=None, duration=None, date_utc=None, timecode_scale=None, muxing_app=None, writing_app=None): + self.title = title + self.duration = timedelta(microseconds=duration * (timecode_scale or 1000000) // 1000) if duration else None + self.date_utc = date_utc + self.muxing_app = muxing_app + self.writing_app = writing_app + + @classmethod + def fromelement(cls, element): + """Load the :class:`Info` from an :class:`~enzyme.parsers.ebml.Element` + + :param element: the Info element + :type element: :class:`~enzyme.parsers.ebml.Element` + + """ + title = element.get('Title') + duration = element.get('Duration') + date_utc = element.get('DateUTC') + timecode_scale = element.get('TimecodeScale') + muxing_app = element.get('MuxingApp') + writing_app = element.get('WritingApp') + return cls(title, duration, date_utc, timecode_scale, muxing_app, writing_app) + + def __repr__(self): + return '<%s [title=%r, duration=%s, date=%s]>' % (self.__class__.__name__, self.title, self.duration, self.date_utc) + + def __str__(self): + return repr(self.__dict__) + + +class Track(object): + """Base object for the Tracks EBML element""" + def __init__(self, type=None, number=None, name=None, language=None, enabled=None, default=None, forced=None, lacing=None, # @ReservedAssignment + codec_id=None, codec_name=None): + self.type = type + self.number = number + self.name = name + self.language = language + self.enabled = enabled + self.default = default + self.forced = forced + self.lacing = lacing + self.codec_id = codec_id + self.codec_name = codec_name + + @classmethod + def fromelement(cls, element): + """Load the :class:`Track` from an :class:`~enzyme.parsers.ebml.Element` + + :param element: the Track element + :type element: :class:`~enzyme.parsers.ebml.Element` + + """ + type = element.get('TrackType') # @ReservedAssignment + number = element.get('TrackNumber', 0) + name = element.get('Name') + language = element.get('Language', 'eng') + enabled = bool(element.get('FlagEnabled', 1)) + default = bool(element.get('FlagDefault', 1)) + forced = bool(element.get('FlagForced', 0)) + lacing = bool(element.get('FlagLacing', 1)) + codec_id = element.get('CodecID') + codec_name = element.get('CodecName') + return cls(type=type, number=number, name=name, language=language, enabled=enabled, default=default, + forced=forced, lacing=lacing, codec_id=codec_id, codec_name=codec_name) + + def __repr__(self): + return '<%s [%d, name=%r, language=%s]>' % (self.__class__.__name__, self.number, self.name, self.language) + + def __str__(self): + return str(self.__dict__) + + +class VideoTrack(Track): + """Object for the Tracks EBML element with :data:`VIDEO_TRACK` TrackType""" + def __init__(self, width=0, height=0, interlaced=False, stereo_mode=None, crop=None, + display_width=None, display_height=None, display_unit=None, aspect_ratio_type=None, **kwargs): + super(VideoTrack, self).__init__(**kwargs) + self.width = width + self.height = height + self.interlaced = interlaced + self.stereo_mode = stereo_mode + self.crop = crop + self.display_width = display_width + self.display_height = display_height + self.display_unit = display_unit + self.aspect_ratio_type = aspect_ratio_type + + @classmethod + def fromelement(cls, element): + """Load the :class:`VideoTrack` from an :class:`~enzyme.parsers.ebml.Element` + + :param element: the Track element with :data:`VIDEO_TRACK` TrackType + :type element: :class:`~enzyme.parsers.ebml.Element` + + """ + videotrack = super(VideoTrack, cls).fromelement(element) + videotrack.width = element['Video'].get('PixelWidth', 0) + videotrack.height = element['Video'].get('PixelHeight', 0) + videotrack.interlaced = bool(element['Video'].get('FlagInterlaced', False)) + videotrack.stereo_mode = element['Video'].get('StereoMode', 0) + videotrack.crop = {} + if 'PixelCropTop' in element['Video']: + videotrack.crop['top'] = element['Video']['PixelCropTop'] + if 'PixelCropBottom' in element['Video']: + videotrack.crop['bottom'] = element['Video']['PixelCropBottom'] + if 'PixelCropLeft' in element['Video']: + videotrack.crop['left'] = element['Video']['PixelCropLeft'] + if 'PixelCropRight' in element['Video']: + videotrack.crop['right'] = element['Video']['PixelCropRight'] + videotrack.display_unit = element['Video'].get('DisplayUnit') + videotrack.display_width = element['Video'].get('DisplayWidth') + videotrack.display_height = element['Video'].get('DisplayHeight') + videotrack.aspect_ratio_type = element['Video'].get('AspectRatioType', 0) + return videotrack + + def __repr__(self): + return '<%s [%d, %dx%d, %s, name=%r, language=%s]>' % (self.__class__.__name__, self.number, self.width, self.height, + self.codec_id, self.name, self.language) + + def __str__(self): + return str(self.__dict__) + + +class AudioTrack(Track): + """Object for the Tracks EBML element with :data:`AUDIO_TRACK` TrackType""" + def __init__(self, sampling_frequency=None, channels=None, output_sampling_frequency=None, bit_depth=None, **kwargs): + super(AudioTrack, self).__init__(**kwargs) + self.sampling_frequency = sampling_frequency + self.channels = channels + self.output_sampling_frequency = output_sampling_frequency + self.bit_depth = bit_depth + + @classmethod + def fromelement(cls, element): + """Load the :class:`AudioTrack` from an :class:`~enzyme.parsers.ebml.Element` + + :param element: the Track element with :data:`AUDIO_TRACK` TrackType + :type element: :class:`~enzyme.parsers.ebml.Element` + + """ + audiotrack = super(AudioTrack, cls).fromelement(element) + audiotrack.sampling_frequency = element['Audio'].get('SamplingFrequency', 8000.0) + audiotrack.channels = element['Audio'].get('Channels', 1) + audiotrack.output_sampling_frequency = element['Audio'].get('OutputSamplingFrequency', audiotrack.sampling_frequency) + audiotrack.bit_depth = element['Audio'].get('BitDepth') + return audiotrack + + def __repr__(self): + return '<%s [%d, %d channel(s), %.0fHz, %s, name=%r, language=%s]>' % (self.__class__.__name__, self.number, self.channels, + self.sampling_frequency, self.codec_id, self.name, self.language) + + +class SubtitleTrack(Track): + """Object for the Tracks EBML element with :data:`SUBTITLE_TRACK` TrackType""" + pass + + +class Tag(object): + """Object for the Tag EBML element""" + def __init__(self, targets=None, simpletags=None): + self.targets = targets if targets is not None else [] + self.simpletags = simpletags if simpletags is not None else [] + + @classmethod + def fromelement(cls, element): + """Load the :class:`Tag` from an :class:`~enzyme.parsers.ebml.Element` + + :param element: the Tag element + :type element: :class:`~enzyme.parsers.ebml.Element` + + """ + targets = element['Targets'] if 'Targets' in element else [] + simpletags = [SimpleTag.fromelement(s) for s in element if s.name == 'SimpleTag'] + return cls(targets, simpletags) + + def __repr__(self): + return '<%s [targets=%r, simpletags=%r]>' % (self.__class__.__name__, self.targets, self.simpletags) + + +class SimpleTag(object): + """Object for the SimpleTag EBML element""" + def __init__(self, name, language='und', default=True, string=None, binary=None): + self.name = name + self.language = language + self.default = default + self.string = string + self.binary = binary + + @classmethod + def fromelement(cls, element): + """Load the :class:`SimpleTag` from an :class:`~enzyme.parsers.ebml.Element` + + :param element: the SimpleTag element + :type element: :class:`~enzyme.parsers.ebml.Element` + + """ + name = element.get('TagName') + language = element.get('TagLanguage', 'und') + default = element.get('TagDefault', True) + string = element.get('TagString') + binary = element.get('TagBinary') + return cls(name, language, default, string, binary) + + def __repr__(self): + return '<%s [%s, language=%s, default=%s, string=%s]>' % (self.__class__.__name__, self.name, self.language, self.default, self.string) + + +class Chapter(object): + """Object for the ChapterAtom and ChapterDisplay EBML element + + .. note:: + For the sake of simplicity, it is assumed that the ChapterAtom element + has no more than 1 ChapterDisplay child element and informations it contains + are merged into the :class:`Chapter` + + """ + def __init__(self, start, hidden=False, enabled=False, end=None, string=None, language=None): + self.start = start + self.hidden = hidden + self.enabled = enabled + self.end = end + self.string = string + self.language = language + + @classmethod + def fromelement(cls, element): + """Load the :class:`Chapter` from an :class:`~enzyme.parsers.ebml.Element` + + :param element: the ChapterAtom element + :type element: :class:`~enzyme.parsers.ebml.Element` + + """ + start = timedelta(microseconds=element.get('ChapterTimeStart') // 1000) + hidden = element.get('ChapterFlagHidden', False) + enabled = element.get('ChapterFlagEnabled', True) + end = element.get('ChapterTimeEnd') + chapterdisplays = [c for c in element if c.name == 'ChapterDisplay'] + if len(chapterdisplays) > 1: + logger.warning('More than 1 (%d) ChapterDisplay element in the ChapterAtom, using the first one', len(chapterdisplays)) + if chapterdisplays: + string = chapterdisplays[0].get('ChapString') + language = chapterdisplays[0].get('ChapLanguage') + return cls(start, hidden, enabled, end, string, language) + return cls(start, hidden, enabled, end) + + def __repr__(self): + return '<%s [%s, enabled=%s]>' % (self.__class__.__name__, self.start, self.enabled) diff --git a/libs/enzyme/parsers/__init__.py b/libs/enzyme/parsers/__init__.py new file mode 100644 index 000000000..40a96afc6 --- /dev/null +++ b/libs/enzyme/parsers/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/libs/enzyme/parsers/ebml/__init__.py b/libs/enzyme/parsers/ebml/__init__.py new file mode 100644 index 000000000..04219f8c3 --- /dev/null +++ b/libs/enzyme/parsers/ebml/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- +from .core import * +from .readers import * diff --git a/libs/enzyme/parsers/ebml/core.py b/libs/enzyme/parsers/ebml/core.py new file mode 100644 index 000000000..ae025ac73 --- /dev/null +++ b/libs/enzyme/parsers/ebml/core.py @@ -0,0 +1,239 @@ +# -*- coding: utf-8 -*- +from ...exceptions import ReadError +from .readers import * +from pkg_resources import resource_stream # @UnresolvedImport +from xml.dom import minidom +import logging + + +__all__ = ['INTEGER', 'UINTEGER', 'FLOAT', 'STRING', 'UNICODE', 'DATE', 'MASTER', 'BINARY', + 'SPEC_TYPES', 'READERS', 'Element', 'MasterElement', 'parse', 'parse_element', + 'get_matroska_specs'] +logger = logging.getLogger(__name__) + + +# EBML types +INTEGER, UINTEGER, FLOAT, STRING, UNICODE, DATE, MASTER, BINARY = range(8) + +# Spec types to EBML types mapping +SPEC_TYPES = { + 'integer': INTEGER, + 'uinteger': UINTEGER, + 'float': FLOAT, + 'string': STRING, + 'utf-8': UNICODE, + 'date': DATE, + 'master': MASTER, + 'binary': BINARY +} + +# Readers to use per EBML type +READERS = { + INTEGER: read_element_integer, + UINTEGER: read_element_uinteger, + FLOAT: read_element_float, + STRING: read_element_string, + UNICODE: read_element_unicode, + DATE: read_element_date, + BINARY: read_element_binary +} + + +class Element(object): + """Base object of EBML + + :param int id: id of the element, best represented as hexadecimal (0x18538067 for Matroska Segment element) + :param type: type of the element + :type type: :data:`INTEGER`, :data:`UINTEGER`, :data:`FLOAT`, :data:`STRING`, :data:`UNICODE`, :data:`DATE`, :data:`MASTER` or :data:`BINARY` + :param string name: name of the element + :param int level: level of the element + :param int position: position of element's data + :param int size: size of element's data + :param data: data as read by the corresponding :data:`READERS` + + """ + def __init__(self, id=None, type=None, name=None, level=None, position=None, size=None, data=None): # @ReservedAssignment + self.id = id + self.type = type + self.name = name + self.level = level + self.position = position + self.size = size + self.data = data + + def __repr__(self): + return '<%s [%s, %r]>' % (self.__class__.__name__, self.name, self.data) + + +class MasterElement(Element): + """Element of type :data:`MASTER` that has a list of :class:`Element` as its data + + :param int id: id of the element, best represented as hexadecimal (0x18538067 for Matroska Segment element) + :param string name: name of the element + :param int level: level of the element + :param int position: position of element's data + :param int size: size of element's data + :param data: child elements + :type data: list of :class:`Element` + + :class:`MasterElement` implements some magic methods to ease manipulation. Thus, a MasterElement supports + the `in` keyword to test for the presence of a child element by its name and gives access to it + with a container getter:: + + >>> ebml_element = parse(open('test1.mkv', 'rb'), get_matroska_specs())[0] + >>> 'EBMLVersion' in ebml_element + False + >>> 'DocType' in ebml_element + True + >>> ebml_element['DocType'] + Element(DocType, u'matroska') + + """ + def __init__(self, id=None, name=None, level=None, position=None, size=None, data=None): # @ReservedAssignment + super(MasterElement, self).__init__(id, MASTER, name, level, position, size, data) + + def load(self, stream, specs, ignore_element_types=None, ignore_element_names=None, max_level=None): + """Load children :class:`Elements ` with level lower or equal to the `max_level` + from the `stream` according to the `specs` + + :param stream: file-like object from which to read + :param dict specs: see :ref:`specs` + :param int max_level: maximum level for children elements + :param list ignore_element_types: list of element types to ignore + :param list ignore_element_names: list of element names to ignore + :param int max_level: maximum level of elements + + """ + self.data = parse(stream, specs, self.size, ignore_element_types, ignore_element_names, max_level) + + def get(self, name, default=None): + """Convenience method for ``master_element[name].data if name in master_element else default`` + + :param string name: the name of the child to get + :param default: default value if `name` is not in the :class:`MasterElement` + :return: the data of the child :class:`Element` or `default` + + """ + if name not in self: + return default + element = self[name] + if element.type == MASTER: + raise ValueError('%s is a MasterElement' % name) + return element.data + + def __getitem__(self, key): + if isinstance(key, int): + return self.data[key] + children = [e for e in self.data if e.name == key] + if not children: + raise KeyError(key) + if len(children) > 1: + raise KeyError('More than 1 child with key %s (%d)' % (key, len(children))) + return children[0] + + def __contains__(self, item): + return len([e for e in self.data if e.name == item]) > 0 + + def __iter__(self): + return iter(self.data) + + +def parse(stream, specs, size=None, ignore_element_types=None, ignore_element_names=None, max_level=None): + """Parse a stream for `size` bytes according to the `specs` + + :param stream: file-like object from which to read + :param size: maximum number of bytes to read, None to read all the stream + :type size: int or None + :param dict specs: see :ref:`specs` + :param list ignore_element_types: list of element types to ignore + :param list ignore_element_names: list of element names to ignore + :param int max_level: maximum level of elements + :return: parsed data as a tree of :class:`~enzyme.parsers.ebml.core.Element` + :rtype: list + + .. note:: + If `size` is reached in a middle of an element, reading will continue + until the element is fully parsed. + + """ + ignore_element_types = ignore_element_types if ignore_element_types is not None else [] + ignore_element_names = ignore_element_names if ignore_element_names is not None else [] + start = stream.tell() + elements = [] + while size is None or stream.tell() - start < size: + try: + element = parse_element(stream, specs) + if element is None: + continue + logger.debug('%s %s parsed', element.__class__.__name__, element.name) + if element.type in ignore_element_types or element.name in ignore_element_names: + logger.info('%s %s ignored', element.__class__.__name__, element.name) + if element.type == MASTER: + stream.seek(element.size, 1) + continue + if element.type == MASTER: + if max_level is not None and element.level >= max_level: + logger.info('Maximum level %d reached for children of %s %s', max_level, element.__class__.__name__, element.name) + stream.seek(element.size, 1) + else: + logger.debug('Loading child elements for %s %s with size %d', element.__class__.__name__, element.name, element.size) + element.data = parse(stream, specs, element.size, ignore_element_types, ignore_element_names, max_level) + elements.append(element) + except ReadError: + if size is not None: + raise + break + return elements + + +def parse_element(stream, specs, load_children=False, ignore_element_types=None, ignore_element_names=None, max_level=None): + """Extract a single :class:`Element` from the `stream` according to the `specs` + + :param stream: file-like object from which to read + :param dict specs: see :ref:`specs` + :param bool load_children: load children elements if the parsed element is a :class:`MasterElement` + :param list ignore_element_types: list of element types to ignore + :param list ignore_element_names: list of element names to ignore + :param int max_level: maximum level for children elements + :return: the parsed element + :rtype: :class:`Element` + + """ + ignore_element_types = ignore_element_types if ignore_element_types is not None else [] + ignore_element_names = ignore_element_names if ignore_element_names is not None else [] + element_id = read_element_id(stream) + if element_id is None: + raise ReadError('Cannot read element id') + element_size = read_element_size(stream) + if element_size is None: + raise ReadError('Cannot read element size') + if element_id not in specs: + logger.error('Element with id 0x%x is not in the specs' % element_id) + stream.seek(element_size, 1) + return None + element_type, element_name, element_level = specs[element_id] + if element_type == MASTER: + element = MasterElement(element_id, element_name, element_level, stream.tell(), element_size) + if load_children: + element.data = parse(stream, specs, element.size, ignore_element_types, ignore_element_names, max_level) + else: + element = Element(element_id, element_type, element_name, element_level, stream.tell(), element_size) + element.data = READERS[element_type](stream, element_size) + return element + + +def get_matroska_specs(webm_only=False): + """Get the Matroska specs + + :param bool webm_only: load *only* WebM specs + :return: the specs in the appropriate format. See :ref:`specs` + :rtype: dict + + """ + specs = {} + with resource_stream(__name__, 'specs/matroska.xml') as resource: + xmldoc = minidom.parse(resource) + for element in xmldoc.getElementsByTagName('element'): + if not webm_only or element.hasAttribute('webm') and element.getAttribute('webm') == '1': + specs[int(element.getAttribute('id'), 16)] = (SPEC_TYPES[element.getAttribute('type')], element.getAttribute('name'), int(element.getAttribute('level'))) + return specs diff --git a/libs/enzyme/parsers/ebml/readers.py b/libs/enzyme/parsers/ebml/readers.py new file mode 100644 index 000000000..3c9709b77 --- /dev/null +++ b/libs/enzyme/parsers/ebml/readers.py @@ -0,0 +1,235 @@ +# -*- coding: utf-8 -*- +from ...compat import bytes +from ...exceptions import ReadError, SizeError +from datetime import datetime, timedelta +from io import BytesIO +from struct import unpack + + +__all__ = ['read_element_id', 'read_element_size', 'read_element_integer', 'read_element_uinteger', + 'read_element_float', 'read_element_string', 'read_element_unicode', 'read_element_date', + 'read_element_binary'] + + +def _read(stream, size): + """Read the `stream` for *exactly* `size` bytes and raise an exception if + less than `size` bytes are actually read + + :param stream: file-like object from which to read + :param int size: number of bytes to read + :raise ReadError: when less than `size` bytes are actually read + :return: read data from the `stream` + :rtype: bytes + + """ + data = stream.read(size) + if len(data) < size: + raise ReadError('Less than %d bytes read (%d)' % (size, len(data))) + return data + + +def read_element_id(stream): + """Read the Element ID + + :param stream: file-like object from which to read + :raise ReadError: when not all the required bytes could be read + :return: the id of the element + :rtype: int + + """ + char = _read(stream, 1) + byte = ord(char) + if byte & 0x80: + return byte + elif byte & 0x40: + return unpack('>H', char + _read(stream, 1))[0] + elif byte & 0x20: + b, h = unpack('>BH', char + _read(stream, 2)) + return b * 2 ** 16 + h + elif byte & 0x10: + return unpack('>L', char + _read(stream, 3))[0] + else: + ValueError('Not an Element ID') + + +def read_element_size(stream): + """Read the Element Size + + :param stream: file-like object from which to read + :raise ReadError: when not all the required bytes could be read + :return: the size of element's data + :rtype: int + + """ + char = _read(stream, 1) + byte = ord(char) + if byte & 0x80: + return unpack('>B', bytes((byte ^ 0x80,)))[0] + elif byte & 0x40: + return unpack('>H', bytes((byte ^ 0x40,)) + _read(stream, 1))[0] + elif byte & 0x20: + b, h = unpack('>BH', bytes((byte ^ 0x20,)) + _read(stream, 2)) + return b * 2 ** 16 + h + elif byte & 0x10: + return unpack('>L', bytes((byte ^ 0x10,)) + _read(stream, 3))[0] + elif byte & 0x08: + b, l = unpack('>BL', bytes((byte ^ 0x08,)) + _read(stream, 4)) + return b * 2 ** 32 + l + elif byte & 0x04: + h, l = unpack('>HL', bytes((byte ^ 0x04,)) + _read(stream, 5)) + return h * 2 ** 32 + l + elif byte & 0x02: + b, h, l = unpack('>BHL', bytes((byte ^ 0x02,)) + _read(stream, 6)) + return b * 2 ** 48 + h * 2 ** 32 + l + elif byte & 0x01: + return unpack('>Q', bytes((byte ^ 0x01,)) + _read(stream, 7))[0] + else: + ValueError('Not an Element Size') + + +def read_element_integer(stream, size): + """Read the Element Data of type :data:`INTEGER` + + :param stream: file-like object from which to read + :param int size: size of element's data + :raise ReadError: when not all the required bytes could be read + :raise SizeError: if size is incorrect + :return: the read integer + :rtype: int + + """ + if size == 1: + return unpack('>b', _read(stream, 1))[0] + elif size == 2: + return unpack('>h', _read(stream, 2))[0] + elif size == 3: + b, h = unpack('>bH', _read(stream, 3)) + return b * 2 ** 16 + h + elif size == 4: + return unpack('>l', _read(stream, 4))[0] + elif size == 5: + b, l = unpack('>bL', _read(stream, 5)) + return b * 2 ** 32 + l + elif size == 6: + h, l = unpack('>hL', _read(stream, 6)) + return h * 2 ** 32 + l + elif size == 7: + b, h, l = unpack('>bHL', _read(stream, 7)) + return b * 2 ** 48 + h * 2 ** 32 + l + elif size == 8: + return unpack('>q', _read(stream, 8))[0] + else: + raise SizeError(size) + + +def read_element_uinteger(stream, size): + """Read the Element Data of type :data:`UINTEGER` + + :param stream: file-like object from which to read + :param int size: size of element's data + :raise ReadError: when not all the required bytes could be read + :raise SizeError: if size is incorrect + :return: the read unsigned integer + :rtype: int + + """ + if size == 1: + return unpack('>B', _read(stream, 1))[0] + elif size == 2: + return unpack('>H', _read(stream, 2))[0] + elif size == 3: + b, h = unpack('>BH', _read(stream, 3)) + return b * 2 ** 16 + h + elif size == 4: + return unpack('>L', _read(stream, 4))[0] + elif size == 5: + b, l = unpack('>BL', _read(stream, 5)) + return b * 2 ** 32 + l + elif size == 6: + h, l = unpack('>HL', _read(stream, 6)) + return h * 2 ** 32 + l + elif size == 7: + b, h, l = unpack('>BHL', _read(stream, 7)) + return b * 2 ** 48 + h * 2 ** 32 + l + elif size == 8: + return unpack('>Q', _read(stream, 8))[0] + else: + raise SizeError(size) + + +def read_element_float(stream, size): + """Read the Element Data of type :data:`FLOAT` + + :param stream: file-like object from which to read + :param int size: size of element's data + :raise ReadError: when not all the required bytes could be read + :raise SizeError: if size is incorrect + :return: the read float + :rtype: float + + """ + if size == 4: + return unpack('>f', _read(stream, 4))[0] + elif size == 8: + return unpack('>d', _read(stream, 8))[0] + else: + raise SizeError(size) + + +def read_element_string(stream, size): + """Read the Element Data of type :data:`STRING` + + :param stream: file-like object from which to read + :param int size: size of element's data + :raise ReadError: when not all the required bytes could be read + :raise SizeError: if size is incorrect + :return: the read ascii-decoded string + :rtype: unicode + + """ + return _read(stream, size).decode('ascii') + + +def read_element_unicode(stream, size): + """Read the Element Data of type :data:`UNICODE` + + :param stream: file-like object from which to read + :param int size: size of element's data + :raise ReadError: when not all the required bytes could be read + :raise SizeError: if size is incorrect + :return: the read utf-8-decoded string + :rtype: unicode + + """ + return _read(stream, size).decode('utf-8') + + +def read_element_date(stream, size): + """Read the Element Data of type :data:`DATE` + + :param stream: file-like object from which to read + :param int size: size of element's data + :raise ReadError: when not all the required bytes could be read + :raise SizeError: if size is incorrect + :return: the read date + :rtype: datetime + + """ + if size != 8: + raise SizeError(size) + nanoseconds = unpack('>q', _read(stream, 8))[0] + return datetime(2001, 1, 1, 0, 0, 0, 0, None) + timedelta(microseconds=nanoseconds // 1000) + + +def read_element_binary(stream, size): + """Read the Element Data of type :data:`BINARY` + + :param stream: file-like object from which to read + :param int size: size of element's data + :raise ReadError: when not all the required bytes could be read + :raise SizeError: if size is incorrect + :return: raw binary data + :rtype: bytes + + """ + return BytesIO(stream.read(size)) diff --git a/libs/enzyme/parsers/ebml/specs/matroska.xml b/libs/enzyme/parsers/ebml/specs/matroska.xml new file mode 100644 index 000000000..4f3f79fcb --- /dev/null +++ b/libs/enzyme/parsers/ebml/specs/matroska.xml @@ -0,0 +1,224 @@ + + + Set the EBML characteristics of the data to follow. Each EBML document has to start with this. + The version of EBML parser used to create the file. + The minimum EBML version a parser has to support to read this file. + The maximum length of the IDs you'll find in this file (4 or less in Matroska). + The maximum length of the sizes you'll find in this file (8 or less in Matroska). This does not override the element size indicated at the beginning of an element. Elements that have an indicated size which is larger than what is allowed by EBMLMaxSizeLength shall be considered invalid. + A string that describes the type of document that follows this EBML header. 'matroska' in our case or 'webm' for webm files. + The version of DocType interpreter used to create the file. + The minimum DocType version an interpreter has to support to read this file. + Used to void damaged data, to avoid unexpected behaviors when using damaged data. The content is discarded. Also used to reserve space in a sub-element for later use. + The CRC is computed on all the data of the Master element it's in. The CRC element should be the first in it's parent master for easier reading. All level 1 elements should include a CRC-32. The CRC in use is the IEEE CRC32 Little Endian + Contain signature of some (coming) elements in the stream. + Signature algorithm used (1=RSA, 2=elliptic). + Hash algorithm used (1=SHA1-160, 2=MD5). + The public key to use with the algorithm (in the case of a PKI-based signature). + The signature of the data (until a new. + Contains elements that will be used to compute the signature. + A list consists of a number of consecutive elements that represent one case where data is used in signature. Ex: Cluster|Block|BlockAdditional means that the BlockAdditional of all Blocks in all Clusters is used for encryption. + An element ID whose data will be used to compute the signature. + This element contains all other top-level (level 1) elements. Typically a Matroska file is composed of 1 segment. + Contains the position of other level 1 elements. + Contains a single seek entry to an EBML element. + The binary ID corresponding to the element name. + The position of the element in the segment in octets (0 = first level 1 element). + Contains miscellaneous general information and statistics on the file. + A randomly generated unique ID to identify the current segment between many others (128 bits). + A filename corresponding to this segment. + A unique ID to identify the previous chained segment (128 bits). + An escaped filename corresponding to the previous segment. + A unique ID to identify the next chained segment (128 bits). + An escaped filename corresponding to the next segment. + A randomly generated unique ID that all segments related to each other must use (128 bits). + A tuple of corresponding ID used by chapter codecs to represent this segment. + Specify an edition UID on which this correspondance applies. When not specified, it means for all editions found in the segment. + The chapter codec using this ID (0: Matroska Script, 1: DVD-menu). + The binary value used to represent this segment in the chapter codec data. The format depends on the ChapProcessCodecID used. + Timecode scale in nanoseconds (1.000.000 means all timecodes in the segment are expressed in milliseconds). + + Duration of the segment (based on TimecodeScale). + Date of the origin of timecode (value 0), i.e. production date. + General name of the segment. + Muxing application or library ("libmatroska-0.4.3"). + Writing application ("mkvmerge-0.3.3"). + The lower level element containing the (monolithic) Block structure. + Absolute timecode of the cluster (based on TimecodeScale). + The list of tracks that are not used in that part of the stream. It is useful when using overlay tracks on seeking. Then you should decide what track to use. + One of the track number that are not used from now on in the stream. It could change later if not specified as silent in a further Cluster. + The Position of the Cluster in the segment (0 in live broadcast streams). It might help to resynchronise offset on damaged streams. + Size of the previous Cluster, in octets. Can be useful for backward playing. + Similar to Block but without all the extra information, mostly used to reduced overhead when no extra feature is needed. (see SimpleBlock Structure) + Basic container of information containing a single Block or BlockVirtual, and information specific to that Block/VirtualBlock. + Block containing the actual data to be rendered and a timecode relative to the Cluster Timecode. (see Block Structure) + A Block with no data. It must be stored in the stream at the place the real Block should be in display order. (see Block Virtual) + Contain additional blocks to complete the main one. An EBML parser that has no knowledge of the Block structure could still see and use/skip these data. + Contain the BlockAdditional and some parameters. + An ID to identify the BlockAdditional level. + Interpreted by the codec as it wishes (using the BlockAddID). + The duration of the Block (based on TimecodeScale). This element is mandatory when DefaultDuration is set for the track (but can be omitted as other default values). When not written and with no DefaultDuration, the value is assumed to be the difference between the timecode of this Block and the timecode of the next Block in "display" order (not coding order). This element can be useful at the end of a Track (as there is not other Block available), or when there is a break in a track like for subtitle tracks. When set to 0 that means the frame is not a keyframe. + This frame is referenced and has the specified cache priority. In cache only a frame of the same or higher priority can replace this frame. A value of 0 means the frame is not referenced. + Timecode of another frame used as a reference (ie: B or P frame). The timecode is relative to the block it's attached to. + Relative position of the data that should be in position of the virtual block. + The new codec state to use. Data interpretation is private to the codec. This information should always be referenced by a seek entry. + Contains slices description. + Contains extra time information about the data contained in the Block. While there are a few files in the wild with this element, it is no longer in use and has been deprecated. Being able to interpret this element is not required for playback. + The reverse number of the frame in the lace (0 is the last frame, 1 is the next to last, etc). While there are a few files in the wild with this element, it is no longer in use and has been deprecated. Being able to interpret this element is not required for playback. + The number of the frame to generate from this lace with this delay (allow you to generate many frames from the same Block/Frame). + The ID of the BlockAdditional element (0 is the main Block). + The (scaled) delay to apply to the element. + The (scaled) duration to apply to the element. + DivX trick track extenstions + DivX trick track extenstions + DivX trick track extenstions + Similar to SimpleBlock but the data inside the Block are Transformed (encrypt and/or signed). (see EncryptedBlock Structure) + A top-level block of information with many tracks described. + Describes a track with all elements. + The track number as used in the Block Header (using more than 127 tracks is not encouraged, though the design allows an unlimited number). + A unique ID to identify the Track. This should be kept the same when making a direct stream copy of the Track to another file. + A set of track types coded on 8 bits (1: video, 2: audio, 3: complex, 0x10: logo, 0x11: subtitle, 0x12: buttons, 0x20: control). + Set if the track is usable. (1 bit) + Set if that track (audio, video or subs) SHOULD be active if no language found matches the user preference. (1 bit) + Set if that track MUST be active during playback. There can be many forced track for a kind (audio, video or subs), the player should select the one which language matches the user preference or the default + forced track. Overlay MAY happen between a forced and non-forced track of the same kind. (1 bit) + Set if the track may contain blocks using lacing. (1 bit) + The minimum number of frames a player should be able to cache during playback. If set to 0, the reference pseudo-cache system is not used. + The maximum cache size required to store referenced frames in and the current frame. 0 means no cache is needed. + Number of nanoseconds (not scaled via TimecodeScale) per frame ('frame' in the Matroska sense -- one element put into a (Simple)Block). + DEPRECATED, DO NOT USE. The scale to apply on this track to work at normal speed in relation with other tracks (mostly used to adjust video speed when the audio length differs). + A value to add to the Block's Timecode. This can be used to adjust the playback offset of a track. + The maximum value of BlockAddID. A value 0 means there is no BlockAdditions for this track. + A human-readable track name. + Specifies the language of the track in the Matroska languages form. + An ID corresponding to the codec, see the codec page for more info. + Private data only known to the codec. + A human-readable string specifying the codec. + The UID of an attachment that is used by this codec. + A string describing the encoding setting used. + A URL to find information about the codec used. + A URL to download about the codec used. + The codec can decode potentially damaged data (1 bit). + Specify that this track is an overlay track for the Track specified (in the u-integer). That means when this track has a gap (see SilentTracks) the overlay track should be used instead. The order of multiple TrackOverlay matters, the first one is the one that should be used. If not found it should be the second, etc. + The track identification for the given Chapter Codec. + Specify an edition UID on which this translation applies. When not specified, it means for all editions found in the segment. + The chapter codec using this ID (0: Matroska Script, 1: DVD-menu). + The binary value used to represent this track in the chapter codec data. The format depends on the ChapProcessCodecID used. + Video settings. + Set if the video is interlaced. (1 bit) + Stereo-3D video mode (0: mono, 1: side by side (left eye is first), 2: top-bottom (right eye is first), 3: top-bottom (left eye is first), 4: checkboard (right is first), 5: checkboard (left is first), 6: row interleaved (right is first), 7: row interleaved (left is first), 8: column interleaved (right is first), 9: column interleaved (left is first), 10: anaglyph (cyan/red), 11: side by side (right eye is first), 12: anaglyph (green/magenta), 13 both eyes laced in one Block (left eye is first), 14 both eyes laced in one Block (right eye is first)) . There are some more details on 3D support in the Specification Notes. + DEPRECATED, DO NOT USE. Bogus StereoMode value used in old versions of libmatroska. (0: mono, 1: right eye, 2: left eye, 3: both eyes). + Width of the encoded video frames in pixels. + Height of the encoded video frames in pixels. + The number of video pixels to remove at the bottom of the image (for HDTV content). + The number of video pixels to remove at the top of the image. + The number of video pixels to remove on the left of the image. + The number of video pixels to remove on the right of the image. + Width of the video frames to display. The default value is only valid when DisplayUnit is 0. + Height of the video frames to display. The default value is only valid when DisplayUnit is 0. + How DisplayWidth & DisplayHeight should be interpreted (0: pixels, 1: centimeters, 2: inches, 3: Display Aspect Ratio). + Specify the possible modifications to the aspect ratio (0: free resizing, 1: keep aspect ratio, 2: fixed). + Same value as in AVI (32 bits). + Gamma Value. + Number of frames per second. Informational only. + Audio settings. + Sampling frequency in Hz. + Real output sampling frequency in Hz (used for SBR techniques). + Numbers of channels in the track. + Table of horizontal angles for each successive channel, see appendix. + Bits per sample, mostly used for PCM. + Operation that needs to be applied on tracks to create this virtual track. For more details look at the Specification Notes on the subject. + Contains the list of all video plane tracks that need to be combined to create this 3D track + Contains a video plane track that need to be combined to create this 3D track + The trackUID number of the track representing the plane. + The kind of plane this track corresponds to (0: left eye, 1: right eye, 2: background). + Contains the list of all tracks whose Blocks need to be combined to create this virtual track + The trackUID number of a track whose blocks are used to create this virtual track. + DivX trick track extenstions + DivX trick track extenstions + DivX trick track extenstions + DivX trick track extenstions + DivX trick track extenstions + Settings for several content encoding mechanisms like compression or encryption. + Settings for one content encoding like compression or encryption. + Tells when this modification was used during encoding/muxing starting with 0 and counting upwards. The decoder/demuxer has to start with the highest order number it finds and work its way down. This value has to be unique over all ContentEncodingOrder elements in the segment. + A bit field that describes which elements have been modified in this way. Values (big endian) can be OR'ed. Possible values:
1 - all frame contents,
2 - the track's private data,
4 - the next ContentEncoding (next ContentEncodingOrder. Either the data inside ContentCompression and/or ContentEncryption)
+ A value describing what kind of transformation has been done. Possible values:
0 - compression,
1 - encryption
+ Settings describing the compression used. Must be present if the value of ContentEncodingType is 0 and absent otherwise. Each block must be decompressable even if no previous block is available in order not to prevent seeking. + The compression algorithm used. Algorithms that have been specified so far are:
0 - zlib,
1 - bzlib,
2 - lzo1x
3 - Header Stripping
+ Settings that might be needed by the decompressor. For Header Stripping (ContentCompAlgo=3), the bytes that were removed from the beggining of each frames of the track. + Settings describing the encryption used. Must be present if the value of ContentEncodingType is 1 and absent otherwise. + The encryption algorithm used. The value '0' means that the contents have not been encrypted but only signed. Predefined values:
1 - DES, 2 - 3DES, 3 - Twofish, 4 - Blowfish, 5 - AES
+ For public key algorithms this is the ID of the public key the the data was encrypted with. + A cryptographic signature of the contents. + This is the ID of the private key the data was signed with. + The algorithm used for the signature. A value of '0' means that the contents have not been signed but only encrypted. Predefined values:
1 - RSA
+ The hash algorithm used for the signature. A value of '0' means that the contents have not been signed but only encrypted. Predefined values:
1 - SHA1-160
2 - MD5
+ A top-level element to speed seeking access. All entries are local to the segment. Should be mandatory for non "live" streams. + Contains all information relative to a seek point in the segment. + Absolute timecode according to the segment time base. + Contain positions for different tracks corresponding to the timecode. + The track for which a position is given. + The position of the Cluster containing the required Block. + The relative position of the referenced block inside the cluster with 0 being the first possible position for an element inside that cluster. + The duration of the block according to the segment time base. If missing the track's DefaultDuration does not apply and no duration information is available in terms of the cues. + Number of the Block in the specified Cluster. + The position of the Codec State corresponding to this Cue element. 0 means that the data is taken from the initial Track Entry. + The Clusters containing the required referenced Blocks. + Timecode of the referenced Block. + The Position of the Cluster containing the referenced Block. + Number of the referenced Block of Track X in the specified Cluster. + The position of the Codec State corresponding to this referenced element. 0 means that the data is taken from the initial Track Entry. + Contain attached files. + An attached file. + A human-friendly name for the attached file. + Filename of the attached file. + MIME type of the file. + The data of the file. + Unique ID representing the file, as random as possible. + A binary value that a track/codec can refer to when the attachment is needed. + DivX font extension + DivX font extension + A system to define basic menus and partition data. For more detailed information, look at the Chapters Explanation. + Contains all information about a segment edition. + A unique ID to identify the edition. It's useful for tagging an edition. + If an edition is hidden (1), it should not be available to the user interface (but still to Control Tracks). (1 bit) + If a flag is set (1) the edition should be used as the default one. (1 bit) + Specify if the chapters can be defined multiple times and the order to play them is enforced. (1 bit) + Contains the atom information to use as the chapter atom (apply to all tracks). + A unique ID to identify the Chapter. + A unique string ID to identify the Chapter. Use for WebVTT cue identifier storage. + Timecode of the start of Chapter (not scaled). + Timecode of the end of Chapter (timecode excluded, not scaled). + If a chapter is hidden (1), it should not be available to the user interface (but still to Control Tracks). (1 bit) + Specify wether the chapter is enabled. It can be enabled/disabled by a Control Track. When disabled, the movie should skip all the content between the TimeStart and TimeEnd of this chapter. (1 bit) + A segment to play in place of this chapter. Edition ChapterSegmentEditionUID should be used for this segment, otherwise no edition is used. + The EditionUID to play from the segment linked in ChapterSegmentUID. + Specify the physical equivalent of this ChapterAtom like "DVD" (60) or "SIDE" (50), see complete list of values. + List of tracks on which the chapter applies. If this element is not present, all tracks apply + UID of the Track to apply this chapter too. In the absense of a control track, choosing this chapter will select the listed Tracks and deselect unlisted tracks. Absense of this element indicates that the Chapter should be applied to any currently used Tracks. + Contains all possible strings to use for the chapter display. + Contains the string to use as the chapter atom. + The languages corresponding to the string, in the bibliographic ISO-639-2 form. + The countries corresponding to the string, same 2 octets as in Internet domains. + Contains all the commands associated to the Atom. + Contains the type of the codec used for the processing. A value of 0 means native Matroska processing (to be defined), a value of 1 means the DVD command set is used. More codec IDs can be added later. + Some optional data attached to the ChapProcessCodecID information. For ChapProcessCodecID = 1, it is the "DVD level" equivalent. + Contains all the commands associated to the Atom. + Defines when the process command should be handled (0: during the whole chapter, 1: before starting playback, 2: after playback of the chapter). + Contains the command information. The data should be interpreted depending on the ChapProcessCodecID value. For ChapProcessCodecID = 1, the data correspond to the binary DVD cell pre/post commands. + Element containing elements specific to Tracks/Chapters. A list of valid tags can be found here. + Element containing elements specific to Tracks/Chapters. + Contain all UIDs where the specified meta data apply. It is empty to describe everything in the segment. + A number to indicate the logical level of the target (see TargetType). + An informational string that can be used to display the logical level of the target like "ALBUM", "TRACK", "MOVIE", "CHAPTER", etc (see TargetType). + A unique ID to identify the Track(s) the tags belong to. If the value is 0 at this level, the tags apply to all tracks in the Segment. + A unique ID to identify the EditionEntry(s) the tags belong to. If the value is 0 at this level, the tags apply to all editions in the Segment. + A unique ID to identify the Chapter(s) the tags belong to. If the value is 0 at this level, the tags apply to all chapters in the Segment. + A unique ID to identify the Attachment(s) the tags belong to. If the value is 0 at this level, the tags apply to all the attachments in the Segment. + Contains general information about the target. + The name of the Tag that is going to be stored. + Specifies the language of the tag specified, in the Matroska languages form. + Indication to know if this is the default/original language to use for the given tag. (1 bit) + The value of the Tag. + The values of the Tag if it is binary. Note that this cannot be used in the same SimpleTag as TagString. +
diff --git a/libs/enzyme/tests/__init__.py b/libs/enzyme/tests/__init__.py new file mode 100644 index 000000000..426d3598f --- /dev/null +++ b/libs/enzyme/tests/__init__.py @@ -0,0 +1,10 @@ +# -*- coding: utf-8 -*- +from . import test_mkv, test_parsers +import unittest + + +suite = unittest.TestSuite([test_mkv.suite(), test_parsers.suite()]) + + +if __name__ == '__main__': + unittest.TextTestRunner().run(suite) diff --git a/libs/enzyme/tests/parsers/ebml/test1.mkv.yml b/libs/enzyme/tests/parsers/ebml/test1.mkv.yml new file mode 100644 index 000000000..92642ec5d --- /dev/null +++ b/libs/enzyme/tests/parsers/ebml/test1.mkv.yml @@ -0,0 +1,2974 @@ +- - 440786851 + - 6 + - EBML + - 0 + - 5 + - 19 + - - [17026, 3, DocType, 1, 8, 8, matroska] + - [17031, 1, DocTypeVersion, 1, 19, 1, 2] + - [17029, 1, DocTypeReadVersion, 1, 23, 1, 2] +- - 408125543 + - 6 + - Segment + - 0 + - 32 + - 23339305 + - - - 290298740 + - 6 + - SeekHead + - 1 + - 37 + - 59 + - - - 19899 + - 6 + - Seek + - 2 + - 40 + - 11 + - - [21419, 7, SeekID, 3, 43, 4, null] + - [21420, 1, SeekPosition, 3, 50, 1, 64] + - - 19899 + - 6 + - Seek + - 2 + - 54 + - 12 + - - [21419, 7, SeekID, 3, 57, 4, null] + - [21420, 1, SeekPosition, 3, 64, 2, 275] + - - 19899 + - 6 + - Seek + - 2 + - 69 + - 12 + - - [21419, 7, SeekID, 3, 72, 4, null] + - [21420, 1, SeekPosition, 3, 79, 2, 440] + - - 19899 + - 6 + - Seek + - 2 + - 84 + - 12 + - - [21419, 7, SeekID, 3, 87, 4, null] + - [21420, 1, SeekPosition, 3, 94, 2, 602] + - - 357149030 + - 6 + - Info + - 1 + - 102 + - 205 + - - [17545, 2, Duration, 2, 105, 4, 87336.0] + - [19840, 4, MuxingApp, 2, 112, 39, libebml2 v0.10.0 + libmatroska2 v0.10.1] + - [22337, 4, WritingApp, 2, 154, 123, 'mkclean 0.5.5 ru from libebml v1.0.0 + + libmatroska v1.0.0 + mkvmerge v4.1.1 (''Bouncin'' Back'') built on Jul 3 + 2010 22:54:08'] + - [17505, 5, DateUTC, 2, 280, 8, !!timestamp '2010-08-21 07:23:03'] + - [29604, 7, SegmentUID, 2, 291, 16, null] + - - 374648427 + - 6 + - Tracks + - 1 + - 313 + - 159 + - - - 174 + - 6 + - TrackEntry + - 2 + - 315 + - 105 + - - [215, 1, TrackNumber, 3, 317, 1, 1] + - [131, 1, TrackType, 3, 320, 1, 1] + - [134, 3, CodecID, 3, 323, 15, V_MS/VFW/FOURCC] + - [29637, 1, TrackUID, 3, 341, 4, 2422994868] + - [156, 1, FlagLacing, 3, 347, 1, 0] + - [28135, 1, MinCache, 3, 351, 1, 1] + - [25506, 7, CodecPrivate, 3, 355, 40, null] + - [2352003, 1, DefaultDuration, 3, 399, 4, 41666666] + - [2274716, 3, Language, 3, 407, 3, und] + - - 224 + - 6 + - Video + - 3 + - 412 + - 8 + - - [176, 1, PixelWidth, 4, 414, 2, 854] + - [186, 1, PixelHeight, 4, 418, 2, 480] + - - 174 + - 6 + - TrackEntry + - 2 + - 422 + - 50 + - - [215, 1, TrackNumber, 3, 424, 1, 2] + - [131, 1, TrackType, 3, 427, 1, 2] + - [134, 3, CodecID, 3, 430, 9, A_MPEG/L3] + - [29637, 1, TrackUID, 3, 442, 4, 3653291187] + - [2352003, 1, DefaultDuration, 3, 450, 4, 24000000] + - [2274716, 3, Language, 3, 458, 3, und] + - - 225 + - 6 + - Audio + - 3 + - 463 + - 9 + - - [181, 2, SamplingFrequency, 4, 465, 4, 48000.0] + - [159, 1, Channels, 4, 471, 1, 2] + - - 307544935 + - 6 + - Tags + - 1 + - 478 + - 156 + - - - 29555 + - 6 + - Tag + - 2 + - 482 + - 152 + - - - 25536 + - 6 + - Targets + - 3 + - 485 + - 0 + - [] + - - 26568 + - 6 + - SimpleTag + - 3 + - 488 + - 34 + - - [17827, 4, TagName, 4, 491, 5, TITLE] + - [17543, 4, TagString, 4, 499, 23, Big Buck Bunny - test 1] + - - 26568 + - 6 + - SimpleTag + - 3 + - 525 + - 23 + - - [17827, 4, TagName, 4, 528, 13, DATE_RELEASED] + - [17543, 4, TagString, 4, 544, 4, '2010'] + - - 26568 + - 6 + - SimpleTag + - 3 + - 551 + - 83 + - - [17827, 4, TagName, 4, 554, 7, COMMENT] + - [17543, 4, TagString, 4, 564, 70, 'Matroska Validation File1, basic + MPEG4.2 and MP3 with only SimpleBlock'] + - - 475249515 + - 6 + - Cues + - 1 + - 640 + - 163 + - - - 187 + - 6 + - CuePoint + - 2 + - 642 + - 12 + - - [179, 1, CueTime, 3, 644, 1, 0] + - - 183 + - 6 + - CueTrackPositions + - 3 + - 647 + - 7 + - - [247, 1, CueTrack, 4, 649, 1, 1] + - [241, 1, CueClusterPosition, 4, 652, 2, 771] + - - 187 + - 6 + - CuePoint + - 2 + - 656 + - 14 + - - [179, 1, CueTime, 3, 658, 2, 1042] + - - 183 + - 6 + - CueTrackPositions + - 3 + - 662 + - 8 + - - [247, 1, CueTrack, 4, 664, 1, 1] + - [241, 1, CueClusterPosition, 4, 667, 3, 145582] + - - 187 + - 6 + - CuePoint + - 2 + - 672 + - 14 + - - [179, 1, CueTime, 3, 674, 2, 11667] + - - 183 + - 6 + - CueTrackPositions + - 3 + - 678 + - 8 + - - [247, 1, CueTrack, 4, 680, 1, 1] + - [241, 1, CueClusterPosition, 4, 683, 3, 3131552] + - - 187 + - 6 + - CuePoint + - 2 + - 688 + - 14 + - - [179, 1, CueTime, 3, 690, 2, 22083] + - - 183 + - 6 + - CueTrackPositions + - 3 + - 694 + - 8 + - - [247, 1, CueTrack, 4, 696, 1, 1] + - [241, 1, CueClusterPosition, 4, 699, 3, 5654336] + - - 187 + - 6 + - CuePoint + - 2 + - 704 + - 14 + - - [179, 1, CueTime, 3, 706, 2, 32500] + - - 183 + - 6 + - CueTrackPositions + - 3 + - 710 + - 8 + - - [247, 1, CueTrack, 4, 712, 1, 1] + - [241, 1, CueClusterPosition, 4, 715, 3, 9696374] + - - 187 + - 6 + - CuePoint + - 2 + - 720 + - 14 + - - [179, 1, CueTime, 3, 722, 2, 42917] + - - 183 + - 6 + - CueTrackPositions + - 3 + - 726 + - 8 + - - [247, 1, CueTrack, 4, 728, 1, 1] + - [241, 1, CueClusterPosition, 4, 731, 3, 13440514] + - - 187 + - 6 + - CuePoint + - 2 + - 736 + - 14 + - - [179, 1, CueTime, 3, 738, 2, 53333] + - - 183 + - 6 + - CueTrackPositions + - 3 + - 742 + - 8 + - - [247, 1, CueTrack, 4, 744, 1, 1] + - [241, 1, CueClusterPosition, 4, 747, 3, 16690071] + - - 187 + - 6 + - CuePoint + - 2 + - 752 + - 15 + - - [179, 1, CueTime, 3, 754, 2, 56083] + - - 183 + - 6 + - CueTrackPositions + - 3 + - 758 + - 9 + - - [247, 1, CueTrack, 4, 760, 1, 1] + - [241, 1, CueClusterPosition, 4, 763, 4, 17468879] + - - 187 + - 6 + - CuePoint + - 2 + - 769 + - 16 + - - [179, 1, CueTime, 3, 771, 3, 66500] + - - 183 + - 6 + - CueTrackPositions + - 3 + - 776 + - 9 + - - [247, 1, CueTrack, 4, 778, 1, 1] + - [241, 1, CueClusterPosition, 4, 781, 4, 18628759] + - - 187 + - 6 + - CuePoint + - 2 + - 787 + - 16 + - - [179, 1, CueTime, 3, 789, 3, 76917] + - - 183 + - 6 + - CueTrackPositions + - 3 + - 794 + - 9 + - - [247, 1, CueTrack, 4, 796, 1, 1] + - [241, 1, CueClusterPosition, 4, 799, 4, 20732433] + - - 524531317 + - 6 + - Cluster + - 1 + - 810 + - 144804 + - - [231, 1, Timecode, 2, 812, 1, 0] + - [163, 7, SimpleBlock, 2, 816, 5008, null] + - [163, 7, SimpleBlock, 2, 5827, 4464, null] + - [163, 7, SimpleBlock, 2, 10294, 303, null] + - [163, 7, SimpleBlock, 2, 10600, 303, null] + - [163, 7, SimpleBlock, 2, 10906, 208, null] + - [163, 7, SimpleBlock, 2, 11117, 676, null] + - [163, 7, SimpleBlock, 2, 11796, 2465, null] + - [163, 7, SimpleBlock, 2, 14264, 2794, null] + - [163, 7, SimpleBlock, 2, 17061, 4486, null] + - [163, 7, SimpleBlock, 2, 21550, 4966, null] + - [163, 7, SimpleBlock, 2, 26519, 580, null] + - [163, 7, SimpleBlock, 2, 27102, 4476, null] + - [163, 7, SimpleBlock, 2, 31581, 3077, null] + - [163, 7, SimpleBlock, 2, 34661, 4485, null] + - [163, 7, SimpleBlock, 2, 39149, 5117, null] + - [163, 7, SimpleBlock, 2, 44269, 1639, null] + - [163, 7, SimpleBlock, 2, 45911, 4521, null] + - [163, 7, SimpleBlock, 2, 50435, 772, null] + - [163, 7, SimpleBlock, 2, 51210, 4543, null] + - [163, 7, SimpleBlock, 2, 55756, 3371, null] + - [163, 7, SimpleBlock, 2, 59130, 4602, null] + - [163, 7, SimpleBlock, 2, 63735, 5427, null] + - [163, 7, SimpleBlock, 2, 69165, 1735, null] + - [163, 7, SimpleBlock, 2, 70903, 4790, null] + - [163, 7, SimpleBlock, 2, 75696, 772, null] + - [163, 7, SimpleBlock, 2, 76471, 4905, null] + - [163, 7, SimpleBlock, 2, 81379, 1639, null] + - [163, 7, SimpleBlock, 2, 83021, 5052, null] + - [163, 7, SimpleBlock, 2, 88076, 2697, null] + - [163, 7, SimpleBlock, 2, 90776, 5215, null] + - [163, 7, SimpleBlock, 2, 95994, 3371, null] + - [163, 7, SimpleBlock, 2, 99368, 5630, null] + - [163, 7, SimpleBlock, 2, 105001, 5582, null] + - [163, 7, SimpleBlock, 2, 110586, 5696, null] + - [163, 7, SimpleBlock, 2, 116285, 2505, null] + - [163, 7, SimpleBlock, 2, 118793, 6002, null] + - [163, 7, SimpleBlock, 2, 124798, 5794, null] + - [163, 7, SimpleBlock, 2, 130595, 2601, null] + - [163, 7, SimpleBlock, 2, 133199, 6520, null] + - [163, 7, SimpleBlock, 2, 139722, 5892, null] + - - 524531317 + - 6 + - Cluster + - 1 + - 145621 + - 41405 + - - [231, 1, Timecode, 2, 145623, 2, 1042] + - [163, 7, SimpleBlock, 2, 145628, 964, null] + - [163, 7, SimpleBlock, 2, 146595, 2504, null] + - [163, 7, SimpleBlock, 2, 149102, 7082, null] + - [163, 7, SimpleBlock, 2, 156187, 6024, null] + - [163, 7, SimpleBlock, 2, 162214, 4237, null] + - [163, 7, SimpleBlock, 2, 166454, 7739, null] + - [163, 7, SimpleBlock, 2, 174196, 6210, null] + - [163, 7, SimpleBlock, 2, 180409, 6617, null] + - - 524531317 + - 6 + - Cluster + - 1 + - 187034 + - 2944550 + - - [231, 1, Timecode, 2, 187036, 2, 1250] + - [163, 7, SimpleBlock, 2, 187041, 772, null] + - [163, 7, SimpleBlock, 2, 187816, 6736, null] + - [163, 7, SimpleBlock, 2, 194555, 8731, null] + - [163, 7, SimpleBlock, 2, 203289, 6522, null] + - [163, 7, SimpleBlock, 2, 209814, 7087, null] + - [163, 7, SimpleBlock, 2, 216904, 7323, null] + - [163, 7, SimpleBlock, 2, 224230, 7629, null] + - [163, 7, SimpleBlock, 2, 231862, 6546, null] + - [163, 7, SimpleBlock, 2, 238411, 7860, null] + - [163, 7, SimpleBlock, 2, 246274, 7989, null] + - [163, 7, SimpleBlock, 2, 254266, 8281, null] + - [163, 7, SimpleBlock, 2, 262550, 8399, null] + - [163, 7, SimpleBlock, 2, 270952, 5967, null] + - [163, 7, SimpleBlock, 2, 276922, 8557, null] + - [163, 7, SimpleBlock, 2, 285482, 8820, null] + - [163, 7, SimpleBlock, 2, 294305, 8886, null] + - [163, 7, SimpleBlock, 2, 303194, 8997, null] + - [163, 7, SimpleBlock, 2, 312194, 9160, null] + - [163, 7, SimpleBlock, 2, 321357, 6643, null] + - [163, 7, SimpleBlock, 2, 328003, 9359, null] + - [163, 7, SimpleBlock, 2, 337365, 9630, null] + - [163, 7, SimpleBlock, 2, 346998, 10035, null] + - [163, 7, SimpleBlock, 2, 357036, 10450, null] + - [163, 7, SimpleBlock, 2, 367489, 6641, null] + - [163, 7, SimpleBlock, 2, 374133, 11054, null] + - [163, 7, SimpleBlock, 2, 385190, 11571, null] + - [163, 7, SimpleBlock, 2, 396764, 11910, null] + - [163, 7, SimpleBlock, 2, 408677, 4492, null] + - [163, 7, SimpleBlock, 2, 413172, 4513, null] + - [163, 7, SimpleBlock, 2, 417688, 6931, null] + - [163, 7, SimpleBlock, 2, 424622, 5450, null] + - [163, 7, SimpleBlock, 2, 430075, 5226, null] + - [163, 7, SimpleBlock, 2, 435304, 5387, null] + - [163, 7, SimpleBlock, 2, 440694, 5433, null] + - [163, 7, SimpleBlock, 2, 446130, 5557, null] + - [163, 7, SimpleBlock, 2, 451690, 6163, null] + - [163, 7, SimpleBlock, 2, 457856, 5576, null] + - [163, 7, SimpleBlock, 2, 463435, 5832, null] + - [163, 7, SimpleBlock, 2, 469270, 5718, null] + - [163, 7, SimpleBlock, 2, 474991, 5658, null] + - [163, 7, SimpleBlock, 2, 480652, 6161, null] + - [163, 7, SimpleBlock, 2, 486816, 5455, null] + - [163, 7, SimpleBlock, 2, 492274, 5361, null] + - [163, 7, SimpleBlock, 2, 497638, 5391, null] + - [163, 7, SimpleBlock, 2, 503032, 5249, null] + - [163, 7, SimpleBlock, 2, 508284, 5241, null] + - [163, 7, SimpleBlock, 2, 513528, 6161, null] + - [163, 7, SimpleBlock, 2, 519692, 5189, null] + - [163, 7, SimpleBlock, 2, 524884, 5186, null] + - [163, 7, SimpleBlock, 2, 530073, 5185, null] + - [163, 7, SimpleBlock, 2, 535261, 5443, null] + - [163, 7, SimpleBlock, 2, 540707, 5587, null] + - [163, 7, SimpleBlock, 2, 546297, 5559, null] + - [163, 7, SimpleBlock, 2, 551859, 5899, null] + - [163, 7, SimpleBlock, 2, 557761, 6247, null] + - [163, 7, SimpleBlock, 2, 564011, 6210, null] + - [163, 7, SimpleBlock, 2, 570224, 6362, null] + - [163, 7, SimpleBlock, 2, 576589, 5776, null] + - [163, 7, SimpleBlock, 2, 582368, 6608, null] + - [163, 7, SimpleBlock, 2, 588979, 6560, null] + - [163, 7, SimpleBlock, 2, 595542, 6658, null] + - [163, 7, SimpleBlock, 2, 602203, 7020, null] + - [163, 7, SimpleBlock, 2, 609226, 7107, null] + - [163, 7, SimpleBlock, 2, 616336, 6063, null] + - [163, 7, SimpleBlock, 2, 622402, 7022, null] + - [163, 7, SimpleBlock, 2, 629427, 7149, null] + - [163, 7, SimpleBlock, 2, 636579, 7180, null] + - [163, 7, SimpleBlock, 2, 643762, 7213, null] + - [163, 7, SimpleBlock, 2, 650978, 5967, null] + - [163, 7, SimpleBlock, 2, 656948, 7189, null] + - [163, 7, SimpleBlock, 2, 664140, 7478, null] + - [163, 7, SimpleBlock, 2, 671621, 7488, null] + - [163, 7, SimpleBlock, 2, 679112, 7491, null] + - [163, 7, SimpleBlock, 2, 686606, 7515, null] + - [163, 7, SimpleBlock, 2, 694124, 5873, null] + - [163, 7, SimpleBlock, 2, 700000, 7718, null] + - [163, 7, SimpleBlock, 2, 707721, 7485, null] + - [163, 7, SimpleBlock, 2, 715209, 7448, null] + - [163, 7, SimpleBlock, 2, 722660, 7483, null] + - [163, 7, SimpleBlock, 2, 730146, 7497, null] + - [163, 7, SimpleBlock, 2, 737646, 5682, null] + - [163, 7, SimpleBlock, 2, 743331, 7583, null] + - [163, 7, SimpleBlock, 2, 750917, 7666, null] + - [163, 7, SimpleBlock, 2, 758586, 7792, null] + - [163, 7, SimpleBlock, 2, 766381, 7810, null] + - [163, 7, SimpleBlock, 2, 774194, 5778, null] + - [163, 7, SimpleBlock, 2, 779975, 7823, null] + - [163, 7, SimpleBlock, 2, 787801, 7962, null] + - [163, 7, SimpleBlock, 2, 795766, 8032, null] + - [163, 7, SimpleBlock, 2, 803801, 8119, null] + - [163, 7, SimpleBlock, 2, 811923, 8142, null] + - [163, 7, SimpleBlock, 2, 820068, 5874, null] + - [163, 7, SimpleBlock, 2, 825945, 8045, null] + - [163, 7, SimpleBlock, 2, 833993, 8247, null] + - [163, 7, SimpleBlock, 2, 842243, 8393, null] + - [163, 7, SimpleBlock, 2, 850639, 8264, null] + - [163, 7, SimpleBlock, 2, 858906, 6062, null] + - [163, 7, SimpleBlock, 2, 864971, 8456, null] + - [163, 7, SimpleBlock, 2, 873430, 8595, null] + - [163, 7, SimpleBlock, 2, 882028, 8604, null] + - [163, 7, SimpleBlock, 2, 890635, 8690, null] + - [163, 7, SimpleBlock, 2, 899328, 8682, null] + - [163, 7, SimpleBlock, 2, 908013, 5874, null] + - [163, 7, SimpleBlock, 2, 913890, 8927, null] + - [163, 7, SimpleBlock, 2, 922820, 8768, null] + - [163, 7, SimpleBlock, 2, 931591, 9073, null] + - [163, 7, SimpleBlock, 2, 940667, 9001, null] + - [163, 7, SimpleBlock, 2, 949671, 8907, null] + - [163, 7, SimpleBlock, 2, 958581, 5873, null] + - [163, 7, SimpleBlock, 2, 964457, 8930, null] + - [163, 7, SimpleBlock, 2, 973390, 8900, null] + - [163, 7, SimpleBlock, 2, 982293, 9019, null] + - [163, 7, SimpleBlock, 2, 991315, 9005, null] + - [163, 7, SimpleBlock, 2, 1000323, 5873, null] + - [163, 7, SimpleBlock, 2, 1006199, 9000, null] + - [163, 7, SimpleBlock, 2, 1015202, 9075, null] + - [163, 7, SimpleBlock, 2, 1024280, 9002, null] + - [163, 7, SimpleBlock, 2, 1033285, 9161, null] + - [163, 7, SimpleBlock, 2, 1042449, 9136, null] + - [163, 7, SimpleBlock, 2, 1051588, 5682, null] + - [163, 7, SimpleBlock, 2, 1057273, 9178, null] + - [163, 7, SimpleBlock, 2, 1066454, 9207, null] + - [163, 7, SimpleBlock, 2, 1075664, 9305, null] + - [163, 7, SimpleBlock, 2, 1084972, 9626, null] + - [163, 7, SimpleBlock, 2, 1094601, 5873, null] + - [163, 7, SimpleBlock, 2, 1100477, 9755, null] + - [163, 7, SimpleBlock, 2, 1110235, 9724, null] + - [163, 7, SimpleBlock, 2, 1119962, 9933, null] + - [163, 7, SimpleBlock, 2, 1129898, 9880, null] + - [163, 7, SimpleBlock, 2, 1139781, 10249, null] + - [163, 7, SimpleBlock, 2, 1150033, 6350, null] + - [163, 7, SimpleBlock, 2, 1156386, 10265, null] + - [163, 7, SimpleBlock, 2, 1166654, 10385, null] + - [163, 7, SimpleBlock, 2, 1177042, 10350, null] + - [163, 7, SimpleBlock, 2, 1187395, 10340, null] + - [163, 7, SimpleBlock, 2, 1197738, 10483, null] + - [163, 7, SimpleBlock, 2, 1208224, 6739, null] + - [163, 7, SimpleBlock, 2, 1214966, 10579, null] + - [163, 7, SimpleBlock, 2, 1225548, 10512, null] + - [163, 7, SimpleBlock, 2, 1236063, 10449, null] + - [163, 7, SimpleBlock, 2, 1246515, 10633, null] + - [163, 7, SimpleBlock, 2, 1257151, 6642, null] + - [163, 7, SimpleBlock, 2, 1263796, 10454, null] + - [163, 7, SimpleBlock, 2, 1274253, 10695, null] + - [163, 7, SimpleBlock, 2, 1284951, 10452, null] + - [163, 7, SimpleBlock, 2, 1295406, 10663, null] + - [163, 7, SimpleBlock, 2, 1306072, 10309, null] + - [163, 7, SimpleBlock, 2, 1316384, 6547, null] + - [163, 7, SimpleBlock, 2, 1322934, 10359, null] + - [163, 7, SimpleBlock, 2, 1333296, 10337, null] + - [163, 7, SimpleBlock, 2, 1343636, 10027, null] + - [163, 7, SimpleBlock, 2, 1353666, 9883, null] + - [163, 7, SimpleBlock, 2, 1363552, 6451, null] + - [163, 7, SimpleBlock, 2, 1370006, 9643, null] + - [163, 7, SimpleBlock, 2, 1379652, 9148, null] + - [163, 7, SimpleBlock, 2, 1388803, 8794, null] + - [163, 7, SimpleBlock, 2, 1397600, 8468, null] + - [163, 7, SimpleBlock, 2, 1406071, 8372, null] + - [163, 7, SimpleBlock, 2, 1414446, 6835, null] + - [163, 7, SimpleBlock, 2, 1421284, 8121, null] + - [163, 7, SimpleBlock, 2, 1429408, 8022, null] + - [163, 7, SimpleBlock, 2, 1437433, 8096, null] + - [163, 7, SimpleBlock, 2, 1445532, 7920, null] + - [163, 7, SimpleBlock, 2, 1453455, 7699, null] + - [163, 7, SimpleBlock, 2, 1461157, 6545, null] + - [163, 7, SimpleBlock, 2, 1467705, 7707, null] + - [163, 7, SimpleBlock, 2, 1475415, 7821, null] + - [163, 7, SimpleBlock, 2, 1483239, 7978, null] + - [163, 7, SimpleBlock, 2, 1491220, 8241, null] + - [163, 7, SimpleBlock, 2, 1499464, 5778, null] + - [163, 7, SimpleBlock, 2, 1505245, 8282, null] + - [163, 7, SimpleBlock, 2, 1513530, 8598, null] + - [163, 7, SimpleBlock, 2, 1522131, 9098, null] + - [163, 7, SimpleBlock, 2, 1531232, 9644, null] + - [163, 7, SimpleBlock, 2, 1540879, 10086, null] + - [163, 7, SimpleBlock, 2, 1550968, 5779, null] + - [163, 7, SimpleBlock, 2, 1556750, 10191, null] + - [163, 7, SimpleBlock, 2, 1566944, 10458, null] + - [163, 7, SimpleBlock, 2, 1577405, 10570, null] + - [163, 7, SimpleBlock, 2, 1587978, 11074, null] + - [163, 7, SimpleBlock, 2, 1599055, 6158, null] + - [163, 7, SimpleBlock, 2, 1605216, 11120, null] + - [163, 7, SimpleBlock, 2, 1616339, 11421, null] + - [163, 7, SimpleBlock, 2, 1627763, 11589, null] + - [163, 7, SimpleBlock, 2, 1639355, 11727, null] + - [163, 7, SimpleBlock, 2, 1651085, 11990, null] + - [163, 7, SimpleBlock, 2, 1663078, 6352, null] + - [163, 7, SimpleBlock, 2, 1669433, 12178, null] + - [163, 7, SimpleBlock, 2, 1681614, 12242, null] + - [163, 7, SimpleBlock, 2, 1693859, 12403, null] + - [163, 7, SimpleBlock, 2, 1706265, 12268, null] + - [163, 7, SimpleBlock, 2, 1718536, 12507, null] + - [163, 7, SimpleBlock, 2, 1731046, 6450, null] + - [163, 7, SimpleBlock, 2, 1737499, 12548, null] + - [163, 7, SimpleBlock, 2, 1750050, 12540, null] + - [163, 7, SimpleBlock, 2, 1762593, 12616, null] + - [163, 7, SimpleBlock, 2, 1775212, 12497, null] + - [163, 7, SimpleBlock, 2, 1787712, 5586, null] + - [163, 7, SimpleBlock, 2, 1793301, 12619, null] + - [163, 7, SimpleBlock, 2, 1805923, 12645, null] + - [163, 7, SimpleBlock, 2, 1818571, 12819, null] + - [163, 7, SimpleBlock, 2, 1831393, 12553, null] + - [163, 7, SimpleBlock, 2, 1843949, 12186, null] + - [163, 7, SimpleBlock, 2, 1856138, 6349, null] + - [163, 7, SimpleBlock, 2, 1862490, 12232, null] + - [163, 7, SimpleBlock, 2, 1874725, 11787, null] + - [163, 7, SimpleBlock, 2, 1886515, 12022, null] + - [163, 7, SimpleBlock, 2, 1898540, 11715, null] + - [163, 7, SimpleBlock, 2, 1910258, 11778, null] + - [163, 7, SimpleBlock, 2, 1922039, 6258, null] + - [163, 7, SimpleBlock, 2, 1928300, 11504, null] + - [163, 7, SimpleBlock, 2, 1939807, 11427, null] + - [163, 7, SimpleBlock, 2, 1951237, 11323, null] + - [163, 7, SimpleBlock, 2, 1962563, 10800, null] + - [163, 7, SimpleBlock, 2, 1973366, 6258, null] + - [163, 7, SimpleBlock, 2, 1979627, 10602, null] + - [163, 7, SimpleBlock, 2, 1990232, 10219, null] + - [163, 7, SimpleBlock, 2, 2000454, 9952, null] + - [163, 7, SimpleBlock, 2, 2010409, 10054, null] + - [163, 7, SimpleBlock, 2, 2020466, 10129, null] + - [163, 7, SimpleBlock, 2, 2030598, 6065, null] + - [163, 7, SimpleBlock, 2, 2036666, 10124, null] + - [163, 7, SimpleBlock, 2, 2046793, 10209, null] + - [163, 7, SimpleBlock, 2, 2057005, 10584, null] + - [163, 7, SimpleBlock, 2, 2067592, 10618, null] + - [163, 7, SimpleBlock, 2, 2078213, 5970, null] + - [163, 7, SimpleBlock, 2, 2084186, 11182, null] + - [163, 7, SimpleBlock, 2, 2095371, 11631, null] + - [163, 7, SimpleBlock, 2, 2107005, 12268, null] + - [163, 7, SimpleBlock, 2, 2119276, 13038, null] + - [163, 7, SimpleBlock, 2, 2132317, 13455, null] + - [163, 7, SimpleBlock, 2, 2145775, 5970, null] + - [163, 7, SimpleBlock, 2, 2151748, 13833, null] + - [163, 7, SimpleBlock, 2, 2165584, 13984, null] + - [163, 7, SimpleBlock, 2, 2179571, 13708, null] + - [163, 7, SimpleBlock, 2, 2193282, 13782, null] + - [163, 7, SimpleBlock, 2, 2207067, 14245, null] + - [163, 7, SimpleBlock, 2, 2221315, 5680, null] + - [163, 7, SimpleBlock, 2, 2226998, 14394, null] + - [163, 7, SimpleBlock, 2, 2241395, 14877, null] + - [163, 7, SimpleBlock, 2, 2256275, 15072, null] + - [163, 7, SimpleBlock, 2, 2271350, 15391, null] + - [163, 7, SimpleBlock, 2, 2286744, 5680, null] + - [163, 7, SimpleBlock, 2, 2292427, 15642, null] + - [163, 7, SimpleBlock, 2, 2308072, 15860, null] + - [163, 7, SimpleBlock, 2, 2323935, 16213, null] + - [163, 7, SimpleBlock, 2, 2340152, 16528, null] + - [163, 7, SimpleBlock, 2, 2356684, 16926, null] + - [163, 7, SimpleBlock, 2, 2373613, 5585, null] + - [163, 7, SimpleBlock, 2, 2379202, 16873, null] + - [163, 7, SimpleBlock, 2, 2396079, 17018, null] + - [163, 7, SimpleBlock, 2, 2413101, 16919, null] + - [163, 7, SimpleBlock, 2, 2430024, 17045, null] + - [163, 7, SimpleBlock, 2, 2447072, 5392, null] + - [163, 7, SimpleBlock, 2, 2452468, 16885, null] + - [163, 7, SimpleBlock, 2, 2469357, 16916, null] + - [163, 7, SimpleBlock, 2, 2486277, 16981, null] + - [163, 7, SimpleBlock, 2, 2503262, 16714, null] + - [163, 7, SimpleBlock, 2, 2519980, 16876, null] + - [163, 7, SimpleBlock, 2, 2536859, 5583, null] + - [163, 7, SimpleBlock, 2, 2542446, 16975, null] + - [163, 7, SimpleBlock, 2, 2559425, 17112, null] + - [163, 7, SimpleBlock, 2, 2576541, 17040, null] + - [163, 7, SimpleBlock, 2, 2593585, 17198, null] + - [163, 7, SimpleBlock, 2, 2610787, 17325, null] + - [163, 7, SimpleBlock, 2, 2628115, 5967, null] + - [163, 7, SimpleBlock, 2, 2634086, 17301, null] + - [163, 7, SimpleBlock, 2, 2651391, 17363, null] + - [163, 7, SimpleBlock, 2, 2668758, 17444, null] + - [163, 7, SimpleBlock, 2, 2686206, 17214, null] + - [163, 7, SimpleBlock, 2, 2703423, 5968, null] + - [163, 7, SimpleBlock, 2, 2709395, 16998, null] + - [163, 7, SimpleBlock, 2, 2726397, 16808, null] + - [163, 7, SimpleBlock, 2, 2743208, 16300, null] + - [163, 7, SimpleBlock, 2, 2759511, 16046, null] + - [163, 7, SimpleBlock, 2, 2775560, 15219, null] + - [163, 7, SimpleBlock, 2, 2790782, 2313, null] + - [163, 7, SimpleBlock, 2, 2793098, 15047, null] + - [163, 7, SimpleBlock, 2, 2808148, 14767, null] + - [163, 7, SimpleBlock, 2, 2822918, 6352, null] + - [163, 7, SimpleBlock, 2, 2829273, 14386, null] + - [163, 7, SimpleBlock, 2, 2843662, 14226, null] + - [163, 7, SimpleBlock, 2, 2857891, 14208, null] + - [163, 7, SimpleBlock, 2, 2872102, 14241, null] + - [163, 7, SimpleBlock, 2, 2886346, 5970, null] + - [163, 7, SimpleBlock, 2, 2892319, 13992, null] + - [163, 7, SimpleBlock, 2, 2906314, 14075, null] + - [163, 7, SimpleBlock, 2, 2920392, 13939, null] + - [163, 7, SimpleBlock, 2, 2934334, 13791, null] + - [163, 7, SimpleBlock, 2, 2948128, 13671, null] + - [163, 7, SimpleBlock, 2, 2961802, 5874, null] + - [163, 7, SimpleBlock, 2, 2967679, 13547, null] + - [163, 7, SimpleBlock, 2, 2981229, 13453, null] + - [163, 7, SimpleBlock, 2, 2994685, 13272, null] + - [163, 7, SimpleBlock, 2, 3007960, 12962, null] + - [163, 7, SimpleBlock, 2, 3020925, 5777, null] + - [163, 7, SimpleBlock, 2, 3026705, 12709, null] + - [163, 7, SimpleBlock, 2, 3039417, 12244, null] + - [163, 7, SimpleBlock, 2, 3051664, 12266, null] + - [163, 7, SimpleBlock, 2, 3063933, 12052, null] + - [163, 7, SimpleBlock, 2, 3075988, 11674, null] + - [163, 7, SimpleBlock, 2, 3087665, 4334, null] + - [163, 7, SimpleBlock, 2, 3092002, 10707, null] + - [163, 7, SimpleBlock, 2, 3102712, 10379, null] + - [163, 7, SimpleBlock, 2, 3113094, 9656, null] + - [163, 7, SimpleBlock, 2, 3122753, 8831, null] + - - 524531317 + - 6 + - Cluster + - 1 + - 3131592 + - 2522776 + - - [231, 1, Timecode, 2, 3131594, 2, 11667] + - [163, 7, SimpleBlock, 2, 3131599, 676, null] + - [163, 7, SimpleBlock, 2, 3132278, 6066, null] + - [163, 7, SimpleBlock, 2, 3138348, 76018, null] + - [163, 7, SimpleBlock, 2, 3214369, 1660, null] + - [163, 7, SimpleBlock, 2, 3216032, 2664, null] + - [163, 7, SimpleBlock, 2, 3218699, 2864, null] + - [163, 7, SimpleBlock, 2, 3221566, 2369, null] + - [163, 7, SimpleBlock, 2, 3223938, 6547, null] + - [163, 7, SimpleBlock, 2, 3230489, 91368, null] + - [163, 7, SimpleBlock, 2, 3321860, 8748, null] + - [163, 7, SimpleBlock, 2, 3330611, 13105, null] + - [163, 7, SimpleBlock, 2, 3343719, 13051, null] + - [163, 7, SimpleBlock, 2, 3356773, 6641, null] + - [163, 7, SimpleBlock, 2, 3363417, 13474, null] + - [163, 7, SimpleBlock, 2, 3376894, 14246, null] + - [163, 7, SimpleBlock, 2, 3391143, 14613, null] + - [163, 7, SimpleBlock, 2, 3405759, 15195, null] + - [163, 7, SimpleBlock, 2, 3420957, 15310, null] + - [163, 7, SimpleBlock, 2, 3436270, 6546, null] + - [163, 7, SimpleBlock, 2, 3442819, 15441, null] + - [163, 7, SimpleBlock, 2, 3458263, 15653, null] + - [163, 7, SimpleBlock, 2, 3473919, 15680, null] + - [163, 7, SimpleBlock, 2, 3489602, 15627, null] + - [163, 7, SimpleBlock, 2, 3505232, 6547, null] + - [163, 7, SimpleBlock, 2, 3511782, 15376, null] + - [163, 7, SimpleBlock, 2, 3527161, 15431, null] + - [163, 7, SimpleBlock, 2, 3542595, 15411, null] + - [163, 7, SimpleBlock, 2, 3558009, 15211, null] + - [163, 7, SimpleBlock, 2, 3573223, 15589, null] + - [163, 7, SimpleBlock, 2, 3588815, 6353, null] + - [163, 7, SimpleBlock, 2, 3595171, 15450, null] + - [163, 7, SimpleBlock, 2, 3610624, 15443, null] + - [163, 7, SimpleBlock, 2, 3626070, 15422, null] + - [163, 7, SimpleBlock, 2, 3641495, 15484, null] + - [163, 7, SimpleBlock, 2, 3656982, 15369, null] + - [163, 7, SimpleBlock, 2, 3672354, 6543, null] + - [163, 7, SimpleBlock, 2, 3678900, 15472, null] + - [163, 7, SimpleBlock, 2, 3694375, 15538, null] + - [163, 7, SimpleBlock, 2, 3709916, 15403, null] + - [163, 7, SimpleBlock, 2, 3725322, 15527, null] + - [163, 7, SimpleBlock, 2, 3740852, 6353, null] + - [163, 7, SimpleBlock, 2, 3747208, 15560, null] + - [163, 7, SimpleBlock, 2, 3762771, 15725, null] + - [163, 7, SimpleBlock, 2, 3778499, 15805, null] + - [163, 7, SimpleBlock, 2, 3794307, 16012, null] + - [163, 7, SimpleBlock, 2, 3810322, 15586, null] + - [163, 7, SimpleBlock, 2, 3825911, 6355, null] + - [163, 7, SimpleBlock, 2, 3832269, 15751, null] + - [163, 7, SimpleBlock, 2, 3848023, 15878, null] + - [163, 7, SimpleBlock, 2, 3863904, 16069, null] + - [163, 7, SimpleBlock, 2, 3879976, 16014, null] + - [163, 7, SimpleBlock, 2, 3895993, 6641, null] + - [163, 7, SimpleBlock, 2, 3902637, 15962, null] + - [163, 7, SimpleBlock, 2, 3918602, 16056, null] + - [163, 7, SimpleBlock, 2, 3934661, 16113, null] + - [163, 7, SimpleBlock, 2, 3950777, 15808, null] + - [163, 7, SimpleBlock, 2, 3966588, 15957, null] + - [163, 7, SimpleBlock, 2, 3982548, 5872, null] + - [163, 7, SimpleBlock, 2, 3988423, 16047, null] + - [163, 7, SimpleBlock, 2, 4004473, 15885, null] + - [163, 7, SimpleBlock, 2, 4020361, 15939, null] + - [163, 7, SimpleBlock, 2, 4036303, 16219, null] + - [163, 7, SimpleBlock, 2, 4052525, 16099, null] + - [163, 7, SimpleBlock, 2, 4068627, 5969, null] + - [163, 7, SimpleBlock, 2, 4074599, 16044, null] + - [163, 7, SimpleBlock, 2, 4090646, 15843, null] + - [163, 7, SimpleBlock, 2, 4106492, 15565, null] + - [163, 7, SimpleBlock, 2, 4122060, 15513, null] + - [163, 7, SimpleBlock, 2, 4137576, 5969, null] + - [163, 7, SimpleBlock, 2, 4143548, 15671, null] + - [163, 7, SimpleBlock, 2, 4159222, 15472, null] + - [163, 7, SimpleBlock, 2, 4174697, 15694, null] + - [163, 7, SimpleBlock, 2, 4190394, 15367, null] + - [163, 7, SimpleBlock, 2, 4205764, 15550, null] + - [163, 7, SimpleBlock, 2, 4221317, 5874, null] + - [163, 7, SimpleBlock, 2, 4227194, 15799, null] + - [163, 7, SimpleBlock, 2, 4242996, 15468, null] + - [163, 7, SimpleBlock, 2, 4258467, 15683, null] + - [163, 7, SimpleBlock, 2, 4274153, 15831, null] + - [163, 7, SimpleBlock, 2, 4289987, 15649, null] + - [163, 7, SimpleBlock, 2, 4305639, 6161, null] + - [163, 7, SimpleBlock, 2, 4311803, 15674, null] + - [163, 7, SimpleBlock, 2, 4327480, 15947, null] + - [163, 7, SimpleBlock, 2, 4343430, 15950, null] + - [163, 7, SimpleBlock, 2, 4359383, 16024, null] + - [163, 7, SimpleBlock, 2, 4375410, 6546, null] + - [163, 7, SimpleBlock, 2, 4381959, 15905, null] + - [163, 7, SimpleBlock, 2, 4397867, 15804, null] + - [163, 7, SimpleBlock, 2, 4413674, 15923, null] + - [163, 7, SimpleBlock, 2, 4429600, 16016, null] + - [163, 7, SimpleBlock, 2, 4445619, 15976, null] + - [163, 7, SimpleBlock, 2, 4461598, 6161, null] + - [163, 7, SimpleBlock, 2, 4467762, 15653, null] + - [163, 7, SimpleBlock, 2, 4483418, 15624, null] + - [163, 7, SimpleBlock, 2, 4499045, 15816, null] + - [163, 7, SimpleBlock, 2, 4514864, 15789, null] + - [163, 7, SimpleBlock, 2, 4530656, 6065, null] + - [163, 7, SimpleBlock, 2, 4536724, 15807, null] + - [163, 7, SimpleBlock, 2, 4552534, 15778, null] + - [163, 7, SimpleBlock, 2, 4568315, 16016, null] + - [163, 7, SimpleBlock, 2, 4584335, 16391, null] + - [163, 7, SimpleBlock, 2, 4600729, 16213, null] + - [163, 7, SimpleBlock, 2, 4616945, 5968, null] + - [163, 7, SimpleBlock, 2, 4622917, 16515, null] + - [163, 7, SimpleBlock, 2, 4639436, 16489, null] + - [163, 7, SimpleBlock, 2, 4655928, 16261, null] + - [163, 7, SimpleBlock, 2, 4672193, 16569, null] + - [163, 7, SimpleBlock, 2, 4688766, 16611, null] + - [163, 7, SimpleBlock, 2, 4705380, 6162, null] + - [163, 7, SimpleBlock, 2, 4711545, 16272, null] + - [163, 7, SimpleBlock, 2, 4727821, 16456, null] + - [163, 7, SimpleBlock, 2, 4744281, 16625, null] + - [163, 7, SimpleBlock, 2, 4760909, 16309, null] + - [163, 7, SimpleBlock, 2, 4777221, 6257, null] + - [163, 7, SimpleBlock, 2, 4783481, 16124, null] + - [163, 7, SimpleBlock, 2, 4799608, 16054, null] + - [163, 7, SimpleBlock, 2, 4815665, 16133, null] + - [163, 7, SimpleBlock, 2, 4831801, 16104, null] + - [163, 7, SimpleBlock, 2, 4847908, 16074, null] + - [163, 7, SimpleBlock, 2, 4863985, 6257, null] + - [163, 7, SimpleBlock, 2, 4870245, 15985, null] + - [163, 7, SimpleBlock, 2, 4886234, 30557, null] + - [163, 7, SimpleBlock, 2, 4916794, 1070, null] + - [163, 7, SimpleBlock, 2, 4917867, 1018, null] + - [163, 7, SimpleBlock, 2, 4918888, 6547, null] + - [163, 7, SimpleBlock, 2, 4925438, 999, null] + - [163, 7, SimpleBlock, 2, 4926440, 978, null] + - [163, 7, SimpleBlock, 2, 4927421, 1346, null] + - [163, 7, SimpleBlock, 2, 4928770, 961, null] + - [163, 7, SimpleBlock, 2, 4929734, 2286, null] + - [163, 7, SimpleBlock, 2, 4932023, 6739, null] + - [163, 7, SimpleBlock, 2, 4938765, 4122, null] + - [163, 7, SimpleBlock, 2, 4942890, 4871, null] + - [163, 7, SimpleBlock, 2, 4947764, 4809, null] + - [163, 7, SimpleBlock, 2, 4952576, 3777, null] + - [163, 7, SimpleBlock, 2, 4956356, 4788, null] + - [163, 7, SimpleBlock, 2, 4961147, 6451, null] + - [163, 7, SimpleBlock, 2, 4967601, 5463, null] + - [163, 7, SimpleBlock, 2, 4973067, 6989, null] + - [163, 7, SimpleBlock, 2, 4980059, 8594, null] + - [163, 7, SimpleBlock, 2, 4988656, 8170, null] + - [163, 7, SimpleBlock, 2, 4996829, 6545, null] + - [163, 7, SimpleBlock, 2, 5003377, 3838, null] + - [163, 7, SimpleBlock, 2, 5007218, 3437, null] + - [163, 7, SimpleBlock, 2, 5010658, 2846, null] + - [163, 7, SimpleBlock, 2, 5013507, 2664, null] + - [163, 7, SimpleBlock, 2, 5016174, 2312, null] + - [163, 7, SimpleBlock, 2, 5018489, 6449, null] + - [163, 7, SimpleBlock, 2, 5024941, 2172, null] + - [163, 7, SimpleBlock, 2, 5027116, 2268, null] + - [163, 7, SimpleBlock, 2, 5029387, 2394, null] + - [163, 7, SimpleBlock, 2, 5031784, 2501, null] + - [163, 7, SimpleBlock, 2, 5034288, 6450, null] + - [163, 7, SimpleBlock, 2, 5040741, 2616, null] + - [163, 7, SimpleBlock, 2, 5043360, 2571, null] + - [163, 7, SimpleBlock, 2, 5045934, 2547, null] + - [163, 7, SimpleBlock, 2, 5048484, 2487, null] + - [163, 7, SimpleBlock, 2, 5050974, 2602, null] + - [163, 7, SimpleBlock, 2, 5053579, 6354, null] + - [163, 7, SimpleBlock, 2, 5059936, 2173, null] + - [163, 7, SimpleBlock, 2, 5062112, 2151, null] + - [163, 7, SimpleBlock, 2, 5064266, 2176, null] + - [163, 7, SimpleBlock, 2, 5066445, 2030, null] + - [163, 7, SimpleBlock, 2, 5068478, 1997, null] + - [163, 7, SimpleBlock, 2, 5070478, 6257, null] + - [163, 7, SimpleBlock, 2, 5076738, 1716, null] + - [163, 7, SimpleBlock, 2, 5078457, 3963, null] + - [163, 7, SimpleBlock, 2, 5082423, 6863, null] + - [163, 7, SimpleBlock, 2, 5089289, 5119, null] + - [163, 7, SimpleBlock, 2, 5094411, 5199, null] + - [163, 7, SimpleBlock, 2, 5099613, 3255, null] + - [163, 7, SimpleBlock, 2, 5102871, 4286, null] + - [163, 7, SimpleBlock, 2, 5107160, 5759, null] + - [163, 7, SimpleBlock, 2, 5112922, 6331, null] + - [163, 7, SimpleBlock, 2, 5119256, 6585, null] + - [163, 7, SimpleBlock, 2, 5125844, 5201, null] + - [163, 7, SimpleBlock, 2, 5131048, 5612, null] + - [163, 7, SimpleBlock, 2, 5136663, 4421, null] + - [163, 7, SimpleBlock, 2, 5141087, 4525, null] + - [163, 7, SimpleBlock, 2, 5145615, 4141, null] + - [163, 7, SimpleBlock, 2, 5149759, 5490, null] + - [163, 7, SimpleBlock, 2, 5155252, 3473, null] + - [163, 7, SimpleBlock, 2, 5158728, 2837, null] + - [163, 7, SimpleBlock, 2, 5161568, 3132, null] + - [163, 7, SimpleBlock, 2, 5164703, 3646, null] + - [163, 7, SimpleBlock, 2, 5168352, 5469, null] + - [163, 7, SimpleBlock, 2, 5173824, 5873, null] + - [163, 7, SimpleBlock, 2, 5179700, 8756, null] + - [163, 7, SimpleBlock, 2, 5188459, 9327, null] + - [163, 7, SimpleBlock, 2, 5197789, 8557, null] + - [163, 7, SimpleBlock, 2, 5206349, 6774, null] + - [163, 7, SimpleBlock, 2, 5213126, 2800, null] + - [163, 7, SimpleBlock, 2, 5215929, 6159, null] + - [163, 7, SimpleBlock, 2, 5222091, 2426, null] + - [163, 7, SimpleBlock, 2, 5224520, 2308, null] + - [163, 7, SimpleBlock, 2, 5226831, 2065, null] + - [163, 7, SimpleBlock, 2, 5228899, 1848, null] + - [163, 7, SimpleBlock, 2, 5230750, 5969, null] + - [163, 7, SimpleBlock, 2, 5236722, 1791, null] + - [163, 7, SimpleBlock, 2, 5238516, 1759, null] + - [163, 7, SimpleBlock, 2, 5240278, 2394, null] + - [163, 7, SimpleBlock, 2, 5242675, 2589, null] + - [163, 7, SimpleBlock, 2, 5245267, 2474, null] + - [163, 7, SimpleBlock, 2, 5247744, 6062, null] + - [163, 7, SimpleBlock, 2, 5253809, 2594, null] + - [163, 7, SimpleBlock, 2, 5256406, 2693, null] + - [163, 7, SimpleBlock, 2, 5259102, 2275, null] + - [163, 7, SimpleBlock, 2, 5261380, 1749, null] + - [163, 7, SimpleBlock, 2, 5263132, 5968, null] + - [163, 7, SimpleBlock, 2, 5269103, 1866, null] + - [163, 7, SimpleBlock, 2, 5270972, 1849, null] + - [163, 7, SimpleBlock, 2, 5272824, 1718, null] + - [163, 7, SimpleBlock, 2, 5274545, 2034, null] + - [163, 7, SimpleBlock, 2, 5276582, 1945, null] + - [163, 7, SimpleBlock, 2, 5278530, 5969, null] + - [163, 7, SimpleBlock, 2, 5284502, 1836, null] + - [163, 7, SimpleBlock, 2, 5286341, 2041, null] + - [163, 7, SimpleBlock, 2, 5288385, 2254, null] + - [163, 7, SimpleBlock, 2, 5290642, 1765, null] + - [163, 7, SimpleBlock, 2, 5292410, 1135, null] + - [163, 7, SimpleBlock, 2, 5293548, 5872, null] + - [163, 7, SimpleBlock, 2, 5299423, 1202, null] + - [163, 7, SimpleBlock, 2, 5300628, 1294, null] + - [163, 7, SimpleBlock, 2, 5301925, 1459, null] + - [163, 7, SimpleBlock, 2, 5303387, 1521, null] + - [163, 7, SimpleBlock, 2, 5304911, 6066, null] + - [163, 7, SimpleBlock, 2, 5310980, 1531, null] + - [163, 7, SimpleBlock, 2, 5312514, 1475, null] + - [163, 7, SimpleBlock, 2, 5313992, 1411, null] + - [163, 7, SimpleBlock, 2, 5315406, 1211, null] + - [163, 7, SimpleBlock, 2, 5316620, 2324, null] + - [163, 7, SimpleBlock, 2, 5318947, 6257, null] + - [163, 7, SimpleBlock, 2, 5325207, 2000, null] + - [163, 7, SimpleBlock, 2, 5327210, 1445, null] + - [163, 7, SimpleBlock, 2, 5328658, 1469, null] + - [163, 7, SimpleBlock, 2, 5330130, 1727, null] + - [163, 7, SimpleBlock, 2, 5331860, 1755, null] + - [163, 7, SimpleBlock, 2, 5333618, 6162, null] + - [163, 7, SimpleBlock, 2, 5339783, 1839, null] + - [163, 7, SimpleBlock, 2, 5341625, 1878, null] + - [163, 7, SimpleBlock, 2, 5343506, 4785, null] + - [163, 7, SimpleBlock, 2, 5348294, 7508, null] + - [163, 7, SimpleBlock, 2, 5355805, 5489, null] + - [163, 7, SimpleBlock, 2, 5361297, 9645, null] + - [163, 7, SimpleBlock, 2, 5370945, 7838, null] + - [163, 7, SimpleBlock, 2, 5378786, 5736, null] + - [163, 7, SimpleBlock, 2, 5384525, 5252, null] + - [163, 7, SimpleBlock, 2, 5389780, 4668, null] + - [163, 7, SimpleBlock, 2, 5394451, 676, null] + - [163, 7, SimpleBlock, 2, 5395130, 6160, null] + - [163, 7, SimpleBlock, 2, 5401293, 5740, null] + - [163, 7, SimpleBlock, 2, 5407036, 5130, null] + - [163, 7, SimpleBlock, 2, 5412169, 4879, null] + - [163, 7, SimpleBlock, 2, 5417051, 4866, null] + - [163, 7, SimpleBlock, 2, 5421920, 6009, null] + - [163, 7, SimpleBlock, 2, 5427932, 5490, null] + - [163, 7, SimpleBlock, 2, 5433425, 6863, null] + - [163, 7, SimpleBlock, 2, 5440291, 7796, null] + - [163, 7, SimpleBlock, 2, 5448090, 11253, null] + - [163, 7, SimpleBlock, 2, 5459346, 15567, null] + - [163, 7, SimpleBlock, 2, 5474916, 12076, null] + - [163, 7, SimpleBlock, 2, 5486995, 4531, null] + - [163, 7, SimpleBlock, 2, 5491529, 13816, null] + - [163, 7, SimpleBlock, 2, 5505348, 11914, null] + - [163, 7, SimpleBlock, 2, 5517265, 10621, null] + - [163, 7, SimpleBlock, 2, 5527889, 9203, null] + - [163, 7, SimpleBlock, 2, 5537095, 4432, null] + - [163, 7, SimpleBlock, 2, 5541530, 11010, null] + - [163, 7, SimpleBlock, 2, 5552543, 10400, null] + - [163, 7, SimpleBlock, 2, 5562946, 10182, null] + - [163, 7, SimpleBlock, 2, 5573131, 10107, null] + - [163, 7, SimpleBlock, 2, 5583241, 7515, null] + - [163, 7, SimpleBlock, 2, 5590759, 4613, null] + - [163, 7, SimpleBlock, 2, 5595375, 2891, null] + - [163, 7, SimpleBlock, 2, 5598269, 2262, null] + - [163, 7, SimpleBlock, 2, 5600534, 2210, null] + - [163, 7, SimpleBlock, 2, 5602747, 1779, null] + - [163, 7, SimpleBlock, 2, 5604529, 5009, null] + - [163, 7, SimpleBlock, 2, 5609541, 1401, null] + - [163, 7, SimpleBlock, 2, 5610945, 1046, null] + - [163, 7, SimpleBlock, 2, 5611994, 882, null] + - [163, 7, SimpleBlock, 2, 5612879, 877, null] + - [163, 7, SimpleBlock, 2, 5613759, 984, null] + - [163, 7, SimpleBlock, 2, 5614746, 5104, null] + - [163, 7, SimpleBlock, 2, 5619853, 1173, null] + - [163, 7, SimpleBlock, 2, 5621029, 1175, null] + - [163, 7, SimpleBlock, 2, 5622207, 1082, null] + - [163, 7, SimpleBlock, 2, 5623292, 1103, null] + - [163, 7, SimpleBlock, 2, 5624398, 864, null] + - [163, 7, SimpleBlock, 2, 5625265, 5586, null] + - [163, 7, SimpleBlock, 2, 5630854, 766, null] + - [163, 7, SimpleBlock, 2, 5631623, 867, null] + - [163, 7, SimpleBlock, 2, 5632493, 866, null] + - [163, 7, SimpleBlock, 2, 5633362, 826, null] + - [163, 7, SimpleBlock, 2, 5634191, 5104, null] + - [163, 7, SimpleBlock, 2, 5639298, 929, null] + - [163, 7, SimpleBlock, 2, 5640230, 984, null] + - [163, 7, SimpleBlock, 2, 5641217, 893, null] + - [163, 7, SimpleBlock, 2, 5642113, 849, null] + - [163, 7, SimpleBlock, 2, 5642965, 751, null] + - [163, 7, SimpleBlock, 2, 5643719, 5874, null] + - [163, 7, SimpleBlock, 2, 5649596, 664, null] + - [163, 7, SimpleBlock, 2, 5650263, 704, null] + - [163, 7, SimpleBlock, 2, 5650970, 866, null] + - [163, 7, SimpleBlock, 2, 5651839, 932, null] + - [163, 7, SimpleBlock, 2, 5652774, 580, null] + - [163, 7, SimpleBlock, 2, 5653357, 1011, null] + - - 524531317 + - 6 + - Cluster + - 1 + - 5654376 + - 4042030 + - - [231, 1, Timecode, 2, 5654378, 2, 22083] + - [163, 7, SimpleBlock, 2, 5654383, 5487, null] + - [163, 7, SimpleBlock, 2, 5659874, 25991, null] + - [163, 7, SimpleBlock, 2, 5685868, 1412, null] + - [163, 7, SimpleBlock, 2, 5687283, 875, null] + - [163, 7, SimpleBlock, 2, 5688161, 752, null] + - [163, 7, SimpleBlock, 2, 5688916, 652, null] + - [163, 7, SimpleBlock, 2, 5689571, 4816, null] + - [163, 7, SimpleBlock, 2, 5694390, 631, null] + - [163, 7, SimpleBlock, 2, 5695024, 780, null] + - [163, 7, SimpleBlock, 2, 5695807, 795, null] + - [163, 7, SimpleBlock, 2, 5696605, 832, null] + - [163, 7, SimpleBlock, 2, 5697440, 5491, null] + - [163, 7, SimpleBlock, 2, 5702934, 816, null] + - [163, 7, SimpleBlock, 2, 5703753, 840, null] + - [163, 7, SimpleBlock, 2, 5704596, 781, null] + - [163, 7, SimpleBlock, 2, 5705380, 678, null] + - [163, 7, SimpleBlock, 2, 5706061, 624, null] + - [163, 7, SimpleBlock, 2, 5706688, 5585, null] + - [163, 7, SimpleBlock, 2, 5712276, 496, null] + - [163, 7, SimpleBlock, 2, 5712775, 531, null] + - [163, 7, SimpleBlock, 2, 5713309, 559, null] + - [163, 7, SimpleBlock, 2, 5713871, 566, null] + - [163, 7, SimpleBlock, 2, 5714440, 6450, null] + - [163, 7, SimpleBlock, 2, 5720893, 513, null] + - [163, 7, SimpleBlock, 2, 5721409, 429, null] + - [163, 7, SimpleBlock, 2, 5721841, 485, null] + - [163, 7, SimpleBlock, 2, 5722329, 554, null] + - [163, 7, SimpleBlock, 2, 5722886, 512, null] + - [163, 7, SimpleBlock, 2, 5723401, 6450, null] + - [163, 7, SimpleBlock, 2, 5729855, 85844, null] + - [163, 7, SimpleBlock, 2, 5815702, 9241, null] + - [163, 7, SimpleBlock, 2, 5824946, 13021, null] + - [163, 7, SimpleBlock, 2, 5837970, 13020, null] + - [163, 7, SimpleBlock, 2, 5850993, 14475, null] + - [163, 7, SimpleBlock, 2, 5865471, 6835, null] + - [163, 7, SimpleBlock, 2, 5872309, 14579, null] + - [163, 7, SimpleBlock, 2, 5886891, 15342, null] + - [163, 7, SimpleBlock, 2, 5902236, 15053, null] + - [163, 7, SimpleBlock, 2, 5917292, 15560, null] + - [163, 7, SimpleBlock, 2, 5932855, 6642, null] + - [163, 7, SimpleBlock, 2, 5939500, 15399, null] + - [163, 7, SimpleBlock, 2, 5954902, 15560, null] + - [163, 7, SimpleBlock, 2, 5970465, 15577, null] + - [163, 7, SimpleBlock, 2, 5986045, 15647, null] + - [163, 7, SimpleBlock, 2, 6001695, 15358, null] + - [163, 7, SimpleBlock, 2, 6017056, 6835, null] + - [163, 7, SimpleBlock, 2, 6023894, 15537, null] + - [163, 7, SimpleBlock, 2, 6039434, 15598, null] + - [163, 7, SimpleBlock, 2, 6055035, 15730, null] + - [163, 7, SimpleBlock, 2, 6070768, 15582, null] + - [163, 7, SimpleBlock, 2, 6086353, 6351, null] + - [163, 7, SimpleBlock, 2, 6092707, 15441, null] + - [163, 7, SimpleBlock, 2, 6108151, 15429, null] + - [163, 7, SimpleBlock, 2, 6123583, 15534, null] + - [163, 7, SimpleBlock, 2, 6139120, 15550, null] + - [163, 7, SimpleBlock, 2, 6154673, 15537, null] + - [163, 7, SimpleBlock, 2, 6170213, 6546, null] + - [163, 7, SimpleBlock, 2, 6176762, 15619, null] + - [163, 7, SimpleBlock, 2, 6192384, 15707, null] + - [163, 7, SimpleBlock, 2, 6208094, 15679, null] + - [163, 7, SimpleBlock, 2, 6223776, 15407, null] + - [163, 7, SimpleBlock, 2, 6239186, 15554, null] + - [163, 7, SimpleBlock, 2, 6254743, 6448, null] + - [163, 7, SimpleBlock, 2, 6261194, 15613, null] + - [163, 7, SimpleBlock, 2, 6276810, 15697, null] + - [163, 7, SimpleBlock, 2, 6292510, 15583, null] + - [163, 7, SimpleBlock, 2, 6308096, 15663, null] + - [163, 7, SimpleBlock, 2, 6323762, 5971, null] + - [163, 7, SimpleBlock, 2, 6329736, 15636, null] + - [163, 7, SimpleBlock, 2, 6345375, 15711, null] + - [163, 7, SimpleBlock, 2, 6361089, 15877, null] + - [163, 7, SimpleBlock, 2, 6376969, 15632, null] + - [163, 7, SimpleBlock, 2, 6392604, 15880, null] + - [163, 7, SimpleBlock, 2, 6408487, 5299, null] + - [163, 7, SimpleBlock, 2, 6413789, 15875, null] + - [163, 7, SimpleBlock, 2, 6429667, 15671, null] + - [163, 7, SimpleBlock, 2, 6445341, 15803, null] + - [163, 7, SimpleBlock, 2, 6461147, 15793, null] + - [163, 7, SimpleBlock, 2, 6476943, 5872, null] + - [163, 7, SimpleBlock, 2, 6482818, 16039, null] + - [163, 7, SimpleBlock, 2, 6498860, 16305, null] + - [163, 7, SimpleBlock, 2, 6515169, 16465, null] + - [163, 7, SimpleBlock, 2, 6531638, 16499, null] + - [163, 7, SimpleBlock, 2, 6548141, 16741, null] + - [163, 7, SimpleBlock, 2, 6564885, 5584, null] + - [163, 7, SimpleBlock, 2, 6570473, 17095, null] + - [163, 7, SimpleBlock, 2, 6587572, 17131, null] + - [163, 7, SimpleBlock, 2, 6604707, 17304, null] + - [163, 7, SimpleBlock, 2, 6622015, 17294, null] + - [163, 7, SimpleBlock, 2, 6639313, 17485, null] + - [163, 7, SimpleBlock, 2, 6656801, 5490, null] + - [163, 7, SimpleBlock, 2, 6662295, 17982, null] + - [163, 7, SimpleBlock, 2, 6680281, 18072, null] + - [163, 7, SimpleBlock, 2, 6698357, 17845, null] + - [163, 7, SimpleBlock, 2, 6716206, 18220, null] + - [163, 7, SimpleBlock, 2, 6734429, 4914, null] + - [163, 7, SimpleBlock, 2, 6739347, 18198, null] + - [163, 7, SimpleBlock, 2, 6757549, 18229, null] + - [163, 7, SimpleBlock, 2, 6775782, 18246, null] + - [163, 7, SimpleBlock, 2, 6794032, 18232, null] + - [163, 7, SimpleBlock, 2, 6812268, 18081, null] + - [163, 7, SimpleBlock, 2, 6830352, 5586, null] + - [163, 7, SimpleBlock, 2, 6835942, 17839, null] + - [163, 7, SimpleBlock, 2, 6853785, 18150, null] + - [163, 7, SimpleBlock, 2, 6871939, 17811, null] + - [163, 7, SimpleBlock, 2, 6889754, 17733, null] + - [163, 7, SimpleBlock, 2, 6907491, 17342, null] + - [163, 7, SimpleBlock, 2, 6924836, 5393, null] + - [163, 7, SimpleBlock, 2, 6930233, 17401, null] + - [163, 7, SimpleBlock, 2, 6947638, 17334, null] + - [163, 7, SimpleBlock, 2, 6964976, 17208, null] + - [163, 7, SimpleBlock, 2, 6982188, 16806, null] + - [163, 7, SimpleBlock, 2, 6998997, 5199, null] + - [163, 7, SimpleBlock, 2, 7004200, 16683, null] + - [163, 7, SimpleBlock, 2, 7020887, 16765, null] + - [163, 7, SimpleBlock, 2, 7037656, 16489, null] + - [163, 7, SimpleBlock, 2, 7054149, 16415, null] + - [163, 7, SimpleBlock, 2, 7070567, 16272, null] + - [163, 7, SimpleBlock, 2, 7086842, 4910, null] + - [163, 7, SimpleBlock, 2, 7091755, 16065, null] + - [163, 7, SimpleBlock, 2, 7107823, 15683, null] + - [163, 7, SimpleBlock, 2, 7123509, 15669, null] + - [163, 7, SimpleBlock, 2, 7139181, 15353, null] + - [163, 7, SimpleBlock, 2, 7154537, 5395, null] + - [163, 7, SimpleBlock, 2, 7159935, 15367, null] + - [163, 7, SimpleBlock, 2, 7175305, 14998, null] + - [163, 7, SimpleBlock, 2, 7190306, 14862, null] + - [163, 7, SimpleBlock, 2, 7205171, 15044, null] + - [163, 7, SimpleBlock, 2, 7220218, 5872, null] + - [163, 7, SimpleBlock, 2, 7226093, 15078, null] + - [163, 7, SimpleBlock, 2, 7241174, 14735, null] + - [163, 7, SimpleBlock, 2, 7255912, 14895, null] + - [163, 7, SimpleBlock, 2, 7270810, 15001, null] + - [163, 7, SimpleBlock, 2, 7285814, 14921, null] + - [163, 7, SimpleBlock, 2, 7300738, 5778, null] + - [163, 7, SimpleBlock, 2, 7306519, 14923, null] + - [163, 7, SimpleBlock, 2, 7321445, 14971, null] + - [163, 7, SimpleBlock, 2, 7336419, 14927, null] + - [163, 7, SimpleBlock, 2, 7351349, 14900, null] + - [163, 7, SimpleBlock, 2, 7366252, 15092, null] + - [163, 7, SimpleBlock, 2, 7381347, 5485, null] + - [163, 7, SimpleBlock, 2, 7386835, 14913, null] + - [163, 7, SimpleBlock, 2, 7401751, 14865, null] + - [163, 7, SimpleBlock, 2, 7416619, 15019, null] + - [163, 7, SimpleBlock, 2, 7431641, 14883, null] + - [163, 7, SimpleBlock, 2, 7446527, 5682, null] + - [163, 7, SimpleBlock, 2, 7452212, 15002, null] + - [163, 7, SimpleBlock, 2, 7467217, 14870, null] + - [163, 7, SimpleBlock, 2, 7482090, 14810, null] + - [163, 7, SimpleBlock, 2, 7496903, 14940, null] + - [163, 7, SimpleBlock, 2, 7511846, 15141, null] + - [163, 7, SimpleBlock, 2, 7526990, 5874, null] + - [163, 7, SimpleBlock, 2, 7532867, 15044, null] + - [163, 7, SimpleBlock, 2, 7547914, 14799, null] + - [163, 7, SimpleBlock, 2, 7562716, 14863, null] + - [163, 7, SimpleBlock, 2, 7577582, 14982, null] + - [163, 7, SimpleBlock, 2, 7592567, 5873, null] + - [163, 7, SimpleBlock, 2, 7598443, 14843, null] + - [163, 7, SimpleBlock, 2, 7613289, 14979, null] + - [163, 7, SimpleBlock, 2, 7628271, 14680, null] + - [163, 7, SimpleBlock, 2, 7642954, 14874, null] + - [163, 7, SimpleBlock, 2, 7657831, 14871, null] + - [163, 7, SimpleBlock, 2, 7672705, 5491, null] + - [163, 7, SimpleBlock, 2, 7678199, 14981, null] + - [163, 7, SimpleBlock, 2, 7693183, 14699, null] + - [163, 7, SimpleBlock, 2, 7707885, 15065, null] + - [163, 7, SimpleBlock, 2, 7722953, 14820, null] + - [163, 7, SimpleBlock, 2, 7737776, 14760, null] + - [163, 7, SimpleBlock, 2, 7752539, 5584, null] + - [163, 7, SimpleBlock, 2, 7758126, 14847, null] + - [163, 7, SimpleBlock, 2, 7772976, 14937, null] + - [163, 7, SimpleBlock, 2, 7787916, 14800, null] + - [163, 7, SimpleBlock, 2, 7802719, 15108, null] + - [163, 7, SimpleBlock, 2, 7817830, 5107, null] + - [163, 7, SimpleBlock, 2, 7822940, 14980, null] + - [163, 7, SimpleBlock, 2, 7837923, 15035, null] + - [163, 7, SimpleBlock, 2, 7852961, 14959, null] + - [163, 7, SimpleBlock, 2, 7867923, 14964, null] + - [163, 7, SimpleBlock, 2, 7882890, 14914, null] + - [163, 7, SimpleBlock, 2, 7897807, 5490, null] + - [163, 7, SimpleBlock, 2, 7903300, 15071, null] + - [163, 7, SimpleBlock, 2, 7918374, 14910, null] + - [163, 7, SimpleBlock, 2, 7933287, 15206, null] + - [163, 7, SimpleBlock, 2, 7948496, 14820, null] + - [163, 7, SimpleBlock, 2, 7963319, 5583, null] + - [163, 7, SimpleBlock, 2, 7968905, 15074, null] + - [163, 7, SimpleBlock, 2, 7983982, 14970, null] + - [163, 7, SimpleBlock, 2, 7998955, 15396, null] + - [163, 7, SimpleBlock, 2, 8014354, 15402, null] + - [163, 7, SimpleBlock, 2, 8029759, 15417, null] + - [163, 7, SimpleBlock, 2, 8045179, 5873, null] + - [163, 7, SimpleBlock, 2, 8051055, 15643, null] + - [163, 7, SimpleBlock, 2, 8066701, 15741, null] + - [163, 7, SimpleBlock, 2, 8082445, 15823, null] + - [163, 7, SimpleBlock, 2, 8098271, 15968, null] + - [163, 7, SimpleBlock, 2, 8114242, 16024, null] + - [163, 7, SimpleBlock, 2, 8130269, 5681, null] + - [163, 7, SimpleBlock, 2, 8135953, 16190, null] + - [163, 7, SimpleBlock, 2, 8152146, 16229, null] + - [163, 7, SimpleBlock, 2, 8168378, 16320, null] + - [163, 7, SimpleBlock, 2, 8184702, 16427, null] + - [163, 7, SimpleBlock, 2, 8201132, 5487, null] + - [163, 7, SimpleBlock, 2, 8206623, 16674, null] + - [163, 7, SimpleBlock, 2, 8223301, 16862, null] + - [163, 7, SimpleBlock, 2, 8240167, 16715, null] + - [163, 7, SimpleBlock, 2, 8256886, 17261, null] + - [163, 7, SimpleBlock, 2, 8274151, 17477, null] + - [163, 7, SimpleBlock, 2, 8291631, 5778, null] + - [163, 7, SimpleBlock, 2, 8297413, 17112, null] + - [163, 7, SimpleBlock, 2, 8314529, 17366, null] + - [163, 7, SimpleBlock, 2, 8331899, 17553, null] + - [163, 7, SimpleBlock, 2, 8349456, 17762, null] + - [163, 7, SimpleBlock, 2, 8367222, 17629, null] + - [163, 7, SimpleBlock, 2, 8384854, 5778, null] + - [163, 7, SimpleBlock, 2, 8390636, 17749, null] + - [163, 7, SimpleBlock, 2, 8408389, 18009, null] + - [163, 7, SimpleBlock, 2, 8426402, 17943, null] + - [163, 7, SimpleBlock, 2, 8444349, 17886, null] + - [163, 7, SimpleBlock, 2, 8462238, 5777, null] + - [163, 7, SimpleBlock, 2, 8468019, 18051, null] + - [163, 7, SimpleBlock, 2, 8486074, 17991, null] + - [163, 7, SimpleBlock, 2, 8504069, 17883, null] + - [163, 7, SimpleBlock, 2, 8521956, 17835, null] + - [163, 7, SimpleBlock, 2, 8539795, 17949, null] + - [163, 7, SimpleBlock, 2, 8557747, 5775, null] + - [163, 7, SimpleBlock, 2, 8563526, 17955, null] + - [163, 7, SimpleBlock, 2, 8581485, 17740, null] + - [163, 7, SimpleBlock, 2, 8599229, 17608, null] + - [163, 7, SimpleBlock, 2, 8616841, 17646, null] + - [163, 7, SimpleBlock, 2, 8634490, 1541, null] + - [163, 7, SimpleBlock, 2, 8636035, 17615, null] + - [163, 7, SimpleBlock, 2, 8653653, 6065, null] + - [163, 7, SimpleBlock, 2, 8659722, 17519, null] + - [163, 7, SimpleBlock, 2, 8677245, 17265, null] + - [163, 7, SimpleBlock, 2, 8694514, 17299, null] + - [163, 7, SimpleBlock, 2, 8711817, 17000, null] + - [163, 7, SimpleBlock, 2, 8728821, 17199, null] + - [163, 7, SimpleBlock, 2, 8746023, 5776, null] + - [163, 7, SimpleBlock, 2, 8751803, 16948, null] + - [163, 7, SimpleBlock, 2, 8768755, 16961, null] + - [163, 7, SimpleBlock, 2, 8785720, 16941, null] + - [163, 7, SimpleBlock, 2, 8802665, 16778, null] + - [163, 7, SimpleBlock, 2, 8819447, 16807, null] + - [163, 7, SimpleBlock, 2, 8836257, 5488, null] + - [163, 7, SimpleBlock, 2, 8841749, 16640, null] + - [163, 7, SimpleBlock, 2, 8858393, 16528, null] + - [163, 7, SimpleBlock, 2, 8874925, 16728, null] + - [163, 7, SimpleBlock, 2, 8891656, 16326, null] + - [163, 7, SimpleBlock, 2, 8907985, 5489, null] + - [163, 7, SimpleBlock, 2, 8913478, 16478, null] + - [163, 7, SimpleBlock, 2, 8929959, 16373, null] + - [163, 7, SimpleBlock, 2, 8946336, 16728, null] + - [163, 7, SimpleBlock, 2, 8963068, 16548, null] + - [163, 7, SimpleBlock, 2, 8979620, 16730, null] + - [163, 7, SimpleBlock, 2, 8996353, 5779, null] + - [163, 7, SimpleBlock, 2, 9002136, 16702, null] + - [163, 7, SimpleBlock, 2, 9018842, 16695, null] + - [163, 7, SimpleBlock, 2, 9035541, 16575, null] + - [163, 7, SimpleBlock, 2, 9052120, 16558, null] + - [163, 7, SimpleBlock, 2, 9068682, 16576, null] + - [163, 7, SimpleBlock, 2, 9085261, 5585, null] + - [163, 7, SimpleBlock, 2, 9090850, 16410, null] + - [163, 7, SimpleBlock, 2, 9107264, 16615, null] + - [163, 7, SimpleBlock, 2, 9123883, 16629, null] + - [163, 7, SimpleBlock, 2, 9140516, 16572, null] + - [163, 7, SimpleBlock, 2, 9157091, 5487, null] + - [163, 7, SimpleBlock, 2, 9162582, 16740, null] + - [163, 7, SimpleBlock, 2, 9179326, 16688, null] + - [163, 7, SimpleBlock, 2, 9196018, 16625, null] + - [163, 7, SimpleBlock, 2, 9212647, 17417, null] + - [163, 7, SimpleBlock, 2, 9230068, 17527, null] + - [163, 7, SimpleBlock, 2, 9247598, 5487, null] + - [163, 7, SimpleBlock, 2, 9253089, 17348, null] + - [163, 7, SimpleBlock, 2, 9270441, 17060, null] + - [163, 7, SimpleBlock, 2, 9287505, 16552, null] + - [163, 7, SimpleBlock, 2, 9304060, 16344, null] + - [163, 7, SimpleBlock, 2, 9320407, 5296, null] + - [163, 7, SimpleBlock, 2, 9325706, 16256, null] + - [163, 7, SimpleBlock, 2, 9341965, 15758, null] + - [163, 7, SimpleBlock, 2, 9357726, 15896, null] + - [163, 7, SimpleBlock, 2, 9373625, 15296, null] + - [163, 7, SimpleBlock, 2, 9388924, 15339, null] + - [163, 7, SimpleBlock, 2, 9404266, 5489, null] + - [163, 7, SimpleBlock, 2, 9409758, 14934, null] + - [163, 7, SimpleBlock, 2, 9424695, 14798, null] + - [163, 7, SimpleBlock, 2, 9439496, 14636, null] + - [163, 7, SimpleBlock, 2, 9454135, 14532, null] + - [163, 7, SimpleBlock, 2, 9468670, 14366, null] + - [163, 7, SimpleBlock, 2, 9483039, 5583, null] + - [163, 7, SimpleBlock, 2, 9488625, 14350, null] + - [163, 7, SimpleBlock, 2, 9502978, 14273, null] + - [163, 7, SimpleBlock, 2, 9517254, 14005, null] + - [163, 7, SimpleBlock, 2, 9531262, 14068, null] + - [163, 7, SimpleBlock, 2, 9545333, 5583, null] + - [163, 7, SimpleBlock, 2, 9550919, 14134, null] + - [163, 7, SimpleBlock, 2, 9565056, 13834, null] + - [163, 7, SimpleBlock, 2, 9578893, 13920, null] + - [163, 7, SimpleBlock, 2, 9592816, 13837, null] + - [163, 7, SimpleBlock, 2, 9606656, 13788, null] + - [163, 7, SimpleBlock, 2, 9620447, 5487, null] + - [163, 7, SimpleBlock, 2, 9625937, 13746, null] + - [163, 7, SimpleBlock, 2, 9639686, 13819, null] + - [163, 7, SimpleBlock, 2, 9653508, 13907, null] + - [163, 7, SimpleBlock, 2, 9667418, 13995, null] + - [163, 7, SimpleBlock, 2, 9681416, 964, null] + - [163, 7, SimpleBlock, 2, 9682383, 14023, null] + - - 524531317 + - 6 + - Cluster + - 1 + - 9696414 + - 3744132 + - - [231, 1, Timecode, 2, 9696416, 2, 32500] + - [163, 7, SimpleBlock, 2, 9696421, 5584, null] + - [163, 7, SimpleBlock, 2, 9702009, 58285, null] + - [163, 7, SimpleBlock, 2, 9760297, 8074, null] + - [163, 7, SimpleBlock, 2, 9768374, 11664, null] + - [163, 7, SimpleBlock, 2, 9780041, 12436, null] + - [163, 7, SimpleBlock, 2, 9792480, 13719, null] + - [163, 7, SimpleBlock, 2, 9806202, 5679, null] + - [163, 7, SimpleBlock, 2, 9811884, 14117, null] + - [163, 7, SimpleBlock, 2, 9826004, 14219, null] + - [163, 7, SimpleBlock, 2, 9840226, 14317, null] + - [163, 7, SimpleBlock, 2, 9854546, 14481, null] + - [163, 7, SimpleBlock, 2, 9869030, 5490, null] + - [163, 7, SimpleBlock, 2, 9874523, 14660, null] + - [163, 7, SimpleBlock, 2, 9889186, 14854, null] + - [163, 7, SimpleBlock, 2, 9904043, 14980, null] + - [163, 7, SimpleBlock, 2, 9919026, 15380, null] + - [163, 7, SimpleBlock, 2, 9934409, 15522, null] + - [163, 7, SimpleBlock, 2, 9949934, 5779, null] + - [163, 7, SimpleBlock, 2, 9955716, 15621, null] + - [163, 7, SimpleBlock, 2, 9971340, 15669, null] + - [163, 7, SimpleBlock, 2, 9987012, 15890, null] + - [163, 7, SimpleBlock, 2, 10002905, 16299, null] + - [163, 7, SimpleBlock, 2, 10019207, 5969, null] + - [163, 7, SimpleBlock, 2, 10025179, 16299, null] + - [163, 7, SimpleBlock, 2, 10041482, 16612, null] + - [163, 7, SimpleBlock, 2, 10058098, 17028, null] + - [163, 7, SimpleBlock, 2, 10075130, 17286, null] + - [163, 7, SimpleBlock, 2, 10092420, 17238, null] + - [163, 7, SimpleBlock, 2, 10109661, 5585, null] + - [163, 7, SimpleBlock, 2, 10115250, 17673, null] + - [163, 7, SimpleBlock, 2, 10132927, 17702, null] + - [163, 7, SimpleBlock, 2, 10150633, 18215, null] + - [163, 7, SimpleBlock, 2, 10168852, 18454, null] + - [163, 7, SimpleBlock, 2, 10187310, 18997, null] + - [163, 7, SimpleBlock, 2, 10206310, 5969, null] + - [163, 7, SimpleBlock, 2, 10212283, 19148, null] + - [163, 7, SimpleBlock, 2, 10231435, 19526, null] + - [163, 7, SimpleBlock, 2, 10250965, 16685, null] + - [163, 7, SimpleBlock, 2, 10267654, 16395, null] + - [163, 7, SimpleBlock, 2, 10284052, 5778, null] + - [163, 7, SimpleBlock, 2, 10289833, 16114, null] + - [163, 7, SimpleBlock, 2, 10305950, 16376, null] + - [163, 7, SimpleBlock, 2, 10322329, 16074, null] + - [163, 7, SimpleBlock, 2, 10338406, 16202, null] + - [163, 7, SimpleBlock, 2, 10354611, 16277, null] + - [163, 7, SimpleBlock, 2, 10370891, 5873, null] + - [163, 7, SimpleBlock, 2, 10376767, 16211, null] + - [163, 7, SimpleBlock, 2, 10392981, 16342, null] + - [163, 7, SimpleBlock, 2, 10409326, 16294, null] + - [163, 7, SimpleBlock, 2, 10425623, 16227, null] + - [163, 7, SimpleBlock, 2, 10441853, 5969, null] + - [163, 7, SimpleBlock, 2, 10447825, 16131, null] + - [163, 7, SimpleBlock, 2, 10463959, 16256, null] + - [163, 7, SimpleBlock, 2, 10480219, 16528, null] + - [163, 7, SimpleBlock, 2, 10496750, 16212, null] + - [163, 7, SimpleBlock, 2, 10512965, 16157, null] + - [163, 7, SimpleBlock, 2, 10529125, 5872, null] + - [163, 7, SimpleBlock, 2, 10535000, 16235, null] + - [163, 7, SimpleBlock, 2, 10551238, 15984, null] + - [163, 7, SimpleBlock, 2, 10567225, 16158, null] + - [163, 7, SimpleBlock, 2, 10583386, 16233, null] + - [163, 7, SimpleBlock, 2, 10599622, 16083, null] + - [163, 7, SimpleBlock, 2, 10615708, 6162, null] + - [163, 7, SimpleBlock, 2, 10621873, 16186, null] + - [163, 7, SimpleBlock, 2, 10638062, 16047, null] + - [163, 7, SimpleBlock, 2, 10654112, 15948, null] + - [163, 7, SimpleBlock, 2, 10670063, 16103, null] + - [163, 7, SimpleBlock, 2, 10686169, 6065, null] + - [163, 7, SimpleBlock, 2, 10692237, 16048, null] + - [163, 7, SimpleBlock, 2, 10708288, 16064, null] + - [163, 7, SimpleBlock, 2, 10724355, 15899, null] + - [163, 7, SimpleBlock, 2, 10740257, 15995, null] + - [163, 7, SimpleBlock, 2, 10756255, 16002, null] + - [163, 7, SimpleBlock, 2, 10772260, 6065, null] + - [163, 7, SimpleBlock, 2, 10778328, 16105, null] + - [163, 7, SimpleBlock, 2, 10794436, 15916, null] + - [163, 7, SimpleBlock, 2, 10810355, 16022, null] + - [163, 7, SimpleBlock, 2, 10826380, 15944, null] + - [163, 7, SimpleBlock, 2, 10842327, 6066, null] + - [163, 7, SimpleBlock, 2, 10848396, 15894, null] + - [163, 7, SimpleBlock, 2, 10864293, 15821, null] + - [163, 7, SimpleBlock, 2, 10880117, 15998, null] + - [163, 7, SimpleBlock, 2, 10896118, 15774, null] + - [163, 7, SimpleBlock, 2, 10911895, 15840, null] + - [163, 7, SimpleBlock, 2, 10927738, 6546, null] + - [163, 7, SimpleBlock, 2, 10934287, 15857, null] + - [163, 7, SimpleBlock, 2, 10950147, 15871, null] + - [163, 7, SimpleBlock, 2, 10966021, 15709, null] + - [163, 7, SimpleBlock, 2, 10981733, 15836, null] + - [163, 7, SimpleBlock, 2, 10997572, 15847, null] + - [163, 7, SimpleBlock, 2, 11013422, 6162, null] + - [163, 7, SimpleBlock, 2, 11019587, 15943, null] + - [163, 7, SimpleBlock, 2, 11035533, 15875, null] + - [163, 7, SimpleBlock, 2, 11051411, 15777, null] + - [163, 7, SimpleBlock, 2, 11067191, 15896, null] + - [163, 7, SimpleBlock, 2, 11083090, 6255, null] + - [163, 7, SimpleBlock, 2, 11089348, 15755, null] + - [163, 7, SimpleBlock, 2, 11105106, 15815, null] + - [163, 7, SimpleBlock, 2, 11120924, 15742, null] + - [163, 7, SimpleBlock, 2, 11136669, 15718, null] + - [163, 7, SimpleBlock, 2, 11152390, 15628, null] + - [163, 7, SimpleBlock, 2, 11168021, 964, null] + - [163, 7, SimpleBlock, 2, 11168988, 6161, null] + - [163, 7, SimpleBlock, 2, 11175152, 15743, null] + - [163, 7, SimpleBlock, 2, 11190898, 15651, null] + - [163, 7, SimpleBlock, 2, 11206552, 15646, null] + - [163, 7, SimpleBlock, 2, 11222201, 15666, null] + - [163, 7, SimpleBlock, 2, 11237870, 15600, null] + - [163, 7, SimpleBlock, 2, 11253473, 6354, null] + - [163, 7, SimpleBlock, 2, 11259830, 15472, null] + - [163, 7, SimpleBlock, 2, 11275305, 15276, null] + - [163, 7, SimpleBlock, 2, 11290584, 15429, null] + - [163, 7, SimpleBlock, 2, 11306016, 15363, null] + - [163, 7, SimpleBlock, 2, 11321382, 15264, null] + - [163, 7, SimpleBlock, 2, 11336649, 6256, null] + - [163, 7, SimpleBlock, 2, 11342908, 15189, null] + - [163, 7, SimpleBlock, 2, 11358100, 15429, null] + - [163, 7, SimpleBlock, 2, 11373532, 15182, null] + - [163, 7, SimpleBlock, 2, 11388717, 15176, null] + - [163, 7, SimpleBlock, 2, 11403896, 6258, null] + - [163, 7, SimpleBlock, 2, 11410157, 15160, null] + - [163, 7, SimpleBlock, 2, 11425320, 15084, null] + - [163, 7, SimpleBlock, 2, 11440407, 15027, null] + - [163, 7, SimpleBlock, 2, 11455437, 15087, null] + - [163, 7, SimpleBlock, 2, 11470527, 15308, null] + - [163, 7, SimpleBlock, 2, 11485838, 6643, null] + - [163, 7, SimpleBlock, 2, 11492484, 14960, null] + - [163, 7, SimpleBlock, 2, 11507447, 15005, null] + - [163, 7, SimpleBlock, 2, 11522455, 15128, null] + - [163, 7, SimpleBlock, 2, 11537586, 15124, null] + - [163, 7, SimpleBlock, 2, 11552713, 15103, null] + - [163, 7, SimpleBlock, 2, 11567819, 6354, null] + - [163, 7, SimpleBlock, 2, 11574176, 15080, null] + - [163, 7, SimpleBlock, 2, 11589259, 15014, null] + - [163, 7, SimpleBlock, 2, 11604276, 14951, null] + - [163, 7, SimpleBlock, 2, 11619230, 14915, null] + - [163, 7, SimpleBlock, 2, 11634148, 6256, null] + - [163, 7, SimpleBlock, 2, 11640407, 14819, null] + - [163, 7, SimpleBlock, 2, 11655229, 14729, null] + - [163, 7, SimpleBlock, 2, 11669961, 14715, null] + - [163, 7, SimpleBlock, 2, 11684679, 14801, null] + - [163, 7, SimpleBlock, 2, 11699483, 14828, null] + - [163, 7, SimpleBlock, 2, 11714314, 6258, null] + - [163, 7, SimpleBlock, 2, 11720575, 14604, null] + - [163, 7, SimpleBlock, 2, 11735182, 14649, null] + - [163, 7, SimpleBlock, 2, 11749834, 14712, null] + - [163, 7, SimpleBlock, 2, 11764549, 14456, null] + - [163, 7, SimpleBlock, 2, 11779008, 6162, null] + - [163, 7, SimpleBlock, 2, 11785173, 14612, null] + - [163, 7, SimpleBlock, 2, 11799788, 14464, null] + - [163, 7, SimpleBlock, 2, 11814255, 14548, null] + - [163, 7, SimpleBlock, 2, 11828806, 14477, null] + - [163, 7, SimpleBlock, 2, 11843286, 14547, null] + - [163, 7, SimpleBlock, 2, 11857836, 6162, null] + - [163, 7, SimpleBlock, 2, 11864001, 14432, null] + - [163, 7, SimpleBlock, 2, 11878436, 14322, null] + - [163, 7, SimpleBlock, 2, 11892761, 14270, null] + - [163, 7, SimpleBlock, 2, 11907034, 14174, null] + - [163, 7, SimpleBlock, 2, 11921211, 14244, null] + - [163, 7, SimpleBlock, 2, 11935458, 5968, null] + - [163, 7, SimpleBlock, 2, 11941429, 14147, null] + - [163, 7, SimpleBlock, 2, 11955579, 14105, null] + - [163, 7, SimpleBlock, 2, 11969687, 14050, null] + - [163, 7, SimpleBlock, 2, 11983740, 14133, null] + - [163, 7, SimpleBlock, 2, 11997876, 5966, null] + - [163, 7, SimpleBlock, 2, 12003845, 14114, null] + - [163, 7, SimpleBlock, 2, 12017962, 13853, null] + - [163, 7, SimpleBlock, 2, 12031818, 14074, null] + - [163, 7, SimpleBlock, 2, 12045895, 13788, null] + - [163, 7, SimpleBlock, 2, 12059686, 13645, null] + - [163, 7, SimpleBlock, 2, 12073334, 5872, null] + - [163, 7, SimpleBlock, 2, 12079209, 13645, null] + - [163, 7, SimpleBlock, 2, 12092857, 13742, null] + - [163, 7, SimpleBlock, 2, 12106602, 13511, null] + - [163, 7, SimpleBlock, 2, 12120116, 13642, null] + - [163, 7, SimpleBlock, 2, 12133761, 5871, null] + - [163, 7, SimpleBlock, 2, 12139635, 13525, null] + - [163, 7, SimpleBlock, 2, 12153163, 13417, null] + - [163, 7, SimpleBlock, 2, 12166583, 13399, null] + - [163, 7, SimpleBlock, 2, 12179985, 13388, null] + - [163, 7, SimpleBlock, 2, 12193376, 13531, null] + - [163, 7, SimpleBlock, 2, 12206910, 5776, null] + - [163, 7, SimpleBlock, 2, 12212689, 13370, null] + - [163, 7, SimpleBlock, 2, 12226062, 13288, null] + - [163, 7, SimpleBlock, 2, 12239353, 13187, null] + - [163, 7, SimpleBlock, 2, 12252543, 13400, null] + - [163, 7, SimpleBlock, 2, 12265946, 13324, null] + - [163, 7, SimpleBlock, 2, 12279273, 5776, null] + - [163, 7, SimpleBlock, 2, 12285052, 13383, null] + - [163, 7, SimpleBlock, 2, 12298438, 13326, null] + - [163, 7, SimpleBlock, 2, 12311767, 13233, null] + - [163, 7, SimpleBlock, 2, 12325003, 13224, null] + - [163, 7, SimpleBlock, 2, 12338230, 5393, null] + - [163, 7, SimpleBlock, 2, 12343626, 13395, null] + - [163, 7, SimpleBlock, 2, 12357024, 13150, null] + - [163, 7, SimpleBlock, 2, 12370177, 13085, null] + - [163, 7, SimpleBlock, 2, 12383265, 13142, null] + - [163, 7, SimpleBlock, 2, 12396410, 12979, null] + - [163, 7, SimpleBlock, 2, 12409392, 5391, null] + - [163, 7, SimpleBlock, 2, 12414786, 13151, null] + - [163, 7, SimpleBlock, 2, 12427940, 12982, null] + - [163, 7, SimpleBlock, 2, 12440925, 12778, null] + - [163, 7, SimpleBlock, 2, 12453706, 12569, null] + - [163, 7, SimpleBlock, 2, 12466278, 5681, null] + - [163, 7, SimpleBlock, 2, 12471962, 12672, null] + - [163, 7, SimpleBlock, 2, 12484637, 12435, null] + - [163, 7, SimpleBlock, 2, 12497075, 12408, null] + - [163, 7, SimpleBlock, 2, 12509486, 12258, null] + - [163, 7, SimpleBlock, 2, 12521747, 12327, null] + - [163, 7, SimpleBlock, 2, 12534077, 5970, null] + - [163, 7, SimpleBlock, 2, 12540050, 12242, null] + - [163, 7, SimpleBlock, 2, 12552295, 12099, null] + - [163, 7, SimpleBlock, 2, 12564397, 12248, null] + - [163, 7, SimpleBlock, 2, 12576648, 11962, null] + - [163, 7, SimpleBlock, 2, 12588613, 11927, null] + - [163, 7, SimpleBlock, 2, 12600543, 5874, null] + - [163, 7, SimpleBlock, 2, 12606420, 11981, null] + - [163, 7, SimpleBlock, 2, 12618404, 11902, null] + - [163, 7, SimpleBlock, 2, 12630309, 11921, null] + - [163, 7, SimpleBlock, 2, 12642233, 11689, null] + - [163, 7, SimpleBlock, 2, 12653925, 2794, null] + - [163, 7, SimpleBlock, 2, 12656722, 11864, null] + - [163, 7, SimpleBlock, 2, 12668589, 11531, null] + - [163, 7, SimpleBlock, 2, 12680123, 11632, null] + - [163, 7, SimpleBlock, 2, 12691758, 5777, null] + - [163, 7, SimpleBlock, 2, 12697538, 11429, null] + - [163, 7, SimpleBlock, 2, 12708970, 11526, null] + - [163, 7, SimpleBlock, 2, 12720499, 11214, null] + - [163, 7, SimpleBlock, 2, 12731716, 11362, null] + - [163, 7, SimpleBlock, 2, 12743081, 5585, null] + - [163, 7, SimpleBlock, 2, 12748669, 11338, null] + - [163, 7, SimpleBlock, 2, 12760010, 11249, null] + - [163, 7, SimpleBlock, 2, 12771262, 11295, null] + - [163, 7, SimpleBlock, 2, 12782560, 11137, null] + - [163, 7, SimpleBlock, 2, 12793700, 11203, null] + - [163, 7, SimpleBlock, 2, 12804906, 5395, null] + - [163, 7, SimpleBlock, 2, 12810304, 11042, null] + - [163, 7, SimpleBlock, 2, 12821349, 11145, null] + - [163, 7, SimpleBlock, 2, 12832497, 10864, null] + - [163, 7, SimpleBlock, 2, 12843364, 10885, null] + - [163, 7, SimpleBlock, 2, 12854252, 5680, null] + - [163, 7, SimpleBlock, 2, 12859935, 10829, null] + - [163, 7, SimpleBlock, 2, 12870767, 10656, null] + - [163, 7, SimpleBlock, 2, 12881426, 10698, null] + - [163, 7, SimpleBlock, 2, 12892127, 10718, null] + - [163, 7, SimpleBlock, 2, 12902848, 10663, null] + - [163, 7, SimpleBlock, 2, 12913514, 5393, null] + - [163, 7, SimpleBlock, 2, 12918910, 10615, null] + - [163, 7, SimpleBlock, 2, 12929528, 10614, null] + - [163, 7, SimpleBlock, 2, 12940145, 10528, null] + - [163, 7, SimpleBlock, 2, 12950676, 10479, null] + - [163, 7, SimpleBlock, 2, 12961158, 10358, null] + - [163, 7, SimpleBlock, 2, 12971519, 5487, null] + - [163, 7, SimpleBlock, 2, 12977009, 10405, null] + - [163, 7, SimpleBlock, 2, 12987417, 10152, null] + - [163, 7, SimpleBlock, 2, 12997572, 10226, null] + - [163, 7, SimpleBlock, 2, 13007801, 10300, null] + - [163, 7, SimpleBlock, 2, 13018104, 5104, null] + - [163, 7, SimpleBlock, 2, 13023211, 10268, null] + - [163, 7, SimpleBlock, 2, 13033482, 10148, null] + - [163, 7, SimpleBlock, 2, 13043633, 10309, null] + - [163, 7, SimpleBlock, 2, 13053945, 10178, null] + - [163, 7, SimpleBlock, 2, 13064126, 10096, null] + - [163, 7, SimpleBlock, 2, 13074225, 5201, null] + - [163, 7, SimpleBlock, 2, 13079429, 10085, null] + - [163, 7, SimpleBlock, 2, 13089517, 10239, null] + - [163, 7, SimpleBlock, 2, 13099759, 10113, null] + - [163, 7, SimpleBlock, 2, 13109875, 10129, null] + - [163, 7, SimpleBlock, 2, 13120007, 5008, null] + - [163, 7, SimpleBlock, 2, 13125018, 10090, null] + - [163, 7, SimpleBlock, 2, 13135111, 10152, null] + - [163, 7, SimpleBlock, 2, 13145266, 10211, null] + - [163, 7, SimpleBlock, 2, 13155480, 9935, null] + - [163, 7, SimpleBlock, 2, 13165418, 10088, null] + - [163, 7, SimpleBlock, 2, 13175509, 5202, null] + - [163, 7, SimpleBlock, 2, 13180714, 9887, null] + - [163, 7, SimpleBlock, 2, 13190604, 9798, null] + - [163, 7, SimpleBlock, 2, 13200405, 9855, null] + - [163, 7, SimpleBlock, 2, 13210263, 9677, null] + - [163, 7, SimpleBlock, 2, 13219943, 9497, null] + - [163, 7, SimpleBlock, 2, 13229443, 5585, null] + - [163, 7, SimpleBlock, 2, 13235031, 9425, null] + - [163, 7, SimpleBlock, 2, 13244459, 9598, null] + - [163, 7, SimpleBlock, 2, 13254060, 9206, null] + - [163, 7, SimpleBlock, 2, 13263269, 9294, null] + - [163, 7, SimpleBlock, 2, 13272566, 6354, null] + - [163, 7, SimpleBlock, 2, 13278923, 9149, null] + - [163, 7, SimpleBlock, 2, 13288075, 9011, null] + - [163, 7, SimpleBlock, 2, 13297089, 8892, null] + - [163, 7, SimpleBlock, 2, 13305984, 8677, null] + - [163, 7, SimpleBlock, 2, 13314664, 8752, null] + - [163, 7, SimpleBlock, 2, 13323419, 6547, null] + - [163, 7, SimpleBlock, 2, 13329969, 8803, null] + - [163, 7, SimpleBlock, 2, 13338775, 8670, null] + - [163, 7, SimpleBlock, 2, 13347448, 8642, null] + - [163, 7, SimpleBlock, 2, 13356093, 8631, null] + - [163, 7, SimpleBlock, 2, 13364727, 5682, null] + - [163, 7, SimpleBlock, 2, 13370412, 8570, null] + - [163, 7, SimpleBlock, 2, 13378985, 8420, null] + - [163, 7, SimpleBlock, 2, 13387408, 8489, null] + - [163, 7, SimpleBlock, 2, 13395900, 8492, null] + - [163, 7, SimpleBlock, 2, 13404395, 8290, null] + - [163, 7, SimpleBlock, 2, 13412688, 2793, null] + - [163, 7, SimpleBlock, 2, 13415484, 8296, null] + - [163, 7, SimpleBlock, 2, 13423783, 8405, null] + - [163, 7, SimpleBlock, 2, 13432191, 8355, null] + - - 524531317 + - 6 + - Cluster + - 1 + - 13440554 + - 3249549 + - - [231, 1, Timecode, 2, 13440556, 2, 42917] + - [163, 7, SimpleBlock, 2, 13440561, 676, null] + - [163, 7, SimpleBlock, 2, 13441240, 5489, null] + - [163, 7, SimpleBlock, 2, 13446733, 51446, null] + - [163, 7, SimpleBlock, 2, 13498182, 4220, null] + - [163, 7, SimpleBlock, 2, 13502405, 6526, null] + - [163, 7, SimpleBlock, 2, 13508934, 6389, null] + - [163, 7, SimpleBlock, 2, 13515326, 7048, null] + - [163, 7, SimpleBlock, 2, 13522377, 5490, null] + - [163, 7, SimpleBlock, 2, 13527870, 6914, null] + - [163, 7, SimpleBlock, 2, 13534787, 7116, null] + - [163, 7, SimpleBlock, 2, 13541906, 7356, null] + - [163, 7, SimpleBlock, 2, 13549265, 7645, null] + - [163, 7, SimpleBlock, 2, 13556913, 5585, null] + - [163, 7, SimpleBlock, 2, 13562501, 7360, null] + - [163, 7, SimpleBlock, 2, 13569864, 7213, null] + - [163, 7, SimpleBlock, 2, 13577080, 7193, null] + - [163, 7, SimpleBlock, 2, 13584276, 7232, null] + - [163, 7, SimpleBlock, 2, 13591511, 7281, null] + - [163, 7, SimpleBlock, 2, 13598795, 5680, null] + - [163, 7, SimpleBlock, 2, 13604478, 7357, null] + - [163, 7, SimpleBlock, 2, 13611838, 7403, null] + - [163, 7, SimpleBlock, 2, 13619244, 7427, null] + - [163, 7, SimpleBlock, 2, 13626674, 7673, null] + - [163, 7, SimpleBlock, 2, 13634350, 5489, null] + - [163, 7, SimpleBlock, 2, 13639842, 7819, null] + - [163, 7, SimpleBlock, 2, 13647664, 8057, null] + - [163, 7, SimpleBlock, 2, 13655724, 8240, null] + - [163, 7, SimpleBlock, 2, 13663967, 8555, null] + - [163, 7, SimpleBlock, 2, 13672525, 8858, null] + - [163, 7, SimpleBlock, 2, 13681386, 5381, null] + - [163, 7, SimpleBlock, 2, 13686770, 9423, null] + - [163, 7, SimpleBlock, 2, 13696196, 9727, null] + - [163, 7, SimpleBlock, 2, 13705926, 10330, null] + - [163, 7, SimpleBlock, 2, 13716259, 10596, null] + - [163, 7, SimpleBlock, 2, 13726858, 10571, null] + - [163, 7, SimpleBlock, 2, 13737432, 5683, null] + - [163, 7, SimpleBlock, 2, 13743118, 10613, null] + - [163, 7, SimpleBlock, 2, 13753734, 10893, null] + - [163, 7, SimpleBlock, 2, 13764630, 11063, null] + - [163, 7, SimpleBlock, 2, 13775696, 10909, null] + - [163, 7, SimpleBlock, 2, 13786608, 5486, null] + - [163, 7, SimpleBlock, 2, 13792097, 10803, null] + - [163, 7, SimpleBlock, 2, 13802903, 10949, null] + - [163, 7, SimpleBlock, 2, 13813855, 10796, null] + - [163, 7, SimpleBlock, 2, 13824654, 10855, null] + - [163, 7, SimpleBlock, 2, 13835512, 10674, null] + - [163, 7, SimpleBlock, 2, 13846189, 5200, null] + - [163, 7, SimpleBlock, 2, 13851392, 10485, null] + - [163, 7, SimpleBlock, 2, 13861880, 10737, null] + - [163, 7, SimpleBlock, 2, 13872620, 10837, null] + - [163, 7, SimpleBlock, 2, 13883460, 11119, null] + - [163, 7, SimpleBlock, 2, 13894582, 6161, null] + - [163, 7, SimpleBlock, 2, 13900746, 11117, null] + - [163, 7, SimpleBlock, 2, 13911866, 11056, null] + - [163, 7, SimpleBlock, 2, 13922925, 11181, null] + - [163, 7, SimpleBlock, 2, 13934109, 11216, null] + - [163, 7, SimpleBlock, 2, 13945328, 11249, null] + - [163, 7, SimpleBlock, 2, 13956580, 6161, null] + - [163, 7, SimpleBlock, 2, 13962744, 11095, null] + - [163, 7, SimpleBlock, 2, 13973842, 11220, null] + - [163, 7, SimpleBlock, 2, 13985065, 11147, null] + - [163, 7, SimpleBlock, 2, 13996215, 11224, null] + - [163, 7, SimpleBlock, 2, 14007442, 11201, null] + - [163, 7, SimpleBlock, 2, 14018646, 5491, null] + - [163, 7, SimpleBlock, 2, 14024140, 11272, null] + - [163, 7, SimpleBlock, 2, 14035415, 11123, null] + - [163, 7, SimpleBlock, 2, 14046541, 11354, null] + - [163, 7, SimpleBlock, 2, 14057898, 11251, null] + - [163, 7, SimpleBlock, 2, 14069152, 5873, null] + - [163, 7, SimpleBlock, 2, 14075028, 11219, null] + - [163, 7, SimpleBlock, 2, 14086250, 11150, null] + - [163, 7, SimpleBlock, 2, 14097403, 11010, null] + - [163, 7, SimpleBlock, 2, 14108416, 11187, null] + - [163, 7, SimpleBlock, 2, 14119606, 11061, null] + - [163, 7, SimpleBlock, 2, 14130670, 5680, null] + - [163, 7, SimpleBlock, 2, 14136353, 10999, null] + - [163, 7, SimpleBlock, 2, 14147355, 10922, null] + - [163, 7, SimpleBlock, 2, 14158280, 10778, null] + - [163, 7, SimpleBlock, 2, 14169061, 10831, null] + - [163, 7, SimpleBlock, 2, 14179895, 5969, null] + - [163, 7, SimpleBlock, 2, 14185867, 10646, null] + - [163, 7, SimpleBlock, 2, 14196516, 10783, null] + - [163, 7, SimpleBlock, 2, 14207302, 10694, null] + - [163, 7, SimpleBlock, 2, 14217999, 10551, null] + - [163, 7, SimpleBlock, 2, 14228553, 10232, null] + - [163, 7, SimpleBlock, 2, 14238788, 5488, null] + - [163, 7, SimpleBlock, 2, 14244279, 10166, null] + - [163, 7, SimpleBlock, 2, 14254448, 10369, null] + - [163, 7, SimpleBlock, 2, 14264820, 10309, null] + - [163, 7, SimpleBlock, 2, 14275132, 10050, null] + - [163, 7, SimpleBlock, 2, 14285185, 9831, null] + - [163, 7, SimpleBlock, 2, 14295019, 5381, null] + - [163, 7, SimpleBlock, 2, 14300403, 9790, null] + - [163, 7, SimpleBlock, 2, 14310196, 9781, null] + - [163, 7, SimpleBlock, 2, 14319980, 9691, null] + - [163, 7, SimpleBlock, 2, 14329674, 9640, null] + - [163, 7, SimpleBlock, 2, 14339317, 5968, null] + - [163, 7, SimpleBlock, 2, 14345288, 9567, null] + - [163, 7, SimpleBlock, 2, 14354858, 9593, null] + - [163, 7, SimpleBlock, 2, 14364454, 9481, null] + - [163, 7, SimpleBlock, 2, 14373938, 9196, null] + - [163, 7, SimpleBlock, 2, 14383137, 9329, null] + - [163, 7, SimpleBlock, 2, 14392469, 5970, null] + - [163, 7, SimpleBlock, 2, 14398442, 9824, null] + - [163, 7, SimpleBlock, 2, 14408269, 10746, null] + - [163, 7, SimpleBlock, 2, 14419018, 11335, null] + - [163, 7, SimpleBlock, 2, 14430356, 10367, null] + - [163, 7, SimpleBlock, 2, 14440726, 12364, null] + - [163, 7, SimpleBlock, 2, 14453093, 5489, null] + - [163, 7, SimpleBlock, 2, 14458585, 12120, null] + - [163, 7, SimpleBlock, 2, 14470708, 12407, null] + - [163, 7, SimpleBlock, 2, 14483118, 11822, null] + - [163, 7, SimpleBlock, 2, 14494943, 9897, null] + - [163, 7, SimpleBlock, 2, 14504843, 5873, null] + - [163, 7, SimpleBlock, 2, 14510719, 9439, null] + - [163, 7, SimpleBlock, 2, 14520161, 8651, null] + - [163, 7, SimpleBlock, 2, 14528815, 7775, null] + - [163, 7, SimpleBlock, 2, 14536593, 6840, null] + - [163, 7, SimpleBlock, 2, 14543436, 6619, null] + - [163, 7, SimpleBlock, 2, 14550058, 5583, null] + - [163, 7, SimpleBlock, 2, 14555644, 6141, null] + - [163, 7, SimpleBlock, 2, 14561788, 6076, null] + - [163, 7, SimpleBlock, 2, 14567867, 6044, null] + - [163, 7, SimpleBlock, 2, 14573914, 5676, null] + - [163, 7, SimpleBlock, 2, 14579593, 5490, null] + - [163, 7, SimpleBlock, 2, 14585086, 5501, null] + - [163, 7, SimpleBlock, 2, 14590590, 5301, null] + - [163, 7, SimpleBlock, 2, 14595894, 5021, null] + - [163, 7, SimpleBlock, 2, 14600918, 4890, null] + - [163, 7, SimpleBlock, 2, 14605811, 4454, null] + - [163, 7, SimpleBlock, 2, 14610268, 5295, null] + - [163, 7, SimpleBlock, 2, 14615566, 4043, null] + - [163, 7, SimpleBlock, 2, 14619612, 3760, null] + - [163, 7, SimpleBlock, 2, 14623375, 3239, null] + - [163, 7, SimpleBlock, 2, 14626617, 3786, null] + - [163, 7, SimpleBlock, 2, 14630406, 6048, null] + - [163, 7, SimpleBlock, 2, 14636457, 5393, null] + - [163, 7, SimpleBlock, 2, 14641853, 7637, null] + - [163, 7, SimpleBlock, 2, 14649493, 9427, null] + - [163, 7, SimpleBlock, 2, 14658923, 10261, null] + - [163, 7, SimpleBlock, 2, 14669187, 10309, null] + - [163, 7, SimpleBlock, 2, 14679499, 5485, null] + - [163, 7, SimpleBlock, 2, 14684988, 81128, null] + - [163, 7, SimpleBlock, 2, 14766119, 2985, null] + - [163, 7, SimpleBlock, 2, 14769107, 4541, null] + - [163, 7, SimpleBlock, 2, 14773651, 5172, null] + - [163, 7, SimpleBlock, 2, 14778826, 7922, null] + - [163, 7, SimpleBlock, 2, 14786751, 5392, null] + - [163, 7, SimpleBlock, 2, 14792146, 9646, null] + - [163, 7, SimpleBlock, 2, 14801795, 12038, null] + - [163, 7, SimpleBlock, 2, 14813836, 13795, null] + - [163, 7, SimpleBlock, 2, 14827634, 14528, null] + - [163, 7, SimpleBlock, 2, 14842165, 5681, null] + - [163, 7, SimpleBlock, 2, 14847849, 15597, null] + - [163, 7, SimpleBlock, 2, 14863450, 16822, null] + - [163, 7, SimpleBlock, 2, 14880276, 18050, null] + - [163, 7, SimpleBlock, 2, 14898330, 18837, null] + - [163, 7, SimpleBlock, 2, 14917171, 19247, null] + - [163, 7, SimpleBlock, 2, 14936421, 5392, null] + - [163, 7, SimpleBlock, 2, 14941817, 19069, null] + - [163, 7, SimpleBlock, 2, 14960890, 19463, null] + - [163, 7, SimpleBlock, 2, 14980357, 19931, null] + - [163, 7, SimpleBlock, 2, 15000292, 20799, null] + - [163, 7, SimpleBlock, 2, 15021095, 21176, null] + - [163, 7, SimpleBlock, 2, 15042274, 5487, null] + - [163, 7, SimpleBlock, 2, 15047765, 21537, null] + - [163, 7, SimpleBlock, 2, 15069306, 22280, null] + - [163, 7, SimpleBlock, 2, 15091590, 22732, null] + - [163, 7, SimpleBlock, 2, 15114326, 23371, null] + - [163, 7, SimpleBlock, 2, 15137700, 5678, null] + - [163, 7, SimpleBlock, 2, 15143382, 23440, null] + - [163, 7, SimpleBlock, 2, 15166826, 22016, null] + - [163, 7, SimpleBlock, 2, 15188846, 21824, null] + - [163, 7, SimpleBlock, 2, 15210674, 21546, null] + - [163, 7, SimpleBlock, 2, 15232224, 21501, null] + - [163, 7, SimpleBlock, 2, 15253728, 5585, null] + - [163, 7, SimpleBlock, 2, 15259317, 22122, null] + - [163, 7, SimpleBlock, 2, 15281443, 21956, null] + - [163, 7, SimpleBlock, 2, 15303403, 22514, null] + - [163, 7, SimpleBlock, 2, 15325921, 22574, null] + - [163, 7, SimpleBlock, 2, 15348498, 5489, null] + - [163, 7, SimpleBlock, 2, 15353991, 22991, null] + - [163, 7, SimpleBlock, 2, 15376986, 23508, null] + - [163, 7, SimpleBlock, 2, 15400498, 23870, null] + - [163, 7, SimpleBlock, 2, 15424372, 24440, null] + - [163, 7, SimpleBlock, 2, 15448816, 25013, null] + - [163, 7, SimpleBlock, 2, 15473832, 5199, null] + - [163, 7, SimpleBlock, 2, 15479035, 25337, null] + - [163, 7, SimpleBlock, 2, 15504376, 24717, null] + - [163, 7, SimpleBlock, 2, 15529097, 24623, null] + - [163, 7, SimpleBlock, 2, 15553724, 24344, null] + - [163, 7, SimpleBlock, 2, 15578072, 23717, null] + - [163, 7, SimpleBlock, 2, 15601792, 5680, null] + - [163, 7, SimpleBlock, 2, 15607476, 23417, null] + - [163, 7, SimpleBlock, 2, 15630897, 23226, null] + - [163, 7, SimpleBlock, 2, 15654127, 22676, null] + - [163, 7, SimpleBlock, 2, 15676807, 21990, null] + - [163, 7, SimpleBlock, 2, 15698800, 5776, null] + - [163, 7, SimpleBlock, 2, 15704580, 21261, null] + - [163, 7, SimpleBlock, 2, 15725845, 20986, null] + - [163, 7, SimpleBlock, 2, 15746835, 20141, null] + - [163, 7, SimpleBlock, 2, 15766980, 19845, null] + - [163, 7, SimpleBlock, 2, 15786829, 19632, null] + - [163, 7, SimpleBlock, 2, 15806464, 5875, null] + - [163, 7, SimpleBlock, 2, 15812343, 19280, null] + - [163, 7, SimpleBlock, 2, 15831627, 19167, null] + - [163, 7, SimpleBlock, 2, 15850798, 19204, null] + - [163, 7, SimpleBlock, 2, 15870006, 18863, null] + - [163, 7, SimpleBlock, 2, 15888872, 5682, null] + - [163, 7, SimpleBlock, 2, 15894558, 18701, null] + - [163, 7, SimpleBlock, 2, 15913263, 18677, null] + - [163, 7, SimpleBlock, 2, 15931944, 18223, null] + - [163, 7, SimpleBlock, 2, 15950171, 18362, null] + - [163, 7, SimpleBlock, 2, 15968537, 17943, null] + - [163, 7, SimpleBlock, 2, 15986483, 5681, null] + - [163, 7, SimpleBlock, 2, 15992168, 17666, null] + - [163, 7, SimpleBlock, 2, 16009838, 17249, null] + - [163, 7, SimpleBlock, 2, 16027091, 16713, null] + - [163, 7, SimpleBlock, 2, 16043807, 16212, null] + - [163, 7, SimpleBlock, 2, 16060022, 15866, null] + - [163, 7, SimpleBlock, 2, 16075891, 5779, null] + - [163, 7, SimpleBlock, 2, 16081673, 15394, null] + - [163, 7, SimpleBlock, 2, 16097070, 15150, null] + - [163, 7, SimpleBlock, 2, 16112223, 14891, null] + - [163, 7, SimpleBlock, 2, 16127117, 14570, null] + - [163, 7, SimpleBlock, 2, 16141690, 5777, null] + - [163, 7, SimpleBlock, 2, 16147470, 14314, null] + - [163, 7, SimpleBlock, 2, 16161787, 13823, null] + - [163, 7, SimpleBlock, 2, 16175613, 13404, null] + - [163, 7, SimpleBlock, 2, 16189020, 12774, null] + - [163, 7, SimpleBlock, 2, 16201797, 12584, null] + - [163, 7, SimpleBlock, 2, 16214384, 5584, null] + - [163, 7, SimpleBlock, 2, 16219971, 12212, null] + - [163, 7, SimpleBlock, 2, 16232186, 11618, null] + - [163, 7, SimpleBlock, 2, 16243807, 11021, null] + - [163, 7, SimpleBlock, 2, 16254831, 10348, null] + - [163, 7, SimpleBlock, 2, 16265182, 2602, null] + - [163, 7, SimpleBlock, 2, 16267787, 9776, null] + - [163, 7, SimpleBlock, 2, 16277566, 9134, null] + - [163, 7, SimpleBlock, 2, 16286703, 8473, null] + - [163, 7, SimpleBlock, 2, 16295179, 5872, null] + - [163, 7, SimpleBlock, 2, 16301054, 8042, null] + - [163, 7, SimpleBlock, 2, 16309099, 6886, null] + - [163, 7, SimpleBlock, 2, 16315988, 6278, null] + - [163, 7, SimpleBlock, 2, 16322269, 5524, null] + - [163, 7, SimpleBlock, 2, 16327796, 5777, null] + - [163, 7, SimpleBlock, 2, 16333576, 4813, null] + - [163, 7, SimpleBlock, 2, 16338392, 4026, null] + - [163, 7, SimpleBlock, 2, 16342421, 3079, null] + - [163, 7, SimpleBlock, 2, 16345503, 2908, null] + - [163, 7, SimpleBlock, 2, 16348414, 2809, null] + - [163, 7, SimpleBlock, 2, 16351226, 5585, null] + - [163, 7, SimpleBlock, 2, 16356814, 2952, null] + - [163, 7, SimpleBlock, 2, 16359769, 2981, null] + - [163, 7, SimpleBlock, 2, 16362753, 3155, null] + - [163, 7, SimpleBlock, 2, 16365911, 3321, null] + - [163, 7, SimpleBlock, 2, 16369235, 3586, null] + - [163, 7, SimpleBlock, 2, 16372824, 5779, null] + - [163, 7, SimpleBlock, 2, 16378606, 3776, null] + - [163, 7, SimpleBlock, 2, 16382385, 4020, null] + - [163, 7, SimpleBlock, 2, 16386408, 4418, null] + - [163, 7, SimpleBlock, 2, 16390829, 5383, null] + - [163, 7, SimpleBlock, 2, 16396215, 5295, null] + - [163, 7, SimpleBlock, 2, 16401513, 6085, null] + - [163, 7, SimpleBlock, 2, 16407601, 6943, null] + - [163, 7, SimpleBlock, 2, 16414547, 7869, null] + - [163, 7, SimpleBlock, 2, 16422419, 8274, null] + - [163, 7, SimpleBlock, 2, 16430696, 7703, null] + - [163, 7, SimpleBlock, 2, 16438402, 5969, null] + - [163, 7, SimpleBlock, 2, 16444374, 7035, null] + - [163, 7, SimpleBlock, 2, 16451412, 7128, null] + - [163, 7, SimpleBlock, 2, 16458543, 6985, null] + - [163, 7, SimpleBlock, 2, 16465531, 6926, null] + - [163, 7, SimpleBlock, 2, 16472460, 5872, null] + - [163, 7, SimpleBlock, 2, 16478335, 6447, null] + - [163, 7, SimpleBlock, 2, 16484785, 5798, null] + - [163, 7, SimpleBlock, 2, 16490586, 5291, null] + - [163, 7, SimpleBlock, 2, 16495880, 5001, null] + - [163, 7, SimpleBlock, 2, 16500884, 4734, null] + - [163, 7, SimpleBlock, 2, 16505621, 7311, null] + - [163, 7, SimpleBlock, 2, 16512935, 4435, null] + - [163, 7, SimpleBlock, 2, 16517373, 6151, null] + - [163, 7, SimpleBlock, 2, 16523527, 5456, null] + - [163, 7, SimpleBlock, 2, 16528986, 4818, null] + - [163, 7, SimpleBlock, 2, 16533807, 5462, null] + - [163, 7, SimpleBlock, 2, 16539272, 6159, null] + - [163, 7, SimpleBlock, 2, 16545434, 5465, null] + - [163, 7, SimpleBlock, 2, 16550902, 5201, null] + - [163, 7, SimpleBlock, 2, 16556106, 5002, null] + - [163, 7, SimpleBlock, 2, 16561111, 5430, null] + - [163, 7, SimpleBlock, 2, 16566544, 5970, null] + - [163, 7, SimpleBlock, 2, 16572517, 6146, null] + - [163, 7, SimpleBlock, 2, 16578666, 6690, null] + - [163, 7, SimpleBlock, 2, 16585359, 7086, null] + - [163, 7, SimpleBlock, 2, 16592448, 8078, null] + - [163, 7, SimpleBlock, 2, 16600529, 8723, null] + - [163, 7, SimpleBlock, 2, 16609255, 6067, null] + - [163, 7, SimpleBlock, 2, 16615325, 9113, null] + - [163, 7, SimpleBlock, 2, 16624441, 9253, null] + - [163, 7, SimpleBlock, 2, 16633697, 10193, null] + - [163, 7, SimpleBlock, 2, 16643893, 9354, null] + - [163, 7, SimpleBlock, 2, 16653250, 3948, null] + - [163, 7, SimpleBlock, 2, 16657201, 9131, null] + - [163, 7, SimpleBlock, 2, 16666335, 8881, null] + - [163, 7, SimpleBlock, 2, 16675219, 7845, null] + - [163, 7, SimpleBlock, 2, 16683067, 7036, null] + - - 524531317 + - 6 + - Cluster + - 1 + - 16690110 + - 778801 + - - [231, 1, Timecode, 2, 16690112, 2, 53333] + - [163, 7, SimpleBlock, 2, 16690117, 772, null] + - [163, 7, SimpleBlock, 2, 16690892, 6162, null] + - [163, 7, SimpleBlock, 2, 16697058, 73939, null] + - [163, 7, SimpleBlock, 2, 16771000, 2203, null] + - [163, 7, SimpleBlock, 2, 16773206, 2982, null] + - [163, 7, SimpleBlock, 2, 16776191, 3662, null] + - [163, 7, SimpleBlock, 2, 16779856, 4237, null] + - [163, 7, SimpleBlock, 2, 16784096, 5968, null] + - [163, 7, SimpleBlock, 2, 16790067, 4508, null] + - [163, 7, SimpleBlock, 2, 16794578, 4745, null] + - [163, 7, SimpleBlock, 2, 16799326, 4972, null] + - [163, 7, SimpleBlock, 2, 16804301, 5076, null] + - [163, 7, SimpleBlock, 2, 16809380, 6063, null] + - [163, 7, SimpleBlock, 2, 16815446, 5439, null] + - [163, 7, SimpleBlock, 2, 16820888, 5560, null] + - [163, 7, SimpleBlock, 2, 16826451, 5676, null] + - [163, 7, SimpleBlock, 2, 16832130, 5844, null] + - [163, 7, SimpleBlock, 2, 16837977, 6061, null] + - [163, 7, SimpleBlock, 2, 16844041, 5969, null] + - [163, 7, SimpleBlock, 2, 16850013, 6557, null] + - [163, 7, SimpleBlock, 2, 16856573, 7227, null] + - [163, 7, SimpleBlock, 2, 16863803, 7725, null] + - [163, 7, SimpleBlock, 2, 16871531, 8407, null] + - [163, 7, SimpleBlock, 2, 16879941, 5582, null] + - [163, 7, SimpleBlock, 2, 16885526, 8767, null] + - [163, 7, SimpleBlock, 2, 16894296, 9382, null] + - [163, 7, SimpleBlock, 2, 16903681, 9861, null] + - [163, 7, SimpleBlock, 2, 16913545, 10355, null] + - [163, 7, SimpleBlock, 2, 16923903, 9733, null] + - [163, 7, SimpleBlock, 2, 16933639, 5873, null] + - [163, 7, SimpleBlock, 2, 16939515, 9873, null] + - [163, 7, SimpleBlock, 2, 16949391, 9813, null] + - [163, 7, SimpleBlock, 2, 16959207, 9508, null] + - [163, 7, SimpleBlock, 2, 16968718, 11810, null] + - [163, 7, SimpleBlock, 2, 16980531, 12852, null] + - [163, 7, SimpleBlock, 2, 16993386, 5393, null] + - [163, 7, SimpleBlock, 2, 16998782, 11068, null] + - [163, 7, SimpleBlock, 2, 17009853, 10499, null] + - [163, 7, SimpleBlock, 2, 17020355, 10353, null] + - [163, 7, SimpleBlock, 2, 17030711, 9915, null] + - [163, 7, SimpleBlock, 2, 17040629, 5873, null] + - [163, 7, SimpleBlock, 2, 17046505, 9921, null] + - [163, 7, SimpleBlock, 2, 17056429, 9995, null] + - [163, 7, SimpleBlock, 2, 17066427, 10146, null] + - [163, 7, SimpleBlock, 2, 17076576, 10535, null] + - [163, 7, SimpleBlock, 2, 17087114, 10775, null] + - [163, 7, SimpleBlock, 2, 17097892, 5873, null] + - [163, 7, SimpleBlock, 2, 17103768, 11200, null] + - [163, 7, SimpleBlock, 2, 17114971, 12237, null] + - [163, 7, SimpleBlock, 2, 17127211, 12523, null] + - [163, 7, SimpleBlock, 2, 17139737, 12799, null] + - [163, 7, SimpleBlock, 2, 17152539, 6353, null] + - [163, 7, SimpleBlock, 2, 17158895, 12844, null] + - [163, 7, SimpleBlock, 2, 17171742, 13331, null] + - [163, 7, SimpleBlock, 2, 17185076, 13494, null] + - [163, 7, SimpleBlock, 2, 17198573, 13391, null] + - [163, 7, SimpleBlock, 2, 17211967, 13210, null] + - [163, 7, SimpleBlock, 2, 17225180, 5776, null] + - [163, 7, SimpleBlock, 2, 17230959, 12707, null] + - [163, 7, SimpleBlock, 2, 17243669, 12771, null] + - [163, 7, SimpleBlock, 2, 17256443, 12524, null] + - [163, 7, SimpleBlock, 2, 17268970, 12340, null] + - [163, 7, SimpleBlock, 2, 17281313, 12283, null] + - [163, 7, SimpleBlock, 2, 17293599, 5297, null] + - [163, 7, SimpleBlock, 2, 17298899, 12150, null] + - [163, 7, SimpleBlock, 2, 17311052, 12123, null] + - [163, 7, SimpleBlock, 2, 17323178, 11543, null] + - [163, 7, SimpleBlock, 2, 17334724, 10955, null] + - [163, 7, SimpleBlock, 2, 17345682, 5487, null] + - [163, 7, SimpleBlock, 2, 17351172, 10655, null] + - [163, 7, SimpleBlock, 2, 17361830, 10831, null] + - [163, 7, SimpleBlock, 2, 17372664, 11824, null] + - [163, 7, SimpleBlock, 2, 17384491, 12199, null] + - [163, 7, SimpleBlock, 2, 17396693, 10612, null] + - [163, 7, SimpleBlock, 2, 17407308, 6162, null] + - [163, 7, SimpleBlock, 2, 17413473, 10118, null] + - [163, 7, SimpleBlock, 2, 17423594, 9704, null] + - [163, 7, SimpleBlock, 2, 17433301, 8930, null] + - [163, 7, SimpleBlock, 2, 17442234, 8418, null] + - [163, 7, SimpleBlock, 2, 17450655, 676, null] + - [163, 7, SimpleBlock, 2, 17451334, 8595, null] + - [163, 7, SimpleBlock, 2, 17459932, 8979, null] + - - 524531317 + - 6 + - Cluster + - 1 + - 17468918 + - 1159873 + - - [231, 1, Timecode, 2, 17468920, 2, 56083] + - [163, 7, SimpleBlock, 2, 17468925, 676, null] + - [163, 7, SimpleBlock, 2, 17469604, 5777, null] + - [163, 7, SimpleBlock, 2, 17475385, 22461, null] + - [163, 7, SimpleBlock, 2, 17497849, 2509, null] + - [163, 7, SimpleBlock, 2, 17500361, 1485, null] + - [163, 7, SimpleBlock, 2, 17501849, 320, null] + - [163, 7, SimpleBlock, 2, 17502172, 6258, null] + - [163, 7, SimpleBlock, 2, 17508433, 245, null] + - [163, 7, SimpleBlock, 2, 17508681, 248, null] + - [163, 7, SimpleBlock, 2, 17508932, 233, null] + - [163, 7, SimpleBlock, 2, 17509168, 218, null] + - [163, 7, SimpleBlock, 2, 17509389, 238, null] + - [163, 7, SimpleBlock, 2, 17509630, 6353, null] + - [163, 7, SimpleBlock, 2, 17515986, 232, null] + - [163, 7, SimpleBlock, 2, 17516221, 224, null] + - [163, 7, SimpleBlock, 2, 17516448, 235, null] + - [163, 7, SimpleBlock, 2, 17516686, 330, null] + - [163, 7, SimpleBlock, 2, 17517019, 6545, null] + - [163, 7, SimpleBlock, 2, 17523567, 414, null] + - [163, 7, SimpleBlock, 2, 17523984, 499, null] + - [163, 7, SimpleBlock, 2, 17524486, 554, null] + - [163, 7, SimpleBlock, 2, 17525043, 614, null] + - [163, 7, SimpleBlock, 2, 17525660, 598, null] + - [163, 7, SimpleBlock, 2, 17526261, 5487, null] + - [163, 7, SimpleBlock, 2, 17531751, 640, null] + - [163, 7, SimpleBlock, 2, 17532394, 771, null] + - [163, 7, SimpleBlock, 2, 17533168, 715, null] + - [163, 7, SimpleBlock, 2, 17533886, 643, null] + - [163, 7, SimpleBlock, 2, 17534532, 686, null] + - [163, 7, SimpleBlock, 2, 17535221, 5779, null] + - [163, 7, SimpleBlock, 2, 17541003, 763, null] + - [163, 7, SimpleBlock, 2, 17541769, 1464, null] + - [163, 7, SimpleBlock, 2, 17543236, 1514, null] + - [163, 7, SimpleBlock, 2, 17544753, 1618, null] + - [163, 7, SimpleBlock, 2, 17546374, 5969, null] + - [163, 7, SimpleBlock, 2, 17552346, 1804, null] + - [163, 7, SimpleBlock, 2, 17554153, 1848, null] + - [163, 7, SimpleBlock, 2, 17556004, 1926, null] + - [163, 7, SimpleBlock, 2, 17557933, 1630, null] + - [163, 7, SimpleBlock, 2, 17559566, 1113, null] + - [163, 7, SimpleBlock, 2, 17560682, 5295, null] + - [163, 7, SimpleBlock, 2, 17565980, 1004, null] + - [163, 7, SimpleBlock, 2, 17566987, 1093, null] + - [163, 7, SimpleBlock, 2, 17568083, 1153, null] + - [163, 7, SimpleBlock, 2, 17569239, 1172, null] + - [163, 7, SimpleBlock, 2, 17570414, 6354, null] + - [163, 7, SimpleBlock, 2, 17576771, 1405, null] + - [163, 7, SimpleBlock, 2, 17578179, 2397, null] + - [163, 7, SimpleBlock, 2, 17580579, 2799, null] + - [163, 7, SimpleBlock, 2, 17583381, 3471, null] + - [163, 7, SimpleBlock, 2, 17586855, 3841, null] + - [163, 7, SimpleBlock, 2, 17590699, 5779, null] + - [163, 7, SimpleBlock, 2, 17596481, 4169, null] + - [163, 7, SimpleBlock, 2, 17600653, 4518, null] + - [163, 7, SimpleBlock, 2, 17605174, 4830, null] + - [163, 7, SimpleBlock, 2, 17610007, 5034, null] + - [163, 7, SimpleBlock, 2, 17615044, 4699, null] + - [163, 7, SimpleBlock, 2, 17619746, 5776, null] + - [163, 7, SimpleBlock, 2, 17625525, 3001, null] + - [163, 7, SimpleBlock, 2, 17628529, 2180, null] + - [163, 7, SimpleBlock, 2, 17630712, 2302, null] + - [163, 7, SimpleBlock, 2, 17633017, 2170, null] + - [163, 7, SimpleBlock, 2, 17635190, 6062, null] + - [163, 7, SimpleBlock, 2, 17641255, 2343, null] + - [163, 7, SimpleBlock, 2, 17643601, 2435, null] + - [163, 7, SimpleBlock, 2, 17646039, 2472, null] + - [163, 7, SimpleBlock, 2, 17648514, 2495, null] + - [163, 7, SimpleBlock, 2, 17651012, 2687, null] + - [163, 7, SimpleBlock, 2, 17653702, 5393, null] + - [163, 7, SimpleBlock, 2, 17659098, 2627, null] + - [163, 7, SimpleBlock, 2, 17661728, 2740, null] + - [163, 7, SimpleBlock, 2, 17664471, 2819, null] + - [163, 7, SimpleBlock, 2, 17667293, 2973, null] + - [163, 7, SimpleBlock, 2, 17670269, 3204, null] + - [163, 7, SimpleBlock, 2, 17673476, 6255, null] + - [163, 7, SimpleBlock, 2, 17679734, 3227, null] + - [163, 7, SimpleBlock, 2, 17682964, 3096, null] + - [163, 7, SimpleBlock, 2, 17686063, 2755, null] + - [163, 7, SimpleBlock, 2, 17688821, 2414, null] + - [163, 7, SimpleBlock, 2, 17691238, 5966, null] + - [163, 7, SimpleBlock, 2, 17697207, 2199, null] + - [163, 7, SimpleBlock, 2, 17699409, 1988, null] + - [163, 7, SimpleBlock, 2, 17701400, 1875, null] + - [163, 7, SimpleBlock, 2, 17703278, 1877, null] + - [163, 7, SimpleBlock, 2, 17705158, 1855, null] + - [163, 7, SimpleBlock, 2, 17707016, 5872, null] + - [163, 7, SimpleBlock, 2, 17712891, 1753, null] + - [163, 7, SimpleBlock, 2, 17714647, 1698, null] + - [163, 7, SimpleBlock, 2, 17716348, 1681, null] + - [163, 7, SimpleBlock, 2, 17718032, 1668, null] + - [163, 7, SimpleBlock, 2, 17719703, 6449, null] + - [163, 7, SimpleBlock, 2, 17726155, 1643, null] + - [163, 7, SimpleBlock, 2, 17727801, 1573, null] + - [163, 7, SimpleBlock, 2, 17729377, 1510, null] + - [163, 7, SimpleBlock, 2, 17730890, 1414, null] + - [163, 7, SimpleBlock, 2, 17732307, 1290, null] + - [163, 7, SimpleBlock, 2, 17733600, 6066, null] + - [163, 7, SimpleBlock, 2, 17739669, 1199, null] + - [163, 7, SimpleBlock, 2, 17740871, 1170, null] + - [163, 7, SimpleBlock, 2, 17742044, 1056, null] + - [163, 7, SimpleBlock, 2, 17743103, 914, null] + - [163, 7, SimpleBlock, 2, 17744020, 895, null] + - [163, 7, SimpleBlock, 2, 17744918, 6256, null] + - [163, 7, SimpleBlock, 2, 17751177, 772, null] + - [163, 7, SimpleBlock, 2, 17751952, 686, null] + - [163, 7, SimpleBlock, 2, 17752641, 801, null] + - [163, 7, SimpleBlock, 2, 17753445, 810, null] + - [163, 7, SimpleBlock, 2, 17754258, 5201, null] + - [163, 7, SimpleBlock, 2, 17759462, 816, null] + - [163, 7, SimpleBlock, 2, 17760281, 773, null] + - [163, 7, SimpleBlock, 2, 17761057, 767, null] + - [163, 7, SimpleBlock, 2, 17761827, 819, null] + - [163, 7, SimpleBlock, 2, 17762649, 878, null] + - [163, 7, SimpleBlock, 2, 17763530, 5777, null] + - [163, 7, SimpleBlock, 2, 17769310, 1042, null] + - [163, 7, SimpleBlock, 2, 17770355, 1207, null] + - [163, 7, SimpleBlock, 2, 17771565, 1260, null] + - [163, 7, SimpleBlock, 2, 17772828, 1224, null] + - [163, 7, SimpleBlock, 2, 17774055, 5679, null] + - [163, 7, SimpleBlock, 2, 17779737, 1156, null] + - [163, 7, SimpleBlock, 2, 17780896, 1212, null] + - [163, 7, SimpleBlock, 2, 17782111, 1231, null] + - [163, 7, SimpleBlock, 2, 17783345, 1228, null] + - [163, 7, SimpleBlock, 2, 17784576, 1295, null] + - [163, 7, SimpleBlock, 2, 17785874, 5010, null] + - [163, 7, SimpleBlock, 2, 17790887, 1319, null] + - [163, 7, SimpleBlock, 2, 17792209, 1331, null] + - [163, 7, SimpleBlock, 2, 17793543, 1360, null] + - [163, 7, SimpleBlock, 2, 17794906, 1380, null] + - [163, 7, SimpleBlock, 2, 17796289, 1470, null] + - [163, 7, SimpleBlock, 2, 17797762, 5968, null] + - [163, 7, SimpleBlock, 2, 17803733, 1471, null] + - [163, 7, SimpleBlock, 2, 17805207, 1209, null] + - [163, 7, SimpleBlock, 2, 17806419, 1172, null] + - [163, 7, SimpleBlock, 2, 17807594, 1246, null] + - [163, 7, SimpleBlock, 2, 17808843, 5874, null] + - [163, 7, SimpleBlock, 2, 17814721, 29320, null] + - [163, 7, SimpleBlock, 2, 17844044, 4031, null] + - [163, 7, SimpleBlock, 2, 17848078, 3115, null] + - [163, 7, SimpleBlock, 2, 17851196, 2426, null] + - [163, 7, SimpleBlock, 2, 17853625, 3597, null] + - [163, 7, SimpleBlock, 2, 17857225, 5586, null] + - [163, 7, SimpleBlock, 2, 17862814, 4146, null] + - [163, 7, SimpleBlock, 2, 17866963, 4167, null] + - [163, 7, SimpleBlock, 2, 17871133, 3878, null] + - [163, 7, SimpleBlock, 2, 17875014, 2803, null] + - [163, 7, SimpleBlock, 2, 17877820, 772, null] + - [163, 7, SimpleBlock, 2, 17878595, 2519, null] + - [163, 7, SimpleBlock, 2, 17881117, 5586, null] + - [163, 7, SimpleBlock, 2, 17886706, 3475, null] + - [163, 7, SimpleBlock, 2, 17890184, 3964, null] + - [163, 7, SimpleBlock, 2, 17894151, 3802, null] + - [163, 7, SimpleBlock, 2, 17897956, 3434, null] + - [163, 7, SimpleBlock, 2, 17901393, 2679, null] + - [163, 7, SimpleBlock, 2, 17904075, 5489, null] + - [163, 7, SimpleBlock, 2, 17909567, 2362, null] + - [163, 7, SimpleBlock, 2, 17911932, 2821, null] + - [163, 7, SimpleBlock, 2, 17914756, 3440, null] + - [163, 7, SimpleBlock, 2, 17918199, 3659, null] + - [163, 7, SimpleBlock, 2, 17921861, 6737, null] + - [163, 7, SimpleBlock, 2, 17928601, 3649, null] + - [163, 7, SimpleBlock, 2, 17932253, 2521, null] + - [163, 7, SimpleBlock, 2, 17934777, 1893, null] + - [163, 7, SimpleBlock, 2, 17936673, 2836, null] + - [163, 7, SimpleBlock, 2, 17939512, 3377, null] + - [163, 7, SimpleBlock, 2, 17942892, 5392, null] + - [163, 7, SimpleBlock, 2, 17948287, 3391, null] + - [163, 7, SimpleBlock, 2, 17951681, 3300, null] + - [163, 7, SimpleBlock, 2, 17954984, 2321, null] + - [163, 7, SimpleBlock, 2, 17957308, 1850, null] + - [163, 7, SimpleBlock, 2, 17959161, 5585, null] + - [163, 7, SimpleBlock, 2, 17964749, 2256, null] + - [163, 7, SimpleBlock, 2, 17967008, 2635, null] + - [163, 7, SimpleBlock, 2, 17969646, 2856, null] + - [163, 7, SimpleBlock, 2, 17972505, 2837, null] + - [163, 7, SimpleBlock, 2, 17975345, 2829, null] + - [163, 7, SimpleBlock, 2, 17978177, 6256, null] + - [163, 7, SimpleBlock, 2, 17984436, 2566, null] + - [163, 7, SimpleBlock, 2, 17987005, 2308, null] + - [163, 7, SimpleBlock, 2, 17989316, 2064, null] + - [163, 7, SimpleBlock, 2, 17991383, 2007, null] + - [163, 7, SimpleBlock, 2, 17993393, 2166, null] + - [163, 7, SimpleBlock, 2, 17995562, 5393, null] + - [163, 7, SimpleBlock, 2, 18000958, 1772, null] + - [163, 7, SimpleBlock, 2, 18002733, 1579, null] + - [163, 7, SimpleBlock, 2, 18004315, 1467, null] + - [163, 7, SimpleBlock, 2, 18005785, 1362, null] + - [163, 7, SimpleBlock, 2, 18007150, 5776, null] + - [163, 7, SimpleBlock, 2, 18012929, 1411, null] + - [163, 7, SimpleBlock, 2, 18014343, 1553, null] + - [163, 7, SimpleBlock, 2, 18015899, 1874, null] + - [163, 7, SimpleBlock, 2, 18017776, 2222, null] + - [163, 7, SimpleBlock, 2, 18020001, 2455, null] + - [163, 7, SimpleBlock, 2, 18022459, 5298, null] + - [163, 7, SimpleBlock, 2, 18027760, 2969, null] + - [163, 7, SimpleBlock, 2, 18030732, 2986, null] + - [163, 7, SimpleBlock, 2, 18033721, 2874, null] + - [163, 7, SimpleBlock, 2, 18036598, 3500, null] + - [163, 7, SimpleBlock, 2, 18040101, 5299, null] + - [163, 7, SimpleBlock, 2, 18045403, 5436, null] + - [163, 7, SimpleBlock, 2, 18050842, 5687, null] + - [163, 7, SimpleBlock, 2, 18056532, 4865, null] + - [163, 7, SimpleBlock, 2, 18061400, 4047, null] + - [163, 7, SimpleBlock, 2, 18065450, 4424, null] + - [163, 7, SimpleBlock, 2, 18069877, 5776, null] + - [163, 7, SimpleBlock, 2, 18075656, 4828, null] + - [163, 7, SimpleBlock, 2, 18080487, 5030, null] + - [163, 7, SimpleBlock, 2, 18085520, 4587, null] + - [163, 7, SimpleBlock, 2, 18090110, 3823, null] + - [163, 7, SimpleBlock, 2, 18093936, 3266, null] + - [163, 7, SimpleBlock, 2, 18097205, 5969, null] + - [163, 7, SimpleBlock, 2, 18103177, 2943, null] + - [163, 7, SimpleBlock, 2, 18106123, 2733, null] + - [163, 7, SimpleBlock, 2, 18108859, 2523, null] + - [163, 7, SimpleBlock, 2, 18111385, 2499, null] + - [163, 7, SimpleBlock, 2, 18113887, 6162, null] + - [163, 7, SimpleBlock, 2, 18120052, 2530, null] + - [163, 7, SimpleBlock, 2, 18122585, 2361, null] + - [163, 7, SimpleBlock, 2, 18124949, 2255, null] + - [163, 7, SimpleBlock, 2, 18127207, 2069, null] + - [163, 7, SimpleBlock, 2, 18129279, 1886, null] + - [163, 7, SimpleBlock, 2, 18131168, 5874, null] + - [163, 7, SimpleBlock, 2, 18137045, 1818, null] + - [163, 7, SimpleBlock, 2, 18138866, 1694, null] + - [163, 7, SimpleBlock, 2, 18140563, 1791, null] + - [163, 7, SimpleBlock, 2, 18142357, 1640, null] + - [163, 7, SimpleBlock, 2, 18144000, 5679, null] + - [163, 7, SimpleBlock, 2, 18149682, 1477, null] + - [163, 7, SimpleBlock, 2, 18151163, 60499, null] + - [163, 7, SimpleBlock, 2, 18211665, 2228, null] + - [163, 7, SimpleBlock, 2, 18213896, 2038, null] + - [163, 7, SimpleBlock, 2, 18215937, 1445, null] + - [163, 7, SimpleBlock, 2, 18217385, 5871, null] + - [163, 7, SimpleBlock, 2, 18223259, 1144, null] + - [163, 7, SimpleBlock, 2, 18224406, 966, null] + - [163, 7, SimpleBlock, 2, 18225375, 1554, null] + - [163, 7, SimpleBlock, 2, 18226932, 2149, null] + - [163, 7, SimpleBlock, 2, 18229084, 2465, null] + - [163, 7, SimpleBlock, 2, 18231552, 5872, null] + - [163, 7, SimpleBlock, 2, 18237427, 2573, null] + - [163, 7, SimpleBlock, 2, 18240003, 2777, null] + - [163, 7, SimpleBlock, 2, 18242783, 2284, null] + - [163, 7, SimpleBlock, 2, 18245070, 1929, null] + - [163, 7, SimpleBlock, 2, 18247002, 6066, null] + - [163, 7, SimpleBlock, 2, 18253071, 1909, null] + - [163, 7, SimpleBlock, 2, 18254983, 1855, null] + - [163, 7, SimpleBlock, 2, 18256841, 1852, null] + - [163, 7, SimpleBlock, 2, 18258696, 1983, null] + - [163, 7, SimpleBlock, 2, 18260682, 1894, null] + - [163, 7, SimpleBlock, 2, 18262579, 5583, null] + - [163, 7, SimpleBlock, 2, 18268165, 2739, null] + - [163, 7, SimpleBlock, 2, 18270907, 3644, null] + - [163, 7, SimpleBlock, 2, 18274554, 4230, null] + - [163, 7, SimpleBlock, 2, 18278787, 3657, null] + - [163, 7, SimpleBlock, 2, 18282447, 3713, null] + - [163, 7, SimpleBlock, 2, 18286163, 5680, null] + - [163, 7, SimpleBlock, 2, 18291846, 4481, null] + - [163, 7, SimpleBlock, 2, 18296330, 4123, null] + - [163, 7, SimpleBlock, 2, 18300456, 3651, null] + - [163, 7, SimpleBlock, 2, 18304110, 3533, null] + - [163, 7, SimpleBlock, 2, 18307646, 5681, null] + - [163, 7, SimpleBlock, 2, 18313330, 4339, null] + - [163, 7, SimpleBlock, 2, 18317672, 5237, null] + - [163, 7, SimpleBlock, 2, 18322912, 5918, null] + - [163, 7, SimpleBlock, 2, 18328833, 5993, null] + - [163, 7, SimpleBlock, 2, 18334829, 4395, null] + - [163, 7, SimpleBlock, 2, 18339227, 6066, null] + - [163, 7, SimpleBlock, 2, 18345296, 4935, null] + - [163, 7, SimpleBlock, 2, 18350234, 6037, null] + - [163, 7, SimpleBlock, 2, 18356274, 6409, null] + - [163, 7, SimpleBlock, 2, 18362686, 6297, null] + - [163, 7, SimpleBlock, 2, 18368986, 5585, null] + - [163, 7, SimpleBlock, 2, 18374574, 5557, null] + - [163, 7, SimpleBlock, 2, 18380134, 3974, null] + - [163, 7, SimpleBlock, 2, 18384111, 3783, null] + - [163, 7, SimpleBlock, 2, 18387897, 5331, null] + - [163, 7, SimpleBlock, 2, 18393231, 6651, null] + - [163, 7, SimpleBlock, 2, 18399885, 6256, null] + - [163, 7, SimpleBlock, 2, 18406144, 7153, null] + - [163, 7, SimpleBlock, 2, 18413300, 6988, null] + - [163, 7, SimpleBlock, 2, 18420291, 5408, null] + - [163, 7, SimpleBlock, 2, 18425702, 5607, null] + - [163, 7, SimpleBlock, 2, 18431312, 6685, null] + - [163, 7, SimpleBlock, 2, 18438000, 5585, null] + - [163, 7, SimpleBlock, 2, 18443588, 6995, null] + - [163, 7, SimpleBlock, 2, 18450586, 7063, null] + - [163, 7, SimpleBlock, 2, 18457652, 7432, null] + - [163, 7, SimpleBlock, 2, 18465087, 6784, null] + - [163, 7, SimpleBlock, 2, 18471874, 6257, null] + - [163, 7, SimpleBlock, 2, 18478134, 5355, null] + - [163, 7, SimpleBlock, 2, 18483492, 7557, null] + - [163, 7, SimpleBlock, 2, 18491052, 8650, null] + - [163, 7, SimpleBlock, 2, 18499705, 8923, null] + - [163, 7, SimpleBlock, 2, 18508631, 8857, null] + - [163, 7, SimpleBlock, 2, 18517491, 772, null] + - [163, 7, SimpleBlock, 2, 18518266, 5487, null] + - [163, 7, SimpleBlock, 2, 18523756, 7441, null] + - [163, 7, SimpleBlock, 2, 18531200, 8855, null] + - [163, 7, SimpleBlock, 2, 18540058, 9921, null] + - [163, 7, SimpleBlock, 2, 18549982, 10005, null] + - [163, 7, SimpleBlock, 2, 18559990, 10304, null] + - [163, 7, SimpleBlock, 2, 18570297, 5199, null] + - [163, 7, SimpleBlock, 2, 18575499, 10952, null] + - [163, 7, SimpleBlock, 2, 18586454, 11010, null] + - [163, 7, SimpleBlock, 2, 18597467, 9866, null] + - [163, 7, SimpleBlock, 2, 18607336, 10617, null] + - [163, 7, SimpleBlock, 2, 18617956, 10835, null] + - - 524531317 + - 6 + - Cluster + - 1 + - 18628799 + - 2103666 + - - [231, 1, Timecode, 2, 18628801, 3, 66500] + - [163, 7, SimpleBlock, 2, 18628807, 772, null] + - [163, 7, SimpleBlock, 2, 18629582, 5776, null] + - [163, 7, SimpleBlock, 2, 18635362, 36579, null] + - [163, 7, SimpleBlock, 2, 18671944, 10731, null] + - [163, 7, SimpleBlock, 2, 18682678, 10066, null] + - [163, 7, SimpleBlock, 2, 18692747, 10462, null] + - [163, 7, SimpleBlock, 2, 18703212, 5680, null] + - [163, 7, SimpleBlock, 2, 18708895, 10053, null] + - [163, 7, SimpleBlock, 2, 18718951, 9561, null] + - [163, 7, SimpleBlock, 2, 18728515, 9702, null] + - [163, 7, SimpleBlock, 2, 18738220, 9853, null] + - [163, 7, SimpleBlock, 2, 18748076, 10160, null] + - [163, 7, SimpleBlock, 2, 18758239, 5777, null] + - [163, 7, SimpleBlock, 2, 18764019, 10507, null] + - [163, 7, SimpleBlock, 2, 18774529, 9258, null] + - [163, 7, SimpleBlock, 2, 18783790, 9531, null] + - [163, 7, SimpleBlock, 2, 18793324, 9334, null] + - [163, 7, SimpleBlock, 2, 18802661, 5971, null] + - [163, 7, SimpleBlock, 2, 18808635, 9543, null] + - [163, 7, SimpleBlock, 2, 18818181, 9583, null] + - [163, 7, SimpleBlock, 2, 18827767, 9467, null] + - [163, 7, SimpleBlock, 2, 18837237, 8785, null] + - [163, 7, SimpleBlock, 2, 18846025, 8852, null] + - [163, 7, SimpleBlock, 2, 18854880, 5585, null] + - [163, 7, SimpleBlock, 2, 18860468, 8937, null] + - [163, 7, SimpleBlock, 2, 18869408, 9268, null] + - [163, 7, SimpleBlock, 2, 18878679, 9540, null] + - [163, 7, SimpleBlock, 2, 18888222, 9647, null] + - [163, 7, SimpleBlock, 2, 18897872, 10183, null] + - [163, 7, SimpleBlock, 2, 18908058, 6063, null] + - [163, 7, SimpleBlock, 2, 18914124, 10189, null] + - [163, 7, SimpleBlock, 2, 18924316, 10411, null] + - [163, 7, SimpleBlock, 2, 18934730, 10327, null] + - [163, 7, SimpleBlock, 2, 18945060, 8746, null] + - [163, 7, SimpleBlock, 2, 18953809, 5778, null] + - [163, 7, SimpleBlock, 2, 18959590, 6640, null] + - [163, 7, SimpleBlock, 2, 18966233, 4282, null] + - [163, 7, SimpleBlock, 2, 18970518, 4188, null] + - [163, 7, SimpleBlock, 2, 18974709, 4033, null] + - [163, 7, SimpleBlock, 2, 18978745, 3879, null] + - [163, 7, SimpleBlock, 2, 18982627, 6161, null] + - [163, 7, SimpleBlock, 2, 18988791, 3886, null] + - [163, 7, SimpleBlock, 2, 18992680, 3964, null] + - [163, 7, SimpleBlock, 2, 18996647, 4541, null] + - [163, 7, SimpleBlock, 2, 19001191, 6260, null] + - [163, 7, SimpleBlock, 2, 19007454, 6063, null] + - [163, 7, SimpleBlock, 2, 19013520, 6518, null] + - [163, 7, SimpleBlock, 2, 19020041, 7033, null] + - [163, 7, SimpleBlock, 2, 19027077, 7616, null] + - [163, 7, SimpleBlock, 2, 19034696, 8183, null] + - [163, 7, SimpleBlock, 2, 19042882, 8734, null] + - [163, 7, SimpleBlock, 2, 19051619, 6067, null] + - [163, 7, SimpleBlock, 2, 19057689, 9116, null] + - [163, 7, SimpleBlock, 2, 19066808, 9011, null] + - [163, 7, SimpleBlock, 2, 19075822, 8607, null] + - [163, 7, SimpleBlock, 2, 19084432, 6087, null] + - [163, 7, SimpleBlock, 2, 19090522, 4136, null] + - [163, 7, SimpleBlock, 2, 19094661, 6061, null] + - [163, 7, SimpleBlock, 2, 19100725, 4215, null] + - [163, 7, SimpleBlock, 2, 19104943, 8273, null] + - [163, 7, SimpleBlock, 2, 19113219, 8929, null] + - [163, 7, SimpleBlock, 2, 19122151, 8522, null] + - [163, 7, SimpleBlock, 2, 19130676, 5682, null] + - [163, 7, SimpleBlock, 2, 19136361, 8505, null] + - [163, 7, SimpleBlock, 2, 19144869, 8264, null] + - [163, 7, SimpleBlock, 2, 19153136, 8036, null] + - [163, 7, SimpleBlock, 2, 19161175, 8376, null] + - [163, 7, SimpleBlock, 2, 19169554, 7908, null] + - [163, 7, SimpleBlock, 2, 19177465, 6255, null] + - [163, 7, SimpleBlock, 2, 19183723, 8350, null] + - [163, 7, SimpleBlock, 2, 19192076, 10471, null] + - [163, 7, SimpleBlock, 2, 19202550, 12007, null] + - [163, 7, SimpleBlock, 2, 19214560, 12700, null] + - [163, 7, SimpleBlock, 2, 19227263, 6449, null] + - [163, 7, SimpleBlock, 2, 19233715, 13211, null] + - [163, 7, SimpleBlock, 2, 19246929, 13350, null] + - [163, 7, SimpleBlock, 2, 19260282, 12895, null] + - [163, 7, SimpleBlock, 2, 19273180, 11656, null] + - [163, 7, SimpleBlock, 2, 19284839, 10411, null] + - [163, 7, SimpleBlock, 2, 19295253, 6451, null] + - [163, 7, SimpleBlock, 2, 19301707, 9994, null] + - [163, 7, SimpleBlock, 2, 19311704, 9523, null] + - [163, 7, SimpleBlock, 2, 19321230, 9295, null] + - [163, 7, SimpleBlock, 2, 19330528, 8371, null] + - [163, 7, SimpleBlock, 2, 19338902, 7294, null] + - [163, 7, SimpleBlock, 2, 19346199, 6161, null] + - [163, 7, SimpleBlock, 2, 19352363, 6261, null] + - [163, 7, SimpleBlock, 2, 19358628, 36475, null] + - [163, 7, SimpleBlock, 2, 19395106, 1597, null] + - [163, 7, SimpleBlock, 2, 19396706, 1054, null] + - [163, 7, SimpleBlock, 2, 19397763, 5967, null] + - [163, 7, SimpleBlock, 2, 19403733, 639, null] + - [163, 7, SimpleBlock, 2, 19404375, 654, null] + - [163, 7, SimpleBlock, 2, 19405032, 649, null] + - [163, 7, SimpleBlock, 2, 19405684, 671, null] + - [163, 7, SimpleBlock, 2, 19406358, 546, null] + - [163, 7, SimpleBlock, 2, 19406907, 6257, null] + - [163, 7, SimpleBlock, 2, 19413167, 564, null] + - [163, 7, SimpleBlock, 2, 19413734, 551, null] + - [163, 7, SimpleBlock, 2, 19414288, 644, null] + - [163, 7, SimpleBlock, 2, 19414935, 691, null] + - [163, 7, SimpleBlock, 2, 19415629, 559, null] + - [163, 7, SimpleBlock, 2, 19416191, 5872, null] + - [163, 7, SimpleBlock, 2, 19422066, 619, null] + - [163, 7, SimpleBlock, 2, 19422688, 773, null] + - [163, 7, SimpleBlock, 2, 19423464, 853, null] + - [163, 7, SimpleBlock, 2, 19424320, 816, null] + - [163, 7, SimpleBlock, 2, 19425139, 5488, null] + - [163, 7, SimpleBlock, 2, 19430630, 760, null] + - [163, 7, SimpleBlock, 2, 19431393, 977, null] + - [163, 7, SimpleBlock, 2, 19432373, 729, null] + - [163, 7, SimpleBlock, 2, 19433105, 915, null] + - [163, 7, SimpleBlock, 2, 19434023, 803, null] + - [163, 7, SimpleBlock, 2, 19434829, 5967, null] + - [163, 7, SimpleBlock, 2, 19440799, 629, null] + - [163, 7, SimpleBlock, 2, 19441431, 971, null] + - [163, 7, SimpleBlock, 2, 19442405, 704, null] + - [163, 7, SimpleBlock, 2, 19443112, 899, null] + - [163, 7, SimpleBlock, 2, 19444014, 5584, null] + - [163, 7, SimpleBlock, 2, 19449601, 814, null] + - [163, 7, SimpleBlock, 2, 19450418, 724, null] + - [163, 7, SimpleBlock, 2, 19451145, 950, null] + - [163, 7, SimpleBlock, 2, 19452098, 770, null] + - [163, 7, SimpleBlock, 2, 19452871, 973, null] + - [163, 7, SimpleBlock, 2, 19453847, 5776, null] + - [163, 7, SimpleBlock, 2, 19459626, 901, null] + - [163, 7, SimpleBlock, 2, 19460530, 719, null] + - [163, 7, SimpleBlock, 2, 19461252, 947, null] + - [163, 7, SimpleBlock, 2, 19462202, 662, null] + - [163, 7, SimpleBlock, 2, 19462867, 836, null] + - [163, 7, SimpleBlock, 2, 19463706, 6160, null] + - [163, 7, SimpleBlock, 2, 19469869, 723, null] + - [163, 7, SimpleBlock, 2, 19470595, 592, null] + - [163, 7, SimpleBlock, 2, 19471190, 837, null] + - [163, 7, SimpleBlock, 2, 19472030, 607, null] + - [163, 7, SimpleBlock, 2, 19472640, 5681, null] + - [163, 7, SimpleBlock, 2, 19478324, 784, null] + - [163, 7, SimpleBlock, 2, 19479111, 699, null] + - [163, 7, SimpleBlock, 2, 19479813, 517, null] + - [163, 7, SimpleBlock, 2, 19480333, 787, null] + - [163, 7, SimpleBlock, 2, 19481123, 554, null] + - [163, 7, SimpleBlock, 2, 19481680, 6065, null] + - [163, 7, SimpleBlock, 2, 19487749, 48229, null] + - [163, 7, SimpleBlock, 2, 19535981, 1795, null] + - [163, 7, SimpleBlock, 2, 19537779, 1433, null] + - [163, 7, SimpleBlock, 2, 19539215, 829, null] + - [163, 7, SimpleBlock, 2, 19540047, 772, null] + - [163, 7, SimpleBlock, 2, 19540822, 647, null] + - [163, 7, SimpleBlock, 2, 19541472, 5680, null] + - [163, 7, SimpleBlock, 2, 19547155, 757, null] + - [163, 7, SimpleBlock, 2, 19547915, 771, null] + - [163, 7, SimpleBlock, 2, 19548689, 699, null] + - [163, 7, SimpleBlock, 2, 19549391, 793, null] + - [163, 7, SimpleBlock, 2, 19550187, 904, null] + - [163, 7, SimpleBlock, 2, 19551094, 5872, null] + - [163, 7, SimpleBlock, 2, 19556969, 862, null] + - [163, 7, SimpleBlock, 2, 19557834, 1178, null] + - [163, 7, SimpleBlock, 2, 19559015, 1055, null] + - [163, 7, SimpleBlock, 2, 19560073, 1098, null] + - [163, 7, SimpleBlock, 2, 19561174, 5774, null] + - [163, 7, SimpleBlock, 2, 19566951, 1242, null] + - [163, 7, SimpleBlock, 2, 19568196, 1272, null] + - [163, 7, SimpleBlock, 2, 19569471, 1209, null] + - [163, 7, SimpleBlock, 2, 19570683, 1540, null] + - [163, 7, SimpleBlock, 2, 19572226, 1541, null] + - [163, 7, SimpleBlock, 2, 19573770, 5680, null] + - [163, 7, SimpleBlock, 2, 19579453, 1583, null] + - [163, 7, SimpleBlock, 2, 19581039, 1724, null] + - [163, 7, SimpleBlock, 2, 19582766, 1947, null] + - [163, 7, SimpleBlock, 2, 19584716, 1810, null] + - [163, 7, SimpleBlock, 2, 19586529, 5394, null] + - [163, 7, SimpleBlock, 2, 19591926, 1931, null] + - [163, 7, SimpleBlock, 2, 19593860, 1872, null] + - [163, 7, SimpleBlock, 2, 19595735, 1897, null] + - [163, 7, SimpleBlock, 2, 19597635, 1731, null] + - [163, 7, SimpleBlock, 2, 19599369, 1852, null] + - [163, 7, SimpleBlock, 2, 19601224, 5393, null] + - [163, 7, SimpleBlock, 2, 19606620, 1761, null] + - [163, 7, SimpleBlock, 2, 19608384, 1845, null] + - [163, 7, SimpleBlock, 2, 19610232, 1851, null] + - [163, 7, SimpleBlock, 2, 19612086, 1824, null] + - [163, 7, SimpleBlock, 2, 19613913, 1842, null] + - [163, 7, SimpleBlock, 2, 19615758, 5295, null] + - [163, 7, SimpleBlock, 2, 19621056, 1767, null] + - [163, 7, SimpleBlock, 2, 19622826, 1774, null] + - [163, 7, SimpleBlock, 2, 19624603, 1688, null] + - [163, 7, SimpleBlock, 2, 19626294, 1683, null] + - [163, 7, SimpleBlock, 2, 19627980, 5584, null] + - [163, 7, SimpleBlock, 2, 19633567, 1458, null] + - [163, 7, SimpleBlock, 2, 19635028, 1661, null] + - [163, 7, SimpleBlock, 2, 19636692, 1559, null] + - [163, 7, SimpleBlock, 2, 19638254, 1429, null] + - [163, 7, SimpleBlock, 2, 19639686, 1566, null] + - [163, 7, SimpleBlock, 2, 19641255, 5294, null] + - [163, 7, SimpleBlock, 2, 19646552, 1519, null] + - [163, 7, SimpleBlock, 2, 19648074, 1356, null] + - [163, 7, SimpleBlock, 2, 19649433, 1292, null] + - [163, 7, SimpleBlock, 2, 19650728, 1177, null] + - [163, 7, SimpleBlock, 2, 19651908, 5488, null] + - [163, 7, SimpleBlock, 2, 19657399, 1208, null] + - [163, 7, SimpleBlock, 2, 19658610, 1022, null] + - [163, 7, SimpleBlock, 2, 19659635, 943, null] + - [163, 7, SimpleBlock, 2, 19660581, 804, null] + - [163, 7, SimpleBlock, 2, 19661388, 783, null] + - [163, 7, SimpleBlock, 2, 19662174, 5393, null] + - [163, 7, SimpleBlock, 2, 19667570, 856, null] + - [163, 7, SimpleBlock, 2, 19668430, 28957, null] + - [163, 7, SimpleBlock, 2, 19697390, 3375, null] + - [163, 7, SimpleBlock, 2, 19700768, 3741, null] + - [163, 7, SimpleBlock, 2, 19704512, 3590, null] + - [163, 7, SimpleBlock, 2, 19708105, 6545, null] + - [163, 7, SimpleBlock, 2, 19714653, 3476, null] + - [163, 7, SimpleBlock, 2, 19718132, 3331, null] + - [163, 7, SimpleBlock, 2, 19721466, 3305, null] + - [163, 7, SimpleBlock, 2, 19724774, 3474, null] + - [163, 7, SimpleBlock, 2, 19728251, 6063, null] + - [163, 7, SimpleBlock, 2, 19734317, 3784, null] + - [163, 7, SimpleBlock, 2, 19738104, 3987, null] + - [163, 7, SimpleBlock, 2, 19742094, 4201, null] + - [163, 7, SimpleBlock, 2, 19746298, 3595, null] + - [163, 7, SimpleBlock, 2, 19749896, 3209, null] + - [163, 7, SimpleBlock, 2, 19753108, 6256, null] + - [163, 7, SimpleBlock, 2, 19759367, 3317, null] + - [163, 7, SimpleBlock, 2, 19762687, 3767, null] + - [163, 7, SimpleBlock, 2, 19766457, 3811, null] + - [163, 7, SimpleBlock, 2, 19770271, 3951, null] + - [163, 7, SimpleBlock, 2, 19774225, 6546, null] + - [163, 7, SimpleBlock, 2, 19780774, 3884, null] + - [163, 7, SimpleBlock, 2, 19784661, 3807, null] + - [163, 7, SimpleBlock, 2, 19788471, 4301, null] + - [163, 7, SimpleBlock, 2, 19792775, 5472, null] + - [163, 7, SimpleBlock, 2, 19798250, 6931, null] + - [163, 7, SimpleBlock, 2, 19805184, 5968, null] + - [163, 7, SimpleBlock, 2, 19811155, 8261, null] + - [163, 7, SimpleBlock, 2, 19819419, 9448, null] + - [163, 7, SimpleBlock, 2, 19828870, 9747, null] + - [163, 7, SimpleBlock, 2, 19838620, 10939, null] + - [163, 7, SimpleBlock, 2, 19849562, 11581, null] + - [163, 7, SimpleBlock, 2, 19861146, 6257, null] + - [163, 7, SimpleBlock, 2, 19867406, 12226, null] + - [163, 7, SimpleBlock, 2, 19879635, 12386, null] + - [163, 7, SimpleBlock, 2, 19892024, 12288, null] + - [163, 7, SimpleBlock, 2, 19904315, 12342, null] + - [163, 7, SimpleBlock, 2, 19916660, 6066, null] + - [163, 7, SimpleBlock, 2, 19922729, 12606, null] + - [163, 7, SimpleBlock, 2, 19935338, 12670, null] + - [163, 7, SimpleBlock, 2, 19948011, 14314, null] + - [163, 7, SimpleBlock, 2, 19962328, 14351, null] + - [163, 7, SimpleBlock, 2, 19976682, 14816, null] + - [163, 7, SimpleBlock, 2, 19991501, 6065, null] + - [163, 7, SimpleBlock, 2, 19997569, 14730, null] + - [163, 7, SimpleBlock, 2, 20012302, 14115, null] + - [163, 7, SimpleBlock, 2, 20026420, 12301, null] + - [163, 7, SimpleBlock, 2, 20038724, 9600, null] + - [163, 7, SimpleBlock, 2, 20048327, 7875, null] + - [163, 7, SimpleBlock, 2, 20056205, 6258, null] + - [163, 7, SimpleBlock, 2, 20062466, 7045, null] + - [163, 7, SimpleBlock, 2, 20069514, 5980, null] + - [163, 7, SimpleBlock, 2, 20075497, 5767, null] + - [163, 7, SimpleBlock, 2, 20081267, 5984, null] + - [163, 7, SimpleBlock, 2, 20087254, 5874, null] + - [163, 7, SimpleBlock, 2, 20093131, 6340, null] + - [163, 7, SimpleBlock, 2, 20099474, 6302, null] + - [163, 7, SimpleBlock, 2, 20105779, 6276, null] + - [163, 7, SimpleBlock, 2, 20112058, 6033, null] + - [163, 7, SimpleBlock, 2, 20118094, 5439, null] + - [163, 7, SimpleBlock, 2, 20123536, 5873, null] + - [163, 7, SimpleBlock, 2, 20129413, 60579, null] + - [163, 7, SimpleBlock, 2, 20189995, 7029, null] + - [163, 7, SimpleBlock, 2, 20197027, 9336, null] + - [163, 7, SimpleBlock, 2, 20206366, 10592, null] + - [163, 7, SimpleBlock, 2, 20216961, 5490, null] + - [163, 7, SimpleBlock, 2, 20222454, 12788, null] + - [163, 7, SimpleBlock, 2, 20235245, 13783, null] + - [163, 7, SimpleBlock, 2, 20249031, 14231, null] + - [163, 7, SimpleBlock, 2, 20263265, 15363, null] + - [163, 7, SimpleBlock, 2, 20278632, 17133, null] + - [163, 7, SimpleBlock, 2, 20295768, 5296, null] + - [163, 7, SimpleBlock, 2, 20301068, 17470, null] + - [163, 7, SimpleBlock, 2, 20318541, 14994, null] + - [163, 7, SimpleBlock, 2, 20333538, 14941, null] + - [163, 7, SimpleBlock, 2, 20348482, 14520, null] + - [163, 7, SimpleBlock, 2, 20363005, 15205, null] + - [163, 7, SimpleBlock, 2, 20378213, 5201, null] + - [163, 7, SimpleBlock, 2, 20383417, 15907, null] + - [163, 7, SimpleBlock, 2, 20399328, 16652, null] + - [163, 7, SimpleBlock, 2, 20415984, 17361, null] + - [163, 7, SimpleBlock, 2, 20433349, 17414, null] + - [163, 7, SimpleBlock, 2, 20450766, 5296, null] + - [163, 7, SimpleBlock, 2, 20456066, 17770, null] + - [163, 7, SimpleBlock, 2, 20473840, 17844, null] + - [163, 7, SimpleBlock, 2, 20491688, 16842, null] + - [163, 7, SimpleBlock, 2, 20508534, 16488, null] + - [163, 7, SimpleBlock, 2, 20525026, 16936, null] + - [163, 7, SimpleBlock, 2, 20541965, 676, null] + - [163, 7, SimpleBlock, 2, 20542644, 5870, null] + - [163, 7, SimpleBlock, 2, 20548518, 17904, null] + - [163, 7, SimpleBlock, 2, 20566426, 17748, null] + - [163, 7, SimpleBlock, 2, 20584178, 17327, null] + - [163, 7, SimpleBlock, 2, 20601509, 16804, null] + - [163, 7, SimpleBlock, 2, 20618317, 16609, null] + - [163, 7, SimpleBlock, 2, 20634929, 4620, null] + - [163, 7, SimpleBlock, 2, 20639553, 17718, null] + - [163, 7, SimpleBlock, 2, 20657275, 19234, null] + - [163, 7, SimpleBlock, 2, 20676513, 18749, null] + - [163, 7, SimpleBlock, 2, 20695266, 18574, null] + - [163, 7, SimpleBlock, 2, 20713844, 18621, null] + - - 524531317 + - 6 + - Cluster + - 1 + - 20732473 + - 2606864 + - - [231, 1, Timecode, 2, 20732475, 3, 76917] + - [163, 7, SimpleBlock, 2, 20732481, 676, null] + - [163, 7, SimpleBlock, 2, 20733160, 5296, null] + - [163, 7, SimpleBlock, 2, 20738460, 57870, null] + - [163, 7, SimpleBlock, 2, 20796333, 14161, null] + - [163, 7, SimpleBlock, 2, 20810497, 16283, null] + - [163, 7, SimpleBlock, 2, 20826784, 18643, null] + - [163, 7, SimpleBlock, 2, 20845430, 5584, null] + - [163, 7, SimpleBlock, 2, 20851018, 20094, null] + - [163, 7, SimpleBlock, 2, 20871116, 20936, null] + - [163, 7, SimpleBlock, 2, 20892056, 21547, null] + - [163, 7, SimpleBlock, 2, 20913607, 21831, null] + - [163, 7, SimpleBlock, 2, 20935442, 21619, null] + - [163, 7, SimpleBlock, 2, 20957064, 5967, null] + - [163, 7, SimpleBlock, 2, 20963035, 21935, null] + - [163, 7, SimpleBlock, 2, 20984974, 21975, null] + - [163, 7, SimpleBlock, 2, 21006953, 21595, null] + - [163, 7, SimpleBlock, 2, 21028552, 22352, null] + - [163, 7, SimpleBlock, 2, 21050907, 5971, null] + - [163, 7, SimpleBlock, 2, 21056882, 21241, null] + - [163, 7, SimpleBlock, 2, 21078127, 20004, null] + - [163, 7, SimpleBlock, 2, 21098135, 18589, null] + - [163, 7, SimpleBlock, 2, 21116728, 18088, null] + - [163, 7, SimpleBlock, 2, 21134820, 18065, null] + - [163, 7, SimpleBlock, 2, 21152888, 5680, null] + - [163, 7, SimpleBlock, 2, 21158572, 18783, null] + - [163, 7, SimpleBlock, 2, 21177359, 19388, null] + - [163, 7, SimpleBlock, 2, 21196751, 19874, null] + - [163, 7, SimpleBlock, 2, 21216629, 20500, null] + - [163, 7, SimpleBlock, 2, 21237133, 20363, null] + - [163, 7, SimpleBlock, 2, 21257499, 5683, null] + - [163, 7, SimpleBlock, 2, 21263186, 20383, null] + - [163, 7, SimpleBlock, 2, 21283573, 19364, null] + - [163, 7, SimpleBlock, 2, 21302941, 19084, null] + - [163, 7, SimpleBlock, 2, 21322029, 19510, null] + - [163, 7, SimpleBlock, 2, 21341542, 5779, null] + - [163, 7, SimpleBlock, 2, 21347325, 19655, null] + - [163, 7, SimpleBlock, 2, 21366984, 19150, null] + - [163, 7, SimpleBlock, 2, 21386138, 18882, null] + - [163, 7, SimpleBlock, 2, 21405024, 18431, null] + - [163, 7, SimpleBlock, 2, 21423459, 18037, null] + - [163, 7, SimpleBlock, 2, 21441499, 5393, null] + - [163, 7, SimpleBlock, 2, 21446896, 18017, null] + - [163, 7, SimpleBlock, 2, 21464917, 17810, null] + - [163, 7, SimpleBlock, 2, 21482731, 17480, null] + - [163, 7, SimpleBlock, 2, 21500215, 17218, null] + - [163, 7, SimpleBlock, 2, 21517436, 5968, null] + - [163, 7, SimpleBlock, 2, 21523408, 16822, null] + - [163, 7, SimpleBlock, 2, 21540234, 16542, null] + - [163, 7, SimpleBlock, 2, 21556779, 16000, null] + - [163, 7, SimpleBlock, 2, 21572783, 17251, null] + - [163, 7, SimpleBlock, 2, 21590038, 18254, null] + - [163, 7, SimpleBlock, 2, 21608295, 6451, null] + - [163, 7, SimpleBlock, 2, 21614750, 19178, null] + - [163, 7, SimpleBlock, 2, 21633932, 19684, null] + - [163, 7, SimpleBlock, 2, 21653620, 20370, null] + - [163, 7, SimpleBlock, 2, 21673994, 21172, null] + - [163, 7, SimpleBlock, 2, 21695170, 21607, null] + - [163, 7, SimpleBlock, 2, 21716780, 6162, null] + - [163, 7, SimpleBlock, 2, 21722946, 21284, null] + - [163, 7, SimpleBlock, 2, 21744234, 19858, null] + - [163, 7, SimpleBlock, 2, 21764096, 20103, null] + - [163, 7, SimpleBlock, 2, 21784203, 20348, null] + - [163, 7, SimpleBlock, 2, 21804554, 5775, null] + - [163, 7, SimpleBlock, 2, 21810333, 20136, null] + - [163, 7, SimpleBlock, 2, 21830473, 18094, null] + - [163, 7, SimpleBlock, 2, 21848571, 17128, null] + - [163, 7, SimpleBlock, 2, 21865703, 16497, null] + - [163, 7, SimpleBlock, 2, 21882204, 16452, null] + - [163, 7, SimpleBlock, 2, 21898659, 6161, null] + - [163, 7, SimpleBlock, 2, 21904824, 17164, null] + - [163, 7, SimpleBlock, 2, 21921992, 17846, null] + - [163, 7, SimpleBlock, 2, 21939842, 18903, null] + - [163, 7, SimpleBlock, 2, 21958749, 19244, null] + - [163, 7, SimpleBlock, 2, 21977996, 5874, null] + - [163, 7, SimpleBlock, 2, 21983874, 18813, null] + - [163, 7, SimpleBlock, 2, 22002691, 18540, null] + - [163, 7, SimpleBlock, 2, 22021235, 17596, null] + - [163, 7, SimpleBlock, 2, 22038835, 17222, null] + - [163, 7, SimpleBlock, 2, 22056061, 17986, null] + - [163, 7, SimpleBlock, 2, 22074050, 5871, null] + - [163, 7, SimpleBlock, 2, 22079925, 19782, null] + - [163, 7, SimpleBlock, 2, 22099711, 20933, null] + - [163, 7, SimpleBlock, 2, 22120648, 20789, null] + - [163, 7, SimpleBlock, 2, 22141441, 19381, null] + - [163, 7, SimpleBlock, 2, 22160826, 17254, null] + - [163, 7, SimpleBlock, 2, 22178083, 3660, null] + - [163, 7, SimpleBlock, 2, 22181746, 15440, null] + - [163, 7, SimpleBlock, 2, 22197189, 14453, null] + - [163, 7, SimpleBlock, 2, 22211645, 13030, null] + - [163, 7, SimpleBlock, 2, 22224678, 5682, null] + - [163, 7, SimpleBlock, 2, 22230363, 11253, null] + - [163, 7, SimpleBlock, 2, 22241620, 32873, null] + - [163, 7, SimpleBlock, 2, 22274496, 6159, null] + - [163, 7, SimpleBlock, 2, 22280658, 7281, null] + - [163, 7, SimpleBlock, 2, 22287942, 5585, null] + - [163, 7, SimpleBlock, 2, 22293530, 7922, null] + - [163, 7, SimpleBlock, 2, 22301455, 7943, null] + - [163, 7, SimpleBlock, 2, 22309401, 7994, null] + - [163, 7, SimpleBlock, 2, 22317398, 7958, null] + - [163, 7, SimpleBlock, 2, 22325359, 8355, null] + - [163, 7, SimpleBlock, 2, 22333717, 5777, null] + - [163, 7, SimpleBlock, 2, 22339497, 8199, null] + - [163, 7, SimpleBlock, 2, 22347699, 8535, null] + - [163, 7, SimpleBlock, 2, 22356237, 8831, null] + - [163, 7, SimpleBlock, 2, 22365071, 9248, null] + - [163, 7, SimpleBlock, 2, 22374322, 5680, null] + - [163, 7, SimpleBlock, 2, 22380005, 9220, null] + - [163, 7, SimpleBlock, 2, 22389228, 9075, null] + - [163, 7, SimpleBlock, 2, 22398306, 9125, null] + - [163, 7, SimpleBlock, 2, 22407434, 9290, null] + - [163, 7, SimpleBlock, 2, 22416727, 9547, null] + - [163, 7, SimpleBlock, 2, 22426277, 5969, null] + - [163, 7, SimpleBlock, 2, 22432249, 9837, null] + - [163, 7, SimpleBlock, 2, 22442089, 10391, null] + - [163, 7, SimpleBlock, 2, 22452483, 10332, null] + - [163, 7, SimpleBlock, 2, 22462818, 10531, null] + - [163, 7, SimpleBlock, 2, 22473352, 10458, null] + - [163, 7, SimpleBlock, 2, 22483813, 5872, null] + - [163, 7, SimpleBlock, 2, 22489688, 10067, null] + - [163, 7, SimpleBlock, 2, 22499758, 10130, null] + - [163, 7, SimpleBlock, 2, 22509891, 9976, null] + - [163, 7, SimpleBlock, 2, 22519870, 10480, null] + - [163, 7, SimpleBlock, 2, 22530353, 6162, null] + - [163, 7, SimpleBlock, 2, 22536518, 11192, null] + - [163, 7, SimpleBlock, 2, 22547713, 10621, null] + - [163, 7, SimpleBlock, 2, 22558337, 10069, null] + - [163, 7, SimpleBlock, 2, 22568409, 10229, null] + - [163, 7, SimpleBlock, 2, 22578641, 10237, null] + - [163, 7, SimpleBlock, 2, 22588881, 6162, null] + - [163, 7, SimpleBlock, 2, 22595046, 10671, null] + - [163, 7, SimpleBlock, 2, 22605720, 10010, null] + - [163, 7, SimpleBlock, 2, 22615733, 9164, null] + - [163, 7, SimpleBlock, 2, 22624900, 8803, null] + - [163, 7, SimpleBlock, 2, 22633706, 6255, null] + - [163, 7, SimpleBlock, 2, 22639964, 8877, null] + - [163, 7, SimpleBlock, 2, 22648844, 8534, null] + - [163, 7, SimpleBlock, 2, 22657381, 7929, null] + - [163, 7, SimpleBlock, 2, 22665313, 8015, null] + - [163, 7, SimpleBlock, 2, 22673331, 8173, null] + - [163, 7, SimpleBlock, 2, 22681507, 6065, null] + - [163, 7, SimpleBlock, 2, 22687575, 7984, null] + - [163, 7, SimpleBlock, 2, 22695562, 7944, null] + - [163, 7, SimpleBlock, 2, 22703509, 8216, null] + - [163, 7, SimpleBlock, 2, 22711728, 8112, null] + - [163, 7, SimpleBlock, 2, 22719843, 7928, null] + - [163, 7, SimpleBlock, 2, 22727774, 6354, null] + - [163, 7, SimpleBlock, 2, 22734131, 7622, null] + - [163, 7, SimpleBlock, 2, 22741756, 8231, null] + - [163, 7, SimpleBlock, 2, 22749990, 8319, null] + - [163, 7, SimpleBlock, 2, 22758312, 7903, null] + - [163, 7, SimpleBlock, 2, 22766218, 6063, null] + - [163, 7, SimpleBlock, 2, 22772284, 8053, null] + - [163, 7, SimpleBlock, 2, 22780340, 8385, null] + - [163, 7, SimpleBlock, 2, 22788728, 8056, null] + - [163, 7, SimpleBlock, 2, 22796787, 8148, null] + - [163, 7, SimpleBlock, 2, 22804938, 8115, null] + - [163, 7, SimpleBlock, 2, 22813056, 6065, null] + - [163, 7, SimpleBlock, 2, 22819124, 8290, null] + - [163, 7, SimpleBlock, 2, 22827417, 7985, null] + - [163, 7, SimpleBlock, 2, 22835405, 8685, null] + - [163, 7, SimpleBlock, 2, 22844093, 9660, null] + - [163, 7, SimpleBlock, 2, 22853756, 5874, null] + - [163, 7, SimpleBlock, 2, 22859633, 10373, null] + - [163, 7, SimpleBlock, 2, 22870009, 9892, null] + - [163, 7, SimpleBlock, 2, 22879904, 9637, null] + - [163, 7, SimpleBlock, 2, 22889544, 9721, null] + - [163, 7, SimpleBlock, 2, 22899268, 9824, null] + - [163, 7, SimpleBlock, 2, 22909095, 5874, null] + - [163, 7, SimpleBlock, 2, 22914972, 9921, null] + - [163, 7, SimpleBlock, 2, 22924896, 8744, null] + - [163, 7, SimpleBlock, 2, 22933643, 7978, null] + - [163, 7, SimpleBlock, 2, 22941624, 7648, null] + - [163, 7, SimpleBlock, 2, 22949275, 7314, null] + - [163, 7, SimpleBlock, 2, 22956592, 5969, null] + - [163, 7, SimpleBlock, 2, 22962564, 7531, null] + - [163, 7, SimpleBlock, 2, 22970098, 7095, null] + - [163, 7, SimpleBlock, 2, 22977196, 6685, null] + - [163, 7, SimpleBlock, 2, 22983884, 6591, null] + - [163, 7, SimpleBlock, 2, 22990478, 5776, null] + - [163, 7, SimpleBlock, 2, 22996257, 6599, null] + - [163, 7, SimpleBlock, 2, 23002859, 5858, null] + - [163, 7, SimpleBlock, 2, 23008720, 5549, null] + - [163, 7, SimpleBlock, 2, 23014272, 4881, null] + - [163, 7, SimpleBlock, 2, 23019156, 4488, null] + - [163, 7, SimpleBlock, 2, 23023647, 5968, null] + - [163, 7, SimpleBlock, 2, 23029618, 4335, null] + - [163, 7, SimpleBlock, 2, 23033956, 4173, null] + - [163, 7, SimpleBlock, 2, 23038132, 3829, null] + - [163, 7, SimpleBlock, 2, 23041964, 3577, null] + - [163, 7, SimpleBlock, 2, 23045544, 3307, null] + - [163, 7, SimpleBlock, 2, 23048854, 5969, null] + - [163, 7, SimpleBlock, 2, 23054826, 3053, null] + - [163, 7, SimpleBlock, 2, 23057882, 2805, null] + - [163, 7, SimpleBlock, 2, 23060690, 2487, null] + - [163, 7, SimpleBlock, 2, 23063180, 2142, null] + - [163, 7, SimpleBlock, 2, 23065325, 6257, null] + - [163, 7, SimpleBlock, 2, 23071585, 1832, null] + - [163, 7, SimpleBlock, 2, 23073420, 1453, null] + - [163, 7, SimpleBlock, 2, 23074876, 1818, null] + - [163, 7, SimpleBlock, 2, 23076697, 1981, null] + - [163, 7, SimpleBlock, 2, 23078681, 3420, null] + - [163, 7, SimpleBlock, 2, 23082104, 5587, null] + - [163, 7, SimpleBlock, 2, 23087694, 3332, null] + - [163, 7, SimpleBlock, 2, 23091029, 2137, null] + - [163, 7, SimpleBlock, 2, 23093169, 2342, null] + - [163, 7, SimpleBlock, 2, 23095514, 3714, null] + - [163, 7, SimpleBlock, 2, 23099231, 4914, null] + - [163, 7, SimpleBlock, 2, 23104148, 2562, null] + - [163, 7, SimpleBlock, 2, 23106713, 3019, null] + - [163, 7, SimpleBlock, 2, 23109735, 2231, null] + - [163, 7, SimpleBlock, 2, 23111969, 1798, null] + - [163, 7, SimpleBlock, 2, 23113770, 1799, null] + - [163, 7, SimpleBlock, 2, 23115572, 5775, null] + - [163, 7, SimpleBlock, 2, 23121350, 1502, null] + - [163, 7, SimpleBlock, 2, 23122855, 1437, null] + - [163, 7, SimpleBlock, 2, 23124295, 1266, null] + - [163, 7, SimpleBlock, 2, 23125564, 1279, null] + - [163, 7, SimpleBlock, 2, 23126846, 1276, null] + - [163, 7, SimpleBlock, 2, 23128125, 4816, null] + - [163, 7, SimpleBlock, 2, 23132944, 1198, null] + - [163, 7, SimpleBlock, 2, 23134145, 1034, null] + - [163, 7, SimpleBlock, 2, 23135182, 876, null] + - [163, 7, SimpleBlock, 2, 23136061, 721, null] + - [163, 7, SimpleBlock, 2, 23136785, 4719, null] + - [163, 7, SimpleBlock, 2, 23141507, 541, null] + - [163, 7, SimpleBlock, 2, 23142051, 616, null] + - [163, 7, SimpleBlock, 2, 23142670, 618, null] + - [163, 7, SimpleBlock, 2, 23143291, 597, null] + - [163, 7, SimpleBlock, 2, 23143891, 440, null] + - [163, 7, SimpleBlock, 2, 23144334, 4527, null] + - [163, 7, SimpleBlock, 2, 23148864, 435, null] + - [163, 7, SimpleBlock, 2, 23149302, 424, null] + - [163, 7, SimpleBlock, 2, 23149729, 432, null] + - [163, 7, SimpleBlock, 2, 23150164, 417, null] + - [163, 7, SimpleBlock, 2, 23150584, 580, null] + - [163, 7, SimpleBlock, 2, 23151167, 405, null] + - [163, 7, SimpleBlock, 2, 23151575, 4525, null] + - [163, 7, SimpleBlock, 2, 23156103, 413, null] + - [163, 7, SimpleBlock, 2, 23156519, 411, null] + - [163, 7, SimpleBlock, 2, 23156933, 437, null] + - [163, 7, SimpleBlock, 2, 23157373, 422, null] + - [163, 7, SimpleBlock, 2, 23157798, 437, null] + - [163, 7, SimpleBlock, 2, 23158238, 4613, null] + - [163, 7, SimpleBlock, 2, 23162854, 458, null] + - [163, 7, SimpleBlock, 2, 23163315, 479, null] + - [163, 7, SimpleBlock, 2, 23163797, 478, null] + - [163, 7, SimpleBlock, 2, 23164278, 477, null] + - [163, 7, SimpleBlock, 2, 23164758, 4613, null] + - [163, 7, SimpleBlock, 2, 23169374, 489, null] + - [163, 7, SimpleBlock, 2, 23169866, 550, null] + - [163, 7, SimpleBlock, 2, 23170419, 541, null] + - [163, 7, SimpleBlock, 2, 23170963, 549, null] + - [163, 7, SimpleBlock, 2, 23171515, 583, null] + - [163, 7, SimpleBlock, 2, 23172101, 4613, null] + - [163, 7, SimpleBlock, 2, 23176717, 629, null] + - [163, 7, SimpleBlock, 2, 23177349, 728, null] + - [163, 7, SimpleBlock, 2, 23178080, 756, null] + - [163, 7, SimpleBlock, 2, 23178839, 1142, null] + - [163, 7, SimpleBlock, 2, 23179984, 5009, null] + - [163, 7, SimpleBlock, 2, 23184996, 1271, null] + - [163, 7, SimpleBlock, 2, 23186270, 1824, null] + - [163, 7, SimpleBlock, 2, 23188097, 3163, null] + - [163, 7, SimpleBlock, 2, 23191263, 3939, null] + - [163, 7, SimpleBlock, 2, 23195205, 4206, null] + - [163, 7, SimpleBlock, 2, 23199414, 5106, null] + - [163, 7, SimpleBlock, 2, 23204523, 4020, null] + - [163, 7, SimpleBlock, 2, 23208546, 4034, null] + - [163, 7, SimpleBlock, 2, 23212583, 4006, null] + - [163, 7, SimpleBlock, 2, 23216592, 3598, null] + - [163, 7, SimpleBlock, 2, 23220193, 3320, null] + - [163, 7, SimpleBlock, 2, 23223516, 5011, null] + - [163, 7, SimpleBlock, 2, 23228530, 2597, null] + - [163, 7, SimpleBlock, 2, 23231130, 2306, null] + - [163, 7, SimpleBlock, 2, 23233439, 1768, null] + - [163, 7, SimpleBlock, 2, 23235210, 1621, null] + - [163, 7, SimpleBlock, 2, 23236834, 4913, null] + - [163, 7, SimpleBlock, 2, 23241750, 1419, null] + - [163, 7, SimpleBlock, 2, 23243172, 1361, null] + - [163, 7, SimpleBlock, 2, 23244536, 1402, null] + - [163, 7, SimpleBlock, 2, 23245941, 1566, null] + - [163, 7, SimpleBlock, 2, 23247510, 1694, null] + - [163, 7, SimpleBlock, 2, 23249207, 4914, null] + - [163, 7, SimpleBlock, 2, 23254124, 2301, null] + - [163, 7, SimpleBlock, 2, 23256428, 2605, null] + - [163, 7, SimpleBlock, 2, 23259036, 2604, null] + - [163, 7, SimpleBlock, 2, 23261643, 2765, null] + - [163, 7, SimpleBlock, 2, 23264411, 4816, null] + - [163, 7, SimpleBlock, 2, 23269230, 2631, null] + - [163, 7, SimpleBlock, 2, 23271864, 2608, null] + - [163, 7, SimpleBlock, 2, 23274475, 2650, null] + - [163, 7, SimpleBlock, 2, 23277128, 3690, null] + - [163, 7, SimpleBlock, 2, 23280821, 4659, null] + - [163, 7, SimpleBlock, 2, 23285483, 5586, null] + - [163, 7, SimpleBlock, 2, 23291072, 5402, null] + - [163, 7, SimpleBlock, 2, 23296477, 5586, null] + - [163, 7, SimpleBlock, 2, 23302066, 4918, null] + - [163, 7, SimpleBlock, 2, 23306987, 3245, null] + - [163, 7, SimpleBlock, 2, 23310235, 3349, null] + - [163, 7, SimpleBlock, 2, 23313587, 5393, null] + - [163, 7, SimpleBlock, 2, 23318983, 3421, null] + - [163, 7, SimpleBlock, 2, 23322407, 3249, null] + - [163, 7, SimpleBlock, 2, 23325659, 2877, null] + - [163, 7, SimpleBlock, 2, 23328539, 2659, null] + - [163, 7, SimpleBlock, 2, 23331201, 2410, null] + - [163, 7, SimpleBlock, 2, 23333614, 2300, null] + - [163, 7, SimpleBlock, 2, 23335917, 1891, null] + - [163, 7, SimpleBlock, 2, 23337811, 1526, null] diff --git a/libs/enzyme/tests/test_mkv.py b/libs/enzyme/tests/test_mkv.py new file mode 100644 index 000000000..ac4617fa3 --- /dev/null +++ b/libs/enzyme/tests/test_mkv.py @@ -0,0 +1,607 @@ +# -*- coding: utf-8 -*- +from datetime import timedelta, datetime +from enzyme.mkv import MKV, VIDEO_TRACK, AUDIO_TRACK, SUBTITLE_TRACK +import io +import os.path +import requests +import unittest +import zipfile + + +# Test directory +TEST_DIR = os.path.join(os.path.dirname(__file__), os.path.splitext(__file__)[0]) + + +def setUpModule(): + if not os.path.exists(TEST_DIR): + r = requests.get('http://downloads.sourceforge.net/project/matroska/test_files/matroska_test_w1_1.zip') + with zipfile.ZipFile(io.BytesIO(r.content), 'r') as f: + f.extractall(TEST_DIR) + + +class MKVTestCase(unittest.TestCase): + def test_test1(self): + stream = io.open(os.path.join(TEST_DIR, 'test1.mkv'), 'rb') + mkv = MKV(stream) + # info + self.assertTrue(mkv.info.title is None) + self.assertTrue(mkv.info.duration == timedelta(minutes=1, seconds=27, milliseconds=336)) + self.assertTrue(mkv.info.date_utc == datetime(2010, 8, 21, 7, 23, 3)) + self.assertTrue(mkv.info.muxing_app == 'libebml2 v0.10.0 + libmatroska2 v0.10.1') + self.assertTrue(mkv.info.writing_app == 'mkclean 0.5.5 ru from libebml v1.0.0 + libmatroska v1.0.0 + mkvmerge v4.1.1 (\'Bouncin\' Back\') built on Jul 3 2010 22:54:08') + # video track + self.assertTrue(len(mkv.video_tracks) == 1) + self.assertTrue(mkv.video_tracks[0].type == VIDEO_TRACK) + self.assertTrue(mkv.video_tracks[0].number == 1) + self.assertTrue(mkv.video_tracks[0].name is None) + self.assertTrue(mkv.video_tracks[0].language == 'und') + self.assertTrue(mkv.video_tracks[0].enabled == True) + self.assertTrue(mkv.video_tracks[0].default == True) + self.assertTrue(mkv.video_tracks[0].forced == False) + self.assertTrue(mkv.video_tracks[0].lacing == False) + self.assertTrue(mkv.video_tracks[0].codec_id == 'V_MS/VFW/FOURCC') + self.assertTrue(mkv.video_tracks[0].codec_name is None) + self.assertTrue(mkv.video_tracks[0].width == 854) + self.assertTrue(mkv.video_tracks[0].height == 480) + self.assertTrue(mkv.video_tracks[0].interlaced == False) + self.assertTrue(mkv.video_tracks[0].stereo_mode == 0) + self.assertTrue(mkv.video_tracks[0].crop == {}) + self.assertTrue(mkv.video_tracks[0].display_width is None) + self.assertTrue(mkv.video_tracks[0].display_height is None) + self.assertTrue(mkv.video_tracks[0].display_unit is None) + self.assertTrue(mkv.video_tracks[0].aspect_ratio_type == 0) + # audio track + self.assertTrue(len(mkv.audio_tracks) == 1) + self.assertTrue(mkv.audio_tracks[0].type == AUDIO_TRACK) + self.assertTrue(mkv.audio_tracks[0].number == 2) + self.assertTrue(mkv.audio_tracks[0].name is None) + self.assertTrue(mkv.audio_tracks[0].language == 'und') + self.assertTrue(mkv.audio_tracks[0].enabled == True) + self.assertTrue(mkv.audio_tracks[0].default == True) + self.assertTrue(mkv.audio_tracks[0].forced == False) + self.assertTrue(mkv.audio_tracks[0].lacing == True) + self.assertTrue(mkv.audio_tracks[0].codec_id == 'A_MPEG/L3') + self.assertTrue(mkv.audio_tracks[0].codec_name is None) + self.assertTrue(mkv.audio_tracks[0].sampling_frequency == 48000.0) + self.assertTrue(mkv.audio_tracks[0].channels == 2) + self.assertTrue(mkv.audio_tracks[0].output_sampling_frequency == 48000.0) + self.assertTrue(mkv.audio_tracks[0].bit_depth is None) + # subtitle track + self.assertTrue(len(mkv.subtitle_tracks) == 0) + # chapters + self.assertTrue(len(mkv.chapters) == 0) + # tags + self.assertTrue(len(mkv.tags) == 1) + self.assertTrue(len(mkv.tags[0].simpletags) == 3) + self.assertTrue(mkv.tags[0].simpletags[0].name == 'TITLE') + self.assertTrue(mkv.tags[0].simpletags[0].default == True) + self.assertTrue(mkv.tags[0].simpletags[0].language == 'und') + self.assertTrue(mkv.tags[0].simpletags[0].string == 'Big Buck Bunny - test 1') + self.assertTrue(mkv.tags[0].simpletags[0].binary is None) + self.assertTrue(mkv.tags[0].simpletags[1].name == 'DATE_RELEASED') + self.assertTrue(mkv.tags[0].simpletags[1].default == True) + self.assertTrue(mkv.tags[0].simpletags[1].language == 'und') + self.assertTrue(mkv.tags[0].simpletags[1].string == '2010') + self.assertTrue(mkv.tags[0].simpletags[1].binary is None) + self.assertTrue(mkv.tags[0].simpletags[2].name == 'COMMENT') + self.assertTrue(mkv.tags[0].simpletags[2].default == True) + self.assertTrue(mkv.tags[0].simpletags[2].language == 'und') + self.assertTrue(mkv.tags[0].simpletags[2].string == 'Matroska Validation File1, basic MPEG4.2 and MP3 with only SimpleBlock') + self.assertTrue(mkv.tags[0].simpletags[2].binary is None) + + def test_test2(self): + stream = io.open(os.path.join(TEST_DIR, 'test2.mkv'), 'rb') + mkv = MKV(stream) + # info + self.assertTrue(mkv.info.title is None) + self.assertTrue(mkv.info.duration == timedelta(seconds=47, milliseconds=509)) + self.assertTrue(mkv.info.date_utc == datetime(2011, 6, 2, 12, 45, 20)) + self.assertTrue(mkv.info.muxing_app == 'libebml2 v0.21.0 + libmatroska2 v0.22.1') + self.assertTrue(mkv.info.writing_app == 'mkclean 0.8.3 ru from libebml2 v0.10.0 + libmatroska2 v0.10.1 + mkclean 0.5.5 ru from libebml v1.0.0 + libmatroska v1.0.0 + mkvmerge v4.1.1 (\'Bouncin\' Back\') built on Jul 3 2010 22:54:08') + # video track + self.assertTrue(len(mkv.video_tracks) == 1) + self.assertTrue(mkv.video_tracks[0].type == VIDEO_TRACK) + self.assertTrue(mkv.video_tracks[0].number == 1) + self.assertTrue(mkv.video_tracks[0].name is None) + self.assertTrue(mkv.video_tracks[0].language == 'und') + self.assertTrue(mkv.video_tracks[0].enabled == True) + self.assertTrue(mkv.video_tracks[0].default == True) + self.assertTrue(mkv.video_tracks[0].forced == False) + self.assertTrue(mkv.video_tracks[0].lacing == False) + self.assertTrue(mkv.video_tracks[0].codec_id == 'V_MPEG4/ISO/AVC') + self.assertTrue(mkv.video_tracks[0].codec_name is None) + self.assertTrue(mkv.video_tracks[0].width == 1024) + self.assertTrue(mkv.video_tracks[0].height == 576) + self.assertTrue(mkv.video_tracks[0].interlaced == False) + self.assertTrue(mkv.video_tracks[0].stereo_mode == 0) + self.assertTrue(mkv.video_tracks[0].crop == {}) + self.assertTrue(mkv.video_tracks[0].display_width == 1354) + self.assertTrue(mkv.video_tracks[0].display_height is None) + self.assertTrue(mkv.video_tracks[0].display_unit is None) + self.assertTrue(mkv.video_tracks[0].aspect_ratio_type == 0) + # audio track + self.assertTrue(len(mkv.audio_tracks) == 1) + self.assertTrue(mkv.audio_tracks[0].type == AUDIO_TRACK) + self.assertTrue(mkv.audio_tracks[0].number == 2) + self.assertTrue(mkv.audio_tracks[0].name is None) + self.assertTrue(mkv.audio_tracks[0].language == 'und') + self.assertTrue(mkv.audio_tracks[0].enabled == True) + self.assertTrue(mkv.audio_tracks[0].default == True) + self.assertTrue(mkv.audio_tracks[0].forced == False) + self.assertTrue(mkv.audio_tracks[0].lacing == True) + self.assertTrue(mkv.audio_tracks[0].codec_id == 'A_AAC') + self.assertTrue(mkv.audio_tracks[0].codec_name is None) + self.assertTrue(mkv.audio_tracks[0].sampling_frequency == 48000.0) + self.assertTrue(mkv.audio_tracks[0].channels == 2) + self.assertTrue(mkv.audio_tracks[0].output_sampling_frequency == 48000.0) + self.assertTrue(mkv.audio_tracks[0].bit_depth is None) + # subtitle track + self.assertTrue(len(mkv.subtitle_tracks) == 0) + # chapters + self.assertTrue(len(mkv.chapters) == 0) + # tags + self.assertTrue(len(mkv.tags) == 1) + self.assertTrue(len(mkv.tags[0].simpletags) == 3) + self.assertTrue(mkv.tags[0].simpletags[0].name == 'TITLE') + self.assertTrue(mkv.tags[0].simpletags[0].default == True) + self.assertTrue(mkv.tags[0].simpletags[0].language == 'und') + self.assertTrue(mkv.tags[0].simpletags[0].string == 'Elephant Dream - test 2') + self.assertTrue(mkv.tags[0].simpletags[0].binary is None) + self.assertTrue(mkv.tags[0].simpletags[1].name == 'DATE_RELEASED') + self.assertTrue(mkv.tags[0].simpletags[1].default == True) + self.assertTrue(mkv.tags[0].simpletags[1].language == 'und') + self.assertTrue(mkv.tags[0].simpletags[1].string == '2010') + self.assertTrue(mkv.tags[0].simpletags[1].binary is None) + self.assertTrue(mkv.tags[0].simpletags[2].name == 'COMMENT') + self.assertTrue(mkv.tags[0].simpletags[2].default == True) + self.assertTrue(mkv.tags[0].simpletags[2].language == 'und') + self.assertTrue(mkv.tags[0].simpletags[2].string == 'Matroska Validation File 2, 100,000 timecode scale, odd aspect ratio, and CRC-32. Codecs are AVC and AAC') + self.assertTrue(mkv.tags[0].simpletags[2].binary is None) + + def test_test3(self): + stream = io.open(os.path.join(TEST_DIR, 'test3.mkv'), 'rb') + mkv = MKV(stream) + # info + self.assertTrue(mkv.info.title is None) + self.assertTrue(mkv.info.duration == timedelta(seconds=49, milliseconds=64)) + self.assertTrue(mkv.info.date_utc == datetime(2010, 8, 21, 21, 43, 25)) + self.assertTrue(mkv.info.muxing_app == 'libebml2 v0.11.0 + libmatroska2 v0.10.1') + self.assertTrue(mkv.info.writing_app == 'mkclean 0.5.5 ro from libebml v1.0.0 + libmatroska v1.0.0 + mkvmerge v4.1.1 (\'Bouncin\' Back\') built on Jul 3 2010 22:54:08') + # video track + self.assertTrue(len(mkv.video_tracks) == 1) + self.assertTrue(mkv.video_tracks[0].type == VIDEO_TRACK) + self.assertTrue(mkv.video_tracks[0].number == 1) + self.assertTrue(mkv.video_tracks[0].name is None) + self.assertTrue(mkv.video_tracks[0].language == 'und') + self.assertTrue(mkv.video_tracks[0].enabled == True) + self.assertTrue(mkv.video_tracks[0].default == True) + self.assertTrue(mkv.video_tracks[0].forced == False) + self.assertTrue(mkv.video_tracks[0].lacing == False) + self.assertTrue(mkv.video_tracks[0].codec_id == 'V_MPEG4/ISO/AVC') + self.assertTrue(mkv.video_tracks[0].codec_name is None) + self.assertTrue(mkv.video_tracks[0].width == 1024) + self.assertTrue(mkv.video_tracks[0].height == 576) + self.assertTrue(mkv.video_tracks[0].interlaced == False) + self.assertTrue(mkv.video_tracks[0].stereo_mode == 0) + self.assertTrue(mkv.video_tracks[0].crop == {}) + self.assertTrue(mkv.video_tracks[0].display_width is None) + self.assertTrue(mkv.video_tracks[0].display_height is None) + self.assertTrue(mkv.video_tracks[0].display_unit is None) + self.assertTrue(mkv.video_tracks[0].aspect_ratio_type == 0) + # audio track + self.assertTrue(len(mkv.audio_tracks) == 1) + self.assertTrue(mkv.audio_tracks[0].type == AUDIO_TRACK) + self.assertTrue(mkv.audio_tracks[0].number == 2) + self.assertTrue(mkv.audio_tracks[0].name is None) + self.assertTrue(mkv.audio_tracks[0].language == 'eng') + self.assertTrue(mkv.audio_tracks[0].enabled == True) + self.assertTrue(mkv.audio_tracks[0].default == True) + self.assertTrue(mkv.audio_tracks[0].forced == False) + self.assertTrue(mkv.audio_tracks[0].lacing == True) + self.assertTrue(mkv.audio_tracks[0].codec_id == 'A_MPEG/L3') + self.assertTrue(mkv.audio_tracks[0].codec_name is None) + self.assertTrue(mkv.audio_tracks[0].sampling_frequency == 48000.0) + self.assertTrue(mkv.audio_tracks[0].channels == 2) + self.assertTrue(mkv.audio_tracks[0].output_sampling_frequency == 48000.0) + self.assertTrue(mkv.audio_tracks[0].bit_depth is None) + # subtitle track + self.assertTrue(len(mkv.subtitle_tracks) == 0) + # chapters + self.assertTrue(len(mkv.chapters) == 0) + # tags + self.assertTrue(len(mkv.tags) == 1) + self.assertTrue(len(mkv.tags[0].simpletags) == 3) + self.assertTrue(mkv.tags[0].simpletags[0].name == 'TITLE') + self.assertTrue(mkv.tags[0].simpletags[0].default == True) + self.assertTrue(mkv.tags[0].simpletags[0].language == 'und') + self.assertTrue(mkv.tags[0].simpletags[0].string == 'Elephant Dream - test 3') + self.assertTrue(mkv.tags[0].simpletags[0].binary is None) + self.assertTrue(mkv.tags[0].simpletags[1].name == 'DATE_RELEASED') + self.assertTrue(mkv.tags[0].simpletags[1].default == True) + self.assertTrue(mkv.tags[0].simpletags[1].language == 'und') + self.assertTrue(mkv.tags[0].simpletags[1].string == '2010') + self.assertTrue(mkv.tags[0].simpletags[1].binary is None) + self.assertTrue(mkv.tags[0].simpletags[2].name == 'COMMENT') + self.assertTrue(mkv.tags[0].simpletags[2].default == True) + self.assertTrue(mkv.tags[0].simpletags[2].language == 'und') + self.assertTrue(mkv.tags[0].simpletags[2].string == 'Matroska Validation File 3, header stripping on the video track and no SimpleBlock') + self.assertTrue(mkv.tags[0].simpletags[2].binary is None) + + def test_test5(self): + stream = io.open(os.path.join(TEST_DIR, 'test5.mkv'), 'rb') + mkv = MKV(stream) + # info + self.assertTrue(mkv.info.title is None) + self.assertTrue(mkv.info.duration == timedelta(seconds=46, milliseconds=665)) + self.assertTrue(mkv.info.date_utc == datetime(2010, 8, 21, 18, 6, 43)) + self.assertTrue(mkv.info.muxing_app == 'libebml v1.0.0 + libmatroska v1.0.0') + self.assertTrue(mkv.info.writing_app == 'mkvmerge v4.0.0 (\'The Stars were mine\') built on Jun 6 2010 16:18:42') + # video track + self.assertTrue(len(mkv.video_tracks) == 1) + self.assertTrue(mkv.video_tracks[0].type == VIDEO_TRACK) + self.assertTrue(mkv.video_tracks[0].number == 1) + self.assertTrue(mkv.video_tracks[0].name is None) + self.assertTrue(mkv.video_tracks[0].language == 'und') + self.assertTrue(mkv.video_tracks[0].enabled == True) + self.assertTrue(mkv.video_tracks[0].default == True) + self.assertTrue(mkv.video_tracks[0].forced == False) + self.assertTrue(mkv.video_tracks[0].lacing == False) + self.assertTrue(mkv.video_tracks[0].codec_id == 'V_MPEG4/ISO/AVC') + self.assertTrue(mkv.video_tracks[0].codec_name is None) + self.assertTrue(mkv.video_tracks[0].width == 1024) + self.assertTrue(mkv.video_tracks[0].height == 576) + self.assertTrue(mkv.video_tracks[0].interlaced == False) + self.assertTrue(mkv.video_tracks[0].stereo_mode == 0) + self.assertTrue(mkv.video_tracks[0].crop == {}) + self.assertTrue(mkv.video_tracks[0].display_width == 1024) + self.assertTrue(mkv.video_tracks[0].display_height == 576) + self.assertTrue(mkv.video_tracks[0].display_unit is None) + self.assertTrue(mkv.video_tracks[0].aspect_ratio_type == 0) + # audio tracks + self.assertTrue(len(mkv.audio_tracks) == 2) + self.assertTrue(mkv.audio_tracks[0].type == AUDIO_TRACK) + self.assertTrue(mkv.audio_tracks[0].number == 2) + self.assertTrue(mkv.audio_tracks[0].name is None) + self.assertTrue(mkv.audio_tracks[0].language == 'und') + self.assertTrue(mkv.audio_tracks[0].enabled == True) + self.assertTrue(mkv.audio_tracks[0].default == True) + self.assertTrue(mkv.audio_tracks[0].forced == False) + self.assertTrue(mkv.audio_tracks[0].lacing == True) + self.assertTrue(mkv.audio_tracks[0].codec_id == 'A_AAC') + self.assertTrue(mkv.audio_tracks[0].codec_name is None) + self.assertTrue(mkv.audio_tracks[0].sampling_frequency == 48000.0) + self.assertTrue(mkv.audio_tracks[0].channels == 2) + self.assertTrue(mkv.audio_tracks[0].output_sampling_frequency == 48000.0) + self.assertTrue(mkv.audio_tracks[0].bit_depth is None) + self.assertTrue(mkv.audio_tracks[1].type == AUDIO_TRACK) + self.assertTrue(mkv.audio_tracks[1].number == 10) + self.assertTrue(mkv.audio_tracks[1].name == 'Commentary') + self.assertTrue(mkv.audio_tracks[1].language == 'eng') + self.assertTrue(mkv.audio_tracks[1].enabled == True) + self.assertTrue(mkv.audio_tracks[1].default == False) + self.assertTrue(mkv.audio_tracks[1].forced == False) + self.assertTrue(mkv.audio_tracks[1].lacing == True) + self.assertTrue(mkv.audio_tracks[1].codec_id == 'A_AAC') + self.assertTrue(mkv.audio_tracks[1].codec_name is None) + self.assertTrue(mkv.audio_tracks[1].sampling_frequency == 22050.0) + self.assertTrue(mkv.audio_tracks[1].channels == 1) + self.assertTrue(mkv.audio_tracks[1].output_sampling_frequency == 44100.0) + self.assertTrue(mkv.audio_tracks[1].bit_depth is None) + # subtitle track + self.assertTrue(len(mkv.subtitle_tracks) == 8) + self.assertTrue(mkv.subtitle_tracks[0].type == SUBTITLE_TRACK) + self.assertTrue(mkv.subtitle_tracks[0].number == 3) + self.assertTrue(mkv.subtitle_tracks[0].name is None) + self.assertTrue(mkv.subtitle_tracks[0].language == 'eng') + self.assertTrue(mkv.subtitle_tracks[0].enabled == True) + self.assertTrue(mkv.subtitle_tracks[0].default == True) + self.assertTrue(mkv.subtitle_tracks[0].forced == False) + self.assertTrue(mkv.subtitle_tracks[0].lacing == False) + self.assertTrue(mkv.subtitle_tracks[0].codec_id == 'S_TEXT/UTF8') + self.assertTrue(mkv.subtitle_tracks[0].codec_name is None) + self.assertTrue(mkv.subtitle_tracks[1].type == SUBTITLE_TRACK) + self.assertTrue(mkv.subtitle_tracks[1].number == 4) + self.assertTrue(mkv.subtitle_tracks[1].name is None) + self.assertTrue(mkv.subtitle_tracks[1].language == 'hun') + self.assertTrue(mkv.subtitle_tracks[1].enabled == True) + self.assertTrue(mkv.subtitle_tracks[1].default == False) + self.assertTrue(mkv.subtitle_tracks[1].forced == False) + self.assertTrue(mkv.subtitle_tracks[1].lacing == False) + self.assertTrue(mkv.subtitle_tracks[1].codec_id == 'S_TEXT/UTF8') + self.assertTrue(mkv.subtitle_tracks[1].codec_name is None) + self.assertTrue(mkv.subtitle_tracks[2].type == SUBTITLE_TRACK) + self.assertTrue(mkv.subtitle_tracks[2].number == 5) + self.assertTrue(mkv.subtitle_tracks[2].name is None) + self.assertTrue(mkv.subtitle_tracks[2].language == 'ger') + self.assertTrue(mkv.subtitle_tracks[2].enabled == True) + self.assertTrue(mkv.subtitle_tracks[2].default == False) + self.assertTrue(mkv.subtitle_tracks[2].forced == False) + self.assertTrue(mkv.subtitle_tracks[2].lacing == False) + self.assertTrue(mkv.subtitle_tracks[2].codec_id == 'S_TEXT/UTF8') + self.assertTrue(mkv.subtitle_tracks[2].codec_name is None) + self.assertTrue(mkv.subtitle_tracks[3].type == SUBTITLE_TRACK) + self.assertTrue(mkv.subtitle_tracks[3].number == 6) + self.assertTrue(mkv.subtitle_tracks[3].name is None) + self.assertTrue(mkv.subtitle_tracks[3].language == 'fre') + self.assertTrue(mkv.subtitle_tracks[3].enabled == True) + self.assertTrue(mkv.subtitle_tracks[3].default == False) + self.assertTrue(mkv.subtitle_tracks[3].forced == False) + self.assertTrue(mkv.subtitle_tracks[3].lacing == False) + self.assertTrue(mkv.subtitle_tracks[3].codec_id == 'S_TEXT/UTF8') + self.assertTrue(mkv.subtitle_tracks[3].codec_name is None) + self.assertTrue(mkv.subtitle_tracks[4].type == SUBTITLE_TRACK) + self.assertTrue(mkv.subtitle_tracks[4].number == 8) + self.assertTrue(mkv.subtitle_tracks[4].name is None) + self.assertTrue(mkv.subtitle_tracks[4].language == 'spa') + self.assertTrue(mkv.subtitle_tracks[4].enabled == True) + self.assertTrue(mkv.subtitle_tracks[4].default == False) + self.assertTrue(mkv.subtitle_tracks[4].forced == False) + self.assertTrue(mkv.subtitle_tracks[4].lacing == False) + self.assertTrue(mkv.subtitle_tracks[4].codec_id == 'S_TEXT/UTF8') + self.assertTrue(mkv.subtitle_tracks[4].codec_name is None) + self.assertTrue(mkv.subtitle_tracks[5].type == SUBTITLE_TRACK) + self.assertTrue(mkv.subtitle_tracks[5].number == 9) + self.assertTrue(mkv.subtitle_tracks[5].name is None) + self.assertTrue(mkv.subtitle_tracks[5].language == 'ita') + self.assertTrue(mkv.subtitle_tracks[5].enabled == True) + self.assertTrue(mkv.subtitle_tracks[5].default == False) + self.assertTrue(mkv.subtitle_tracks[5].forced == False) + self.assertTrue(mkv.subtitle_tracks[5].lacing == False) + self.assertTrue(mkv.subtitle_tracks[5].codec_id == 'S_TEXT/UTF8') + self.assertTrue(mkv.subtitle_tracks[5].codec_name is None) + self.assertTrue(mkv.subtitle_tracks[6].type == SUBTITLE_TRACK) + self.assertTrue(mkv.subtitle_tracks[6].number == 11) + self.assertTrue(mkv.subtitle_tracks[6].name is None) + self.assertTrue(mkv.subtitle_tracks[6].language == 'jpn') + self.assertTrue(mkv.subtitle_tracks[6].enabled == True) + self.assertTrue(mkv.subtitle_tracks[6].default == False) + self.assertTrue(mkv.subtitle_tracks[6].forced == False) + self.assertTrue(mkv.subtitle_tracks[6].lacing == False) + self.assertTrue(mkv.subtitle_tracks[6].codec_id == 'S_TEXT/UTF8') + self.assertTrue(mkv.subtitle_tracks[6].codec_name is None) + self.assertTrue(mkv.subtitle_tracks[7].type == SUBTITLE_TRACK) + self.assertTrue(mkv.subtitle_tracks[7].number == 7) + self.assertTrue(mkv.subtitle_tracks[7].name is None) + self.assertTrue(mkv.subtitle_tracks[7].language == 'und') + self.assertTrue(mkv.subtitle_tracks[7].enabled == True) + self.assertTrue(mkv.subtitle_tracks[7].default == False) + self.assertTrue(mkv.subtitle_tracks[7].forced == False) + self.assertTrue(mkv.subtitle_tracks[7].lacing == False) + self.assertTrue(mkv.subtitle_tracks[7].codec_id == 'S_TEXT/UTF8') + self.assertTrue(mkv.subtitle_tracks[7].codec_name is None) + # chapters + self.assertTrue(len(mkv.chapters) == 0) + # tags + self.assertTrue(len(mkv.tags) == 1) + self.assertTrue(len(mkv.tags[0].simpletags) == 3) + self.assertTrue(mkv.tags[0].simpletags[0].name == 'TITLE') + self.assertTrue(mkv.tags[0].simpletags[0].default == True) + self.assertTrue(mkv.tags[0].simpletags[0].language == 'und') + self.assertTrue(mkv.tags[0].simpletags[0].string == 'Big Buck Bunny - test 8') + self.assertTrue(mkv.tags[0].simpletags[0].binary is None) + self.assertTrue(mkv.tags[0].simpletags[1].name == 'DATE_RELEASED') + self.assertTrue(mkv.tags[0].simpletags[1].default == True) + self.assertTrue(mkv.tags[0].simpletags[1].language == 'und') + self.assertTrue(mkv.tags[0].simpletags[1].string == '2010') + self.assertTrue(mkv.tags[0].simpletags[1].binary is None) + self.assertTrue(mkv.tags[0].simpletags[2].name == 'COMMENT') + self.assertTrue(mkv.tags[0].simpletags[2].default == True) + self.assertTrue(mkv.tags[0].simpletags[2].language == 'und') + self.assertTrue(mkv.tags[0].simpletags[2].string == 'Matroska Validation File 8, secondary audio commentary track, misc subtitle tracks') + self.assertTrue(mkv.tags[0].simpletags[2].binary is None) + + def test_test6(self): + stream = io.open(os.path.join(TEST_DIR, 'test6.mkv'), 'rb') + mkv = MKV(stream) + # info + self.assertTrue(mkv.info.title is None) + self.assertTrue(mkv.info.duration == timedelta(seconds=87, milliseconds=336)) + self.assertTrue(mkv.info.date_utc == datetime(2010, 8, 21, 16, 31, 55)) + self.assertTrue(mkv.info.muxing_app == 'libebml2 v0.10.1 + libmatroska2 v0.10.1') + self.assertTrue(mkv.info.writing_app == 'mkclean 0.5.5 r from libebml v1.0.0 + libmatroska v1.0.0 + mkvmerge v4.0.0 (\'The Stars were mine\') built on Jun 6 2010 16:18:42') + # video track + self.assertTrue(len(mkv.video_tracks) == 1) + self.assertTrue(mkv.video_tracks[0].type == VIDEO_TRACK) + self.assertTrue(mkv.video_tracks[0].number == 1) + self.assertTrue(mkv.video_tracks[0].name is None) + self.assertTrue(mkv.video_tracks[0].language == 'und') + self.assertTrue(mkv.video_tracks[0].enabled == True) + self.assertTrue(mkv.video_tracks[0].default == False) + self.assertTrue(mkv.video_tracks[0].forced == False) + self.assertTrue(mkv.video_tracks[0].lacing == False) + self.assertTrue(mkv.video_tracks[0].codec_id == 'V_MS/VFW/FOURCC') + self.assertTrue(mkv.video_tracks[0].codec_name is None) + self.assertTrue(mkv.video_tracks[0].width == 854) + self.assertTrue(mkv.video_tracks[0].height == 480) + self.assertTrue(mkv.video_tracks[0].interlaced == False) + self.assertTrue(mkv.video_tracks[0].stereo_mode == 0) + self.assertTrue(mkv.video_tracks[0].crop == {}) + self.assertTrue(mkv.video_tracks[0].display_width is None) + self.assertTrue(mkv.video_tracks[0].display_height is None) + self.assertTrue(mkv.video_tracks[0].display_unit is None) + self.assertTrue(mkv.video_tracks[0].aspect_ratio_type == 0) + # audio track + self.assertTrue(len(mkv.audio_tracks) == 1) + self.assertTrue(mkv.audio_tracks[0].type == AUDIO_TRACK) + self.assertTrue(mkv.audio_tracks[0].number == 2) + self.assertTrue(mkv.audio_tracks[0].name is None) + self.assertTrue(mkv.audio_tracks[0].language == 'und') + self.assertTrue(mkv.audio_tracks[0].enabled == True) + self.assertTrue(mkv.audio_tracks[0].default == False) + self.assertTrue(mkv.audio_tracks[0].forced == False) + self.assertTrue(mkv.audio_tracks[0].lacing == True) + self.assertTrue(mkv.audio_tracks[0].codec_id == 'A_MPEG/L3') + self.assertTrue(mkv.audio_tracks[0].codec_name is None) + self.assertTrue(mkv.audio_tracks[0].sampling_frequency == 48000.0) + self.assertTrue(mkv.audio_tracks[0].channels == 2) + self.assertTrue(mkv.audio_tracks[0].output_sampling_frequency == 48000.0) + self.assertTrue(mkv.audio_tracks[0].bit_depth is None) + # subtitle track + self.assertTrue(len(mkv.subtitle_tracks) == 0) + # chapters + self.assertTrue(len(mkv.chapters) == 0) + # tags + self.assertTrue(len(mkv.tags) == 1) + self.assertTrue(len(mkv.tags[0].simpletags) == 3) + self.assertTrue(mkv.tags[0].simpletags[0].name == 'TITLE') + self.assertTrue(mkv.tags[0].simpletags[0].default == True) + self.assertTrue(mkv.tags[0].simpletags[0].language == 'und') + self.assertTrue(mkv.tags[0].simpletags[0].string == 'Big Buck Bunny - test 6') + self.assertTrue(mkv.tags[0].simpletags[0].binary is None) + self.assertTrue(mkv.tags[0].simpletags[1].name == 'DATE_RELEASED') + self.assertTrue(mkv.tags[0].simpletags[1].default == True) + self.assertTrue(mkv.tags[0].simpletags[1].language == 'und') + self.assertTrue(mkv.tags[0].simpletags[1].string == '2010') + self.assertTrue(mkv.tags[0].simpletags[1].binary is None) + self.assertTrue(mkv.tags[0].simpletags[2].name == 'COMMENT') + self.assertTrue(mkv.tags[0].simpletags[2].default == True) + self.assertTrue(mkv.tags[0].simpletags[2].language == 'und') + self.assertTrue(mkv.tags[0].simpletags[2].string == 'Matroska Validation File 6, random length to code the size of Clusters and Blocks, no Cues for seeking') + self.assertTrue(mkv.tags[0].simpletags[2].binary is None) + + def test_test7(self): + stream = io.open(os.path.join(TEST_DIR, 'test7.mkv'), 'rb') + mkv = MKV(stream) + # info + self.assertTrue(mkv.info.title is None) + self.assertTrue(mkv.info.duration == timedelta(seconds=37, milliseconds=43)) + self.assertTrue(mkv.info.date_utc == datetime(2010, 8, 21, 17, 0, 23)) + self.assertTrue(mkv.info.muxing_app == 'libebml2 v0.10.1 + libmatroska2 v0.10.1') + self.assertTrue(mkv.info.writing_app == 'mkclean 0.5.5 r from libebml v1.0.0 + libmatroska v1.0.0 + mkvmerge v4.0.0 (\'The Stars were mine\') built on Jun 6 2010 16:18:42') + # video track + self.assertTrue(len(mkv.video_tracks) == 1) + self.assertTrue(mkv.video_tracks[0].type == VIDEO_TRACK) + self.assertTrue(mkv.video_tracks[0].number == 1) + self.assertTrue(mkv.video_tracks[0].name is None) + self.assertTrue(mkv.video_tracks[0].language == 'und') + self.assertTrue(mkv.video_tracks[0].enabled == True) + self.assertTrue(mkv.video_tracks[0].default == False) + self.assertTrue(mkv.video_tracks[0].forced == False) + self.assertTrue(mkv.video_tracks[0].lacing == False) + self.assertTrue(mkv.video_tracks[0].codec_id == 'V_MPEG4/ISO/AVC') + self.assertTrue(mkv.video_tracks[0].codec_name is None) + self.assertTrue(mkv.video_tracks[0].width == 1024) + self.assertTrue(mkv.video_tracks[0].height == 576) + self.assertTrue(mkv.video_tracks[0].interlaced == False) + self.assertTrue(mkv.video_tracks[0].stereo_mode == 0) + self.assertTrue(mkv.video_tracks[0].crop == {}) + self.assertTrue(mkv.video_tracks[0].display_width is None) + self.assertTrue(mkv.video_tracks[0].display_height is None) + self.assertTrue(mkv.video_tracks[0].display_unit is None) + self.assertTrue(mkv.video_tracks[0].aspect_ratio_type == 0) + # audio track + self.assertTrue(len(mkv.audio_tracks) == 1) + self.assertTrue(mkv.audio_tracks[0].type == AUDIO_TRACK) + self.assertTrue(mkv.audio_tracks[0].number == 2) + self.assertTrue(mkv.audio_tracks[0].name is None) + self.assertTrue(mkv.audio_tracks[0].language == 'und') + self.assertTrue(mkv.audio_tracks[0].enabled == True) + self.assertTrue(mkv.audio_tracks[0].default == False) + self.assertTrue(mkv.audio_tracks[0].forced == False) + self.assertTrue(mkv.audio_tracks[0].lacing == True) + self.assertTrue(mkv.audio_tracks[0].codec_id == 'A_AAC') + self.assertTrue(mkv.audio_tracks[0].codec_name is None) + self.assertTrue(mkv.audio_tracks[0].sampling_frequency == 48000.0) + self.assertTrue(mkv.audio_tracks[0].channels == 2) + self.assertTrue(mkv.audio_tracks[0].output_sampling_frequency == 48000.0) + self.assertTrue(mkv.audio_tracks[0].bit_depth is None) + # subtitle track + self.assertTrue(len(mkv.subtitle_tracks) == 0) + # chapters + self.assertTrue(len(mkv.chapters) == 0) + # tags + self.assertTrue(len(mkv.tags) == 1) + self.assertTrue(len(mkv.tags[0].simpletags) == 3) + self.assertTrue(mkv.tags[0].simpletags[0].name == 'TITLE') + self.assertTrue(mkv.tags[0].simpletags[0].default == True) + self.assertTrue(mkv.tags[0].simpletags[0].language == 'und') + self.assertTrue(mkv.tags[0].simpletags[0].string == 'Big Buck Bunny - test 7') + self.assertTrue(mkv.tags[0].simpletags[0].binary is None) + self.assertTrue(mkv.tags[0].simpletags[1].name == 'DATE_RELEASED') + self.assertTrue(mkv.tags[0].simpletags[1].default == True) + self.assertTrue(mkv.tags[0].simpletags[1].language == 'und') + self.assertTrue(mkv.tags[0].simpletags[1].string == '2010') + self.assertTrue(mkv.tags[0].simpletags[1].binary is None) + self.assertTrue(mkv.tags[0].simpletags[2].name == 'COMMENT') + self.assertTrue(mkv.tags[0].simpletags[2].default == True) + self.assertTrue(mkv.tags[0].simpletags[2].language == 'und') + self.assertTrue(mkv.tags[0].simpletags[2].string == 'Matroska Validation File 7, junk elements are present at the beggining or end of clusters, the parser should skip it. There is also a damaged element at 451418') + self.assertTrue(mkv.tags[0].simpletags[2].binary is None) + + def test_test8(self): + stream = io.open(os.path.join(TEST_DIR, 'test8.mkv'), 'rb') + mkv = MKV(stream) + # info + self.assertTrue(mkv.info.title is None) + self.assertTrue(mkv.info.duration == timedelta(seconds=47, milliseconds=341)) + self.assertTrue(mkv.info.date_utc == datetime(2010, 8, 21, 17, 22, 14)) + self.assertTrue(mkv.info.muxing_app == 'libebml2 v0.10.1 + libmatroska2 v0.10.1') + self.assertTrue(mkv.info.writing_app == 'mkclean 0.5.5 r from libebml v1.0.0 + libmatroska v1.0.0 + mkvmerge v4.0.0 (\'The Stars were mine\') built on Jun 6 2010 16:18:42') + # video track + self.assertTrue(len(mkv.video_tracks) == 1) + self.assertTrue(mkv.video_tracks[0].type == VIDEO_TRACK) + self.assertTrue(mkv.video_tracks[0].number == 1) + self.assertTrue(mkv.video_tracks[0].name is None) + self.assertTrue(mkv.video_tracks[0].language == 'und') + self.assertTrue(mkv.video_tracks[0].enabled == True) + self.assertTrue(mkv.video_tracks[0].default == False) + self.assertTrue(mkv.video_tracks[0].forced == False) + self.assertTrue(mkv.video_tracks[0].lacing == False) + self.assertTrue(mkv.video_tracks[0].codec_id == 'V_MPEG4/ISO/AVC') + self.assertTrue(mkv.video_tracks[0].codec_name is None) + self.assertTrue(mkv.video_tracks[0].width == 1024) + self.assertTrue(mkv.video_tracks[0].height == 576) + self.assertTrue(mkv.video_tracks[0].interlaced == False) + self.assertTrue(mkv.video_tracks[0].stereo_mode == 0) + self.assertTrue(mkv.video_tracks[0].crop == {}) + self.assertTrue(mkv.video_tracks[0].display_width is None) + self.assertTrue(mkv.video_tracks[0].display_height is None) + self.assertTrue(mkv.video_tracks[0].display_unit is None) + self.assertTrue(mkv.video_tracks[0].aspect_ratio_type == 0) + # audio track + self.assertTrue(len(mkv.audio_tracks) == 1) + self.assertTrue(mkv.audio_tracks[0].type == AUDIO_TRACK) + self.assertTrue(mkv.audio_tracks[0].number == 2) + self.assertTrue(mkv.audio_tracks[0].name is None) + self.assertTrue(mkv.audio_tracks[0].language == 'und') + self.assertTrue(mkv.audio_tracks[0].enabled == True) + self.assertTrue(mkv.audio_tracks[0].default == False) + self.assertTrue(mkv.audio_tracks[0].forced == False) + self.assertTrue(mkv.audio_tracks[0].lacing == True) + self.assertTrue(mkv.audio_tracks[0].codec_id == 'A_AAC') + self.assertTrue(mkv.audio_tracks[0].codec_name is None) + self.assertTrue(mkv.audio_tracks[0].sampling_frequency == 48000.0) + self.assertTrue(mkv.audio_tracks[0].channels == 2) + self.assertTrue(mkv.audio_tracks[0].output_sampling_frequency == 48000.0) + self.assertTrue(mkv.audio_tracks[0].bit_depth is None) + # subtitle track + self.assertTrue(len(mkv.subtitle_tracks) == 0) + # chapters + self.assertTrue(len(mkv.chapters) == 0) + # tags + self.assertTrue(len(mkv.tags) == 1) + self.assertTrue(len(mkv.tags[0].simpletags) == 3) + self.assertTrue(mkv.tags[0].simpletags[0].name == 'TITLE') + self.assertTrue(mkv.tags[0].simpletags[0].default == True) + self.assertTrue(mkv.tags[0].simpletags[0].language == 'und') + self.assertTrue(mkv.tags[0].simpletags[0].string == 'Big Buck Bunny - test 8') + self.assertTrue(mkv.tags[0].simpletags[0].binary is None) + self.assertTrue(mkv.tags[0].simpletags[1].name == 'DATE_RELEASED') + self.assertTrue(mkv.tags[0].simpletags[1].default == True) + self.assertTrue(mkv.tags[0].simpletags[1].language == 'und') + self.assertTrue(mkv.tags[0].simpletags[1].string == '2010') + self.assertTrue(mkv.tags[0].simpletags[1].binary is None) + self.assertTrue(mkv.tags[0].simpletags[2].name == 'COMMENT') + self.assertTrue(mkv.tags[0].simpletags[2].default == True) + self.assertTrue(mkv.tags[0].simpletags[2].language == 'und') + self.assertTrue(mkv.tags[0].simpletags[2].string == 'Matroska Validation File 8, audio missing between timecodes 6.019s and 6.360s') + self.assertTrue(mkv.tags[0].simpletags[2].binary is None) + + +def suite(): + suite = unittest.TestSuite() + suite.addTest(unittest.TestLoader().loadTestsFromTestCase(MKVTestCase)) + return suite + +if __name__ == '__main__': + unittest.TextTestRunner().run(suite()) diff --git a/libs/enzyme/tests/test_parsers.py b/libs/enzyme/tests/test_parsers.py new file mode 100644 index 000000000..0fa320ce0 --- /dev/null +++ b/libs/enzyme/tests/test_parsers.py @@ -0,0 +1,122 @@ +# -*- coding: utf-8 -*- +from enzyme.parsers import ebml +import io +import os.path +import requests +import unittest +import yaml +import zipfile + + +# Test directory +TEST_DIR = os.path.join(os.path.dirname(__file__), os.path.splitext(__file__)[0]) + +# EBML validation directory +EBML_VALIDATION_DIR = os.path.join(os.path.dirname(__file__), 'parsers', 'ebml') + + +def setUpModule(): + if not os.path.exists(TEST_DIR): + r = requests.get('http://downloads.sourceforge.net/project/matroska/test_files/matroska_test_w1_1.zip') + with zipfile.ZipFile(io.BytesIO(r.content), 'r') as f: + f.extractall(TEST_DIR) + + +class EBMLTestCase(unittest.TestCase): + def setUp(self): + self.stream = io.open(os.path.join(TEST_DIR, 'test1.mkv'), 'rb') + with io.open(os.path.join(EBML_VALIDATION_DIR, 'test1.mkv.yml'), 'r') as yml: + self.validation = yaml.safe_load(yml) + self.specs = ebml.get_matroska_specs() + + def tearDown(self): + self.stream.close() + + def check_element(self, element_id, element_type, element_name, element_level, element_position, element_size, element_data, element, + ignore_element_types=None, ignore_element_names=None, max_level=None): + """Recursively check an element""" + # base + self.assertTrue(element.id == element_id) + self.assertTrue(element.type == element_type) + self.assertTrue(element.name == element_name) + self.assertTrue(element.level == element_level) + self.assertTrue(element.position == element_position) + self.assertTrue(element.size == element_size) + # Element + if not isinstance(element_data, list): + self.assertTrue(type(element) == ebml.Element) + if element_type != ebml.BINARY: + self.assertTrue(element.data == element_data) + return + # MasterElement + if ignore_element_types is not None: # filter validation on element types + element_data = [e for e in element_data if e[1] not in ignore_element_types] + if ignore_element_names is not None: # filter validation on element names + element_data = [e for e in element_data if e[2] not in ignore_element_names] + if element.level == max_level: # special check when maximum level is reached + self.assertTrue(element.data is None) + return + self.assertTrue(len(element.data) == len(element_data)) + for i in range(len(element.data)): + self.check_element(element_data[i][0], element_data[i][1], element_data[i][2], element_data[i][3], + element_data[i][4], element_data[i][5], element_data[i][6], element.data[i], ignore_element_types, + ignore_element_names, max_level) + + def test_parse_full(self): + result = ebml.parse(self.stream, self.specs) + self.assertTrue(len(result) == len(self.validation)) + for i in range(len(self.validation)): + self.check_element(self.validation[i][0], self.validation[i][1], self.validation[i][2], self.validation[i][3], + self.validation[i][4], self.validation[i][5], self.validation[i][6], result[i]) + + def test_parse_ignore_element_types(self): + ignore_element_types = [ebml.INTEGER, ebml.BINARY] + result = ebml.parse(self.stream, self.specs, ignore_element_types=ignore_element_types) + self.validation = [e for e in self.validation if e[1] not in ignore_element_types] + self.assertTrue(len(result) == len(self.validation)) + for i in range(len(self.validation)): + self.check_element(self.validation[i][0], self.validation[i][1], self.validation[i][2], self.validation[i][3], + self.validation[i][4], self.validation[i][5], self.validation[i][6], result[i], ignore_element_types=ignore_element_types) + + def test_parse_ignore_element_names(self): + ignore_element_names = ['EBML', 'SimpleBlock'] + result = ebml.parse(self.stream, self.specs, ignore_element_names=ignore_element_names) + self.validation = [e for e in self.validation if e[2] not in ignore_element_names] + self.assertTrue(len(result) == len(self.validation)) + for i in range(len(self.validation)): + self.check_element(self.validation[i][0], self.validation[i][1], self.validation[i][2], self.validation[i][3], + self.validation[i][4], self.validation[i][5], self.validation[i][6], result[i], ignore_element_names=ignore_element_names) + + def test_parse_max_level(self): + max_level = 3 + result = ebml.parse(self.stream, self.specs, max_level=max_level) + self.validation = [e for e in self.validation if e[3] <= max_level] + self.assertTrue(len(result) == len(self.validation)) + for i in range(len(self.validation)): + self.check_element(self.validation[i][0], self.validation[i][1], self.validation[i][2], self.validation[i][3], + self.validation[i][4], self.validation[i][5], self.validation[i][6], result[i], max_level=max_level) + + +def generate_yml(filename, specs): + """Generate a validation file for the test video""" + def _to_builtin(elements): + """Recursively convert elements to built-in types""" + result = [] + for e in elements: + if isinstance(e, ebml.MasterElement): + result.append((e.id, e.type, e.name, e.level, e.position, e.size, _to_builtin(e.data))) + else: + result.append((e.id, e.type, e.name, e.level, e.position, e.size, None if isinstance(e.data, io.BytesIO) else e.data)) + return result + video = io.open(os.path.join(TEST_DIR, filename), 'rb') + yml = io.open(os.path.join(EBML_VALIDATION_DIR, filename + '.yml'), 'w') + yaml.safe_dump(_to_builtin(ebml.parse(video, specs)), yml) + + +def suite(): + suite = unittest.TestSuite() + suite.addTest(unittest.TestLoader().loadTestsFromTestCase(EBMLTestCase)) + return suite + +if __name__ == '__main__': + unittest.TextTestRunner().run(suite())